@font-face {
    font-family: "TheSans";
    font-style: bold;
    font-weight: 700;
    src: url("../fonts/TheSans-Bold.otf") format("opentype");
}

@font-face {
    font-family: "TheSans";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/The-Sans-Plain.otf") format("opentype");

}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "TheSans";
    scroll-behavior: smooth;


}

.TheSans-bold {
    font-family: "TheSans" !important;
    font-weight: 700 !important;
}

.swiper-pagination {
    display: absolute;
    font-weight: 400 !important;

}

.swiper-pagination-bullet {
    margin: 2px 0;
    border-radius: 50%;
    background-color: #d9d9d9;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    color: #fff;
    background: #f0b624;
}

.active-mobile::after {
    content: "";
    width: 70px;
    height: 4px;
    background-color: #f0b624;
    position: absolute;
    border-radius: 10px 0px;
    bottom: -5px;
    right: 0;
}

input:focus,
textarea:focus {
    border: #13120c;
    outline-color: #13120c;
}

.search-tag:hover {
    background: #13120c;
    color: #fff;
}

.active {
    background-color: #f0b624;
    padding: 8px 24px;
    border-radius: 12px;
    color: #fff;
}

.search-tag:hover img {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7454%) hue-rotate(221deg) brightness(103%) contrast(102%);
}

.banner-arrow:hover {
    background: #13120c;
}

.banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100vh;
}

