:root {
    --bg: #FFF9ED;
    --dark-primary: #333333;
    --dark-secondary: #1F1F1F;
    --text-muted: #808080;
}

@property --a {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 100%;
}

@property --b {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}

* {
    margin: 0;
    padding: 0;
    font-family: inter;
    /* cursor: none !important; */
}

body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
    height: max-content;
    background: var(--bg);
}


body:hover>#trailer {
    opacity: 1;
}

#trailer {
    height: 32px;
    width: 32px;
    backdrop-filter: invert(1);

    border-radius: 2000px;

    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 1000000;

    pointer-events: none;
    opacity: 0;
    transition: opacity 500ms ease;

    display: none;
    place-items: center;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

main.index {
    width: 100vw;
    height: max-content;
    margin-top: 10vh;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    z-index: 3;
}

main .heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7vh;
    font-family: Libre Baskerville;
    font-size: 2.5vw;
    font-weight: 400;
}

main .heading span {
    font-family: inherit;
}

main .heading span:nth-child(2) {
    font-weight: 700;
}

main .tagline {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 1.3vw;
    margin-top: 2vh;
}

main .buttons {
    margin-top: 2vh;
    display: flex;
    gap: 1.4vw;
}

.btnConnect,
.btnDiscover {
    height: 6vh;
    border-radius: 100vw;
    font-size: 0.85vw;
    cursor: pointer;
}

.btnDiscover span {
    margin: 0 0.5vw 0 1.25vw;
}

