/*-----------------------------------------------------------------------------------

    Template Name: Paragon Space Hire
    Description: Paragon Space Hire Website
    Author: Eyeweb
    Version: 1.0

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    01. Theme default CSS
    02. Building for Hire Section CSS
    03. Blog CSS
    04. Single Blog Post CSS
    05. FAQ's CSS
    06. Contact Us Form CSS
    07. Animated Underline CSS
    08. Modular Building CSS
    09. Footer CSS
    10. Legal Page CSS
    11. Recaptcha CSS
    12. Media Queries

-----------------------------------------------------------------------------------*/
/*----------------------------------------*/
/*  01. Theme default CSS
/*----------------------------------------*/
*{
    font-family: 'Outfit', sans-serif;
}
p {
    margin-bottom: 1.5rem;
}
h1{
    font-size: 3.8rem;
    line-height: 4rem;
    font-weight: 600;
}
h2{
    font-size: 2.4rem;
    font-weight: 600;
}
h3{
    font-size: 1.4rem;
    font-weight: 700;
}
h4{
    font-size: 1.2rem;
    font-weight: 600;
}
h5{
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    font-weight: 600;
}
h6{
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    font-weight: 700;
}
/*----------------------------------------*/
/*  02. Building for Hire Section CSS
/*----------------------------------------*/
#building_group2{
    margin-top: 6rem;
    width: 100%;
}
#building_group4{
    width: 100%;
}
/*----------------------------------------*/
/*  03. Blog CSS
/*----------------------------------------*/
.blog-pagination ul.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.blog-pagination ul.pagination::before {
    content:'';
    width:30%;
    height:1px;
    background: #000;
    position:absolute;
    left:70%;
}
.blog-pagination ul.pagination::after {
    content:'';
    width:30%;
    height:1px;
    background:#000;
    position:absolute;
    right:70%;
}
.blog-pagination ul.pagination li:first-child,
.blog-pagination ul.pagination li:last-child {
    display: none;
}
.blog-pagination ul.pagination li{
        padding: 15px 0px;
        background: #f5f5f5;
        font-size: 1rem;
        font-weight: 600;
}
.blog-pagination ul.pagination li a,
.blog-pagination ul.pagination li span{
    padding: 15px 25px;
}
.blog-pagination ul.pagination li.active{
    background: #00b5ff;
}
.blog-title a {
    color: var(--primary-brand-color);
    text-decoration: underline;
}
/*----------------------------------------*/
/*  04. Single Blog Post CSS
/*----------------------------------------*/
.breadcrumbs li:last-child span {
    display: none;
}
.blog-title h3 {
    padding-bottom: 20px;
}
ul.breadcrumbs.flex li:not(:last-child) {
    font-weight: 600;

}
ul.breadcrumbs.flex li a{
    margin:0px 10px;
}
ul.breadcrumbs.flex li:last-child{
   color:#a2a2a2;
}
/*----------------------------------------*/
/*  05. FAQ's CSS
/*----------------------------------------*/
summary::marker {
    font-size: 0;
}
summary::-webkit-details-marker {
    display:none;
    font-size: 0;
}
details[open] > summary:after {
    content: "-";
}
details > summary:after {
    content: "+";
    position: absolute;
    right: -50px;
    top: 35%;
    font-size: 4rem;
    font-weight: 300;
    color: #ffffff;
}
/*----------------------------------------*/
/*  06. Contact Us Form CSS
/*----------------------------------------*/
.custom-field {
    display: flex;
    flex-direction: column;
}
.custom-field label {
    padding: 5px 0px 0px 0px;
}
.custom-field input{
    height: 40px;
    padding: 10px;
}
.custom-field textarea{
    padding: 10px;
    height: 110px;
}
.custom-field input,
.custom-field textarea{
    border: 1px solid #a2a2a2;

}
.custom-field input:focus,
.custom-field textarea{
    outline: none;
}
.contactusform form{
    display: grid;
 grid-template-columns: repeat(2, 1fr);
 grid-template-areas:
   "leftside1 rightside"
   "leftside2 rightside"
   "leftside3 rightside"
   "buttonfull buttonfull";
   -moz-column-gap:30px;
        column-gap:30px

}
.contactusform form .custom-field:nth-child(2){
   grid-area: leftside1;
}
.contactusform form .custom-field:nth-child(3){
   grid-area: leftside2;
}
.contactusform form .custom-field:nth-child(4){
   grid-area: leftside3;
}
.contactusform form .custom-field:nth-child(5){
   grid-area: rightside;
}
.contactusform form button{
   grid-area:buttonfull;
    background: #00c2f3;
    color: #fff;
    border-radius: 50px;
    margin: 30px 0px;
}
/*----------------------------------------*/
/*  07. Animated Underline CSS
/*----------------------------------------*/
.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #000000;
}
.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}
.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
/*----------------------------------------*/
/*  08. Modular Building CSS
/*----------------------------------------*/
.modularBuildingGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-template-areas:
    "col-size-1 col-size-2 col-size-3 col-size-4"
   "col-size-5 col-size-6 col-size-7 col-size-8"
   "col-size-9 col-size-10 col-size-2-lg col-size-2-lg"
   "col-size-11 col-size-12 col-size-2-lg col-size-2-lg";
    -moz-row-gap: 40px;
    row-gap: 30px;
}
.modularBuildingGrid li:nth-child(1) {
    grid-area: col-size-1;
}
.modularBuildingGrid li:nth-child(2) {
    grid-area: col-size-2;
}
.modularBuildingGrid li:nth-child(3) {
    grid-area: col-size-3;
}
.modularBuildingGrid li:nth-child(4) {
    grid-area: col-size-4;
}
.modularBuildingGrid li:nth-child(5) {
    grid-area: col-size-5;
}
.modularBuildingGrid li:nth-child(6) {
    grid-area: col-size-6;
}
.modularBuildingGrid li:nth-child(7) {
    grid-area: col-size-7;
}
.modularBuildingGrid li:nth-child(8) {
    grid-area: col-size-8;
}
.modularBuildingGrid li:nth-child(9) {
    grid-area: col-size-9;
}
.modularBuildingGrid li:nth-child(10) {
    grid-area: col-size-10;
}
.modularBuildingGrid li:nth-child(11) {
    grid-area: col-size-11;
}
.modularBuildingGrid li:nth-child(12) {
    grid-area: col-size-12;
}
.modularBuildingGrid li:nth-child(13) {
    grid-area: col-size-2-lg;
    background-color: #fff;
    text-align: center;
    justify-content: center;
    grid-gap: 1.5rem !important;
}
.modularBuildingGrid li:nth-child(13) img{
    width: 45px;
}
/*----------------------------------------*/
/*  09. Footer CSS
/*----------------------------------------*/
.footer-text p{
    margin-bottom: 0;
}
/*----------------------------------------*/
/*  10. Legal Page CSS
/*----------------------------------------*/
#only_content_section ol {
    list-style: auto;
    margin-left: 2rem;
}
#only_content_section ul {
    list-style: auto;
    margin-left: 2rem;
}
#only_content_section table tbody tr,#only_content_section table tbody td {
    border: 1px solid black;
}
/*----------------------------------------*/
/*  11. Recaptcha hide logo
/*----------------------------------------*/
.grecaptcha-badge{
    display: none;
}
/*----------------------------------------*/
/*  12. Media Queries
/*----------------------------------------*/
@media only screen and (max-width: 600px) {
    h1{
        font-size: 3rem;
    }
    h2{
        font-size: 1.5rem;
        font-weight: 600;
    }
    h3{
        font-size: 1rem;
        font-weight: 700;
    }
    h5{
        font-size: 1rem;
    }
    #building_group2{
        margin-top: 3rem;
    }
    .hero-overlay{
        transform: inherit !important;
        width: 100% !important;
    }

    .blog-pagination ul.pagination::before {
        width: 15%;
        left: 81%;
    }
    .blog-pagination ul.pagination::after {
        width:15%;
        right:81%;
    }

    .contactusform form{
     grid-template-columns: repeat(1, 1fr);
     grid-template-areas:
       "leftside1"
       "leftside2"
       "leftside3"
       "rightside"
       "buttonfull";
       -moz-column-gap:30px;
            column-gap:30px;

    }
}
@media (max-width: 1024px){
    .modularBuildingGrid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(6, 1fr);
        grid-template-areas:
        "col-size-1 col-size-2 col-size-3"
        "col-size-4 col-size-5 col-size-6"
       " col-size-7 col-size-8 col-size-9 "
       "col-size-10 col-size-11 col-size-12"
       " col-size-2-lg col-size-2-lg col-size-2-lg"
       " col-size-2-lg col-size-2-lg col-size-2-lg";
        -moz-row-gap: 20px;
        row-gap: 20px;
    }
}
@media (min-width: 1280px){
    .container {
        max-width: 1194px !important;
    }

    .review-item .slick-list {
        z-index: 30;
    }
}
@media (max-width:768px){
    .modularBuildingGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: repeat(8, 1fr);
       grid-template-areas:
       "col-size-1 col-size-2" 
       "col-size-3 col-size-4"
       "col-size-5 col-size-6" 
       "col-size-7 col-size-8"
       "col-size-9 col-size-10"
       "col-size-11 col-size-12" 
       "col-size-2-lg col-size-2-lg"
       "col-size-2-lg col-size-2-lg";
        -moz-row-gap: 30px;
        row-gap: 30px;
    }
    .modularBuildingGrid li:nth-child(13) {
        padding: 0 1rem !important;
    }
    .hero-overlay{
        width: 100% !important;
    }
}
.our_sector_card .slider {
  position: relative;
}
.our_sector_card .slick-slider {
  position: relative;
}
.our_sector_card .slick-track,
.our_sector_card .slick-list {
  height: 100%;
}
.our_sector_card .slick-prev,
.our_sector_card .slick-next {
  z-index: 50 !important; /* Ensure arrows are above images */
}
.custom-prev.show,
.custom-next.show {
  display: flex !important; /* Force flex when shown */
}
/* Ensure popup close button uses pointer */
.mfp-close {
  cursor: pointer !important;
}
/* Optional: Improve loading behavior */
.mfp-img {
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
/* Force cached images to not flicker */
img.mfp-img[src] {
  will-change: opacity;
}
.image-slider a.popup-image,
.mfp-img,
.mfp-figure,
.mfp-container,
.mfp-wrap {
  cursor: pointer !important;
}
.custom-prev.disabled,
.custom-next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.our_sector_form input{
        padding: 4px;
       border: 1px solid #C8C8C8 !important;
    }
.our_sector_form label{
        padding: 10px 0 0 0 !important;
    }
.our_sector_form select{
        height:40px;
        padding: 4px;
        border: 1px solid #C8C8C8 !important;
    }
*, ::before, ::after{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
::backdrop{
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x:  ;
    --tw-pan-y:  ;
    --tw-pinch-zoom:  ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position:  ;
    --tw-gradient-via-position:  ;
    --tw-gradient-to-position:  ;
    --tw-ordinal:  ;
    --tw-slashed-zero:  ;
    --tw-numeric-figure:  ;
    --tw-numeric-spacing:  ;
    --tw-numeric-fraction:  ;
    --tw-ring-inset:  ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur:  ;
    --tw-brightness:  ;
    --tw-contrast:  ;
    --tw-grayscale:  ;
    --tw-hue-rotate:  ;
    --tw-invert:  ;
    --tw-saturate:  ;
    --tw-sepia:  ;
    --tw-drop-shadow:  ;
    --tw-backdrop-blur:  ;
    --tw-backdrop-brightness:  ;
    --tw-backdrop-contrast:  ;
    --tw-backdrop-grayscale:  ;
    --tw-backdrop-hue-rotate:  ;
    --tw-backdrop-invert:  ;
    --tw-backdrop-opacity:  ;
    --tw-backdrop-saturate:  ;
    --tw-backdrop-sepia:  ;
    --tw-contain-size:  ;
    --tw-contain-layout:  ;
    --tw-contain-paint:  ;
    --tw-contain-style:  ;
}
/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com*/
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container{
    width: 100%;
}
@media (min-width: 640px){
    .container{
        max-width: 640px;
    }
}
@media (min-width: 768px){
    .container{
        max-width: 768px;
    }
}
@media (min-width: 1024px){
    .container{
        max-width: 1024px;
    }
}
@media (min-width: 1280px){
    .container{
        max-width: 1280px;
    }
}
@media (min-width: 1536px){
    .container{
        max-width: 1536px;
    }
}
.prose{
    color: var(--tw-prose-body);
    max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-lead);
    font-size: 1.25em;
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-links);
    text-decoration: underline;
    font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-bold);
    font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: decimal;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    list-style-type: disc;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
    padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
    font-weight: 400;
    color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
    color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-color: var(--tw-prose-hr);
    border-top-width: 1px;
    margin-top: 3em;
    margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 500;
    font-style: italic;
    color: var(--tw-prose-quotes);
    border-inline-start-width: 0.25rem;
    border-inline-start-color: var(--tw-prose-quote-borders);
    quotes: "\201C""\201D""\2018""\2019";
    margin-top: 1.6em;
    margin-bottom: 1.6em;
    padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
    content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
    content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 800;
    font-size: 2.25em;
    margin-top: 0;
    margin-bottom: 0.8888889em;
    line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 900;
    color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 700;
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: 1em;
    line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 800;
    color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 600;
    font-size: 1.25em;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 700;
    color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 700;
    color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    display: block;
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    font-weight: 500;
    font-family: inherit;
    color: var(--tw-prose-kbd);
    box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
    font-size: 0.875em;
    border-radius: 0.3125rem;
    padding-top: 0.1875em;
    padding-inline-end: 0.375em;
    padding-bottom: 0.1875em;
    padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-code);
    font-weight: 600;
    font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
    content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
    content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
    font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
    font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-pre-code);
    background-color: var(--tw-prose-pre-bg);
    overflow-x: auto;
    font-weight: 400;
    font-size: 0.875em;
    line-height: 1.7142857;
    margin-top: 1.7142857em;
    margin-bottom: 1.7142857em;
    border-radius: 0.375rem;
    padding-top: 0.8571429em;
    padding-inline-end: 1.1428571em;
    padding-bottom: 0.8571429em;
    padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    background-color: transparent;
    border-width: 0;
    border-radius: 0;
    padding: 0;
    font-weight: inherit;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
    content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
    content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    width: 100%;
    table-layout: auto;
    margin-top: 2em;
    margin-bottom: 2em;
    font-size: 0.875em;
    line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-headings);
    font-weight: 600;
    vertical-align: bottom;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-bottom-width: 1px;
    border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    border-top-width: 1px;
    border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
    margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    color: var(--tw-prose-captions);
    font-size: 0.875em;
    line-height: 1.4285714;
    margin-top: 0.8571429em;
}
.prose{
    --tw-prose-body: #374151;
    --tw-prose-headings: #111827;
    --tw-prose-lead: #4b5563;
    --tw-prose-links: #111827;
    --tw-prose-bold: #111827;
    --tw-prose-counters: #6b7280;
    --tw-prose-bullets: #d1d5db;
    --tw-prose-hr: #e5e7eb;
    --tw-prose-quotes: #111827;
    --tw-prose-quote-borders: #e5e7eb;
    --tw-prose-captions: #6b7280;
    --tw-prose-kbd: #111827;
    --tw-prose-kbd-shadows: 17 24 39;
    --tw-prose-code: #111827;
    --tw-prose-pre-code: #e5e7eb;
    --tw-prose-pre-bg: #1f2937;
    --tw-prose-th-borders: #d1d5db;
    --tw-prose-td-borders: #e5e7eb;
    --tw-prose-invert-body: #d1d5db;
    --tw-prose-invert-headings: #fff;
    --tw-prose-invert-lead: #9ca3af;
    --tw-prose-invert-links: #fff;
    --tw-prose-invert-bold: #fff;
    --tw-prose-invert-counters: #9ca3af;
    --tw-prose-invert-bullets: #4b5563;
    --tw-prose-invert-hr: #374151;
    --tw-prose-invert-quotes: #f3f4f6;
    --tw-prose-invert-quote-borders: #374151;
    --tw-prose-invert-captions: #9ca3af;
    --tw-prose-invert-kbd: #fff;
    --tw-prose-invert-kbd-shadows: 255 255 255;
    --tw-prose-invert-code: #fff;
    --tw-prose-invert-pre-code: #d1d5db;
    --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
    --tw-prose-invert-th-borders: #4b5563;
    --tw-prose-invert-td-borders: #374151;
    font-size: 1rem;
    line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
    margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0.75em;
    margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 1.25em;
    margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0.5em;
    padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-top: 0.5714286em;
    padding-inline-end: 0.5714286em;
    padding-bottom: 0.5714286em;
    padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 2em;
    margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
    margin-bottom: 0;
}
.invisible{
    visibility: hidden;
}
.fixed{
    position: fixed;
}
.absolute{
    position: absolute;
}
.relative{
    position: relative;
}
.-bottom-56{
    bottom: -14rem;
}
.-left-72{
    left: -18rem;
}
.-left-\[42rem\]{
    left: -42rem;
}
.-right-\[4\.5rem\]{
    right: -4.5rem;
}
.-top-40{
    top: -10rem;
}
.-top-48{
    top: -12rem;
}
.-top-\[4\.5rem\]{
    top: -4.5rem;
}
.bottom-0{
    bottom: 0px;
}
.left-0{
    left: 0px;
}
.left-2{
    left: 0.5rem;
}
.left-8{
    left: 2rem;
}
.left-\[29rem\]{
    left: 29rem;
}
.left-\[52\%\]{
    left: 52%;
}
.right-0{
    right: 0px;
}
.right-1{
    right: 0.25rem;
}
.right-2{
    right: 0.5rem;
}
.right-\[69\%\]{
    right: 69%;
}
.top-0{
    top: 0px;
}
.top-1\/2{
    top: 50%;
}
.top-\[4\.2rem\]{
    top: 4.2rem;
}
.top-\[45rem\]{
    top: 45rem;
}
.top-\[83\%\]{
    top: 83%;
}
.-z-10{
    z-index: -10;
}
.z-0{
    z-index: 0;
}
.z-10{
    z-index: 10;
}
.z-20{
    z-index: 20;
}
.z-50{
    z-index: 50;
}
.order-2{
    order: 2;
}
.col-span-2{
    grid-column: span 2 / span 2;
}
.col-span-3{
    grid-column: span 3 / span 3;
}
.m-0{
    margin: 0px;
}
.m-3{
    margin: 0.75rem;
}
.m-auto{
    margin: auto;
}
.-mx-1{
    margin-left: -0.25rem;
    margin-right: -0.25rem;
}
.mx-2{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.mx-7{
    margin-left: 1.75rem;
    margin-right: 1.75rem;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.my-14{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}
.my-3{
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}
.my-4{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-5{
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
}
.-mt-6{
    margin-top: -1.5rem;
}
.mb-0{
    margin-bottom: 0px;
}
.mb-0\.5{
    margin-bottom: 0.125rem;
}
.mb-10{
    margin-bottom: 2.5rem;
}
.mb-12{
    margin-bottom: 3rem;
}
.mb-16{
    margin-bottom: 4rem;
}
.mb-2{
    margin-bottom: 0.5rem;
}
.mb-24{
    margin-bottom: 6rem;
}
.mb-3{
    margin-bottom: 0.75rem;
}
.mb-4{
    margin-bottom: 1rem;
}
.mb-5{
    margin-bottom: 1.25rem;
}
.mb-6{
    margin-bottom: 1.5rem;
}
.mb-8{
    margin-bottom: 2rem;
}
.mb-\[54px\]{
    margin-bottom: 54px;
}
.ml-1{
    margin-left: 0.25rem;
}
.ml-2{
    margin-left: 0.5rem;
}
.ml-3{
    margin-left: 0.75rem;
}
.mr-3{
    margin-right: 0.75rem;
}
.mr-4{
    margin-right: 1rem;
}
.mt-1{
    margin-top: 0.25rem;
}
.mt-14{
    margin-top: 3.5rem;
}
.mt-2{
    margin-top: 0.5rem;
}
.mt-4{
    margin-top: 1rem;
}
.mt-5{
    margin-top: 1.25rem;
}
.mt-8{
    margin-top: 2rem;
}
.mt-\[19px\]{
    margin-top: 19px;
}
.mt-\[39px\]{
    margin-top: 39px;
}
.mt-\[40px\]{
    margin-top: 40px;
}
.block{
    display: block;
}
.inline-block{
    display: inline-block;
}
.flex{
    display: flex;
}
.inline-flex{
    display: inline-flex;
}
.table{
    display: table;
}
.grid{
    display: grid;
}
.contents{
    display: contents;
}
.hidden{
    display: none;
}
.h-1{
    height: 0.25rem;
}
.h-5{
    height: 1.25rem;
}
.h-64{
    height: 16rem;
}
.h-72{
    height: 18rem;
}
.h-8{
    height: 2rem;
}
.h-\[58px\]{
    height: 58px;
}
.h-\[5rem\]{
    height: 5rem;
}
.h-\[6\.5rem\]{
    height: 6.5rem;
}
.h-\[65px\]{
    height: 65px;
}
.h-full{
    height: 100%;
}
.min-h-\[19rem\]{
    min-height: 19rem;
}
.w-20{
    width: 5rem;
}
.w-24{
    width: 6rem;
}
.w-3\/5{
    width: 60%;
}
.w-32{
    width: 8rem;
}
.w-36{
    width: 9rem;
}
.w-44{
    width: 11rem;
}
.w-5{
    width: 1.25rem;
}
.w-56{
    width: 14rem;
}
.w-72{
    width: 18rem;
}
.w-8{
    width: 2rem;
}
.w-9{
    width: 2.25rem;
}
.w-\[58px\]{
    width: 58px;
}
.w-\[5rem\]{
    width: 5rem;
}
.w-full{
    width: 100%;
}
.max-w-\[484px\]{
    max-width: 484px;
}
.max-w-\[526px\]{
    max-width: 526px;
}
.max-w-xl{
    max-width: 36rem;
}
.grow{
    flex-grow: 1;
}
.origin-bottom{
    transform-origin: bottom;
}
.-translate-y-1\/2{
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer{
    cursor: pointer;
}
.grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.flex-col{
    flex-direction: column;
}
.flex-wrap{
    flex-wrap: wrap;
}
.content-center{
    align-content: center;
}
.items-center{
    align-items: center;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.gap-1{
    gap: 0.25rem;
}
.gap-3{
    gap: 0.75rem;
}
.gap-4{
    gap: 1rem;
}
.gap-5{
    gap: 1.25rem;
}
.gap-8{
    gap: 2rem;
}
.gap-\[11px\]{
    gap: 11px;
}
.gap-\[14px\]{
    gap: 14px;
}
.gap-\[22px\]{
    gap: 22px;
}
.gap-\[78px\]{
    gap: 78px;
}
.divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0;
    border-right-width: calc(1px * var(--tw-divide-x-reverse));
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.overflow-hidden{
    overflow: hidden;
}
.scroll-smooth{
    scroll-behavior: smooth;
}
.break-all{
    word-break: break-all;
}
.rounded-full{
    border-radius: 9999px;
}
.rounded-md{
    border-radius: 0.375rem;
}
.rounded-xl{
    border-radius: 0.75rem;
}
.border{
    border-width: 1px;
}
.border-r-\[4rem\]{
    border-right-width: 4rem;
}
.border-t{
    border-top-width: 1px;
}
.border-t-0{
    border-top-width: 0px;
}
.border-dashed{
    border-style: dashed;
}
.border-\[\#707070\]{
    --tw-border-opacity: 1;
    border-color: rgb(112 112 112 / var(--tw-border-opacity, 1));
}
.border-\[\#A2A2A2\]{
    --tw-border-opacity: 1;
    border-color: rgb(162 162 162 / var(--tw-border-opacity, 1));
}
.border-primary-brand-color{
    border-color: var(--primary-brand-color);
}
.bg-\[\#00b5ff\]{
    --tw-bg-opacity: 1;
    background-color: rgb(0 181 255 / var(--tw-bg-opacity, 1));
}
.bg-\[\#242862\]{
    --tw-bg-opacity: 1;
    background-color: rgb(36 40 98 / var(--tw-bg-opacity, 1));
}
.bg-\[\#26CB26\]{
    --tw-bg-opacity: 1;
    background-color: rgb(38 203 38 / var(--tw-bg-opacity, 1));
}
.bg-\[\#E3E3E3\]{
    --tw-bg-opacity: 1;
    background-color: rgb(227 227 227 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FAFAFA\]{
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f5f5f5\]{
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f8f8f8\]{
    --tw-bg-opacity: 1;
    background-color: rgb(248 248 248 / var(--tw-bg-opacity, 1));
}
.bg-\[rgb\(245\2c 245\2c 245\)\]{
    --tw-bg-opacity: 1;
    background-color: rgb(245 245 245 / var(--tw-bg-opacity, 1));
}
.bg-black{
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-btn-bg-regular{
    background-color: var(--btn-bg-regular);
}
.bg-primary-brand-color{
    background-color: var(--primary-brand-color);
}
.bg-secondary-brand-color{
    background-color: var(--secondary-brand-color);
}
.bg-secondary-color{
    background-color: var(--secondary-color);
}
.bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.from-black{
    --tw-gradient-from: #000 var(--tw-gradient-from-position);
    --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.bg-cover{
    background-size: cover;
}
.bg-center{
    background-position: center;
}
.bg-no-repeat{
    background-repeat: no-repeat;
}
.object-contain{
    -o-object-fit: contain;
       object-fit: contain;
}
.object-cover{
    -o-object-fit: cover;
       object-fit: cover;
}
.p-3{
    padding: 0.75rem;
}
.p-4{
    padding: 1rem;
}
.p-6{
    padding: 1.5rem;
}
.p-7{
    padding: 1.75rem;
}
.p-8{
    padding: 2rem;
}
.px-16{
    padding-left: 4rem;
    padding-right: 4rem;
}
.px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.px-4{
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-7{
    padding-left: 1.75rem;
    padding-right: 1.75rem;
}
.px-8{
    padding-left: 2rem;
    padding-right: 2rem;
}
.px-9{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
}
.px-\[25px\]{
    padding-left: 25px;
    padding-right: 25px;
}
.px-\[60px\]{
    padding-left: 60px;
    padding-right: 60px;
}
.py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.py-16{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.py-20{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
}
.py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-3\.5{
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}
.py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-7{
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
}
.py-8{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-\[15px\]{
    padding-top: 15px;
    padding-bottom: 15px;
}
.py-\[5px\]{
    padding-top: 5px;
    padding-bottom: 5px;
}
.pb-16{
    padding-bottom: 4rem;
}
.pb-2{
    padding-bottom: 0.5rem;
}
.pb-20{
    padding-bottom: 5rem;
}
.pb-5{
    padding-bottom: 1.25rem;
}
.pb-7{
    padding-bottom: 1.75rem;
}
.pb-9{
    padding-bottom: 2.25rem;
}
.pl-3{
    padding-left: 0.75rem;
}
.pl-5{
    padding-left: 1.25rem;
}
.pr-5{
    padding-right: 1.25rem;
}
.pt-10{
    padding-top: 2.5rem;
}
.pt-2{
    padding-top: 0.5rem;
}
.pt-20{
    padding-top: 5rem;
}
.pt-5{
    padding-top: 1.25rem;
}
.pt-9{
    padding-top: 2.25rem;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-\[1\.3rem\]{
    font-size: 1.3rem;
}
.text-\[1\.6rem\]{
    font-size: 1.6rem;
}
.text-\[15px\]{
    font-size: 15px;
}
.text-\[22px\]{
    font-size: 22px;
}
.text-\[2rem\]{
    font-size: 2rem;
}
.text-\[35px\]{
    font-size: 35px;
}
.text-base{
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.font-bold{
    font-weight: 700;
}
.font-light{
    font-weight: 300;
}
.font-medium{
    font-weight: 500;
}
.font-normal{
    font-weight: 400;
}
.font-semibold{
    font-weight: 600;
}
.italic{
    font-style: italic;
}
.leading-5{
    line-height: 1.25rem;
}
.leading-normal{
    line-height: 1.5;
}
.tracking-wide{
    letter-spacing: 0.025em;
}
.text-\[\#101010\]{
    --tw-text-opacity: 1;
    color: rgb(16 16 16 / var(--tw-text-opacity, 1));
}
.text-\[\#1f2937\]{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-\[\#383a60\]{
    --tw-text-opacity: 1;
    color: rgb(56 58 96 / var(--tw-text-opacity, 1));
}
.text-basic-color{
    color: var(--basic-color);
}
.text-black{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-btn-regular{
    color: var(--btn-regular);
}
.text-gray-800{
    --tw-text-opacity: 1;
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-primary-brand-color{
    color: var(--primary-brand-color);
}
.text-red-500{
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-rose-500{
    --tw-text-opacity: 1;
    color: rgb(244 63 94 / var(--tw-text-opacity, 1));
}
.text-secondary-brand-color{
    color: var(--secondary-brand-color);
}
.text-secondary-color{
    color: var(--secondary-color);
}
.text-slate-500{
    --tw-text-opacity: 1;
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
}
.text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.underline{
    text-decoration-line: underline;
}
.opacity-0{
    opacity: 0;
}
.opacity-40{
    opacity: 0.4;
}
.shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.drop-shadow-2xl{
    --tw-drop-shadow: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-200{
    transition-duration: 200ms;
}
.duration-300{
    transition-duration: 300ms;
}
.ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.first\:ml-0:first-child{
    margin-left: 0px;
}
.first\:pt-6:first-child{
    padding-top: 1.5rem;
}
.last\:mb-0:last-child{
    margin-bottom: 0px;
}
.last\:hidden:last-child{
    display: none;
}
.last\:pb-6:last-child{
    padding-bottom: 1.5rem;
}
.hover\:cursor-pointer:hover{
    cursor: pointer;
}
.hover\:bg-btn-bg-hover:hover{
    background-color: var(--btn-bg-hover);
}
.hover\:bg-gray-200:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.hover\:bg-green-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
}
.hover\:bg-primary-brand-color:hover{
    background-color: var(--primary-brand-color);
}
.hover\:text-btn-hover:hover{
    color: var(--btn-hover);
}
.hover\:text-secondary-brand-color:hover{
    color: var(--secondary-brand-color);
}
.hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.disabled\:cursor-not-allowed:disabled{
    cursor: not-allowed;
}
.disabled\:opacity-50:disabled{
    opacity: 0.5;
}
.group:hover .group-hover\:visible{
    visibility: visible;
}
@media (min-width: 768px){
    .md\:absolute{
        position: absolute;
    }
    .md\:-right-6{
        right: -1.5rem;
    }
    .md\:-top-6{
        top: -1.5rem;
    }
    .md\:right-\[43\%\]{
        right: 43%;
    }
    .md\:my-0{
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .md\:-mt-24{
        margin-top: -6rem;
    }
    .md\:mb-0{
        margin-bottom: 0px;
    }
    .md\:mb-12{
        margin-bottom: 3rem;
    }
    .md\:mb-8{
        margin-bottom: 2rem;
    }
    .md\:mt-0{
        margin-top: 0px;
    }
    .md\:mt-16{
        margin-top: 4rem;
    }
    .md\:mt-40{
        margin-top: 10rem;
    }
    .md\:mt-\[171px\]{
        margin-top: 171px;
    }
    .md\:block{
        display: block;
    }
    .md\:flex{
        display: flex;
    }
    .md\:grid{
        display: grid;
    }
    .md\:hidden{
        display: none;
    }
    .md\:w-1\/3{
        width: 33.333333%;
    }
    .md\:w-1\/4{
        width: 25%;
    }
    .md\:w-10\/12{
        width: 83.333333%;
    }
    .md\:w-3\/5{
        width: 60%;
    }
    .md\:w-48{
        width: 12rem;
    }
    .md\:w-\[48\.7\%\]{
        width: 48.7%;
    }
    .md\:w-full{
        width: 100%;
    }
    .md\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:gap-8{
        gap: 2rem;
    }
    .md\:from-\[\#000000a1\]{
        --tw-gradient-from: #000000a1 var(--tw-gradient-from-position);
        --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
        --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
    }
    .md\:p-3{
        padding: 0.75rem;
    }
    .md\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }
    .md\:px-11{
        padding-left: 2.75rem;
        padding-right: 2.75rem;
    }
    .md\:px-16{
        padding-left: 4rem;
        padding-right: 4rem;
    }
    .md\:px-20{
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .md\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .md\:px-6{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .md\:py-16{
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .md\:py-20{
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .md\:py-24{
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .md\:py-80{
        padding-top: 20rem;
        padding-bottom: 20rem;
    }
    .md\:py-\[27px\]{
        padding-top: 27px;
        padding-bottom: 27px;
    }
    .md\:pb-12{
        padding-bottom: 3rem;
    }
    .md\:pb-24{
        padding-bottom: 6rem;
    }
    .md\:pt-20{
        padding-top: 5rem;
    }
    .md\:pt-24{
        padding-top: 6rem;
    }
    .md\:pt-48{
        padding-top: 12rem;
    }
    .md\:text-center{
        text-align: center;
    }
    .md\:text-4xl{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
}
@media (min-width: 1024px){
    .lg\:right-1\/2{
        right: 50%;
    }
    .lg\:mx-24{
        margin-left: 6rem;
        margin-right: 6rem;
    }
    .lg\:mx-40{
        margin-left: 10rem;
        margin-right: 10rem;
    }
    .lg\:mb-0{
        margin-bottom: 0px;
    }
    .lg\:ml-8{
        margin-left: 2rem;
    }
    .lg\:mt-\[331px\]{
        margin-top: 331px;
    }
    .lg\:block{
        display: block;
    }
    .lg\:flex{
        display: flex;
    }
    .lg\:w-1\/2{
        width: 50%;
    }
    .lg\:w-1\/3{
        width: 33.333333%;
    }
    .lg\:w-1\/4{
        width: 25%;
    }
    .lg\:w-7\/12{
        width: 58.333333%;
    }
    .lg\:w-\[39\%\]{
        width: 39%;
    }
    .lg\:w-\[61\%\]{
        width: 61%;
    }
    .lg\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg\:grid-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:flex-row{
        flex-direction: row;
    }
    .lg\:justify-start{
        justify-content: flex-start;
    }
    .lg\:gap-10{
        gap: 2.5rem;
    }
    .lg\:border-l-0{
        border-left-width: 0px;
    }
    .lg\:p-12{
        padding: 3rem;
    }
    .lg\:p-28{
        padding: 7rem;
    }
    .lg\:p-6{
        padding: 1.5rem;
    }
    .lg\:px-0{
        padding-left: 0px;
        padding-right: 0px;
    }
    .lg\:px-40{
        padding-left: 10rem;
        padding-right: 10rem;
    }
    .lg\:py-20{
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .lg\:py-24{
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .lg\:py-36{
        padding-top: 9rem;
        padding-bottom: 9rem;
    }
    .lg\:pl-\[38px\]{
        padding-left: 38px;
    }
    .lg\:pr-\[19px\]{
        padding-right: 19px;
    }
    .lg\:pt-36{
        padding-top: 9rem;
    }
    .lg\:pt-\[31px\]{
        padding-top: 31px;
    }
    .lg\:text-left{
        text-align: left;
    }
    .group:hover .lg\:group-hover\:scale-110{
        --tw-scale-x: 1.1;
        --tw-scale-y: 1.1;
        transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
    }
    .group:hover .lg\:group-hover\:opacity-50{
        opacity: 0.5;
    }
}
@media (min-width: 1280px){
    .xl\:block{
        display: block;
    }
    .xl\:flex{
        display: flex;
    }
    .xl\:hidden{
        display: none;
    }
    .xl\:flex-row{
        flex-direction: row;
    }
    .xl\:justify-around{
        justify-content: space-around;
    }
}
