@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap);

/* Font Monserat */
/* Font Inter */
/* Text Element Tag*/
/* @layer components {
    .btn {
        @apply py-3 px-6 border border-transparent;
        &.btn-primary {
            @apply bg-primary text-white;
        }
        &.btn-primary:hover {
            @apply bg-transparent text-primary border border-primary;
        }
        &.btn-secondary {
            @apply bg-transparent border-primary text-primary;
        }
        &.btn-secondary:hover {
            @apply bg-primary border-transparent text-white;
        }
        &.btn-tree {
            @apply bg-transparent border-white text-white;
        }
    }

} */
/* transition section */
/* Make clicks pass-through */
#nprogress {
    pointer-events: none;
}
#nprogress .bar {
    background: #000000;

    position: fixed;
    z-index: 1031;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;
}
/* Fancy blur effect */
#nprogress .peg {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #000000, 0 0 5px #000000;
    opacity: 1;
    transform: rotate(3deg) translate(0px, -4px);
}
/* Remove these to get rid of the spinner */
#nprogress .spinner {
    display: block;
    position: fixed;
    z-index: 1031;
    top: 15px;
    right: 15px;
}
#nprogress .spinner-icon {
    width: 18px;
    height: 18px;
    box-sizing: border-box;

    border: solid 2px transparent;
    border-top-color: #000000;
    border-left-color: #000000;
    border-radius: 50%;

    -webkit-animation: nprogress-spinner 400ms linear infinite;
    animation: nprogress-spinner 400ms linear infinite;
}
.nprogress-custom-parent {
    overflow: hidden;
    position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
    position: absolute;
}
@-webkit-keyframes nprogress-spinner {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes nprogress-spinner {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* Inertia progress bar*/
.menu-primary-menu-container ul{
    list-style-type: none;
}
#menu-primary-menu{
    justify-content: flex-start;
}
@media (min-width: 1024px){
    #menu-primary-menu{
        display: flex;
    }
}
#menu-primary-menu li{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
#menu-primary-menu .menu-item{
    --tw-text-opacity: 1;
    color: rgb(64 65 67 / var(--tw-text-opacity));
}
#menu-primary-menu .menu-item.menu-item-has-children{
    position: relative;
}
#menu-primary-menu .menu-item.menu-item-has-children .sub-menu{
    visibility: hidden;
    position: absolute;
    max-height: 0px;
    white-space: nowrap;
    transition-property: max-height;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
#menu-primary-menu .menu-item.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu{
    visibility: hidden;
    position: absolute;
    max-width: 0rem;
    transition-property: max-height;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 100ms;
}
#menu-primary-menu .menu-item.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li:hover a{
    --tw-text-opacity: 1;
    color: rgb(28 116 188 / var(--tw-text-opacity));
}
#menu-primary-menu .menu-item.menu-item-has-children .sub-menu .menu-item-has-children .sub-menu li a{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
#menu-primary-menu .menu-item.menu-item-has-children .sub-menu .menu-item-has-children:hover .sub-menu{
    visibility: visible;
    top: 0px;
    left: 100%;
    max-width: 32rem;
    --tw-bg-opacity: 1;
    background-color: rgb(250 204 21 / var(--tw-bg-opacity));
    transition-property: max-width;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 100ms;
}
#menu-primary-menu .menu-item.menu-item-has-children .sub-menu li:hover a{
    --tw-text-opacity: 1;
    color: rgb(250 204 21 / var(--tw-text-opacity));
}
#menu-primary-menu .menu-item.menu-item-has-children .sub-menu li a{
    --tw-text-opacity: 1;
    color: rgb(202 138 4 / var(--tw-text-opacity));
}
#menu-primary-menu .menu-item.menu-item-has-children:hover .sub-menu{
    visibility: visible;
    top: 100%;
    left: 0px;
    max-height: 24rem;
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
    transition-property: max-height;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}
#menu-primary-menu .menu-item a{
    font-family: Montserrat;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
#menu-primary-menu .menu-item a[aria-current='page']{
    font-family: Montserrat;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: rgb(28 116 188 / var(--tw-text-opacity));
}
/* Inertia progress bar*/
/* ! tailwindcss v3.0.23 | 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.
*/
html {
  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, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
}
/*
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. 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-size: 1em; /* 2 */
}
/*
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-size: 100%; /* 1 */
  line-height: 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,
