/*! tailwindcss v2.2.4 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
::before,
::after {
    box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

html {
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
    margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
    font-family: system-ui,
    -apple-system, /* Firefox supports this but not yet `system-ui` */ 'Segoe UI',
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
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)
*/

hr {
    height: 0; /* 1 */
    color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/


strong {
    font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code {
    font-family: ui-monospace,
    SFMono-Regular,
    Consolas,
    'Liberation Mono',
    Menlo,
    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.
*/

/*
Tabular data
============
*/

/**
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)
*/

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button { /* 1 */
    text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='submit'] {
    -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
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.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


dl,
h1,
h2,
h3,
hr,
p {
    margin: 0;
}

button {
    background-color: transparent;
    background-image: none;
}


ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
    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"; /* 1 */
    line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
    font-family: inherit;
    line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
    box-sizing: border-box; /* 1 */
    border-width: 0; /* 2 */
    border-style: solid; /* 2 */
    border-color: currentColor; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

hr {
    border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
    border-style: solid;
}

input::-moz-placeholder {
    opacity: 1;
    color: #9ca3af;
}

input:-ms-input-placeholder {
    opacity: 1;
    color: #9ca3af;
}

input::placeholder {
    opacity: 1;
    color: #9ca3af;
}

button,
[role="button"] {
    cursor: pointer;
}

h1,
h2,
h3 {
    font-size: inherit;
    font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
    color: inherit;
    text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input {
    padding: 0;
    line-height: inherit;
    color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */


code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */

img,
svg {
    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 {
    max-width: 100%;
    height: auto;
}

*, ::before, ::after {
    --tw-border-opacity: 1;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

html {
    scroll-behavior: smooth;
    font-family: "Somar";
}

.container {
    width: 100%;
    padding-right: 24px;
    padding-left: 24px;
}

@media (min-width: 426px) {
    .container {
        width: calc(100% - 16px) !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
        margin-right: auto !important;
        margin-left: auto !important;
    }
}

@media (min-width: 800px) {
    .container {
        width: calc(100% - 80px) !important;
    }
}

@media (min-width: 1024px) {
    .container {
        padding-right: 40px !important;
        padding-left: 40px !important;
        width: 960px !important;
    }
}

@media (min-width: 1280px) {
    .container {
        padding-right: 60px !important;
        padding-left: 60px !important;
        width: 1024px !important;
    }
}

@media (min-width: 1440px) {
    .container {
        padding-right: 60px !important;
        padding-left: 60px !important;
        width: 1300px !important;
    }
}

/* scrollbar Firefox */

html {
    scrollbar-width: thin;
    /* "auto" or "thin" */
    scrollbar-color: #B73D25 #F5F5F5;
    /* scroll thumb and track */
}

/* width scrollbar */

::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

/* Track scrollbar */

/* Handle  scrollbar*/

/* Handle scrollbar on hover */

.home-clip-path {
    -webkit-clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%);
    clip-path: polygon(0 25%, 100% 0, 100% 75%, 0 100%);
}

.home-sm-clip-path {
    -webkit-clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
}

.retail-clip-path {
    -webkit-clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

#sticky-nav {
    transition: all 1s ease-out;
    background-color: transparent;
    top: -100px;
}


#sticky-nav-2 {
    transition: all 1s ease-out;
    background-color: transparent;
    top: -150px;
}

#sticky-nav.inverted {
    transition: all 1s ease-out;
    background-color: #FFF;
    top: 0px;
}

#sticky-nav-mobile {
    transition: all 1s ease-out;
    background-color: transparent;
    top: -100px;
}

#sticky-nav-mobile.inverted {
    transition: all 1s ease-out;
    background-color: #FFF;
    top: 0px;
}

#sticky-tabs_section {
    transition: all 1s ease-out;
    background-color: transparent;
    top: -100px;
}

#sticky-tabs_section.inverted {
    transition: all 1s ease-out;
    background-color: #FFF;
    top: 0px;
}

svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

.active svg {
    transform: rotate(90deg);
}

path {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

path:nth-child(1) {
    transform-origin: 36% 40%;
}

path:nth-child(2) {
    stroke-dasharray: 29 299;
}

path:nth-child(3) {
    transform-origin: 35% 63%;
}

path:nth-child(4) {
    stroke-dasharray: 29 299;
}

path:nth-child(5) {
    transform-origin: 61% 52%;
}

path:nth-child(6) {
    transform-origin: 62% 52%;
}

.active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

.active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
}

.active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
}