.btnConnect {
    height: calc(6vh + 0.2vw);
    background-color: var(--dark-secondary);
    color: var(--bg);
    width: 12.5vw;
    position: relative;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    transition: background 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btnConnect span {
    left: 1.75vw;
    width: max-content;
    position: absolute;
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btnConnect:hover span {
    left: calc(100% - 1.75vw);
    transform: translateX(-100%);
}

.btnConnect:hover .btnIcon:nth-of-type(2) {
    transform: translateY(-50%) translateX(calc(100% + 0.5vw));
}

.btnConnect:hover .btnIcon:nth-of-type(1) {
    transform: translateY(-50%) translateX(0%);
}

.btnConnect .btnIcon {
    position: absolute;
    right: 0.5vw;
    top: 50%;
    transform: translateY(-50%) translateX(0%);
    height: calc(100% - 1vw);
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    margin-right: 0vw;
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btnConnect.contrasted {
    background: transparent;
    color: black;
    border: 0.1vw solid var(--dark-secondary);
}

.btnConnect .btnIcon:nth-of-type(1) {
    left: 0.5vw;
    transform: translateY(-50%) translateX(calc(-1*(100% + 0.5vw)));
}

.btnDiscover {
    border: 0.1vw solid var(--dark-secondary);
    position: relative;
    overflow: hidden;
}

.btnDiscover::after {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    background: linear-gradient(90deg, rgba(31, 31, 31, 1) 0%, rgba(31, 31, 31, 1) 84%, rgba(31, 31, 31, 0.46) 93%, rgba(31, 31, 31, 0) 100%);
    z-index: -1;
    width: 120%;
    height: 100%;
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btnDiscover:hover::after {
    left: 0;
}

.btnDiscover:hover {
    color: white;
}

.btnDiscover:hover .btnIcon img {
    filter: invert(1);
    transform: rotate(360deg);
}

.btnIcon {
    height: calc(100% - 1vw);
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    margin-right: 0.5vw;
}

.btnConnect .btnIcon {
    background: var(--dark-primary);
    border: 1px solid #4D4D4D;
}

.btnDiscover .btnIcon img {
    height: 75%;
    transition: all 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btnIcon img {
    height: 35%;
    width: auto;
}

.carouselCont {
    min-height: 100vh;
    max-height: 100vh;
    min-width: 100vw;
    max-width: 100vw;
    top: 7vh;
    left: 0;
    position: absolute;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.carousel {
    width: 100vw;
    height: max-content;
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: scroll;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.carouselCont::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 249, 237, 1) 0%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 85%, rgba(255, 249, 237, 1) 100%);
    pointer-events: none;
}

.carouselImg {
    height: 50vh;
    scroll-snap-align: center;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.illutionTop {
    content: "";
    position: absolute;
    z-index: 20;
    left: 50%;
    top: 25vh;
    transform: translateY(calc(-100% + 1.85%)) translateX(-50%);
    border-radius: 10000vw;
    width: 400vw;
    aspect-ratio: 1 / 1;
    pointer-events: none;
    background: var(--bg);
}

.illutionBottom {
    content: "";
    position: absolute;
    z-index: 20;
    left: 50%;
    bottom: 25vh;
    transform: translateY(calc(100% - 1.85%)) translateX(-50%);
    border-radius: 10000vw;
    width: 400vw;
    aspect-ratio: 1 / 1;
    pointer-events: none;
    background: var(--bg);
}

.carousel div {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: calc(100vw / 7);
    max-width: calc(100vw / 7);
}

.stats {
    width: 100vw;
    position: absolute;
    top: calc(65vh + 50px);
    z-index: 3;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 20vh;
    padding-bottom: 15vh;
}

.statistic {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.statValue {
    font-family: Libre Baskerville;
    font-weight: 700;
    font-size: 1.8vw;
    margin-bottom: 0.5vh;
}

.statValue span {
    font-family: inherit;
}

.statDesc {
    font-family: inter;
    font-size: 1.4vw;
}

section.about {
    width: 100vw;
    height: 31.25vw;
    background: #292929;
    margin-top: 100vh;
    position: sticky;
    z-index: 21;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    padding: 0 7.5vw;
}

.content {
    width: 47.5%;
    margin-right: 5%;
    height: 78%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    box-sizing: border-box;
}

.contentHeading {
    font-family: Libre Baskerville;
    font-weight: 700;
    font-size: 1.7vw;
    position: relative;
    margin-bottom: 4vh;
}

.contentHeading div {
    font-weight: inherit;
    font-family: inherit;
}

.contentHeading>div {
    overflow: hidden;
}

@keyframes appearDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0%);
    }
}

.contentHeading span {
    color: #CC907B;
    font-family: Libre Baskerville;
}

.contentHeadingLine {
    position: absolute;
    content: "";
    left: 0;
    bottom: -2vh;
    width: 25%;
    height: 1px;
    background: white;
}


@keyframes contentHeadingLine {
    from {
        width: 0%;
    }

    to {
        width: 25%;
    }
}

.contentText {
    color: var(--text-muted);
    font-size: 0.85vw;
    margin-bottom: 5vh;
}

.contentText div {
    font-size: inherit;
    color: inherit;
}

.contentText>div {
    overflow: hidden;
}

@keyframes appearUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0%);
    }
}

.contentFeatures {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
}

.contentFeatureDiv {
    width: 47.5%;
}

.contentFeatureHeading {
    font-size: 1.2vw;
    margin-bottom: 0.75vh;
}


.contentFeatureText {
    color: var(--text-muted);
    font-size: 0.85vw;
}

@keyframes appearRight {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0%);
    }
}