[type='button'],
[type='reset'],
[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;
}
/*
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:-ms-input-placeholder, textarea:-ms-input-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;
}
/*
Ensure the default browser behavior of the `hidden` attribute.
*/
[hidden] {
  display: none;
}
*, ::before, ::after{
    --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-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:  ;
}
.container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}
@media (min-width: 640px){
    .container{
        max-width: 640px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}
@media (min-width: 768px){
    .container{
        max-width: 768px;
    }
}
@media (min-width: 1024px){
    .container{
        max-width: 1024px;
        padding-right: 4rem;
        padding-left: 4rem;
    }
}
@media (min-width: 1280px){
    .container{
        max-width: 1280px;
        padding-right: 5rem;
        padding-left: 5rem;
    }
}
@media (min-width: 1536px){
    .container{
        max-width: 1536px;
        padding-right: 10rem;
        padding-left: 10rem;
    }
}
h1{
    font-size: 3rem;
    font-weight: 700;
    line-height: 2;
}
h2{
    font-size: 40px;
    font-weight: 700;
    line-height: 2;
}
h3{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    line-height: 2;
}
h4{
    font-size: 3rem;
    font-weight: 700;
    line-height: 2;
}
h5{
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    line-height: 2;
}
h6{
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    line-height: 2;
}
p{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
blockquote{
    padding-left: 5%;
    padding-right: 5%;
    text-align: left;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
}
strong{
    font-weight: 700;
}
ul{
    list-style-position: inside;
    list-style-type: disc;
}
ol{
    list-style-position: inside;
    list-style-type: decimal;
}
/* a {
        @apply underline underline-offset-1 hover:underline-offset-2;
    } */
strong, b{
    font-weight: 600;
}
hr{
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
    margin-bottom: 3rem;
        width: 260px;
        border-bottom: 2px solid #003b5d;
}
.btn{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    font-family: Montserrat;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
@media (min-width: 768px){
    .btn{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .btn{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}
.btn.btn-primary{
    --tw-bg-opacity: 1;
    background-color: rgb(28 116 188 / var(--tw-bg-opacity));
}
.btn.btn-primary:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(153 17 17 / var(--tw-bg-opacity));
}
.btn.btn-primary:active{
    --tw-bg-opacity: 1;
    background-color: rgb(195 49 49 / var(--tw-bg-opacity));
}
.btn.btn-secondary{
    --tw-text-opacity: 1;
    color: rgb(28 116 188 / var(--tw-text-opacity));
            background: rgba(28, 116, 188, 0.09);
}
.btn.btn-line{
    position: relative;
    width: 100%;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
@media (min-width: 768px){
    .btn.btn-line{
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
    .btn.btn-line{
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.btn.btn-line p{
    position: relative;
    z-index: 10;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
@media (min-width: 768px){
    .btn.btn-line p{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}
.btn.btn-line::after{
                content: "";
                background-color: white;
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 0%;
                transition: width .3s;
            }
.btn.btn-line:hover p{
    --tw-text-opacity: 1;
    color: rgb(28 116 188 / var(--tw-text-opacity));
}
.btn.btn-line:hover::after{
                    content: "";
                    background-color: white;
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 100%;
                    width: 100%;
                    transition: width .3s;
                }
.btn.btn-icon{
    position: relative;
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    flex-direction: row;
    gap: 0.75rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(28 116 188 / var(--tw-border-opacity));
    background-color: transparent;
    --tw-text-opacity: 1;
    color: rgb(28 116 188 / var(--tw-text-opacity));
}
.btn.btn-icon svg{
    position: relative;
    z-index: 10;
    height: 1.5rem;
    width: 1.5rem;
}
.btn.btn-icon::after{
                content: "";
                background-color: white;
                position: absolute;
                left: 0;
                top: 0;
                height: 100%;
                width: 0%;
                transition: width .3s;
            }
.btn.btn-icon:hover p{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.btn.btn-icon:hover svg path{
                        fill: white;
                    }
.btn.btn-icon:hover::after{
    --tw-bg-opacity: 1;
    background-color: rgb(28 116 188 / var(--tw-bg-opacity));
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 0;
                    height: 100%;
                    width: 100%;
                    transition: width .3s;
}
.btn.btn-icon p{
    position: relative;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
@media (min-width: 768px){
    .btn.btn-icon p{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}
.btn.btn-icon p {
                z-index: 10;
            }
/* rules that target fade elements */
.form-control{
    display: flex;
    flex-direction: column;
}
.form-label{
    margin-bottom: 1rem;
    font-family: Montserrat;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 700;
}
.form-input{
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(226 226 226 / var(--tw-border-opacity));
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    font-family: Montserrat;
    font-size: 0.875rem;
    line-height: 1.25rem;
    outline-color: #1C74BC;
}
.form-input:placeholder{
    font-family: Montserrat;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.pointer-events-none{
    pointer-events: none;
}
.visible{
    visibility: visible;
}
.invisible{
    visibility: hidden;
}
.static{
    position: static;
}
.fixed{
    position: fixed;
}
.absolute{
    position: absolute;
}
.relative{
    position: relative;
}
.sticky{
    position: -webkit-sticky;
    position: sticky;
}
.inset-y-0{
    top: 0px;
    bottom: 0px;
}
.top-0{
    top: 0px;
}
.top-2{
    top: 0.5rem;
}
.right-0{
    right: 0px;
}
.left-0{
    left: 0px;
}
.top-1\/2{
    top: 50%;
}
.right-4{
    right: 1rem;
}
.top-\[160px\]{
    top: 160px;
}
.z-50{
    z-index: 50;
}
.z-30{
    z-index: 30;
}
.-z-10{
    z-index: -10;
}
.z-10{
    z-index: 10;
}
.z-20{
    z-index: 20;
}
.col-span-2{
    grid-column: span 2 / span 2;
}
.col-span-1{
    grid-column: span 1 / span 1;
}
.m-0{
    margin: 0px;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.my-\[40px\]{
    margin-top: 40px;
    margin-bottom: 40px;
}
.my-auto{
    margin-top: auto;
    margin-bottom: auto;
}
.my-8{
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.my-10{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.mt-8{
    margin-top: 2rem;
}
.mb-10{
    margin-bottom: 2.5rem;
}
.mt-6{
    margin-top: 1.5rem;
}
.mt-\[600px\]{
    margin-top: 600px;
}
.mb-3{
    margin-bottom: 0.75rem;
}
.mb-6{
    margin-bottom: 1.5rem;
}
.mt-10{
    margin-top: 2.5rem;
}
.mt-7{
    margin-top: 1.75rem;
}
.mt-4{
    margin-top: 1rem;
}
.mt-\[10px\]{
    margin-top: 10px;
}
.mt-\[0px\]{
    margin-top: 0px;
}
.mb-5{
    margin-bottom: 1.25rem;
}
.ml-auto{
    margin-left: auto;
}
.-mt-\[150px\]{
    margin-top: -150px;
}
.mb-4{
    margin-bottom: 1rem;
}
.mb-16{
    margin-bottom: 4rem;
}
.mt-\[8px\]{
    margin-top: 8px;
}
.mb-\[24px\]{
    margin-bottom: 24px;
}
.mb-8{
    margin-bottom: 2rem;
}
.mt-\[50px\]{
    margin-top: 50px;
}
.mt-5{
    margin-top: 1.25rem;
}
.mt-\[16px\]{
    margin-top: 16px;
}
.mt-\[-18px\]{
    margin-top: -18px;
}
.mt-\[-20px\]{
    margin-top: -20px;
}
.mt-\[29px\]{
    margin-top: 29px;
}
.mb-\[16px\]{
    margin-bottom: 16px;
}
.mb-\[12px\]{
    margin-bottom: 12px;
}
.mr-0{
    margin-right: 0px;
}
.mt-0{
    margin-top: 0px;
}
.mb-\[20px\]{
    margin-bottom: 20px;
}
.mt-3{
    margin-top: 0.75rem;
}
.mt-\[160px\]{
    margin-top: 160px;
}
.ml-4{
    margin-left: 1rem;
}
.mt-2{
    margin-top: 0.5rem;
}
.block{
    display: block;
}
.inline-block{
    display: inline-block;
}
.flex{
    display: flex;
}
.inline-flex{
    display: inline-flex;
}
.grid{
    display: grid;
}
.hidden{
    display: none;
}
.h-\[48px\]{
    height: 48px;
}
.h-\[40px\]{
    height: 40px;
}
.h-\[60px\]{
    height: 60px;
}
.h-6{
    height: 1.5rem;
}
.h-9{
    height: 2.25rem;
}
.h-7{
    height: 1.75rem;
}
.h-10{
    height: 2.5rem;
}
.h-full{
    height: 100%;
}
.h-screen{
    height: 100vh;
}
.h-8{
    height: 2rem;
}
.h-14{
    height: 3.5rem;
}
.h-fit{
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
}
.h-\[230px\]{
    height: 230px;
}
.h-\[150px\]{
    height: 150px;
}
.h-\[200px\]{
    height: 200px;
}
.h-\[210px\]{
    height: 210px;
}
.h-\[170px\]{
    height: 170px;
}
.h-\[24px\]{
    height: 24px;
}
.h-\[111px\]{
    height: 111px;
}
.h-\[22\.5px\]{
    height: 22.5px;
}
.h-auto{
    height: auto;
}
.h-\[313px\]{
    height: 313px;
}
.h-20{
    height: 5rem;
}
.h-32{
    height: 8rem;
}
.h-\[300px\]{
    height: 300px;
}
.h-\[254px\]{
    height: 254px;
}
.h-4{
    height: 1rem;
}
.max-h-0{
    max-height: 0px;
}
.max-h-\[340px\]{
    max-height: 340px;
}
.max-h-\[540px\]{
    max-height: 540px;
}
.min-h-screen{
    min-height: 100vh;
}
.min-h-\[400px\]{
    min-height: 400px;
}
.min-h-\[533px\]{
    min-height: 533px;
}
.min-h-\[150px\]{
    min-height: 150px;
}
.w-\[48px\]{
    width: 48px;
}
.w-fit{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.w-full{
    width: 100%;
}
.w-\[40px\]{
    width: 40px;
}
.w-\[90px\]{
    width: 90px;
}
.w-6{
    width: 1.5rem;
}
.w-9{
    width: 2.25rem;
}
.w-7{
    width: 1.75rem;
}
.w-\[200px\]{
    width: 200px;
}
.w-10{
    width: 2.5rem;
}
.w-8{
    width: 2rem;
}
.w-auto{
    width: auto;
}
.w-1\/2{
    width: 50%;
}
.w-\[170px\]{
    width: 170px;
}
.w-\[24px\]{
    width: 24px;
}
.w-\[111px\]{
    width: 111px;
}
.w-\[22\.5px\]{
    width: 22.5px;
}
.w-20{
    width: 5rem;
}
.w-\[100\%\]{
    width: 100%;
}
.w-4{
    width: 1rem;
}
.min-w-\[558px\]{
    min-width: 558px;
}
.min-w-\[250px\]{
    min-width: 250px;
}
.max-w-\[606px\]{
    max-width: 606px;
}
.max-w-\[559px\]{
    max-width: 559px;
}
.max-w-\[441px\]{
    max-width: 441px;
}
.max-w-\[713px\]{
    max-width: 713px;
}
.max-w-\[357px\]{
    max-width: 357px;
}
.max-w-xl{
    max-width: 36rem;
}
.flex-1{
    flex: 1 1 0%;
}
.shrink-0{
    flex-shrink: 0;
}
.-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));
}
.translate-y-\[-15\%\]{
    --tw-translate-y: -15%;
    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));
}
.translate-y-8{
    --tw-translate-y: 2rem;
    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));
}
.-translate-x-8{
    --tw-translate-x: -2rem;
    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));
}
@-webkit-keyframes spin{
    to{
        transform: rotate(360deg);
    }
}
@keyframes spin{
    to{
        transform: rotate(360deg);
    }
}
.animate-spin{
    -webkit-animation: spin 1s linear infinite;
            animation: spin 1s linear infinite;
}
.cursor-pointer{
    cursor: pointer;
}
.resize{
    resize: both;
}
.list-none{
    list-style-type: none;
}
.appearance-none{
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.grid-flow-row{
    grid-auto-flow: row;
}
.grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flex-row{
    flex-direction: row;
}
.flex-col{
    flex-direction: column;
}
.flex-col-reverse{
    flex-direction: column-reverse;
}
.place-items-center{
    place-items: center;
}
.items-end{
    align-items: flex-end;
}
.items-center{
    align-items: center;
}
.items-baseline{
    align-items: baseline;
}
.justify-start{
    justify-content: flex-start;
}
.justify-end{
    justify-content: flex-end;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.gap-4{
    gap: 1rem;
}
.gap-3{
    gap: 0.75rem;
}
.gap-1{
    gap: 0.25rem;
}
.gap-8{
    gap: 2rem;
}
.gap-6{
    gap: 1.5rem;
}
.gap-0{
    gap: 0px;
}
.gap-\[14px\]{
    gap: 14px;
}
.gap-5{
    gap: 1.25rem;
}
.gap-\[30px\]{
    gap: 30px;
}
.gap-10{
    gap: 2.5rem;
}
.gap-16{
    gap: 4rem;
}
.gap-2{
    gap: 0.5rem;
}
.gap-\[12px\]{
    gap: 12px;
}
.gap-12{
    gap: 3rem;
}
.gap-\[24px\]{
    gap: 24px;
}
.gap-\[10px\]{
    gap: 10px;
}
.gap-\[23px\]{
    gap: 23px;
}
.gap-x-3{
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
}
.gap-y-6{
    row-gap: 1.5rem;
}
.gap-x-6{
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
}
.gap-x-2\.5{
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
}
.gap-x-2{
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
}
.gap-x-\[8px\]{
    -moz-column-gap: 8px;
         column-gap: 8px;
}
.gap-x-4{
    -moz-column-gap: 1rem;
         column-gap: 1rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse));
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.justify-self-end{
    justify-self: end;
}
.overflow-auto{
    overflow: auto;
}
.overflow-hidden{
    overflow: hidden;
}
.truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.whitespace-nowrap{
    white-space: nowrap;
}
.rounded{
    border-radius: 0.25rem;
}
.rounded-xl{
    border-radius: 0.75rem;
}
.rounded-lg{
    border-radius: 0.5rem;
}
.rounded-full{
    border-radius: 9999px;
}
.rounded-md{
    border-radius: 0.375rem;
}
.rounded-r-lg{
    border-top-right-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}
.border{
    border-width: 1px;
}
.border-t{
    border-top-width: 1px;
}
.border-t-\[1\.5px\]{
    border-top-width: 1.5px;
}
.border-b{
    border-bottom-width: 1px;
}
.border-r{
    border-right-width: 1px;
}
.border-none{
    border-style: none;
}
.border-transparent{
    border-color: transparent;
}
.border-primary{
    --tw-border-opacity: 1;
    border-color: rgb(28 116 188 / var(--tw-border-opacity));
}
.border-gray-500{
    --tw-border-opacity: 1;
    border-color: rgb(107 114 128 / var(--tw-border-opacity));
}
.border-\[\#F5F5F5\]{
    --tw-border-opacity: 1;
    border-color: rgb(245 245 245 / var(--tw-border-opacity));
}
.border-\[\#E2E2E2\]{
    --tw-border-opacity: 1;
    border-color: rgb(226 226 226 / var(--tw-border-opacity));
}
.border-white{
    --tw-border-opacity: 1;
    border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-medium{
    --tw-border-opacity: 1;
    border-color: rgb(64 65 67 / var(--tw-border-opacity));
}
.border-t-primary{
    --tw-border-opacity: 1;
    border-top-color: rgb(28 116 188 / var(--tw-border-opacity));
}
.bg-white{
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-primary{
    --tw-bg-opacity: 1;
    background-color: rgb(28 116 188 / var(--tw-bg-opacity));
}
.bg-secondary{
    --tw-bg-opacity: 1;
    background-color: rgb(255 188 98 / var(--tw-bg-opacity));
}
.bg-\[\#FAFAFA\]{
    --tw-bg-opacity: 1;
    background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}
.bg-textDark{
    --tw-bg-opacity: 1;
    background-color: rgb(30 30 30 / var(--tw-bg-opacity));
}
.bg-backgroundColor{
    --tw-bg-opacity: 1;
    background-color: rgb(252 250 250 / var(--tw-bg-opacity));
}
.bg-\[\#6B0000\]{
    --tw-bg-opacity: 1;
    background-color: rgb(107 0 0 / var(--tw-bg-opacity));
}
.bg-transparent{
    background-color: transparent;
}
.bg-\[\#1C74BC\]{
    --tw-bg-opacity: 1;
    background-color: rgb(28 116 188 / var(--tw-bg-opacity));
}
.bg-\[\#1E1E1E\]{
    --tw-bg-opacity: 1;
    background-color: rgb(30 30 30 / var(--tw-bg-opacity));
}
.bg-\[\#F4F4F4\]{
    --tw-bg-opacity: 1;
    background-color: rgb(244 244 244 / var(--tw-bg-opacity));
}
.bg-\[\#FCFAFA\]{
    --tw-bg-opacity: 1;
    background-color: rgb(252 250 250 / var(--tw-bg-opacity));
}
.bg-\[\#A00707\]{
    --tw-bg-opacity: 1;
    background-color: rgb(160 7 7 / var(--tw-bg-opacity));
}
.bg-\[\#F2F6F6\]{
    --tw-bg-opacity: 1;
    background-color: rgb(242 246 246 / var(--tw-bg-opacity));
}
.bg-black{
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-gray-800{
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}
.bg-\[\#C9C9C9\]{
    --tw-bg-opacity: 1;
    background-color: rgb(201 201 201 / var(--tw-bg-opacity));
}
.bg-indigo-300{
    --tw-bg-opacity: 1;
    background-color: rgb(165 180 252 / var(--tw-bg-opacity));
}
.bg-opacity-10{
    --tw-bg-opacity: 0.1;
}
.fill-\[\#969696\]{
    fill: #969696;
}
.fill-\[\#A00707\]{
    fill: #A00707;
}
.object-contain{
    -o-object-fit: contain;
       object-fit: contain;
}
.object-cover{
    -o-object-fit: cover;
       object-fit: cover;
}
.object-center{
    -o-object-position: center;
       object-position: center;
}
.p-0{
    padding: 0px;
}
.p-3{
    padding: 0.75rem;
}
.p-6{
    padding: 1.5rem;
}
.p-4{
    padding: 1rem;
}
.p-8{
    padding: 2rem;
}
.p-\[58px\]{
    padding: 58px;
}
.p-\[18px\]{
    padding: 18px;
}
.py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.px-4{
    padding-left: 1rem;
    padding-right: 1rem;
}
.py-1{
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}
.px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.py-10{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.py-3{
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.py-2{
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.px-2{
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
.py-14{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.py-\[18px\]{
    padding-top: 18px;
    padding-bottom: 18px;
}
.py-\[6px\]{
    padding-top: 6px;
    padding-bottom: 6px;
}
.px-0{
    padding-left: 0px;
    padding-right: 0px;
}
.py-\[60px\]{
    padding-top: 60px;
    padding-bottom: 60px;
}
.py-\[30px\]{
    padding-top: 30px;
    padding-bottom: 30px;
}
.px-8{
    padding-left: 2rem;
    padding-right: 2rem;
}
.py-\[40px\]{
    padding-top: 40px;
    padding-bottom: 40px;
}
.px-10{
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}
.px-5{
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
.py-\[100px\]{
    padding-top: 100px;
    padding-bottom: 100px;
}
.py-\[12px\]{
    padding-top: 12px;
    padding-bottom: 12px;
}
.py-\[16px\]{
    padding-top: 16px;
    padding-bottom: 16px;
}
.px-\[32px\]{
    padding-left: 32px;
    padding-right: 32px;
}
.py-\[25px\]{
    padding-top: 25px;
    padding-bottom: 25px;
}
.px-\[10px\]{
    padding-left: 10px;
    padding-right: 10px;
}
.py-0{
    padding-top: 0px;
    padding-bottom: 0px;
}
.py-\[14px\]{
    padding-top: 14px;
    padding-bottom: 14px;
}
.py-5{
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
.py-\[80px\]{
    padding-top: 80px;
    padding-bottom: 80px;
}
.pt-10{
    padding-top: 2.5rem;
}
.pb-10{
    padding-bottom: 2.5rem;
}
.pt-\[60px\]{
    padding-top: 60px;
}
.pb-\[60px\]{
    padding-bottom: 60px;
}
.pb-16{
    padding-bottom: 4rem;
}
.pt-32{
    padding-top: 8rem;
}
.pt-\[120px\]{
    padding-top: 120px;
}
.pt-6{
    padding-top: 1.5rem;
}
.pt-0{
    padding-top: 0px;
}
.pb-0{
    padding-bottom: 0px;
}
.pr-0{
    padding-right: 0px;
}
.pl-16{
    padding-left: 4rem;
}
.pb-5{
    padding-bottom: 1.25rem;
}
.pb-4{
    padding-bottom: 1rem;
}
.pb-12{
    padding-bottom: 3rem;
}
.pt-\[40px\]{
    padding-top: 40px;
}
.pb-\[40px\]{
    padding-bottom: 40px;
}
.pt-\[160px\]{
    padding-top: 160px;
}
.pt-5{
    padding-top: 1.25rem;
}
.pb-3{
    padding-bottom: 0.75rem;
}
.pt-\[30px\]{
    padding-top: 30px;
}
.pt-\[12px\]{
    padding-top: 12px;
}
.pt-\[24px\]{
    padding-top: 24px;
}
.pt-\[8px\]{
    padding-top: 8px;
}
.pr-\[18px\]{
    padding-right: 18px;
}
.pb-\[20px\]{
    padding-bottom: 20px;
}
.pt-\[34px\]{
    padding-top: 34px;
}
.pt-\[16px\]{
    padding-top: 16px;
}
.pb-\[16px\]{
    padding-bottom: 16px;
}
.pr-3{
    padding-right: 0.75rem;
}
.pr-\[29px\]{
    padding-right: 29px;
}
.pt-\[18px\]{
    padding-top: 18px;
}
.pt-\[20px\]{
    padding-top: 20px;
}
.pl-4{
    padding-left: 1rem;
}
.pr-14{
    padding-right: 3.5rem;
}
.pl-\[25px\]{
    padding-left: 25px;
}
.pr-\[32px\]{
    padding-right: 32px;
}
.pb-\[120px\]{
    padding-bottom: 120px;
}
.pt-3{
    padding-top: 0.75rem;
}
.pr-2{
    padding-right: 0.5rem;
}
.pl-2{
    padding-left: 0.5rem;
}
.pb-\[130px\]{
    padding-bottom: 130px;
}
.pb-\[30px\]{
    padding-bottom: 30px;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.font-mont{
    font-family: Montserrat;
}
.text-base{
    font-size: 1rem;
    line-height: 1.5rem;
}
.text-3xl{
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.text-xl{
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.text-sm{
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.text-\[32px\]{
    font-size: 32px;
}
.text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.text-4xl{
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
}
.text-\[28px\]{
    font-size: 28px;
}
.text-xs{
    font-size: 0.75rem;
    line-height: 1rem;
}
.text-\[24px\]{
    font-size: 24px;
}
.text-\[14px\]{
    font-size: 14px;
}
.text-\[18px\]{
    font-size: 18px;
}
.text-\[12px\]{
    font-size: 12px;
}
.text-\[30px\]{
    font-size: 30px;
}
.font-bold{
    font-weight: 700;
}
.font-normal{
    font-weight: 400;
}
.font-semibold{
    font-weight: 600;
}
.font-medium{
    font-weight: 500;
}
.uppercase{
    text-transform: uppercase;
}
.lowercase{
    text-transform: lowercase;
}
.leading-snug{
    line-height: 1.375;
}
.leading-normal{
    line-height: 1.5;
}
.leading-tight{
    line-height: 1.25;
}
.leading-none{
    line-height: 1;
}
.leading-6{
    line-height: 1.5rem;
}
.tracking-widest{
    letter-spacing: 0.1em;
}
.tracking-wider{
    letter-spacing: 0.05em;
}
.tracking-wide{
    letter-spacing: 0.025em;
}
.text-darkColor{
    --tw-text-opacity: 1;
    color: rgb(8 13 19 / var(--tw-text-opacity));
}
.text-primary{
    --tw-text-opacity: 1;
    color: rgb(28 116 188 / var(--tw-text-opacity));
}
.text-white{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-tertiary{
    --tw-text-opacity: 1;
    color: rgb(0 84 80 / var(--tw-text-opacity));
}
.text-medium{
    --tw-text-opacity: 1;
    color: rgb(64 65 67 / var(--tw-text-opacity));
}
.text-black{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-slate-300{
    --tw-text-opacity: 1;
    color: rgb(203 213 225 / var(--tw-text-opacity));
}
.text-textDark{
    --tw-text-opacity: 1;
    color: rgb(30 30 30 / var(--tw-text-opacity));
}
.text-red-600{
    --tw-text-opacity: 1;
    color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-\[\#1E1E1E\]{
    --tw-text-opacity: 1;
    color: rgb(30 30 30 / var(--tw-text-opacity));
}
.text-\[\#080D13\]{
    --tw-text-opacity: 1;
    color: rgb(8 13 19 / var(--tw-text-opacity));
}
.text-\[\#969696\]{
    --tw-text-opacity: 1;
    color: rgb(150 150 150 / var(--tw-text-opacity));
}
.text-\[\#000000\]{
    --tw-text-opacity: 1;
    color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-\[\#A00707\]{
    --tw-text-opacity: 1;
    color: rgb(160 7 7 / var(--tw-text-opacity));
}
.text-gray-700{
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-red-500{
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-\[\#5A5A5A\]{
    --tw-text-opacity: 1;
    color: rgb(90 90 90 / var(--tw-text-opacity));
}
.text-\[\#FFFFFF\]{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-\[\#DDDDDD\]{
    --tw-text-opacity: 1;
    color: rgb(221 221 221 / var(--tw-text-opacity));
}
.text-indigo-700{
    --tw-text-opacity: 1;
    color: rgb(67 56 202 / var(--tw-text-opacity));
}
.underline{
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
}
.placeholder-gray-500::-moz-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity));
}
.placeholder-gray-500:-ms-input-placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity));
}
.placeholder-gray-500::placeholder{
    --tw-placeholder-opacity: 1;
    color: rgb(107 114 128 / var(--tw-placeholder-opacity));
}
.opacity-0{
    opacity: 0;
}
.opacity-100{
    opacity: 1;
}
.opacity-25{
    opacity: 0.25;
}
.opacity-75{
    opacity: 0.75;
}
.opacity-50{
    opacity: 0.5;
}
.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);
}
.shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
    outline-style: solid;
}
.outline-primary{
    outline-color: #1C74BC;
}
.drop-shadow-lg{
    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    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);
}
.grayscale{
    --tw-grayscale: grayscale(100%);
    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);
}
.filter{
    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{
    transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-all{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-shadow{
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.transition-colors{
    transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.duration-300{
    transition-duration: 300ms;
}
.duration-200{
    transition-duration: 200ms;
}
/* font size */
.display{
    font-size: 32px;
    font-weight: 600;
}
@media (min-width: 1024px){
    .display{
        font-size: 64px;
    }
}
.heading-1{
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 600;
    line-height: 1.375;
}
@media (min-width: 768px){
    .heading-1{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .heading-1{
        line-height: 1.25;
    }
}
@media (min-width: 1280px){
    .heading-1{
        font-size: 40px;
    }
}
.heading-2{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    line-height: 1.25;
}
@media (min-width: 640px){
    .heading-2{
        font-size: 28px;
    }
}
@media (min-width: 768px){
    .heading-2{
        font-size: 32px;
    }
    .heading-2{
        line-height: 1.5;
    }
}
.heading-3{
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
}
@media (min-width: 768px){
    .heading-3{
        font-size: 1.5rem;
        line-height: 2rem;
    }
}
.heading-4{
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    line-height: 1.25;
}
@media (min-width: 768px){
    .heading-4{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .heading-4{
        line-height: 1.5;
    }
}
.paragraph-1{
    font-size: 0.75rem;
    line-height: 1rem;
}
@media (min-width: 768px){
    .paragraph-1{
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}
.paragraph-2{
    font-size: 10px;
}
@media (min-width: 768px){
    .paragraph-2{
        font-size: 0.75rem;
        line-height: 1rem;
    }
}
@-webkit-keyframes pulse{
    50%{
        opacity: .5;
    }
}
@keyframes pulse{
    50%{
        opacity: .5;
    }
}
.hover\:animate-pulse:hover{
    -webkit-animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.hover\:cursor-pointer:hover{
    cursor: pointer;
}
.hover\:border:hover{
    border-width: 1px;
}
.hover\:border-medium:hover{
    --tw-border-opacity: 1;
    border-color: rgb(64 65 67 / var(--tw-border-opacity));
}
.hover\:bg-primaryHover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(153 17 17 / var(--tw-bg-opacity));
}
.hover\:bg-secondaryHover:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(255 176 70 / var(--tw-bg-opacity));
}
.hover\:bg-gray-600:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(75 85 99 / var(--tw-bg-opacity));
}
.hover\:bg-\[\#A00707\]:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(160 7 7 / var(--tw-bg-opacity));
}
.hover\:bg-primary:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(28 116 188 / var(--tw-bg-opacity));
}
.hover\:bg-backgroundColor:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(252 250 250 / var(--tw-bg-opacity));
}
.hover\:bg-indigo-400:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(129 140 248 / var(--tw-bg-opacity));
}
.hover\:text-white:hover{
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:text-gray-700:hover{
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity));
}
.hover\:text-indigo-800:hover{
    --tw-text-opacity: 1;
    color: rgb(55 48 163 / var(--tw-text-opacity));
}
.hover\:shadow-xl:hover{
    --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);
}
.hover\:shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:transition-all:hover{
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.focus\:outline-none:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.focus\:outline-primary:focus{
    outline-color: #1C74BC;
}
@media (min-width: 640px){
    .sm\:container{
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
    @media (min-width: 640px){
        .sm\:container{
            max-width: 640px;
            padding-right: 2rem;
            padding-left: 2rem;
        }
    }
    @media (min-width: 768px){
        .sm\:container{
            max-width: 768px;
        }
    }
    @media (min-width: 1024px){
        .sm\:container{
            max-width: 1024px;
            padding-right: 4rem;
            padding-left: 4rem;
        }
    }
    @media (min-width: 1280px){
        .sm\:container{
            max-width: 1280px;
            padding-right: 5rem;
            padding-left: 5rem;
        }
    }
    @media (min-width: 1536px){
        .sm\:container{
            max-width: 1536px;
            padding-right: 10rem;
            padding-left: 10rem;
        }
    }
    .sm\:col-span-2{
        grid-column: span 2 / span 2;
    }
    .sm\:mt-10{
        margin-top: 2.5rem;
    }
    .sm\:ml-4{
        margin-left: 1rem;
    }
    .sm\:h-\[60px\]{
        height: 60px;
    }
    .sm\:h-\[210px\]{
        height: 210px;
    }
    .sm\:h-auto{
        height: auto;
    }
    .sm\:h-\[350px\]{
        height: 350px;
    }
    .sm\:w-auto{
        width: auto;
    }
    .sm\:w-fit{
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .sm\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sm\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .sm\:flex-row{
        flex-direction: row;
    }
    .sm\:justify-end{
        justify-content: flex-end;
    }
    .sm\:gap-\[60px\]{
        gap: 60px;
    }
    .sm\:p-\[60px\]{
        padding: 60px;
    }
    .sm\:py-6{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .sm\:py-\[80px\]{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .sm\:pt-8{
        padding-top: 2rem;
    }
    .sm\:pt-\[100px\]{
        padding-top: 100px;
    }
    .sm\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .sm\:text-2xl{
        font-size: 1.5rem;
        line-height: 2rem;
    }
}
@media (min-width: 768px){
    .md\:static{
        position: static;
    }
    .md\:my-\[100px\]{
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .md\:mt-10{
        margin-top: 2.5rem;
    }
    .md\:mt-16{
        margin-top: 4rem;
    }
    .md\:mb-10{
        margin-bottom: 2.5rem;
    }
    .md\:mt-\[100px\]{
        margin-top: 100px;
    }
    .md\:mt-0{
        margin-top: 0px;
    }
    .md\:block{
        display: block;
    }
    .md\:flex{
        display: flex;
    }
    .md\:hidden{
        display: none;
    }
    .md\:h-\[69px\]{
        height: 69px;
    }
    .md\:h-\[70px\]{
        height: 70px;
    }
    .md\:h-\[230px\]{
        height: 230px;
    }
    .md\:h-\[250px\]{
        height: 250px;
    }
    .md\:h-\[240px\]{
        height: 240px;
    }
    .md\:h-\[100px\]{
        height: 100px;
    }
    .md\:h-\[400px\]{
        height: 400px;
    }
    .md\:min-h-\[463px\]{
        min-height: 463px;
    }
    .md\:min-h-\[240px\]{
        min-height: 240px;
    }
    .md\:min-h-\[533px\]{
        min-height: 533px;
    }
    .md\:w-5\/12{
        width: 41.666667%;
    }
    .md\:w-4\/12{
        width: 33.333333%;
    }
    .md\:w-1\/2{
        width: 50%;
    }
    .md\:w-6\/12{
        width: 50%;
    }
    .md\:w-7\/12{
        width: 58.333333%;
    }
    .md\:basis-2\/4{
        flex-basis: 50%;
    }
    .md\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .md\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:flex-row{
        flex-direction: row;
    }
    .md\:flex-row-reverse{
        flex-direction: row-reverse;
    }
    .md\:items-start{
        align-items: flex-start;
    }
    .md\:justify-start{
        justify-content: flex-start;
    }
    .md\:gap-6{
        gap: 1.5rem;
    }
    .md\:gap-0{
        gap: 0px;
    }
    .md\:gap-\[96px\]{
        gap: 96px;
    }
    .md\:gap-8{
        gap: 2rem;
    }
    .md\:gap-2{
        gap: 0.5rem;
    }
    .md\:gap-10{
        gap: 2.5rem;
    }
    .md\:gap-3{
        gap: 0.75rem;
    }
    .md\:gap-14{
        gap: 3.5rem;
    }
    .md\:gap-12{
        gap: 3rem;
    }
    .md\:gap-x-4{
        -moz-column-gap: 1rem;
             column-gap: 1rem;
    }
    .md\:gap-y-4{
        row-gap: 1rem;
    }
    .md\:p-4{
        padding: 1rem;
    }
    .md\:p-6{
        padding: 1.5rem;
    }
    .md\:py-\[30px\]{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .md\:py-0{
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .md\:py-10{
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    .md\:py-\[40px\]{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .md\:py-\[100px\]{
        padding-top: 100px;
        padding-bottom: 100px;
    }
    .md\:py-20{
        padding-top: 5rem;
        padding-bottom: 5rem;
    }
    .md\:py-\[80px\]{
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .md\:py-\[130px\]{
        padding-top: 130px;
        padding-bottom: 130px;
    }
    .md\:px-4{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .md\:py-6{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .md\:py-\[10px\]{
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .md\:py-\[120px\]{
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .md\:px-20{
        padding-left: 5rem;
        padding-right: 5rem;
    }
    .md\:px-6{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    .md\:py-4{
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    .md\:py-2{
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .md\:pt-\[30px\]{
        padding-top: 30px;
    }
    .md\:pb-\[60px\]{
        padding-bottom: 60px;
    }
    .md\:pt-10{
        padding-top: 2.5rem;
    }
    .md\:pb-0{
        padding-bottom: 0px;
    }
    .md\:pt-4{
        padding-top: 1rem;
    }
    .md\:pb-4{
        padding-bottom: 1rem;
    }
    .md\:pr-4{
        padding-right: 1rem;
    }
    .md\:pb-\[30px\]{
        padding-bottom: 30px;
    }
    .md\:pr-\[55px\]{
        padding-right: 55px;
    }
    .md\:pt-\[100px\]{
        padding-top: 100px;
    }
    .md\:pt-0{
        padding-top: 0px;
    }
    .md\:pb-\[40px\]{
        padding-bottom: 40px;
    }
    .md\:text-left{
        text-align: left;
    }
    .md\:text-\[42px\]{
        font-size: 42px;
    }
    .md\:text-2xl{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .md\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .md\:text-lg{
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
    .md\:text-\[32px\]{
        font-size: 32px;
    }
    .md\:text-4xl{
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    .md\:text-xl{
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .md\:heading-1{
        font-size: 1.875rem;
        line-height: 2.25rem;
    }
    .md\:heading-1{
        font-weight: 600;
    }
    .md\:heading-1{
        line-height: 1.375;
    }
    @media (min-width: 768px){
        .md\:heading-1{
            font-size: 1.875rem;
            line-height: 2.25rem;
        }
    }
    @media (min-width: 768px){
        .md\:heading-1{
            line-height: 1.25;
        }
    }
    @media (min-width: 1280px){
        .md\:heading-1{
            font-size: 40px;
        }
    }
}
@media (min-width: 1024px){
    .lg\:mx-0{
        margin-left: 0px;
        margin-right: 0px;
    }
    .lg\:mt-\[16px\]{
        margin-top: 16px;
    }
    .lg\:ml-auto{
        margin-left: auto;
    }
    .lg\:ml-\[40px\]{
        margin-left: 40px;
    }
    .lg\:mt-\[168px\]{
        margin-top: 168px;
    }
    .lg\:mt-8{
        margin-top: 2rem;
    }
    .lg\:mt-0{
        margin-top: 0px;
    }
    .lg\:mb-0{
        margin-bottom: 0px;
    }
    .lg\:mr-0{
        margin-right: 0px;
    }
    .lg\:mb-\[40px\]{
        margin-bottom: 40px;
    }
    .lg\:block{
        display: block;
    }
    .lg\:flex{
        display: flex;
    }
    .lg\:h-auto{
        height: auto;
    }
    .lg\:h-\[181px\]{
        height: 181px;
    }
    .lg\:h-\[557px\]{
        height: 557px;
    }
    .lg\:w-1\/2{
        width: 50%;
    }
    .lg\:w-4\/12{
        width: 33.333333%;
    }
    .lg\:w-8\/12{
        width: 66.666667%;
    }
    .lg\:w-\[40\%\]{
        width: 40%;
    }
    .lg\:w-\[500px\]{
        width: 500px;
    }
    .lg\:w-\[53\%\]{
        width: 53%;
    }
    .lg\:w-2\/5{
        width: 40%;
    }
    .lg\:w-4\/6{
        width: 66.666667%;
    }
    .lg\:w-\[380px\]{
        width: 380px;
    }
    .lg\:w-\[364px\]{
        width: 364px;
    }
    .lg\:w-\[267px\]{
        width: 267px;
    }
    .lg\:w-\[60\%\]{
        width: 60%;
    }
    .lg\:w-\[30\%\]{
        width: 30%;
    }
    .lg\:min-w-\[120px\]{
        min-width: 120px;
    }
    .lg\:flex-1{
        flex: 1 1 0%;
    }
    .lg\:basis-1\/4{
        flex-basis: 25%;
    }
    .lg\:grid-cols-4{
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .lg\:grid-cols-1{
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .lg\:grid-cols-3{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .lg\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lg\:flex-row{
        flex-direction: row;
    }
    .lg\:gap-8{
        gap: 2rem;
    }
    .lg\:gap-6{
        gap: 1.5rem;
    }
    .lg\:py-3{
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }
    .lg\:py-\[120px\]{
        padding-top: 120px;
        padding-bottom: 120px;
    }
    .lg\:py-2{
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .lg\:py-\[22px\]{
        padding-top: 22px;
        padding-bottom: 22px;
    }
    .lg\:pt-10{
        padding-top: 2.5rem;
    }
    .lg\:pl-0{
        padding-left: 0px;
    }
    .lg\:pt-0{
        padding-top: 0px;
    }
    .lg\:pt-\[146px\]{
        padding-top: 146px;
    }
    .lg\:pt-\[16px\]{
        padding-top: 16px;
    }
    .lg\:text-\[42px\]{
        font-size: 42px;
    }
    .lg\:text-\[40px\]{
        font-size: 40px;
    }
    .lg\:text-2xl{
        font-size: 1.5rem;
        line-height: 2rem;
    }
    .lg\:text-base{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .lg\:text-\[18px\]{
        font-size: 18px;
    }
    .lg\:text-\[32px\]{
        font-size: 32px;
    }
}
@media (min-width: 1280px){
    .xl\:flex{
        display: flex;
    }
    .xl\:hidden{
        display: none;
    }
    .xl\:h-\[205px\]{
        height: 205px;
    }
    .xl\:w-2\/6{
        width: 33.333333%;
    }
    .xl\:min-w-\[315px\]{
        min-width: 315px;
    }
    .xl\:grid-cols-2{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* WP Blocks */
.wp-block-cover {
    border-radius: 0.25rem;
}
body {
    font-family: 'Montserrat', sans-serif;
}
body.disable-v-scroll {
    overflow: hidden;
}
/* Section Wrapper */
.section-wrapper{
    width: 100%;
}
/* chips */
.chips{
    border-radius: 9999px;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
#new-post-card .post-card .wrapper{
    border-radius: 0.375rem;
}
#new-post-card .post-card .wrapper .sileleft{
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}
.content h6{
    margin-bottom: 10px;
    font-family: Montserrat;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    --tw-text-opacity: 1;
    color: rgb(0 84 80 / var(--tw-text-opacity));
}
.content h2{
    margin-bottom: 1rem;
    font-family: Montserrat;
    font-size: 1.5rem;
    line-height: 2rem;
    line-height: 1.5;
    --tw-text-opacity: 1;
    color: rgb(8 13 19 / var(--tw-text-opacity));
}
@media (min-width: 640px){
    .content h2{
        font-size: 28px;
    }
}
@media (min-width: 768px){
    .content h2{
        font-size: 32px;
    }
}
.content p{
    font-family: Montserrat;
    font-size: 0.875rem;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: rgb(64 65 67 / var(--tw-text-opacity));
}
.ginput_container input{
    border-radius: 9999px;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(150 150 150 / var(--tw-border-opacity));
}
.ginput_container input:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.ginput_container input {
    padding-left:16px!important;
    padding-right:16px!important;
}
.ginput_container textarea{
    border-radius: 1rem;
    border-width: 1px;
    --tw-border-opacity: 1;
    border-color: rgb(150 150 150 / var(--tw-border-opacity));
}
.ginput_container textarea:focus{
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.ginput_container textarea{
    padding-left:16px!important;
    padding-right:16px!important;
}
.gform_footer.top_label{
    display: flex;
    justify-content: flex-end;
}
.gform_footer.top_label input{
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: rgb(28 116 188 / var(--tw-bg-opacity));
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-family: Montserrat;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
}
.gform_footer.top_label input:hover{
    --tw-bg-opacity: 1;
    background-color: rgb(153 17 17 / var(--tw-bg-opacity));
}
.gform_footer.top_label input:active{
    --tw-bg-opacity: 1;
    background-color: rgb(195 49 49 / var(--tw-bg-opacity));
}