.card {
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.card-animation {
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
}

.card-animation h2,
.card-animation img,
.card-animation div {
    z-index: 1;
    color: black;
}

@keyframes rotBGimg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.card-animation::after {
    content: "";
    position: absolute;
    background: #fff;
    inset: 5px;
    border-radius: 15px;
}

.card-animation:hover:before {
    content: "";
    position: absolute;
    width: 100px;
    background-color: #f0b624;
    height: 130%;
    transition: all 0.2s linear;
    background-color: #13120c;
    animation: rotBGimg 3.5s linear infinite;
}

.flip-card {
    background-color: transparent;
    width: 274px;
    height: 274px;
    perspective: 1000px;
    border-radius: 30px;
    padding: 10px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.flip-card-back {
    width: 270px;
    height: 310px;
    transform: rotateY(180deg);
}

/* tooltip settings 👇 */

.copy {
    /* button */
    --button-bg: #353434;
    --button-hover-bg: #464646;
    --button-text-color: #cccccc;
    --button-hover-text-color: #8bb9fe;
    --button-border-radius: 10px;
    --button-diameter: 36px;
    --button-outline-width: 1px;
    --button-outline-color: rgb(141, 141, 141);
    /* tooltip */
    --tooltip-bg: #f4f3f3;
    --toolptip-border-radius: 4px;
    --tooltip-font-family: Menlo, Roboto Mono, monospace;
    /* 👆 this field should not be empty */
    --tooltip-font-size: 12px;
    /* 👆 this field should not be empty */
    --tootip-text-color: rgb(50, 50, 50);
    --tooltip-padding-x: 7px;
    --tooltip-padding-y: 7px;
    --tooltip-offset: 8px;
    /* --tooltip-transition-duration: 0.3s; */
    /* 👆 if you need a transition,
    just remove the comment,
    but I didn't like the transition :| */
}

.copy {
    box-sizing: border-box;
    width: var(--button-diameter);
    height: var(--button-diameter);
    border-radius: var(--button-border-radius);
    background-color: transparent;
    color: #13120c;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
}

.copy svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkmark {
    display: none;
}

/* actions */

.copy:hover .tooltip,
.copy:focus:not(:focus-visible) .tooltip {
    opacity: 1;
    visibility: visible;
    top: calc((100% + var(--tooltip-offset)) * -1);
}

.copy:focus:not(:focus-visible) .tooltip::before {
    content: attr(data-text-end);
}

.copy:focus:not(:focus-visible) .clipboard {
    display: none;
}

.copy:focus:not(:focus-visible) .checkmark {
    display: block;
}

.copy:hover,
.copy:focus {
    outline: none;
    border: none;
}

.rect {
    margin-top: 30px;
    position: absolute;
    bottom: 100px;
    margin: 0px !important;
    padding: 0;
    width: 200px;
    height: 120px;
    background-color: #78787c4d;

    transform: translate(-40%, -40%);
    pointer-events: none;

    opacity: 1;
}

.zoom {
    opacity: 0;
    top: 10px;
    border-radius: 30px;
}

.rect-active {
    opacity: 1;
}

.sendbtn span {
    display: block;
    margin-left: 0.3em;
    transition: all 0.3s ease-in-out;
}

.sendbtn img {
    display: block;
    transform-origin: center center;
    transition: transform 0.3s ease-in-out;
}

.sendbtn:hover .svg-wrapper {
    animation: fly-1 0.6s ease-in-out infinite alternate;
}

.sendbtn:hover img {
    transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.sendbtn:hover span {
    transform: translateX(5em);
    visibility: hidden;
}

.sendbtn:active {
    transform: scale(0.95);
}

@keyframes fly-1 {
    from {
        transform: translateY(0.1em);
    }

    to {
        transform: translateY(-0.1em);
    }
}

:root {
    --duration: 2s;
    --outer-delay: 0.2s;
    --main-delay: 0.3s;
    --ease: cubic-beizer(0.17, 0.67, 0.34, 0.99);
    --image-size: 140vh;
}

/* *,
  *::before,
  *::after {
    padding: 0;
    margin: 0;
    position: relative;
    transform-origin: center center;
  } */

.scene {
    overflow: hidden;
    position: relative;
    /* cursor: pointer; */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* display: flex;
    align-items: center;
    justify-content: center; */
}



.swiper {
    width: 100%;
    height: 100%;
}

.slide-swiper {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-swiper img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.image {
    position: absolute;
    overflow: hidden;
}

.background,
.-clip {
    height: 100%;
    width: 100%;
    position: absolute;
}

.background::before {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    height: 100%;
    width: 100%;
    display: block;
}

.-rounded {
    border-radius: 100%;
    overflow: hidden;
}

.-outer {
    transform: scale(0.4);
}

.-outer .background {
    transform: scale(2.5);
}

.-outer::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.3);
}

.-inner {
    transform: scale(0.2);
}

.-inner .background {
    transform: scale(5.05);
}

.scene .image .background::before {
    animation-duration: var(--duration);
    animation-delay: var(--main-delay);
}

.scene .image:nth-child(2) .background::before {
    animation-delay: var(--outer-delay);
}

.scene .image:last-child .background::before {
    animation-delay: 0s;
}

/* .background::before {
    background-image: url("../imgs/boxes.webp");
}

.slide:nth-child(3) .background::before {
    background-image: url("../imgs/hero.webp");
} */

.slide {
    transition: opacity var(--duration);
}

.slide[data-current="true"] {
    opacity: 1;
    --main-delay: 0.5s;
}

.slide[data-current="true"] .image .background::before {
    animation-name: animate-in;
}

.slide:not([data-current="true"]) {
    opacity: 0;
}

.slide:not([data-current="true"]) .image .background::before {
    animation-name: animate-out;
}

@keyframes animate-out {
    from {
        transform: rotateZ(0deg) scale(1);
    }

    to {
        transform: rotateZ(360deg) scale(5);
    }
}

@keyframes animate-in {
    from {
        transform: rotateZ(0deg) scale(15);
    }

    to {
        transform: rotateZ(360deg) scale(1);
    }
}

.slide[data-current="true"] .info h2 {
    animation: slideIn 1s ease-out forwards;
}

.slide[data-current="true"] .info p {
    animation: slideOut 1s ease-out forwards;
}

/* .info {
          opacity: 0;
          transform: translateY(50px);
          animation: slideIn 0.5s ease-out forwards;
        } */

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-192);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 0;
        transform: translateY(192px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btns {
    position: absolute;
    z-index: 999;
    bottom: 20px;
    right: 20px;
}

.section-snap {
    overflow-y: scroll;
    height: 100vh;
    scroll-snap-type: mandatory;
    scroll-snap-points-y: repeat(100vh);
    scroll-snap-type: y mandatory;
}

.section {
    /* height: 100vh; */
    scroll-snap-align: start;
    position: relative;
}

body::-webkit-scrollbar {
    display: none;
}

@media not all and (min-width: 768px) {
    ::-webkit-scrollbar {
        width: 12px;
        /* width of the scrollbar */
        height: 12px;
        /* height of the scrollbar */
        display: none;
    }
}

::-webkit-scrollbar {
    /* width: 12px; */
    /* width of the scrollbar */
    /* height: 12px; */
    /* height of the scrollbar */
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
    /* background: #f0b624; */
    /* color of the scrollbar thumb */
    /* border-radius: 10px; */
    /* roundness of the scrollbar thumb */
}

/* Customize the scrollbar thumb when hovered */
::-webkit-scrollbar-thumb:hover {
    /* background: #f0b624; */
    /* color of the scrollbar thumb when hovered */
}

/* Customize the scrollbar track */
::-webkit-scrollbar-track {
    /* background: #13120c; */
    /* color of the scrollbar track */
    /* border-radius: 10px;  */
}

/* Customize the scrollbar track when hovered */
::-webkit-scrollbar-track:hover {
    /* background: #13120c; */
    /* color of the scrollbar track when hovered */
}

#current-slide-indicator {
    transition: height 0.5s ease-in-out;
}

.line-1 {
    border-left: 2px solid rgba(255, 255, 255, 0.75);
    white-space: nowrap;
    overflow: hidden;
    box-sizing: content-box;
}

/* Animation */
.anim-typewriter {
    width: 0;
    animation: typewriter 10s steps(27) infinite normal both,
        blinkTextCursor 500ms steps(60) infinite normal;
}

@keyframes typewriter {
    0% {
        width: 0;
    }

    50% {
        width: 16rem;
    }

    100% {
        width: 0;
    }
}

@keyframes blinkTextCursor {
    from {
        border-left-color: rgba(255, 255, 255, 0.75);
    }

    to {
        border-left-color: transparent;
    }
}

/* Add a class for the rotation animation */
.changeSlide {
    animation: rotate 1.5s ease-in-out;
}

/* Define the rotation animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    /* Adjust to your design */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it covers everything */
}