.aboutImageCont {
    width: max-content;
    height: 78%;
    aspect-ratio: 776 / 472;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aboutImg {
    height: 100%;
    width: 32%;
    border-radius: 1.5vw;
    overflow: hidden;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.aboutImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.aboutImg1 img {
    object-position: left top;
}

.aboutImg2 img {
    object-position: center top;
}

.aboutImg3 img {
    object-position: right top;
}

.aboutImageCont:hover .aboutImg {
    width: calc(100% / 3);
    border-radius: 0;
}

.wiggly {
    width: 100vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6vh;
    margin-bottom: 15vh;
    margin-top: 0;
}

.wigglyHeading {
    font-family: Libre Baskerville;
    font-weight: 700;
    font-size: 1.7vw;
    color: #1A0600;
    margin-bottom: 0.5vh;
}

.wigglyTagline {
    font-size: 0.8vw;
    color: var(--text-muted);
    margin-bottom: 4vh;
}

.wigglyCont {
    width: 75vw;
    margin-top: calc(-0.45vw - 1px);
}

.wigglyCont:nth-child(1) {
    margin-top: 0;
}

.leftCont,
.rightCont {
    width: 100%;
    aspect-ratio: 1260/387.6;
    border-radius: 100vw;
    position: relative;
}

.leftCont {
    background: conic-gradient(transparent 0 var(--a), #1A0600 var(--a) 100%);
}

.rightCont {
    background: conic-gradient(#1A0600 0 var(--b), transparent var(--b) 100%);
}

.wiggly2 .rightCont {
    animation: borderRight 600ms forwards linear paused;
}

.wiggly3 .leftCont {
    animation: borderLeft 600ms forwards linear paused;
}

.wiggly4 .rightCont {
    animation: borderRight 600ms forwards linear paused;
}

.wiggly5 .leftCont {
    animation: borderLeft 600ms forwards linear paused;
}

@keyframes borderLeft {
    from {
        --a: 100%;
    }

    to {
        --a: 50%;
    }
}

@keyframes borderRight {
    from {
        --b: 0%;
    }

    to {
        --b: 50%;
    }
}

.leftCont .borderHider {
    right: 0;
}

.rightCont .borderHider {
    right: 50%;
}

.wigglyContent {
    width: calc(100% - 0.9vw);
    height: calc(100% - 0.9vw);
    background: var(--bg);
    position: absolute;
    border-radius: 100vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;
}

.rightCont .wigglyContent {
    flex-direction: row-reverse;
}

.wigglyCont img {
    height: calc(100% - 20px);
    width: auto;
}

.wigglyContentText {
    margin: 0 25px;
    height: 100%;
    box-sizing: border-box;
    padding: 10px 0;
    width: 35%;
    transition: margin 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.iconCont {
    border-radius: 0.4vw;
    background: var(--dark-primary);
    height: 4.25vw;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1vh;
}

.iconCont>img {
    height: 50%;
    width: auto;
}

.rightCont .wigglyContent .bigImg {
    border-bottom-right-radius: 100vw;
    border-top-right-radius: 100vw;
    animation: fadeInLeft 750ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards paused;
}

.rightCont .wigglyContent .wigglyContentText {
    animation: fadeInRight 750ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards paused;
}

.leftCont .wigglyContent .wigglyContentText {
    animation: fadeInLeft 750ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards paused;
}

.leftCont .wigglyContent .bigImg {
    border-bottom-left-radius: 100vw;
    border-top-left-radius: 100vw;
    animation: fadeInRight 750ms cubic-bezier(0.075, 0.82, 0.165, 1) forwards paused;
}

.bigImg {
    border-radius: 8vw;
    height: calc(100% - 20px);
    aspect-ratio: 599 / 384;
    overflow: hidden;
}

.bigImg img {
    height: 100%;
    width: auto;
    transition: transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bigImg:hover img {
    transform: scale(1.1);
}

.bigImg:hover+.wigglyContentText {
    margin: 0 50px;
}

.wigglyContentHeading {
    font-family: Libre Baskerville;
    font-weight: 700;
    color: #1A0600;
    font-size: 1.45vw;
    margin-bottom: 1vh;
}

.wigglyContentTagline {
    font-size: 0.825vw;
}

@keyframes fadeInRight {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0px);
        opacity: 1;
    }
}

.categories {
    width: 100vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 7vh;
}

.categoryGrid {
    width: 80vw;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5vw;
}

.categoryItem {
    width: 19.625vw;
    aspect-ratio: 394 / 356;
    position: relative;
    overflow: hidden;
}

.categoryItem:hover img {
    transform: scale(1.1);
}

.categoryItem:hover::after {
    bottom: -100%;
}

.categoryItem:hover .categoryName {
    bottom: -2vw;
}

.categoryItem::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(to bottom, #00000000, #1F1F1FB2);
    transition: bottom 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.categoryName {
    position: absolute;
    bottom: 1.25vw;
    left: 1.5vw;
    color: white;
    font-size: 1vw;
    z-index: 2;
    transition: bottom 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.categoryItem img {
    width: 100%;
    height: auto;
    transition: transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

section.certificates {
    width: 100vw;
    aspect-ratio: 1920 / 362;
    background: url(../images/certsBg.webp);
    background-position: center;
    margin-bottom: 7vh;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

section.certificates::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85), rgba(48, 34, 29, 0.85));
}

.certsContent {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 2.25vw 0;
}

.certsHeading {
    font-family: Libre Baskerville;
    font-weight: 700;
    font-size: 1.7vw;
    color: white;
}

.certsLogo {
    width: 90vw;
    height: 60%;
    display: flex;
    justify-content: space-evenly;
}

.certsLogo img {
    height: 100%;
    width: auto;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.certsLogo img:hover {
    transform: scale(1.1);
}

section.collection {
    width: 100vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10vh;
    position: relative;
}

.collectionCarousel {
    width: 100vw;
    aspect-ratio: 1920 / 640;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    box-sizing: border-box;
    display: flex;
    padding: 0 1%;
    gap: 1%;
    margin-bottom: 5vh;
}

section.collection .btnConnect {
    width: 13.9vw;
}

.collectionCarousel::-webkit-scrollbar {
    display: none;
}

.collectionCarouselItem {
    height: 100%;
    scroll-snap-align: center;
    aspect-ratio: 392 / 640;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.collectionCarouselItem .imgCont {
    min-height: 94.21875%;
    height: 94.21875%;
    max-width: 100%;
    border: 0.4px solid rgba(129, 129, 129, 1);
    border-radius: 16px;
    width: 100%;
    overflow: hidden;
}

.collectionCarouselItem .imgCont img {
    min-height: 100%;
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    transition: transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.imgCont:hover img {
    transform: scale(1.1);
}

.collectionCarouselItem .desc {
    width: 100%;
    height: 100%;
    font-size: 1.25vw;
    display: flex;
    align-items: flex-end;
}

.collectionCarousel a {
    color: inherit;
    text-decoration: none;
}

.nextBtn {
    position: absolute;
    right: 8vw;
    bottom: calc(16.6666666656vw*2 - 15.703124999vw + 11vh);
    height: 4vw;
    aspect-ratio: 1 / 1;
    border-radius: 100vw;
    transform: translateY(50%);
    background: #1A0600;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    color: white;
    cursor: pointer;
    z-index: 3;
}

.nextBtnLeft {
    left: -100%;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nextBtnLeft img {
    transform: rotate(180deg);
}

.nextBtn img {
    height: 0.75vw;
    width: auto;
}

section.visitUs {
    width: 100vw;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10vh;
}

.visitVideo {
    width: 100vw;
    aspect-ratio: 1920 / 800;
    background: url(../images/visitUs.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.scheduleVisit {
    position: absolute;
    bottom: 8%;
    right: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15vw;
}

.scheduleVisit .btnConnect {
    width: 15vw;
    z-index: 2;
    height: 3.35vw;
}

.mapFrame {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    aspect-ratio: 2 / 1.25;
    bottom: 20%;
    border-radius: 5px;
    height: auto;
    z-index: 1;
}

.visitPlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.visitPlay img {
    width: 8vw;
    aspect-ratio: 1 / 1;
}

section.contact {
    width: 100vw;
    aspect-ratio: 1920 / 610;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10vh;
    box-sizing: border-box;
    padding: 0 8%;
}

section.contact form {
    border-radius: 16px;
    box-shadow: 0 4px 12px 12px rgba(0, 0, 0, 0.25);
    height: 431.25px;
    aspect-ratio: 489 / 492;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0vw 1.5vw;
    justify-content: space-between;
    overflow: hidden;
}

.formCont {
    width: 128%;
    height: 100%;
    max-height: max-content;
}

.formCont iframe{
    transform-origin: top left;
    transform: scale(0.78125);
}

.formHeading {
    font-size: 1.25vw;
    font-weight: 400;
    margin-bottom: 2vw;
}

input:focus,
textarea:focus {
    outline: none;
}

form input {
    border: 1px solid rgba(128, 128, 128, 1);
    background: transparent;
    font-size: 0.7vw;
    width: 100%;
    height: 2.25vw;
    border-radius: 0.9vw;
    box-sizing: border-box;
    padding: 0 0.75vw;
    margin-bottom: 1vw;
}

form input::placeholder,
form textarea::placeholder {
    font-size: 0.7vw;
}

form textarea {
    margin-bottom: 1vw;
    flex: 1;
    border: 1px solid rgba(128, 128, 128, 1);
    background: transparent;
    font-size: 0.7vw;
    width: 100%;
    border-radius: 16px;
    padding: 0.75vw;
    box-sizing: border-box;
    resize: none;
}

form button {
    width: 100%;
    height: 3vw;
    cursor: pointer;
    background: rgba(26, 6, 0, 1);
    border: none;
    border-radius: 24px;
    color: white;
}

.contactInfo {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contactusText {
    font-size: 0.9vw;
    color: rgba(26, 6, 0, 1);
    font-weight: 400;
}

.contactHeading {
    font-size: 1.7vw;
    font-weight: 700;
    font-family: Libre Baskerville;
    margin-bottom: 4vh;
}

.contactCardsCont {
    display: flex;
    flex-wrap: wrap;
}

.contactCardsCont a{
    color: inherit;
    text-decoration: none;
}

.contactCard {
    display: flex;
    align-items: center;
    aspect-ratio: 346.5 / 88;
}

.contactCard:nth-child(odd) {
    width: 40%;
}

.contactCard:nth-child(even) {
    width: 60%;
}

.contactCard.marginBottom {
    margin-bottom: 1vw;
}

.contactIcon {
    height: 50%;
    aspect-ratio: 1 / 1;
    background: black;
    border-radius: 100%;
    margin-right: 0.75vw;
}

.contactIcon img {
    height: 50%;
}

.contactDetailHeading {
    font-family: poppins;
    font-size: 1.25vw;
    font-weight: 700;
    color: rgba(26, 6, 0, 1);
}

.contactDetail {
    font-family: poppins;
    font-weight: 400;
    color: rgba(102, 102, 102, 1);
    font-size: 0.9vw;
}

section.quality {
    width: 100vw;
    aspect-ratio: 1920 / 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3vh 0;
    background: white;
}

section.quality .wigglyHeading {
    margin-bottom: 4vh;
}

.clientsCont {
    height: 60%;
    width: 80%;
    border-radius: 32px;
    box-shadow: 0 4px 12px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.clientsCont .clientsImgCont {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 35%;
    width: auto;
}

.clientsImgCont div {
    font-size: 0.65vw;
}

.clientsImgCont img {
    height: 100%;
    width: auto;
    margin-bottom: 0.5vw;
}

.clientsCont .directClient::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0%;
    color: black;
    width: 50px;
    height: 50px;
}

.getCatalogueCont {
    position: fixed;
    left: 0;
    top: 12vh;
    width: 100vw;
    height: 88vh;
    z-index: 99;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: all 150ms ease-out;
}


.getCatalogueCont form {
    background: var(--bg);
    aspect-ratio: 640 / 400;
    height: 0;

    border-radius: 16px;
    box-shadow: 0 4px 12px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: start;
    padding: 0vw 1.5vw;
    transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
    overflow: hidden;
}

.getCatalogueCont form .formHeading {
    margin-bottom: 1.5vw;
    margin-top: 2vw;
}

.catalogueInput {
    max-height: 3vw;
    min-height: 3vw;
}


.getCatalogueCont form input {
    font-size: 0.85vw;
    height: 3vw;
    border-radius: 0.9vw;
    padding: 0 0.75vw;
    margin-bottom: 1vw;
}

.getCatalogueCont form button {
    width: 100%;
    height: 4vw;
    font-size: 1.25vw;
    font-weight: 300;
    cursor: pointer;
    background: rgba(26, 6, 0, 1);
    border: none;
    border-radius: 24px;
    color: white;
}

input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.iti {
    width: 100%;
    margin-bottom: 1vw;
}

.iti__tel-input {
    width: 100%;
    border: 1px solid #ccc;
}

.iti__flag-container {
    border-radius: 16px;
    font-size: 0.7vw;
    color: #757575;
}

.iti__selected-flag {
    background: transparent !important;
    border-right: 1px solid rgba(128, 128, 128, 1);
}

.iti__country-list {
    top: calc(100% + 0.25vw);
    border: 1px solid rgba(128, 128, 128, 1);
    border-radius: 0.9vw;
    background: var(--bg);
    box-sizing: border-box;
    overscroll-behavior: contain;
    padding: 0.25vw 0;
}

.heightFull{
    height: 100% !important;
    width: auto !important;
}

@media (max-width: 599px) {

    html,
    body {
        width: 100vw;
        max-width: 100vw;
        overflow-x: hidden;
    }

    main.index {
        margin-top: 8vh;
    }

    .carouselCont {
        min-height: 65vh;
        max-height: 65vh;
    }

    .carouselImg {
        height: 20vh;
    }

    .illutionTop {
        transform: translateY(calc(-100% + 0.5%)) translateX(-50%);
    }

    .illutionBottom {
        transform: translateY(calc(100% - 0.5%)) translateX(-50%);
    }

    .carousel {
        gap: 2vw;
    }

    main .heading {
        margin-top: 5vh;
        font-size: 4.5vw;
    }

    main .tagline {
        margin-top: 2vw;
        font-size: 2.25vw;
        width: 90%;
        text-align: center;
    }


    .btnConnect,
    .btnDiscover {
        height: 3.5vh;
        font-size: 2vw;
    }

    .btnDiscover span {
        margin: 0 1.5vw 0 2.25vw;
    }

    .btnConnect {
        height: calc(3.5vh + 0.2vw);
        width: 30vw;
    }

    .btnConnect span {
        left: 2.75vw;
    }

    .btnConnect:hover span {
        left: calc(100% - 2.75vw);
        transform: translateX(-100%);
    }

    .btnConnect:hover .btnIcon:nth-of-type(2) {
        transform: translateY(-50%) translateX(calc(100% + 0.5vw));
    }

    .btnConnect:hover .btnIcon:nth-of-type(1) {
        transform: translateY(-50%) translateX(0%);
    }

    .btnConnect .btnIcon {
        right: 0.75vw;
        height: calc(100% - 1.5vw);
    }

    #trailer {
        display: none !important;
    }

    .stats {
        top: calc(38vh + 50px);
        height: 20vh;
        padding-bottom: 15vh;
    }

    .statValue {
        font-size: 4vw;
        margin-bottom: 0.25vh;
    }

    .statDesc {
        font-family: inter;
        font-size: 2vw;
    }

    section.about {
        width: 100vw;
        height: max-content;
        margin-top: 70vh;
        padding: 1vw 7.5vw;
        flex-direction: column;
    }

    .content {
        width: 95%;
        margin-right: 0%;
        height: max-content;
        box-sizing: border-box;
        padding: 1vh 0;
        margin-bottom: 2vh;
    }

    .contentHeading {
        font-family: Libre Baskerville;
        font-weight: 700;
        font-size: 3vw;
        position: relative;
        margin-bottom: 2vh;
    }

    .contentHeadingLine {
        bottom: -1vh;
    }

    .contentText {
        font-size: 1.6vw;
        margin-bottom: 2vh;
    }

    .contentFeatureDiv {
        width: 47.5%;
    }

    .contentFeatureHeading {
        font-size: 2.25vw;
        margin-bottom: 0.25vh;
    }

    .contentFeatureText {
        font-size: 1.6vw;
    }

    .aboutImageCont {
        width: 95%;
        height: auto;
        margin-bottom: 2vh;
    }


    .wiggly {
        width: 100vw;
        padding-top: 3vh;
        margin-bottom: 5vh;
    }

    .wigglyHeading {
        font-size: 5vw;
        margin-bottom: 0.25vh;
    }

    .wigglyTagline {
        font-size: 3vw;
        margin-bottom: 2vh;
        width: 95%;
        text-align: center;
    }

    .wigglyCont {
        width: 95vw;
        margin-top: calc(-0.45vw - 0.25px);
    }


    .wigglyContent {
        width: calc(100% - 0.9vw);
        height: calc(100% - 0.9vw);
        padding: 0 0.5vw;
    }

    .rightCont .wigglyContent {
        flex-direction: row-reverse;
    }

    .bigImg {
        border-radius: 8vw;
        height: calc(100% - 1vw);
    }

    .wigglyContentText {
        margin: 0 3vw;
        width: 45%;
    }

    .iconCont {
        border-radius: 0.8vw;
        height: 7vw;
        margin-bottom: 0.5vh;
    }


    .wigglyContentHeading {
        font-size: 2.75vw;
        margin-bottom: 0.5vh;
    }

    .wigglyContentTagline {
        font-size: 1.25vw;
    }

    .categories {
        margin-bottom: 4vh;
    }

    .categoryGrid {
        width: 95vw;
        gap: 1vw;
    }

    .categoryItem {
        width: 47vw;
    }

    .categoryName {
        font-size: 3vw;
        bottom: 3vw;
        left: 3vw;
    }


    section.certificates {
        aspect-ratio: 1920 / 600;
        margin-bottom: 4vh;
    }

    .certsContent {
        padding: 4vw 0;
    }

    .certsHeading {
        font-size: 3vw;
    }

    .certsLogo {
        width: 100vw;
        justify-content: space-evenly;
    }

    section.collection {
        margin-bottom: 4vh;
    }

    .collectionCarousel {
        width: 100vw;
        padding: 0 5vw;
        gap: 5vw;
        margin-bottom: 1vh;
        aspect-ratio: 1920 / 1400;
    }

    section.collection .btnConnect {
        width: 42vw;
        font-size: 3vw;
        height: 10vw;
        margin-top: 2vh;
    }

    .collectionCarousel::-webkit-scrollbar {
        display: none;
    }

    .collectionCarouselItem .imgCont {
        border-radius: 1.2vw;
    }

    .collectionCarouselItem .desc {
        font-size: 3vw;
    }

    .nextBtn {
        right: 8vw;
        bottom: calc(16.6666666656vw*2 - 12vw + 11vh);
        height: 10vw;
        transform: translateY(50%);
    }

    .nextBtn img {
        height: 25%;
    }

    .scheduleVisit {
        right: 4%;
        width: 30vw;
    }

    .scheduleVisit .btnConnect {
        width: 30vw;
        height: 3.35vh;
    }

    .mapFrame {
        width: 180%;
        transform-origin: center bottom;
        transform: translateX(-50%) scale(0.5);
    }

    section.visitUs {
        margin-bottom: 4vh;
    }

    section.contact {
        width: 100vw;
        height: max-content;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 5vh;
        padding: 0 5vw;
        box-sizing: border-box;
        margin-top: 5vh;
    }

    section.contact form {
        margin-top: 2vh;
        border-radius: 16px;
        box-shadow: none;
        border: 1px solid rgba(136, 136, 136, 0.3);
        width: 100%;
    }

    .contactInfo {
        height: max-content;
        width: 100%;
    }

    .contactusText {
        font-size: 3vw;
    }

    .contactHeading {
        font-size: 5vw;
        margin-bottom: 0vh;
    }

    .contactCardsCont {
        display: flex;
        flex-wrap: wrap;
    }

    .contactCard {
        display: flex;
        align-items: center;
        aspect-ratio: 346.5 / 120;
    }

    .contactCard:nth-child(odd) {
        width: 40%;
    }

    .contactCard:nth-child(even) {
        width: 60%;
    }

    .contactCard.marginBottom {
        margin-bottom: 1vw;
    }

    .contactIcon {
        aspect-ratio: 1 / 1;
        margin-right: 2vw;
    }

    .contactDetailHeading {
        font-size: 4vw;
    }

    .contactDetail {
        font-size: 2vw;
    }
}