.active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
}

.show-more-button:hover .show-more-arrow {
    -webkit-animation: arrow-effect .6s infinite;
    animation: arrow-effect .6s infinite;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

.inset-0 {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
}

.top-0 {
    top: 0px;
}

.top-20 {
    top: 5rem;
}

.bottom-0 {
    bottom: 0px;
}

.left-0 {
    left: 0px;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-4 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.my-6 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-5 {
    margin-top: 1.25rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-7 {
    margin-top: 1.75rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-9 {
    margin-top: 2.25rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-14 {
    margin-top: 3.5rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mt-24 {
    margin-top: 6rem;
}

.mt-28 {
    margin-top: 7rem;
}

.mt-32 {
    margin-top: 8rem;
}

.mt-36 {
    margin-top: 9rem;
}

.mt-40 {
    margin-top: 10rem;
}

.mt-44 {
    margin-top: 11rem;
}

.mt-48 {
    margin-top: 12rem;
}

.mt-52 {
    margin-top: 13rem;
}

.mt-56 {
    margin-top: 14rem;
}

.-mt-10 {
    margin-top: -2.5rem;
}

.mr-0 {
    margin-right: 0px;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.mr-8 {
    margin-right: 2rem;
}

.mr-10 {
    margin-right: 2.5rem;
}

.mr-12 {
    margin-right: 10.5rem;
}

.mr-auto {
    margin-right: auto;
}

.-mr-7 {
    margin-right: -1.75rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-32 {
    margin-bottom: 8rem;
}

.mb-64 {
    margin-bottom: 16rem;
}

.ml-0 {
    margin-left: 0px;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.ml-4 {
    margin-left: 1rem;
}

.ml-10 {
    margin-left: 2.5rem;
}

.ml-auto {
    margin-left: auto;
}

.-ml-2 {
    margin-left: -0.5rem;
}

.-ml-7 {
    margin-left: -1.75rem;
}

.box-content {
    box-sizing: content-box;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.h-3 {
    height: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-8 {
    height: 2rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-24 {
    height: 6rem;
}

.h-28 {
    height: 7rem;
}

.h-40 {
    height: 10rem;
}

.h-52 {
    height: 13rem;
}

.h-72 {
    height: 18rem;
}

.h-80 {
    height: 20rem;
}

.h-full {
    height: 100%;
}

.h-screen {
    height: 100vh;
}

.max-h-80 {
    max-height: 20rem;
}

.max-h-96 {
    max-height: 24rem;
}

.min-h-35\/4 {
    min-height: 85vh;
}

.min-h-3\/4 {
    min-height: 75vh;
}

.min-h-2\/4 {
    min-height: 50vh;
}

.w-2 {
    width: 0.5rem;
}

.w-3 {
    width: 0.75rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-48 {
    width: 12rem;
}

.w-1\/2 {
    width: 50%;
}

.w-1\/3 {
    width: 33.333333%;
}

.w-2\/3 {
    width: 66.666667%;
}

.w-1\/4 {
    width: 25%;
}

.w-1\/12 {
    width: 8.333333%;
}

.w-2\/12 {
    width: 16.666667%;
}

.w-4\/12 {
    width: 33.333333%;
}

.w-8\/12 {
    width: 66.666667%;
}

.w-10\/12 {
    width: 83.333333%;
}

.w-full {
    width: 100%;
}

.max-w-xs {
    max-width: 20rem;
}

.max-w-sm {
    max-width: 24rem;
}

.max-w-md {
    max-width: 30rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-xxxxxs {
    max-width: 10rem;
}

.transform {
    --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;
    transform: translateX(var(--tw-translate-x)) translateY(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));
}

.origin-top {
    transform-origin: top;
}

.scale-0 {
    --tw-scale-x: 0;
    --tw-scale-y: 0;
}

.group:hover .group-hover\:scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
}

.group:hover .group-hover\:scale-105 {
    --tw-scale-x: 1.05;
    --tw-scale-y: 1.05;
}

.scale-y-0 {
    --tw-scale-y: 0;
}

@-webkit-keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@-webkit-keyframes pulse {
    50% {
        opacity: .5;
    }
}

@keyframes pulse {
    50% {
        opacity: .5;
    }
}

@-webkit-keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: none;
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

@-webkit-keyframes arrow-effect {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-80%);
    }
}

@keyframes arrow-effect {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-80%);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
        animation-timing-function: cubic-bezier(0, 0, 0, 1);
    }

    50% {
        transform: translateY(-10%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
}

@keyframes bounce-slow {
    0%, 100% {
        transform: translateY(0);
        -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
        animation-timing-function: cubic-bezier(0, 0, 0, 1);
    }

    50% {
        transform: translateY(-10%);
        -webkit-animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
}

@-webkit-keyframes translate3D-1 {
    0%, 100% {
        transform: translate3D(0, 0, 0);
    }

    50% {
        transform: translate3D(100px, -100px, 0);;
    }
}

@keyframes translate3D-1 {
    0%, 100% {
        transform: translate3D(0, 0, 0);
    }

    50% {
        transform: translate3D(100px, -100px, 0);;
    }
}

@-webkit-keyframes translate3D-2 {
    0%, 100% {
        transform: translate3D(0, 0, 0);
    }

    50% {
        transform: translate3D(-100px, 100px, 0);;
    }
}

@keyframes translate3D-2 {
    0%, 100% {
        transform: translate3D(0, 0, 0);
    }

    50% {
        transform: translate3D(-100px, 100px, 0);;
    }
}

@-webkit-keyframes rotate-1 {
    0%, 100% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);;
    }

    50% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);;
    }
}

@keyframes rotate-1 {
    0%, 100% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);;
    }

    50% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);;
    }
}

@-webkit-keyframes rotate-2 {
    0%, 100% {
        transform: rotate(360deg) translateX(70px) rotate(-360deg);;
    }

    50% {
        transform: rotate(0deg) translateX(70px) rotate(0deg);;
    }
}

@keyframes rotate-2 {
    0%, 100% {
        transform: rotate(360deg) translateX(70px) rotate(-360deg);;
    }

    50% {
        transform: rotate(0deg) translateX(70px) rotate(0deg);;
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.animate-arrow {
    -webkit-animation: arrow-effect .6s infinite;
    animation: arrow-effect .6s infinite;
}

.animate-ping-slow {
    -webkit-animation: ping 1.1s linear infinite;
    animation: ping 1.1s linear infinite;
}

.cursor-pointer {
    cursor: pointer;
}

.select-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.resize {
    resize: both;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.flex-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.items-stretch {
    align-items: stretch;
}

.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-6 {
    gap: 1.5rem;
}

.gap-y-16 {
    row-gap: 4rem;
}

.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));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-y-reverse: 0;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-ATIB-gray-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-divide-opacity: 1;
    border-color: rgba(224, 224, 224, var(--tw-divide-opacity));
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.rounded {
    border-radius: 0.25rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-tl-11xl {
    border-top-left-radius: 12rem;
}

.rounded-tl-8xl {
    border-top-left-radius: 6rem;
}

.rounded-tr-11xl {
    border-top-right-radius: 12rem;
}

.rounded-tr-8xl {
    border-top-right-radius: 6rem;
}

.rounded-br-11xl {
    border-bottom-right-radius: 12rem;
}

.border-2 {
    border-width: 2px;
}

.border-4 {
    border-width: 4px;
}

.border {
    border-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-r-2 {
    border-right-width: 2px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-l-2 {
    border-left-width: 2px;
}

.border-dashed {
    border-style: dashed;
}

.border-transparent {
    border-color: transparent;
}

.border-blue-400 {
    --tw-border-opacity: 1;
    border-color: rgba(96, 165, 250, var(--tw-border-opacity));
}

.border-primary {
    border-color: rgb(234, 10, 42, 1);
}

.border-primary-2 {
    --tw-border-opacity: 1;
    border-color: rgba(202, 97, 40, var(--tw-border-opacity));
}

.border-ATIB-gray-2 {
    --tw-border-opacity: 1;
    border-color: rgba(243, 243, 243, var(--tw-border-opacity));
}

.border-ATIB-gray-7 {
    --tw-border-opacity: 1;
    border-color: rgba(47, 47, 47, var(--tw-border-opacity));
}

.border-ATIB-gray-8 {
    --tw-border-opacity: 1;
    border-color: rgba(224, 224, 224, var(--tw-border-opacity));
}

.group:hover .group-hover\:border-primary-10 {
    --tw-border-opacity: 1;
    border-color: rgba(230, 193, 193, var(--tw-border-opacity));
}

.hover\:border-black:hover {
    --tw-border-opacity: 1;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity));
}

.hover\:border-white:hover {
    --tw-border-opacity: 1;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.hover\:border-ATIB-gray-6:hover {
    --tw-border-opacity: 1;
    border-color: rgba(154, 154, 154, var(--tw-border-opacity));
}

.bg-black {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.bg-primary {
    background-color: rgba(234, 10, 42, 1);
}

.bg-primary-2 {
    --tw-bg-opacity: 1;
    background-color: rgba(202, 97, 40, var(--tw-bg-opacity));
}

.bg-primary-6 {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 245, 239, var(--tw-bg-opacity));
}

.bg-primary-7 {
    --tw-bg-opacity: 1;
    background-color: rgb(234, 10, 42, var(--tw-bg-opacity));
}

.bg-ATIB-gray-4 {
    --tw-bg-opacity: 1;
    background-color: rgba(250, 250, 250, var(--tw-bg-opacity));
}

.bg-ATIB-gray-9 {
    --tw-bg-opacity: 1;
    background-color: rgba(244, 244, 244, var(--tw-bg-opacity));
}

.bg-ATIB-green-1 {
    --tw-bg-opacity: 1;
    background-color: rgba(41, 111, 101, var(--tw-bg-opacity));
}

.bg-ATIB-green-2 {
    --tw-bg-opacity: 1;
    background-color: rgba(28, 92, 83, var(--tw-bg-opacity));
}


.bg-ATIB-blue-1 {
    --tw-bg-opacity: 1;
    background-color: rgb(0, 37, 67, var(--tw-bg-opacity));
}

.hover\:bg-black:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}

.hover\:bg-white:hover {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.hover\:bg-primary:hover {
    background-color: rgba(234, 10, 42, 1);
}

.bg-opacity-50 {
    --tw-bg-opacity: 0.5;
}

.bg-cover {
    background-size: cover;
}

.bg-fixed {
    background-attachment: fixed;
}

.bg-center {
    background-position: center;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.fill-current {
    fill: currentColor;
}

.stroke-current {
    stroke: currentColor;
}

.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-1 {
    padding: 0.25rem;
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-11 {
    padding-left: 2.75rem;
    padding-right: 2.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-14 {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-28 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-16 {
    padding-top: 4rem;
}

.pr-0 {
    padding-right: 0px;
}

.pr-3 {
    padding-right: 0.75rem;
}

.pr-7 {
    padding-right: 1.75rem;
}

.pr-8 {
    padding-right: 2rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pb-11 {
    padding-bottom: 2.75rem;
}

.pb-44 {
    padding-bottom: 11rem;
}

.pl-4 {
    padding-left: 1rem;
}

.pl-6 {
    padding-left: 1.5rem;
}

.pl-7 {
    padding-left: 1.75rem;
}

.pl-8 {
    padding-left: 2rem;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-normal {
    font-weight: 400;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-black {
    font-weight: 900;
}

.leading-7 {
    line-height: 1.75rem;
}

.leading-8 {
    line-height: 2rem;
}

.leading-9 {
    line-height: 2.25rem;
}

.leading-10 {
    line-height: 2.5rem;
}

.leading-normal {
    line-height: 1.5;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.text-black {
    --tw-text-opacity: 1;
    color: rgba(0, 0, 0, var(--tw-text-opacity));
}

.text-white {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-primary {
    color: rgba(234, 10, 42, 1);
}

.text-primary-2 {
    --tw-text-opacity: 1;
    color: rgb(234, 10, 42, var(--tw-text-opacity));
}

.text-primary-3 {
    --tw-text-opacity: 1;
    color: rgba(246, 232, 224, var(--tw-text-opacity));
}

.text-primary-4 {
    --tw-text-opacity: 1;
    color: rgba(251, 236, 233, var(--tw-text-opacity));
}

.text-primary-5 {
    --tw-text-opacity: 1;
    color: rgba(246, 190, 157, var(--tw-text-opacity));
}

.text-primary-7 {
    --tw-text-opacity: 1;
    color: rgba(184, 61, 36, var(--tw-text-opacity));
}

.text-primary-8 {
    --tw-text-opacity: 1;
    color: rgba(245, 156, 138, var(--tw-text-opacity));
}

.text-primary-9 {
    --tw-text-opacity: 1;
    color: rgba(235, 190, 181, var(--tw-text-opacity));
}

.text-ATIB-gray-1 {
    --tw-text-opacity: 1;
    color: rgba(105, 105, 105, var(--tw-text-opacity));
}

.text-ATIB-gray-3 {
    --tw-text-opacity: 1;
    color: rgba(65, 65, 65, var(--tw-text-opacity));
}

.text-ATIB-gray-5 {
    --tw-text-opacity: 1;
    color: rgba(151, 151, 151, var(--tw-text-opacity));
}

.text-ATIB-gray-6 {
    --tw-text-opacity: 1;
    color: rgba(154, 154, 154, var(--tw-text-opacity));
}

.text-ATIB-green-1 {
    --tw-text-opacity: 1;
    color: rgba(41, 111, 101, var(--tw-text-opacity));
}

.text-ATIB-green-3 {
    --tw-text-opacity: 1;
    color: rgba(148, 207, 211, var(--tw-text-opacity));
}

.text-ATIB-green-4 {
    --tw-text-opacity: 1;
    color: rgba(197, 241, 235, var(--tw-text-opacity));
}

.hover\:text-white:hover {
    --tw-text-opacity: 1;
    color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:text-primary:hover {
    color: rgba(234, 10, 42, 1);
}

.hover\:text-primary-10:hover {
    --tw-text-opacity: 1;
    color: rgba(230, 193, 193, var(--tw-text-opacity));
}

.hover\:text-ATIB-gray-4:hover {
    --tw-text-opacity: 1;
    color: rgba(250, 250, 250, var(--tw-text-opacity));
}

.opacity-0 {
    opacity: 0;
}

.hover\:opacity-75:hover {
    opacity: 0.75;
}

*, ::before, ::after {
    --tw-shadow: 0 0 #0000;
}

.shadow {
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow:hover {
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

*, ::before, ::after {
    --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/);
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgba(59, 130, 246, 0.5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
}

.transition {
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-150 {
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 426px) {

    .xs\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .xs\:col-span-3 {
        grid-column: span 3 / span 3;
    }

    .xs\:mx-10 {
        margin-left: 2.5rem;
        margin-right: 2.5rem;
    }

    .xs\:my-0 {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .xs\:h-32 {
        height: 8rem;
    }

    .xs\:h-96 {
        height: 24rem;
    }

    .xs\:grid-cols-7 {
        grid-template-columns: repeat(7, minmax(0, 1fr));
    }

    .xs\:flex-row {
        flex-direction: row;
    }

    .xs\:rounded-tl-11xl {
        border-top-left-radius: 12rem;
    }

    .xs\:rounded-tr-11xl {
        border-top-right-radius: 12rem;
    }

    .xs\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media (min-width: 640px) {

    .sm\:mt-0 {
        margin-top: 0px;
    }

    .sm\:mt-6 {
        margin-top: 1.5rem;
    }

    .sm\:mt-12 {
        margin-top: 3rem;
    }

    .sm\:mt-14 {
        margin-top: 3.5rem;
    }

    .sm\:mt-16 {
        margin-top: 4rem;
    }

    .sm\:mt-20 {
        margin-top: 5rem;
    }

    .sm\:mt-32 {
        margin-top: 8rem;
    }

    .sm\:mt-40 {
        margin-top: 10rem;
    }

    .sm\:mt-44 {
        margin-top: 11rem;
    }

    .sm\:mt-56 {
        margin-top: 14rem;
    }

    .sm\:mt-60 {
        margin-top: 15rem;
    }

    .sm\:mt-72 {
        margin-top: 18rem;
    }

    .sm\:mr-4 {
        margin-right: 1rem;
    }

    .sm\:mr-auto {
        margin-right: auto;
    }

    .sm\:ml-auto {
        margin-left: auto;
    }

    .sm\:flex {
        display: flex;
    }

    .sm\:h-14 {
        height: 3.5rem;
    }

    .sm\:h-48 {
        height: 12rem;
    }

    .sm\:h-52 {
        height: 13rem;
    }

    .sm\:h-72 {
        height: 18rem;
    }

    .sm\:h-auto {
        height: auto;
    }

    .sm\:max-h-36 {
        max-height: 9rem;
    }

    .sm\:min-h-25\/4 {
        min-height: 60vh;
    }

    .sm\:min-h-full {
        min-height: 100%;
    }

    .sm\:w-14 {
        width: 3.5rem;
    }

    .sm\:w-auto {
        width: auto;
    }

    .sm\:w-1\/2 {
        width: 50%;
    }

    .sm\:w-1\/12 {
        width: 8.333333%;
    }

    .sm\:w-3\/12 {
        width: 25%;
    }

    .sm\:w-4\/12 {
        width: 33.333333%;
    }

    .sm\:w-5\/12 {
        width: 41.666667%;
    }

    .sm\:w-6\/12 {
        width: 50%;
    }

    .sm\:w-7\/12 {
        width: 58.333333%;
    }

    .sm\:w-8\/12 {
        width: 66.666667%;
    }

    .sm\:w-11\/12 {
        width: 91.666667%;
    }

    .sm\:max-w-max {
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-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\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:gap-2 {
        gap: 0.5rem;
    }

    .sm\:gap-10 {
        gap: 2.5rem;
    }

    .sm\:gap-y-10 {
        row-gap: 2.5rem;
    }

    .sm\:border-b-0 {
        border-bottom-width: 0px;
    }

    .sm\:p-8 {
        padding: 2rem;
    }

    .sm\:p-10 {
        padding: 2.5rem;
    }

    .sm\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .sm\:pt-4 {
        padding-top: 1rem;
    }

    .sm\:pr-4 {
        padding-right: 1rem;
    }

    .sm\:pb-0 {
        padding-bottom: 0px;
    }

    .sm\:text-justify {
        text-align: justify;
    }

    .sm\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .sm\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .sm\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .sm\:leading-9 {
        line-height: 2.25rem;
    }

    .sm\:leading-10 {
        line-height: 2.5rem;
    }
}

@media (min-width: 800px) {

    .md\:mt-0 {
        margin-top: 0px;
    }

    .md\:mt-3 {
        margin-top: 0.75rem;
    }

    .md\:mt-6 {
        margin-top: 1.5rem;
    }

    .md\:mt-12 {
        margin-top: 3rem;
    }

    .md\:mt-32 {
        margin-top: 10rem;
    }

    .md\:mt-64 {
        margin-top: 16rem;
    }

    .md\:mr-0 {
        margin-right: 0px;
    }

    .md\:mr-auto {
        margin-right: auto;
    }

    .md\:ml-auto {
        margin-left: auto;
    }

    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:hidden {
        display: none;
    }

    .md\:h-64 {
        height: 16rem;
    }

    .md\:min-h-2\/4 {
        min-height: 50vh;
    }

    .md\:w-3\/12 {
        width: 25%;
    }

    .md\:w-4\/12 {
        width: 33.333333%;
    }

    .md\:w-5\/12 {
        width: 41.666667%;
    }

    .md\:w-6\/12 {
        width: 50%;
    }

    .md\:w-7\/12 {
        width: 58.333333%;
    }

    .md\:w-9\/12 {
        width: 75%;
    }

    .md\:max-w-lg {
        max-width: 32rem;
    }

    .md\:max-w-3xl {
        max-width: 48rem;
    }

    .md\:max-w-5xl {
        max-width: 64rem;
    }

    .md\:max-w-full {
        max-width: 100%;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:gap-4 {
        gap: 1rem;
    }

    .md\:p-8 {
        padding: 2rem;
    }

    .md\:py-14 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .md\:py-60 {
        padding-top: 15rem;
        padding-bottom: 15rem;
    }

    .md\:pr-10 {
        padding-right: 2.5rem;
    }

    .md\:pb-36 {
        padding-bottom: 9rem;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) {

    .lg\:mx-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .lg\:mt-0 {
        margin-top: 0px;
    }

    .lg\:mt-4 {
        margin-top: 1rem;
    }

    .lg\:mt-6 {
        margin-top: 1.5rem;
    }

    .lg\:mt-8 {
        margin-top: 2rem;
    }

    .lg\:mt-60 {
        margin-top: 15rem;
    }

    .lg\:mr-24 {
        margin-right: 6rem;
    }

    .lg\:ml-24 {
        margin-left: 6rem;
    }

    .lg\:block {
        display: block;
    }

    .lg\:flex {
        display: flex;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:h-80 {
        height: 20rem;
    }

    .lg\:max-h-96 {
        max-height: 24rem;
    }

    .lg\:w-1\/2 {
        width: 50%;
    }

    .lg\:w-1\/3 {
        width: 33.333333%;
    }

    .lg\:w-2\/3 {
        width: 66.666667%;
    }

    .lg\:w-4\/12 {
        width: 33.333333%;
    }

    .lg\:w-5\/12 {
        width: 41.666667%;
    }

    .lg\:w-6\/12 {
        width: 50%;
    }

    .lg\:w-7\/12 {
        width: 58.333333%;
    }

    .lg\:w-8\/12 {
        width: 66.666667%;
    }

    .lg\:w-full {
        width: 100%;
    }

    .lg\:max-w-lg {
        max-width: 32rem;
    }

    .lg\:max-w-xl {
        max-width: 36rem;
    }

    .lg\:max-w-xxxxs {
        max-width: 12rem;
    }

    .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\:flex-col {
        flex-direction: column;
    }

    .lg\:items-center {
        align-items: center;
    }

    .lg\:justify-between {
        justify-content: space-between;
    }

    .lg\:gap-8 {
        gap: 2rem;
    }

    .lg\:gap-28 {
        gap: 7rem;
    }

    .lg\:p-10 {
        padding: 2.5rem;
    }

    .lg\:p-16 {
        padding: 4rem;
    }

    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .lg\:py-14 {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }

    .lg\:pt-8 {
        padding-top: 2rem;
    }

    .lg\:pr-0 {
        padding-right: 0px;
    }

    .lg\:pr-4 {
        padding-right: 1rem;
    }

    .lg\:pr-12 {
        padding-right: 3rem;
    }

    .lg\:pl-4 {
        padding-left: 1rem;
    }

    .lg\:pl-12 {
        padding-left: 3rem;
    }

    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .lg\:leading-9 {
        line-height: 2.25rem;
    }
}

@media (min-width: 1280px) {

    .xl\:my-0 {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .xl\:mt-6 {
        margin-top: 1.5rem;
    }

    .xl\:mt-20 {
        margin-top: 5rem;
    }

    .xl\:-mt-12 {
        margin-top: -3rem;
    }

    .xl\:h-96 {
        height: 24rem;
    }

    .xl\:w-1\/4 {
        width: 25%;
    }

    .xl\:w-2\/4 {
        width: 50%;
    }

    .xl\:max-w-3xl {
        max-width: 48rem;
    }

    .xl\:max-w-4xl {
        max-width: 56rem;
    }

    .xl\:max-w-full {
        max-width: 100%;
    }

    .xl\:max-w-xxxs {
        max-width: 14rem;
    }

    .xl\:flex-row {
        flex-direction: row;
    }

    .xl\:justify-end {
        justify-content: flex-end;
    }

    .xl\:gap-6 {
        gap: 1.5rem;
    }

    .xl\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }

    .xl\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .xl\:pb-14 {
        padding-bottom: 3.5rem;
    }

    .xl\:text-left {
        text-align: left;
    }

    .xl\:text-right {
        text-align: right;
    }

    .xl\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .xl\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .xl\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .xl\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .xl\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .xl\:leading-10 {
        line-height: 2.5rem;
    }
}

@media (min-width: 1440px) {

    .\32xl\:-mt-20 {
        margin-top: -5rem;
    }

    .\32xl\:flex {
        display: flex;
    }
}


.iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.iframe-container iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