.loader svg {
    width: 20%;
    height: 20%;
    /* background-color: #13120c; */
    /* Adjust to your design */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it covers everything */
}

.loader__eye1,
.loader__eye2,
.loader__mouth1,
.loader__mouth2 {
    animation: eye1 3s ease-in-out infinite;
}

.loader__eye1,
.loader__eye2 {
    transform-origin: 64px 64px;
}

.loader__eye2 {
    animation-name: eye2;
}

.loader__mouth1 {
    animation-name: mouth1;
}

.loader__mouth2 {
    animation-name: mouth2;
    visibility: hidden;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: hsl(var(--hue), 90%, 10%);
        --fg: hsl(var(--hue), 90%, 90%);
    }
}

@keyframes eye1 {
    from {
        transform: rotate(-260deg) translate(0, -56px);
    }

    50%,
    60% {
        animation-timing-function: cubic-bezier(0.17, 0, 0.58, 1);
        transform: rotate(-40deg) translate(0, -56px) scale(1);
    }

    to {
        transform: rotate(225deg) translate(0, -56px) scale(0.35);
    }
}

@keyframes eye2 {
    from {
        transform: rotate(-260deg) translate(0, -56px);
    }

    50% {
        transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
    }

    52.5% {
        transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1, 0);
    }

    55%,
    70% {
        animation-timing-function: cubic-bezier(0, 0, 0.28, 1);
        transform: rotate(40deg) translate(0, -56px) rotate(-40deg) scale(1);
    }

    to {
        transform: rotate(150deg) translate(0, -56px) scale(0.4);
    }
}

@keyframes eyeBlink {

    from,
    25%,
    75%,
    to {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(0);
    }
}

@keyframes mouth1 {
    from {
        animation-timing-function: ease-in;
        stroke-dasharray: 0 351.86;
        stroke-dashoffset: 0;
    }

    25% {
        animation-timing-function: ease-out;
        stroke-dasharray: 175.93 351.86;
        stroke-dashoffset: 0;
    }

    50% {
        animation-timing-function: steps(1, start);
        stroke-dasharray: 175.93 351.86;
        stroke-dashoffset: -175.93;
        visibility: visible;
    }

    75%,
    to {
        visibility: hidden;
    }
}

@keyframes mouth2 {
    from {
        animation-timing-function: steps(1, end);
        visibility: hidden;
    }

    50% {
        animation-timing-function: ease-in-out;
        visibility: visible;
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -351.86;
    }
}

lite-youtube {
    background-color: #000;
    position: relative;
    display: block;
    contain: content;
    background-position: center center;
    background-size: cover;
    cursor: pointer;
    border-radius: 16px;
}

/* gradient */
lite-youtube::before {
    content: attr(data-title);
    display: block;
    position: absolute;
    top: 0;
    /* Pixel-perfect port of YT's gradient PNG, using https://github.com/bluesmoon/pngtocss plus optimizations */
    background-image: linear-gradient(180deg,
            rgb(0 0 0 / 67%) 0%,
            rgb(0 0 0 / 54%) 14%,
            rgb(0 0 0 / 15%) 54%,
            rgb(0 0 0 / 5%) 72%,
            rgb(0 0 0 / 0%) 94%);
    height: 99px;
    width: 100%;
    font-family: "YouTube Noto", Roboto, Arial, Helvetica, sans-serif;
    color: hsl(0deg 0% 93.33%);
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    font-size: 18px;
    padding: 25px 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

lite-youtube:hover::before {
    color: white;
}

/* responsive iframe with a 16:9 aspect ratio
      thanks https://css-tricks.com/responsive-iframes/
  */
lite-youtube::after {
    content: "";
    display: block;
    padding-bottom: calc(100% / (16 / 9));
}

lite-youtube>iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 0;
}

/* play button */
lite-youtube>.lty-playbtn {
    display: block;
    /* Make the button element cover the whole area for a large hover/click target… */
    width: 100%;
    height: 100%;
    /* …but visually it's still the same size */
    background: no-repeat center/68px 48px;
    /* YT's actual play button svg */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 68 48"><path d="M66.52 7.74c-.78-2.93-2.49-5.41-5.42-6.19C55.79.13 34 0 34 0S12.21.13 6.9 1.55c-2.93.78-4.63 3.26-5.42 6.19C.06 13.05 0 24 0 24s.06 10.95 1.48 16.26c.78 2.93 2.49 5.41 5.42 6.19C12.21 47.87 34 48 34 48s21.79-.13 27.1-1.55c2.93-.78 4.64-3.26 5.42-6.19C67.94 34.95 68 24 68 24s-.06-10.95-1.48-16.26z" fill="red"/><path d="M45 24 27 14v20" fill="white"/></svg>');
    position: absolute;
    cursor: pointer;
    z-index: 1;
    filter: grayscale(100%);
    transition: filter 0.1s cubic-bezier(0, 0, 0.2, 1);
    border: 0;
}

lite-youtube:hover>.lty-playbtn,
lite-youtube .lty-playbtn:focus {
    filter: none;
}

/* Post-click styles */
lite-youtube.lyt-activated {
    cursor: unset;
}

lite-youtube.lyt-activated::before,
lite-youtube.lyt-activated>.lty-playbtn {
    opacity: 0;
    pointer-events: none;
}

.lyt-visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.mousey {
    display: block;
    width: 3px;
    padding: 10px 15px;
    height: 40px;
    border: 2px solid #f0b624;
    border-radius: 25px;
    opacity: 0.75;
    box-sizing: content-box;
    animation-name: mousey;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
}

.scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #f0b624;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
    animation-iteration-count: infinite;
}

@keyframes mousey {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/*  */

.success-animation .checkmark {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #f0b624;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #f0b624;
    animation: fill 0.4s ease-in-out 0.4s forwards,
        scale 0.3s ease-in-out 0.9s both;
    position: relative;
    top: 5px;
    right: 5px;
    margin: 0 auto;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #f0b624;
    fill: #fff;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {

    0%,
    100% {
        transform: none;
    }

    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

.shadowable-form select {
    box-shadow: 0px 0px 8px 0px #D1D1D140 !important;
}

.shadowable-form input {
    box-shadow: 0px 0px 8px 0px #D1D1D140 !important;
}

/* .swiper-buttons {
    bottom: 0 !important;
    right: 0 !important;

    transform: rotate(-90deg);
    transform-origin: left center;
    background-color: white;

    box-shadow: 0px 0px 8px 0px #D1D1D140 !important;
    border-radius: 999px !important;
    padding: 1.5rem !important;

} */

.swiper-buttons:after {
    font-size: 14px !important;
    color: #f0b624;
}


.swiper-buttons {

    background-color: transparent;

    box-shadow: 0px 0px 8px 0px #D1D1D140 !important;
    border-radius: 999px !important;
    padding: 1.5rem !important;


}

.swiper-buttons:after {
    font-size: 14px !important;
    color: #f0b624;
}


.swiper-brand-prev:after,
.swiper-brand-next:after,
.swiper-advantage-next:after,
.swiper-advantage-prev:after,

.swiper-agent-next:after,
.swiper-agent-prev:after {
    font-size: 24px !important;
    color: #f0b624;
}

.brand-swiper {
    height: 200px !important;
}

.advantage-swiper,
.agent-swiper {
    height: 204px !important;
}



.shadow-hover {
    transition: box-shadow .3s;

}

.shadow-hover:hover {
    box-shadow: 0 0 8px rgba(33, 33, 33, .2);

}

[x-cloak] {
    display: none !important;
}

.text-shadow {

    text-shadow: white 0px 0px 10px;

}

.img-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    margin-top: -1px;
    animation: zoom 0.3s ease-in-out;
    z-index: 9999;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.img-modal img {
    width: 50%;
    object-fit: cover;
    background: #ffff;
    border-radius: 0.5rem;
}

.closeBtn {
    color: rgba(255, 255, 255, 0.87);
    font-size: 25px;
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.closeBtn:hover {
    color: rgb(255, 255, 255);
}

@media screen and (max-width: 768px) {
    .img-modal img {
        width: 90%;
    }
}



::-ms-input-placeholder {
    /* Edge 12-18 */
    font-size: 13px !important;
    font-weight: 400 !important;
}

::placeholder {

    font-size: 13px !important;
    font-weight: 400 !important;

}