/* Open Sans FONT LINK   */
@font-face {
    font-family: thinF;
    src: url("../../../fonts/Montserrat-Thin.ttf");
}

@font-face {
    font-family: semiBoldF;
    src: url("../../../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: regularF;
    src: url("../../../fonts/Montserrat-Regular.ttf");
}

@font-face {
    font-family: mediumF;
    src: url("../../../fonts/Montserrat-Medium.ttf");
}

@font-face {
    font-family: lightF;
    src: url("../../../fonts/Montserrat-Light.ttf");
}

@font-face {
    font-family: extraF;
    src: url("../../../fonts/Montserrat-ExtraLight.ttf");
}

@font-face {
    font-family: boldF;
    src: url("../../../fonts/Montserrat-Bold.ttf");
}

:root {
    --font-color-primary: #fff;
    --font-color-secundary: #1d1e1f;
    --font-color-menu: #222;
    --bg-primary: #1d1e1f;
    --color-dark-gray: #2f2f2f;
    --bg-secundary: #fff;
    --color-black: #000;
    --color-gray: #282936;
    --color-white: #fff;
    --font-family-heading: regularF;
    --color-red: #e20010;
    --color-light-gray: ##555555;
    --color-text: #000;
    --color-bg: #fff;
    --color-bg-accent: #f7e3e3;
    --size: clamp(5rem, 1rem + 20vmin, 20rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    --card-height: 40vw;
    --card-margin: 4vw;
    --card-top-offset: 1em;
    --numcards: 4;
    --outline-width: 0px;
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: regularF;
}


body,
html {
    width: 100%;
    height: 100%;
}

p {
    margin-bottom: 0 !important;
}

h1 {
    font-size: 5vw;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    z-index: 8;
}

h2 {
    font-size: 3.5vw;
    font-weight: 500;
}

h3{
    font-size: 3vw;
    font-weight: 500;
}

h4 {
    font-size: 1.5vw;
    font-weight: 700;
    line-height: 2.5vw;
    color: var(--color-red);
}

h5 {
    font-size: 1.6vw;
    line-height: 2.5vw;
    font-weight: 500;
}

.head-office{
    color: var(--color-red);
}
.contact-list{
    margin-top: 2vw;
}
span {
    display: block;
}

.color-change {
    cursor: pointer;
}

.color-change:active {
    color: var(--color-red);
}

.main-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 4;
    font-family: regularF;
}

.main-loader>h2 {
    position: absolute;
    right: 5%;
    bottom: 5%;
    font-size: 6vw;
}


/*Home css start*/

.main {
    position: relative;
    width: 100%;
    font-family: regularF;
    overflow:hidden;
}

a {
    text-decoration: none;
    color: initial;
}

.cursor-img {
    position: fixed;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 10;
    height: 3vw;
    pointer-events: none;
}

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

.page1-home {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}


.search {
    position: fixed;
    top: -30%;
    left: 0%;
    height: 25%;
    width: 100%;
    padding: 2vw 2.4vw;
    padding-bottom: 4vw;
    z-index: 9;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1vw;
}

.search>input {
    padding: 0.6vw 1.2vw;
    width: 60%;
    border-radius: 0.5vw;
    font-size: 1vw;
    outline: none;
}

.search>i {
    font-size: 2vw;
    color: #000000;
}

.search>i:hover {
    color: #ce4141;
    cursor: pointer;
}



.menu {
    position: fixed;
    top: 0%;
    left: 100%;
    height: 100vh;
    width: 40%;
    padding: 2vw 2.4vw;
    padding-bottom: 4vw;
    z-index: 9;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.menu a {
    color: #000 !important;
    font-weight: 500;
    font-family: regularF;
}

.return-home {
    font-size: 1.2vw;
    margin-top: 2vw;
    color: #ce4141 !important;
}

.menu-left {
    position: relative;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    color: #6d6d6d;
    padding-top: 4vw;
}

.menu-elem {
    height: 1.9vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    overflow: hidden;
    position: relative;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.menu-elem>span {
    position: relative;
    font-size: 2vw;
    line-height: 1;
    font-weight: 100;
    font-family: regularF;
    white-space: nowrap;
    /* transition: all ease 0.2s; */
}

.menu-elem>span:hover {
    color: var(--color-red);
}

.menu-right-socials {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 4vw;
}

.menu-right {
    position: relative;
    height: 100%;
    color: var(--color-red);
}

.menu i {
    cursor: pointer;
}

.menu i:hover {
    color: var(--color-red);
}

.menu-right>i {
    font-size: 2vw;
}

.media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1vw;
}

.media i {
    font-size: 1.4vw;
}

.email {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5vw;
    margin-top: 1vw;
    font-size: 1vw;
}

.menu a:hover {
    color: var(--color-red);
}

.email i {
    font-size: 1.4vw;
}

.phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5vw;
    margin-top: 1vw;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1vw 1.4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    z-index: 3;
    background-color: #ffffff;
    height: 9vh;
}

nav i {
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

nav i:hover {
    color: var(--color-red);
}

nav img {
    position: relative;
    height: 3.5vw;
    -o-object-fit: cover;
    object-fit: cover;
}

.nav-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1vw;
    cursor: pointer;
    color: #e73e0d;
    padding: 0.5vw 1vw;
    border-radius: 0.25vw;
}

.menu-close {
    cursor: pointer;
}

.nav-right i {
    font-size: 1.4vw;
}

.page1-home-videos {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.page1-home-videos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000006e;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.page1-home-videos>video {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.page1-home-text {
    position: relative;
    padding: 1vw 2.4vw;
    z-index: 2;
    color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.page1-home-text button {
    position: relative;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 1.1vw;
    margin-top: 3vw;
    font-weight: 100;
    padding: 0.6vw 1.2vw;
    border-radius: 1vw;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    overflow: hidden;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.page1-home-text button:hover {
    color: #fff;
}

.page1-home-text button::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 1vw;
    width: 100%;
    height: 100%;
    background-color: #e20010;
    z-index: -1;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.page1-home-text button:hover::after {
    top: 0;
}

.page1-home-sliders {
    position: relative;
    width: 100%;
    padding: 6vw 2.4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1vw;
    top: -20%;
    z-index: 3;
}

.page1-home-sliders-overlay {
    position: absolute;
    top: 0%;
    left: 100%;
    height: 100%;
    width: 100%;
    z-index: 10;
    background-color: #000;
    pointer-events: none;
}

.page1-home-sliders-tab {
    position: relative;
    height: 2vh;
    width: 2vh;
    border-radius: 50%;
    background-color: #dfdfdfec;
}

.sliders-tab2,
.sliders-tab3,
.sliders-tab4 {
    background-color: #dfdfdf5f;
}

.text-fill {
    position: relative;
    height: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 5vw 2.4vw;
}

.text-fill>h3 {
    font-weight: 500;
    font-size: 1.9vw;
    line-height: 1.7;
    color: #0000003d;
}

.text-fill .red {
    color: #e20010;
}

.coutner-section {
    position: relative;
    width: 100%;
    padding: 2vw 4.4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.coutner-elem {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1vw;
    /*padding-left: 2vw;*/
}

/*.coutner-line {*/
/*  border-left: 1px solid #000;*/
/*}*/

.coutner-elem>h3 {
    position: relative;
    font-size: 1.3vw;
    font-weight: 500;
    color: var(--color-red);
}

.coutner-elem>h2 {
    font-weight: 600;
    font-size: 2.6vw;
}


.certificated-logo {
    position: relative;
    width: 100%;
    padding: 2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.certificated-logo>img {
    position: relative;
    height: 22vw;
    -o-object-fit: cover;
    object-fit: cover;
}


.expertise {
    position: relative;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
}

.expertise-strip {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
}

.expertise-strip>h3 {
    font-size: 10vw;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 5px;
    -webkit-animation: infiniteScroll 45s linear infinite both;
    animation: infiniteScroll 45s linear infinite both;
    color: #00000076;
}

@-webkit-keyframes infiniteScroll {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(calc(-100% - 4px));
        transform: translateX(calc(-100% - 4px));
    }
}

@keyframes infiniteScroll {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    100% {
        -webkit-transform: translateX(calc(-100% - 4px));
        transform: translateX(calc(-100% - 4px));
    }
}

.expertise-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 50vh;
    background-color: #fff;
    z-index: 9;
    overflow: hidden;
}

.expertise-top>h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 16vw;
    font-weight: 500;
    top: 95%;
}

.expertise-bottom {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 50vh;
    background-color: #fff;
    z-index: 9;
    overflow: hidden;
}

.expertise-bottom>h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 16vw;
    font-weight: 500;
    top: -5%;
}

.expertise-card {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80vh;
    width: 90vw;
    border-radius: 0.3vw;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url("../../../images/build.jpg");
    background-position: center;
    background-size: cover;
}

.build-cursor {
    position: fixed;
    top: 0;
    left: 0;
    height: 12vh;
    width: 12vh;
    background-color: #000000;
    z-index: 6;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    scale: 0;
    pointer-events: none;
}

.build-cursor>h3 {
    color: #fff;
    font-weight: 400;
    font-size: 0.8vw;
    white-space: nowrap;
}

.expertise-card1 {
    /* rotate: 5deg; */
    z-index: 1;
}

.expertise-card2 {
    /* rotate: -5deg; */
    z-index: 2;
    background-image: url("../../../images/design.jpg");
}

.expertise-card3 {
    z-index: 4;
    /* rotate: -8deg; */
    background-image: url("../../../images/Engineering%20And%20Operations.png");
}

.expertise-card4 {
    /* rotate: 8deg; */
    z-index: 5;
    background-image: url("../../../images/facility-management.jpg");
}

.expertise-card5 {
    /* rotate: 12deg; */
    z-index: 3;
    background-image: url("../../../images/Manufacturing.png");
}

.expertise-card6 {
    /* rotate: 12deg; */
    z-index: 2;
    background-image: url("../../../images/workplace.jpg");
}


.expertise-card-overlay {
    position: relative;
    height: 100%;
    width: 100%;
    background-color: #00000075;
    color: #fffffff6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 0.3vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.expertise-card-overlay>h2 {
    font-size: 3.5vw;
    font-weight: 500;
}

/* clientele-section css starts  */
.clientele-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.2fr 40px 2fr;
    grid-template-columns: 1.2fr 2fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
    padding: 2vw 5vw;
}

.clientele-section>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.clientele-section>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}



.fade-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.Clientele-heading {
    font-weight: 300;
    font-size: 3vw;
    line-height: 3.5vw;
    color: var(--color-red);
}

.Clientele-main-heading {
    font-size: 1.6vw;
    font-weight: 300;
    margin-top: 0.5vw;
    color: #2f2f2f;
}

.Clientele-main-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 27.24px;
    color: #474747;
}

.logo-slider {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    overflow: hidden;
    gap: var(--gap);
    font-family: regularF;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-bg);
}


.marque-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.marque-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: -webkit-gradient(linear, left top, right top, color-stop(22%, #fffffff3), to(rgba(255, 255, 255, 0)));
    background: -o-linear-gradient(left, #fffffff3 22%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(90deg, #fffffff3 22%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.marque1 {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6vw;
    left: -100%;
    -webkit-animation: scrollerrrt 30s linear infinite both;
    animation: scrollerrrt 30s linear infinite both;
}

.marque1>img {
    position: relative;
    height: 9vw;
    width: 10vw;
    padding: 0vw 0.5vw;
    -o-object-fit: contain;
    object-fit: contain;
}

.marque2 {
    position: relative;
    width: 100%;
    margin-top: -2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.6vw;
    -webkit-animation: scrollerrr 30s linear infinite both;
    animation: scrollerrr 30s linear infinite both;
}

.marque2>img {
    position: relative;
    height: 9vw;
    width: 10vw;
    padding: 0vw 0.5vw;
    -o-object-fit: contain;
    object-fit: contain;

}

@-webkit-keyframes scrollerrr {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scrollerrr {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@-webkit-keyframes scrollerrrt {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes scrollerrrt {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

/* clientele-section css ends   */

.page3-cards {
    position: relative;
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}

.page3-card {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 90%;
    height: 80%;
    border-radius: 0.3vw;
    -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.page3-card2,
.page3-card3,
.page3-card4 {
    position: absolute;
    top: 100%;
}

.page3-card-left {
    position: relative;
    height: 100%;
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 4vw;
    background-color: #fff;
}

.page3-card-left>h2 {
    font-size: 3.5vw;
    font-weight: 500;
    color: var(--color-red);
    position: relative;
}

.page3-card-left>p {
    margin-top: 1vw;
    font-size: 1.4vw;
    line-height: 1.5;
    position: relative;
}

.page3-card-right {
    position: relative;
    height: 100%;
    width: 50%;
}

.page3-card-right>img {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer {
    position: relative;
    width: 100%;
    padding: 2.4vw;
    padding-bottom: 1vw;
    overflow-x:hidden;
}

.footer-top {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    color: var(--color-red);
}

.footer-top>img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 150px;
}

.footer-top-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1vw
}

.footer-top-right a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: var(--color-red);
    font-size: 1vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: .3vw;
}

.footer-top-right i {
    font-size: 1.6vw;
}

.footer-top-right p {
    margin-left: 1vw;
}

.footer-line {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--color-red);
    margin-top: 1vw;
}

.footer-bottom {
    position: relative;
    margin-top: 1.5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-bottom-cert {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: .5vw;

}

.footer-bottom-cert>img {
    position: relative;
    height: 4vw;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer-bottom-cert>img:nth-child(4) {
    position: relative;
    margin-left: 1vw;
    scale: 2;
}

.footer-bottom>p {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #2f2f2f;
    text-transform: capitalize;
    font-size: 1vw;
}

.footer-bottom-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5vw;
}

.footer-bottom a {
    color: #2f2f2f;
    font-size: 1vw;
    text-decoration: none;
}

/* Insights page */

.insights {
    position: relative;
    width: 100%;
    padding: 3vw 2.4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.insights-left {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: var(--color-red);
    border: 1px solid var(--color-red);
    border-radius: 0.3vw;
    padding: 1.5vw 2vw;
    color: #fff;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.insights-announcements {
    position: relative;
    width: 40%;
}

.insights-win {
    height: 20vh;
    overflow: hidden;
}

.insights-win-box {
    position: relative;
    width: 100%;
    height: 100%;
}

.insights-announcements>h3 {
    margin-bottom: .5vw;
    font-size: 1.3vw;
}

.insights-win-box>p {
    margin-top: 0.5vw;
    font-size: 1vw;
}

.insights-line {
    margin-top: 0.5vw;
    position: relative;
    width: 90%;
    height: 1px;
    background-color: #ffffff66;
}

.insights-news {
    position: relative;
    width: 55%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5vw;
}

.insights-news>h3 {
    font-weight: 600;
    font-size: 1.3vw;
    line-height: 1;
}

.insights-news>p {
    font-weight: 300;
    margin-top: 1vw;
    font-size: 1vw;
}

.insights-news>a {
    text-decoration: none;
    font-size: 1vw;
    margin-top: 1vw;
    color: #fff;
}


.insights-right {
    position: relative;
    width: 28%;
    border-radius: 0.3vw;
    border: 1px solid var(--color-red);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 0 2vw;
}

.stay-update {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5vw;
}

.stay-update>i {
    font-size: 1.2vw;
    color: var(--color-red);
}


.insights-right>p {
    margin-top: 0.5vw;
    margin-bottom: 2vw;
}

.insights-email {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5vw;
    width: 100%;
}

.insights-email i {
    font-size: 1vw;
    color: var(--color-red);
}

.insights-email input {
    padding: 0.2vw 0.5vw;
    width: 100%;

    border-radius: 0.25vw;
    border: 1px solid var(--color-red);
}

.insights-right button {
    position: relative;
    margin: 0 auto;
    margin-top: 2vw;
    border: 1px solid var(--color-red);
    background-color: transparent;
    padding: 0.5vw 1vw;
    border-radius: 1vw;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    overflow: hidden;
}

.insights-right button:hover {
    color: #fff;
}

.insights-right button::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 1vw;
    width: 100%;
    height: 100%;
    background-color: var(--color-red);
    z-index: -1;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.insights-right button:hover::after {
    top: 0;
}

svg {
    display: block;
    width: 258px;
    height: 258px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tree {
    fill: #e73e0d;
}

.circle-mask {
    -webkit-transform-origin: 50% 90%;
    -ms-transform-origin: 50% 90%;
    transform-origin: 50% 90%;
    -webkit-animation: scale 5s infinite ease-out;
    animation: scale 5s infinite ease-out;
}

@-webkit-keyframes scale {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    7%,
    90% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes scale {

    0%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    7%,
    90% {
        -webkit-transform: scale(0.4);
        transform: scale(0.4);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/*Home css end*/



/*Project css start*/

.active {
    color: var(--color-red);
}

.project {
    font-family: regularF;
    overflow-x:hidden;
}

.nav-right {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1vw;
    cursor: pointer;
    padding: 0.5vw 1vw;
    border-radius: 0.25vw;
    color: #e73e0d;
}

.nav-right select {
    border: none;
    background-color: transparent;
    outline: none;
    color: #e73e0d;
    font-size: 1vw;
}


.nav-right option {
    color: #000000;
}


/*  MAIN PROJECT SECTION CSS STARTS  */



.main-project-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.2fr 5fr;
    grid-template-columns: 1.2fr 5fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    padding-right: 4vw;
    font-family: regularF;
    padding: 2vw !important;
    overflow-x:hidden;
}



.main-project-section>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}



.main-project-section>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}


.project-filter-btn {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2vw;
    display: none;
    overflow-x:hidden;
}

.project-filter-btn button {
    position: relative;
    background-color: var(--color-red);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 1vw 2vw;
    -webkit-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
}

.project-filter-btn button:hover {
    border-radius: 2vw;

}


.img-gallery {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: -1;
    opacity: 0;
    background-color: #00000061;
    padding: 4vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-x:hidden;
}

.img-gallery .swiper {
    width: 100%;
    height: 90%;
}

.gallery-close {
    position: absolute;
    color: #ce4141;
    z-index: 2;
    right: 5%;
    top: 3%;
    cursor: pointer;
    font-size: 2vw;
    scale: 1.3;
}

.swiper-button-next, .swiper-button-prev {
    color: #ce4141 !important;
}


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

.swiper-slide img {
    position: relative;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.project-card-main-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2vw;
    row-gap: 30px;
}


.single-project-card {
    -webkit-box-shadow: 0px 3px 7px 0px #00000014;
    box-shadow: 0px 3px 7px 0px #00000014;
    -webkit-box-shadow: 0px 14.01px 14.01px 0px #00000012;
    box-shadow: 0px 14.01px 14.01px 0px #00000012;
    -webkit-box-shadow: 0px 30.01px 18.01px 0px #0000000A;
    box-shadow: 0px 30.01px 18.01px 0px #0000000A;
    -webkit-box-shadow: 0px 54.03px 22.01px 0px #00000003;
    box-shadow: 0px 54.03px 22.01px 0px #00000003;
    -webkit-box-shadow: 0px 85.04px 24.01px 0px #00000000;
    box-shadow: 0px 85.04px 24.01px 0px #00000000;
    border: 0.8px solid #D9D9D9;
    width: 30%;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    /* To ensure the button does not overflow */
}

.image-container {
    position: relative;
}

.view-button {
    position: absolute;
    top: -50px;
    /* Initially above the image */
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: var(--color-white);
    /* Replace with your desired button color */
    color: #000;
    padding: 50px;
    font-size: 14px;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: top 0.5s ease, opacity 0.5s ease;
    -o-transition: top 0.5s ease, opacity 0.5s ease;
    transition: top 0.5s ease, opacity 0.5s ease;
    /* Animation for moving and fading in */
}

.single-project-card:hover .view-button {
    top: 145px;
    /* Move the button to the center of the image */
    opacity: 1;
    /* Fade in the button */
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    /* Center the button */
    cursor: -webkit-grab;
    cursor: grab;
}

.circle1 {
    position: absolute;
    margin: auto;
    margin-right: 0px;
    width: 1px;
    height: 1px;
    background-color: #000;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0.5;
}

.img-container img {
    height: 290px !important;
}

.single-project-card:hover .circle1 {
    background-color: #000;
    width: 100%;
    height: 290px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.project-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
}

.info-section h2 {
    color: var(--color-red);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
}

.info-section p {
    font-size: 15px;
    letter-spacing: 0.02rem;
    line-height: 20px;
}

.single-project-card:hover .project-info img[alt="arrow-image"] {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.project-left-section {
    padding-left: 40px;
}


.size-filter ul li {
    font-size: 1.2vw;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-dark-gray);
    position: relative;
    /* Sets up positioning for the pseudo-element */
    padding-right: 20px;
    /* Adds space for the arrow */
    cursor: pointer;
    /* Changes cursor to pointer on hover */
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
    /* Smooth transition for text color */
}

.size-filter ul li:hover {
    color: var(--color-red);
    font-weight: 600;
}

.size-filter ul li::after {
    content: '\2192';
    /* Unicode for right arrow () */
    position: absolute;

    /* Positions arrow to the right */
    opacity: 0;
    /* Makes the arrow initially invisible */
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
    /* Smooth transition for appearance */
    top: -50%;
    padding-left: 1vw;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--color-red);
}

.size-filter ul li:hover::after {
    opacity: 1;
    /* Makes the arrow visible on hover */
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    /* Resets the shift */
}

.sector-top-margin {
    margin-top: 30px;
}


.project {
    position: relative;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000058;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.project-overlay>p {
    position: relative;
    z-index: 2;
    color: #ffffffbf;
    font-size: 1.1vw;
    text-align: center;
}

.project-overlay video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.398);
}



/*Project css end*/

/*Expertise css start*/

:root {
    --color-red: #e20010;
}


a {
    text-decoration: none;
    color: initial;
}


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

.main-expertise {
    position: relative;
    width: 100%;
    font-family: regularF;
    overflow:hidden;
}

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

.page1-expertise {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.page1-expertise-videos {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.page1-expertise-videos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000079;
    overflow: hidden;
    z-index: 1;
}

.page1-expertise-videos>img {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.page1-expertise-text {
    position: relative;
    padding: 1vw 2.4vw;
    z-index: 2;
    color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page1-expertise-text-left {
    text-align: center;
}

.page1-expertise-text p {
    margin-top: 1vw;
    font-weight: 300;
    font-size: 1.1vw;
    text-align: center;
    color: #ffffffbf;
}

.page1-expertise-scroller {
    position: relative;
    height: 6vh;
    width: 6vh;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 1px solid #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page1-expertise-scroller>i {
    font-size: 1.5vw;
}

.page2-expertise {
    position: relative;
    min-height: 100vh;
    width: 100%;
    padding-left: 3.4vw;
    padding-top: 0vw;
}


.page2-expertise-line {
    position: absolute;
    left: 3%;
    top: 0;
    height: 100%;
    width: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #bababa;

}

.page2-expertise-line-inner {
    position: relative;
    height: 0;
    background-color: var(--color-red);
    width: 100%;
}

.page2-expertise-circle {
    position: relative;
    height: 1.5vh;
    width: 1.5vh;
    background-color: var(--color-red);
    border-radius: 50%;
}

.card {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5vw 2.4vw;
    padding-bottom:0;
    margin-top: 0vw;
}

.card-heading {
    position: relative;
}

.card-heading>h2 {
    font-size: 3vw;
    font-weight: 300;
    color: var(--color-red);
    overflow: hidden;
}

.card-img {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    border-radius: 0.3vw;
    height: 60vh;
    margin-top: 1.5vw;
    margin-bottom: 2vw;
    background-color: #00000079;
    overflow: hidden;
}

.card-img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    scale: 1;
    -o-object-position: 50% 55%;
    object-position: 50% 55%;
}


.card1 .page7-expertise-elem {
    color: rgb(7, 0, 63);
    background-color: rgb(226, 222, 196);
    width: 24%;
    border-radius: 0.3vw;
}

.card2 .page7-expertise-elem {
    color: rgb(7, 0, 63);
    background-color: rgb(226, 222, 196);
    width: 33%;
    border-radius: 0.3vw;
}

.card3 .page7-expertise-elem {
    color: rgb(7, 0, 63);
    background-color: rgb(226, 222, 196);
    width: 24%;
    border-radius: 0.3vw;
}

.card4 .page7-expertise-elem {
    color: rgb(7, 0, 63);
    background-color: rgb(226, 222, 196);
    width: 33%;
    border-radius: 0.3vw;
}

.card5 .page7-expertise-elem {
    color: rgb(7, 0, 63);
    background-color: rgb(226, 222, 196);
    width: 24%;
    border-radius: 0.3vw;
}

.card6 .page7-expertise-elem {
    color: rgb(7, 0, 63);
    background-color: rgb(226, 222, 196);
    width: 33%;
    border-radius: 0.3vw;
}


.build-img>img {
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

.design-img>img {
    -o-object-position: 50% 60%;
    object-position: 50% 60%;
}

.ifm-img>img {
    -o-object-position: 50% 45%;
    object-position: 50% 45%;
}

.card>p {
    font-size: 1.2vw;
}


.page7-expertise-container-elems {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1vw;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 2vw;
    margin-bottom: 3vw;
    border-radius: 0.3vw;
}

.page7-expertise-elem h2,
.page7-expertise-elem p {
    padding: .5vw;
}

.page7-expertise-elem h2 {
    font-size: 1.3vw;
    font-weight:bold;
}

.page7-expertise-elem p {
    font-size: 1vw;
}

/*Expertise end start*/


/*About us css start*/



:root {
    font-size: 14px;
    --color-text: #fff;
    --color-bg: #0b0826;
    --color-bg-alt: hsl(222.55deg 100% 49.22%);
    --color-link: #fff;
    --color-link-hover: #fff;
    --color-title: #fff;
    --color-red: #e20010;
}


.main-about {
    position: relative;
    width: 100%;
    font-family: regularF;
    overflow:hidden;
}

.cursor-img {
    position: fixed;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 10;
    height: 3vw;
    pointer-events: none;
}

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

.page1-about {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.page1-about-videos {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.page1-about-videos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #0000006e;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.page1-about-videos>video {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.page1-about-text {
    position: relative;
    padding: 1vw 2.4vw;
    z-index: 2;
    color: #fff;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page1-about-text p {
    font-size: 1.1vw;
    color: #ffffffbf;
    text-align: center;

}

.page1-about-text button {
    position: relative;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 1.1vw;
    margin-top: 3vw;
    font-weight: 100;
    padding: 0.6vw 1.2vw;
    border-radius: 1vw;
    -webkit-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
    overflow: hidden;
}

.page1-about-text button:hover {
    color: #fff;
}

.page1-about-text button::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-radius: 1vw;
    width: 100%;
    height: 100%;
    background-color: var(--color-red);
    z-index: -1;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}

.page1-about-text button:hover::after {
    top: 0;
}

.text-about-fill {
    position: relative;
    height: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    text-align: center;
    padding: 5vw 2.4vw;
}

.text-about-fill>h2 {
    width: 100%;
    text-align: center;
}

.text-about-fill>p {
    font-weight: 500;
    font-size: 1.9vw;
    line-height: 1.7;
    color: #0000003d;
}

.content-wrap-about {
    display: -ms-grid;
    display: grid;
    gap: 40vh;
}

.content-about {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    display: -ms-grid;
    display: grid;
    place-items: center;
    line-height: 1.2;
    grid-template-areas: "title""layout""...";
    -ms-grid-rows: 3.5vw 1rem auto 1rem 3.5vw;
    grid-template-rows: 3.5vw auto 3.5vw;
    gap: 1rem;
    overflow: hidden;
}

.content--intro-about {
    grid-area: intro;
}

.content__img-wrap-about {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: layout;
}

.content__img-about {
    --img-width: 60vw;
    --img-height: 40vh;
    --img-ar: auto;
    --img-inner-margin-x: 0px;
    --img-inner-margin-y: 0px;
    position: relative;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: var(--img-width);
    height: var(--img-height);
    aspect-ratio: var(--img-ar);
}

.content__img--1-about {
    --img-width: 70vw;
    --img-height: auto;
    --img-ar: 16/8;
}

.content__img--2-about {
    --img-width: 100vw;
    --img-height: 100vh;
}

.content__img--3-about {
    --img-width: 100vw;
    --img-height: 200vh;
}

.content__img--4-about {
    --img-width: 40vw;
    --img-height: auto;
    --img-ar: 0.8;
}

.content__img--5-about {
    --img-width: 60vw;
    --img-height: auto;
    --img-ar: 1;
}

.content__img--6-about {
    --img-width: 70vw;
    --img-height: auto;
    --img-ar: 16/8;
}

.content__img-inner-about {
    -ms-grid-row: 1;
    grid-area: 1 / -1;
    width: calc(100% + var(--img-inner-margin-x) * 2);
    height: calc(100% + var(--img-inner-margin-y) * 2);
    background-size: cover;
    background-position: 50% 50%;
}

.content__img-inner--hidden-about {
    opacity: 0;
}

.who-about {
    font-size: 5vw;
}

.content__text-about {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    position: relative;
    z-index: 100;
    grid-area: title;
    text-transform: uppercase;
    font-size: clamp(2rem, 6vw, 4rem);
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 400;
    line-height: 0.8;
}

.content__text-about span span {
    display: inline-block;
}

.content__text-about span span.whitespace {
    white-space: pre;
}

.content__text-about span:nth-child(3n) {
    -webkit-font-feature-settings: "ss01"1;
    font-feature-settings: "ss01"1;
}

.content__text--large-about {
    font-size: clamp(2rem, 7vw, 6rem);
}

.content__text--center-about {
    text-align: center;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-grid-row: 1;
    -ms-grid-row-span: 3;
    grid-row: 1 / span 3;
}

.content__text--left-about {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-align: start;
    justify-self: start;
    padding: 3rem;
    grid-area: layout;
    -ms-grid-row-align: center;
    align-self: center;
    font-size: 4vw;
}

.content__text-tiny-about {
    text-transform: none;
    font-size: 1.3vw;
    font-weight: 300;
    max-width: 100%;
    text-align: center;
    line-height: 1.5;
    margin-top: 4vh;
    letter-spacing: .1px;
}

.reality {
    position: relative;
    width: 100%;
    padding: 2vw 2.4vw;
}


.reality-container {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 4vw;
}

.reality-left {
    position: relative;
    width: 48%;
}

.reality-left>h3 {
    font-size: 1.3vw;
    font-weight: 500;
}

.reality-left>p {
    font-size: 1.3vw;
    line-height: 1.5;
    margin-top: 2vw;
}

.reality-right {
    position: relative;
    width: 40%;
}

.reality-right>p {
    font-size: 1.1vw;
    line-height: 1.5;
}

.reality-elems {
    position: relative;
}


.reality-elem {
    position: relative;
    margin-top: 1.5vw;
    height: 2.1vw;
    overflow: hidden;
    cursor: pointer;
}

.reality-elem1 {
    height: 8vw;
}

.reality-elem-heading {
    position: relative;
    width: 100%;
    -webkit-transition: all ease 0.3;
    -o-transition: all ease 0.3;
    transition: all ease 0.3;
    overflow: hidden;
    color: var(--color-red);
}

.reality-elem-heading:hover {
    color: #fff;
}

.reality-elem-heading::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-red);
    z-index: -1;
    -webkit-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
    overflow: hidden;
}

.reality-elem-heading:hover::after {
    top: 0;
}

.reality-elem>p {
    font-size: 1.3vw;
    width: 85%;
    margin-top: 1vw;
}



.teams-about {
    position: relative;
    width: 100%;
    padding: 5vw 2.4vw;
}

.team-about-top {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    height: 50%;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}


.team-about-down {
    position: absolute;
    top: 50%;
    left: 0;
    background-color: #fff;
    height: 50%;
    width: 100%;
    z-index: 1;
    overflow: hidden;
}

.teams-about-left {
    position: relative;
    width: 100%;
}

.teams-about-left>h2 {
    text-align: center;
    position: relative;
    font-size: 3.5vw;
    line-height: 1;
    font-weight: 500;
}

.teams-about-left>p {
    position: relative;
    font-size: 1.3vw;
    line-height: 1.5;
    margin-top: 4vh;
}

.teams-about-right {
    position: relative;
    margin-top: 2vw;
    width: 100%;
    height: 100%;
}

.teams-about-right-top{
    position:relative;
    width:100%;
    display:flex;
    justify-content:center;
    gap:1vw;
}

.teams-about-right-bottom{
    position:relative;
    width:100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1vw;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    
}

.team-about-img {
    position: relative;
    width: 16vw;
    height: 50vh;
    margin-top: 2vw;
    -o-object-fit: cover;
    object-fit: cover;
}

.team-about-img-main {
    position: relative;
    height: 90%;
    width: 100%;
}

.team-about-img-main>img {
    height: 100%;
    width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    border-radius: 3%;
    -o-object-fit: cover;
    object-fit: cover;
}

.team-about-img-dets {
    position: relative;
    height: 10%;
    width: 100%;
}

.team-about-img-dets p {
    font-size: 1.3vw;
    margin-top: 0.25vw;
}

.team-about-img-dets small {
    font-size: .8vw;
}

.aboutfront{
    background-position-y: top;
}

/*About us css end*/

/*Clientele css start*/



.main-clientele {
    position: relative;
    width: 100%;
    font-family: regularF;
    overflow:hidden;
}


.clientele-text {
    position: relative;
    padding: 1vw 2.4vw;
    z-index: 2;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.clientele-text p {
    font-size: 1.1vw;
    color: #ffffffbf;
}

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


.clientele {
    position: relative;
    height: 100vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.clientele-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.clientele-overlay video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(47, 47, 47, 0.383);
}

.brands-clientele {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2vw;
    gap: 5vw;
}

.brands-clientele-img {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    height: 5vw;
    width: 11vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.brands-clientele-img>img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}


.project-parent {
    position: relative;
    padding: 2vw;
}

.project-parent>h2 {
    padding: 6vw 0;
}

.project-clientele {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2vw;
    gap: 5vw;
}

.project-clientele-img {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    height: 8vw;
    width: 10vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.project-clientele-img>img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.design-parent {
    position: relative;
    padding: 2vw;
}

.design-parent>h2 {
    padding: 6vw 0;
}

.design-clientele {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2vw;
    gap: 5vw;
}

.design-clientele-img {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    height: 5vw;
    width: 10vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.design-clientele-img>img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}



.brands-clientele-img>.barclays {
    height: 80%;
    width: 70%;
}

.brands-clientele-img>.bajaj {
    height: 60%;
}

.brands-clientele-img>.google {
    height: 80%;
    width: 70%;
}


#page7-clientele {
    position: relative;
    height: 100vh;
    width: 100%;
    padding: 2vw;
    background-color: #fff;
    overflow: hidden;
    padding-top: 8vw;
}

.clientele-heading-text {
    position: relative;
    z-index: 1;
    padding: 2vw;
    margin-top: -14vw;
}


.page7-clientele-text>h3 {
    font-weight: 600;
}

.page7-clientele-container {
    position: relative;
    width: 100%;
    margin-top: 4vw;
}

.page7-clientele-container>h3 {
    position: relative;
    font-weight: 500;
}

.page7-clientele-container>p {
    position: relative;
    font-size: 1.2vw;
    margin-top: 0.5vw;
    font-weight: 600;
}

.page7-clientele-container-elems {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1vw;
    height: 30vh;
    margin-top: 6vw;
}

.page7-clientele-elem {
    position: relative;
    padding: 2vw;
    color: #fff;
    border-radius: 1vw;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page7-clientele-elem>h2 {
    font-size: 2vw;
}

.page7-clientele-elem>p {
    font-size: 1vw;
    width: 14vw;
    margin-top: 1vw;
}

.page7-clientele-elem1 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-red);
}

.page7-clientele-elem2 {
    position: relative;
    width: 50%;
    background-color: var(--color-red);
}

.page7-clientele-elem3 {
    position: relative;
    width: 50%;
    background-color: var(--color-red);
}

.page7-clientele-elem4 {
    position: relative;
    width: 50%;
    background-color: var(--color-red);
}

/*Clientele css end*/

/*Csr css start*/


.csr-3d {
    position: relative;
    width: 100%;
    padding: 2vw;
    overflow-x:hidden;
}

.csr-3d-text {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 3vw;
}

.csr-3d-text h2 {
    font-size: 3.5vw;
    padding-left: 1.5vw;
}

.csr-3d .wrapper {
    width: 100%;
}

.csr-3d .cols {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.csr-3d .col {
    width: calc(32% - 2rem);
    cursor: pointer;
}

.csr-3d .container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

.csr-3d .front,
.csr-3d .back {
    background-size: cover;
    -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    background-position: center;
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
        -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
    height: 20vw;
    /*width: 18vw !important;*/
    border-radius: 10px;
    font-size: 1.5rem;
}

.csr-3d .front {
    background-color: rgb(226, 222, 196);
}

.csr-3d .back {
    background: rgb(226, 222, 196);
}

.csr-3d .front:after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    content: "";
    display: block;
    opacity: 0.6;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 10px;
}

.csr-3d .container:hover .front,
.csr-3d .container:hover .back {
    -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    -o-transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
    transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1),
        -webkit-transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.csr-3d .back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.csr-3d .inner {
    -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
    transform: translateY(-50%) translateZ(60px) scale(0.94);
    top: 50%;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: 1px solid transparent;
    -webkit-perspective: inherit;
    perspective: inherit;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    height: 100%;
}

.csr-3d .container .back {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.csr-3d .container .front {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.csr-3d .container:hover .back {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.csr-3d .container:hover .front {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.csr-3d .front .inner p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    position: relative;
    color: #000;
}

.csr-3d .front .inner p:after {
    content: "";
    width: 4rem;
    height: 2px;
    position: absolute;
    /* background: #c6d4df; */
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -0.75rem;
}

.csr-3d .front .inner span {
    /* color: rgba(255, 255, 255, 0.7); */
    font-family: "Montserrat";
    font-weight: 300;
}

.sticky {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    height: 100vh;
    place-items: center;
    overflow: hidden;
    width: 100%;
}

.sticky__box {
    position: relative;
    height: 100vh;
}

.sticky__box-fill {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 22px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sticky p {
    position: relative;
    font-size: 1.8rem;
    line-height: 1.375;
    font-weight: 600;
    z-index: 10;
}

.csr-container {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

table {
    font-family: regularF;
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

table thead th {
    color: #ffffff;
    background: var(--color-red);
    padding: 15px;
    border: 1px solid #9e9ea0;
    font-weight: 500;
}

table tr {
    background: #ffffff;
}

table tr:hover {
    /* background-color: rgb(236, 236, 236); */
    color: #000;
    font-weight: bold;
    -webkit-box-shadow: #e5362d -1px 1px, #ca2828 -2px 2px, #e52c2c -3px 3px,
        #d62a2a -4px 4px, #eb3030 -5px 5px, #e61717 -6px 6px;
    box-shadow: #e5362d -1px 1px, #ca2828 -2px 2px, #e52c2c -3px 3px,
        #d62a2a -4px 4px, #eb3030 -5px 5px, #e61717 -6px 6px;
    -webkit-transform: translate3d(6px, -6px, 0);
    transform: translate3d(6px, -6px, 0);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: all;
    -o-transition-property: all;
    transition-property: all;
    -webkit-transition-timing-function: line;
    -o-transition-timing-function: line;
    transition-timing-function: line;
}

table tr td {
    border: 1px solid #e6edf1;
    padding: 25px;
}


.csr-project-section {
    width: 100vw;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-list li {
    display: block;
    position: relative;
    font-size: 20px;
    /* -webkit-text-stroke: 1px black;
   color: transparent; */
    z-index: 1;
    padding: 20px 0px 20px 0px;
    font-weight: 500;
}

.item img {
    position: absolute;
    width: 20vw;
    height: 20vw;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    top: 50%;
    left: 50%;
    z-index: -10;
    opacity: 0;
    visibily: hidden;
    pointer-events: none;
}

.project-list li:hover {
    color: var(--color-red);
    font-size: 21px;
}

.project-categ {
    font-weight: lighter;
}

.cursor {
    position: absolute;
    width: 600px;
    height: 400px;
    top: 50%;
    left: 50%;
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0;
    margin: -100px 0 0 -100px;
    background: url(image-1.html) no-repeat 50% 50%;
    background-size: cover;
    z-index: 1;
}

.wrapper {
    width: 80%;
    margin: 180px auto;
    height: 100%;
}

.project {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-preferred-size: 1;
    flex-basis: 1;
    position: relative;
    z-index: 2;
    color: white;

}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.csr {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url("../../../images/csr.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    font-family: 'regularF';
    overflow-x:hidden;
}

.csr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000058;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
}

.csr-overlay>p {
    font-size: 1.1vw;
    color: #ffffffbf;
}

.csr-video {
    position: relative;
    height: 100vh;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow-x:hidden;
}

.csr-video video {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}


.csr-dets {
    position: relative;
    width: 100%;
    padding: 2vw;
    font-family: 'regularF';
}

.csr-elem {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.csr-elem p {
    font-size: 1.2vw;
    width: 75%;
    margin: 2vw 0;
}

.csr-elem span {
    font-size: 1.2vw;
    margin: 2vw 0;
}

.csr-dets-right p {
    font-size: 1.2vw;
    margin: 2vw 0;
}


.csr-gallery {
    position: relative;
    width: 100%;
    padding: 12vw 2vw;
    overflow-x:hidden;
}

.csr-gallery .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.csr-gallery .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 20vw;
    height: 20vw;
}

.csr-gallery .swiper-slide img {
    display: block;
    width: 100%;
}

.csr-gallery .swiper-button-next,
.swiper-rtl .swiper-button-prev {
    color: #e73e0d;
    top: 96%;
    right: 44%;
    z-index: 20;
    scale: .7;
}

.csr-gallery .swiper-button-prev,
.swiper-rtl .swiper-button-next {
    color: #e73e0d;
    top: 96%;
    left: 44%;
    z-index: 20;
    scale: .7;
}

.csr-gallery .swiper-pagination-bullet-active {
    background: #e73e0d;
}

/*Csr css end*/

/*news css start*/

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

.project-main-header {
    background: url(../../../images/Screenshot.html\ 2024-08-16\ at\ 2.27.44\PM.png);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-main-header img[alt="arrow-icon"] {
    position: absolute;
    bottom: 2%;
    right: 2%;
    max-width: 8vw;
    height: auto;
}

.search-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    margin-top: 40px;
}

.search-bar .search {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.search-bar select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
    margin-left: 10px;
}

.search-bar input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 50px;
    margin-left: 10px;

}

.news-btn {
    border: 1px solid #db3434;
    padding: 7px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 1vw;
    color: var(--color-red);
}

.news-btn a {
    color: var(--color-red);
    text-decoration: none;
}

.news-btn:hover {
    background-color: var(--color-red);
    border-radius: 24px;
    -webkit-transition: 0.1s ease-in;
    -o-transition: 0.1s ease-in;
    transition: 0.1s ease-in;
    color: var(--color-white);
}

.news-btn:hover a {
    color: var(--color-white);
}

.single-blog-post .single-post-image,
.single-post-image img {
    width: 90%;
    display: block;
    float: left;
    overflow: hidden
}

.single-blog-post:hover .single-post-image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.single-post-image img {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.news-wrapper {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    /* margin-bottom: 100px; */
    position: relative;
    z-index: 1
    overflow-x:hidden;
}


.single-blog-post.horizontal a,
.nayla-posts-grid.grid-list .single-blog-post a {
    width: 35%;
    max-height: 300px;
    overflow: hidden;
}

.single-blog-post.horizontal .post-details,
.nayla-posts-grid.grid-list .single-blog-post .post-details {
    width: 65%;
    margin-top: 0;
    padding: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.single-blog-post {
    margin-bottom: 20px;
    border-bottom: 1px solid #d3d3d3;
    /* Adds a light grey rule line */
    padding-bottom: 20px;
}



/*** Single Post */
.single-blog-post,
.single-blog-post>a {
    display: block;
    float: left;
    width: 100%;
}

.single-blog-post .single-post-image,
.single-post-image img {
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    float: left;
    overflow: hidden
}

.single-blog-post:hover .single-post-image img {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.single-post-image img {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    -o-transition: transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
}

.single-blog-post .post-details {
    display: block;
    float: left;
    max-width: 100%;
    margin-top: 2em;
}


.single-blog-post .post-meta {
    display: block;
    float: left;
    width: 100%;
    margin-bottom: 1.5em;
    opacity: .5
}

.single-blog-post .post-meta>div {
    float: left;
    display: block;
}


.single-blog-post .post-meta>div:first-child::before {
    display: none
}

.single-blog-post .post-meta>div:last-child::before {
    content: "/";
    margin: 0 10px
}

.single-blog-post .post-button {
    margin-top: 1.5em
}

.single-post-page .next-post-wrap .single-blog-post.horizontal .post-details {
    padding-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 0;
    height: 300px;
}

.top-margin-20 {
    margin-top: 20px;
}



.news {
    position: relative;
    height: 100vh;
    width: 100%;
    font-family: regularF;
    background-image: url("../../../images/news.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000058;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}

.news-overlay>p {
    font-size: 1.1vw;
    color: #ffffffbf;
}

.search-news {
    position: absolute;
    top: -30%;
    left: 0%;
    height: 25%;
    width: 100%;
    padding: 2vw 2.4vw;
    padding-bottom: 4vw;
    z-index: 9;
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1vw;
}

.search-news>input {
    padding: 0.6vw 1.2vw;
    width: 60%;
    border-radius: 0.5vw;
    font-size: 1vw;
    outline: none;
}

.search-news>i {
    font-size: 1.3vw;
}

.search-news>i:hover {
    color: #ce4141;
    cursor: pointer;
}


/*News css end*/

/*Awards css start*/

.main-awards {
    position: relative;
    width: 100%;
    font-family: regularF;
    overflow:hidden;
}

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

.awards {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url("../../../images/award.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.awards-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000058;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.brands-awards {
    position: relative;
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8vw;
    padding-top: 4vw;
    padding-bottom: 12vw;
}

.brands1-awards {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.brands2-awards {
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 1vw;
}

.brands3-awards {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 1vw;
}

.brands4-awards {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12vw;
    justify-content: center;
    width: 100%;
    margin-top: 1vw;
}


.brands-awards-img {
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    height: 10vw;
    width: 18vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.5vw;
}

.brands-awards-img>p {
    font-size: 1vw;
    text-align: center;
    line-height: 1.2;
    font-weight: 300;
}

.brands-awards-img>img {
    position: relative;
    height: 10vw;
    -o-object-fit: cover;
    object-fit: cover;
}

.brands5-awards {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12vw;
    justify-content: center;
    width: 100%;
    height: 25vh;
    margin-top: 1vw;
}

.brands-awards-last {
    width: 22vw;
}



/*Awards css end*/

/*Contact css start*/

#page {
    width: 600px;
    height: 814px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 20vh 1.6fr;
    grid-template-columns: 20vh 1.6fr;
    -ms-grid-rows: 1fr 3fr 20vh;
    grid-template-rows: 1fr 3fr 20vh;
    overflow: clip;
    position: relative;
    border-radius: 8px;
}

#page>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

#page>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

#page>*:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
}

#page>*:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
}

#page>*:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

#page>*:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
}

#page .big-gear,
#page .small-gear {
    position: absolute;
    aspect-ratio: 1;
    background-color: #cfcccc;
    border-radius: 100vw;
    display: -ms-grid;
    display: grid;
    place-items: center;
}

#page .big-gear>.tooth,
#page .small-gear>.tooth {
    position: absolute;
    background-color: inherit;
    border-radius: 8px;
}

#page .big-gear>.content-wrapper,
#page .small-gear>.content-wrapper {
    z-index: 2;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

#page .big-gear {
    grid-area: 0.5;
    -ms-grid-row-align: center;
    -ms-grid-column-align: center;
    place-self: center;
    height: 560px;
    margin-left: calc(560px / 2);
}

#page .big-gear>.tooth {
    height: calc(100% + 2 * 5.4%);
    width: 7.6%;
}

#page .big-gear .tooth:nth-of-type(1) {
    -webkit-transform: rotateZ(calc(0 * 18deg));
    -ms-transform: rotate(calc(0 * 18deg));
    transform: rotateZ(calc(0 * 18deg));
}

#page .big-gear .tooth:nth-of-type(2) {
    -webkit-transform: rotateZ(calc(1 * 18deg));
    -ms-transform: rotate(calc(1 * 18deg));
    transform: rotateZ(calc(1 * 18deg));
}

#page .big-gear .tooth:nth-of-type(3) {
    -webkit-transform: rotateZ(calc(2 * 18deg));
    -ms-transform: rotate(calc(2 * 18deg));
    transform: rotateZ(calc(2 * 18deg));
}

#page .big-gear .tooth:nth-of-type(4) {
    -webkit-transform: rotateZ(calc(3 * 18deg));
    -ms-transform: rotate(calc(3 * 18deg));
    transform: rotateZ(calc(3 * 18deg));
}

#page .big-gear .tooth:nth-of-type(5) {
    -webkit-transform: rotateZ(calc(4 * 18deg));
    -ms-transform: rotate(calc(4 * 18deg));
    transform: rotateZ(calc(4 * 18deg));
}

#page .big-gear .tooth:nth-of-type(6) {
    -webkit-transform: rotateZ(calc(5 * 18deg));
    -ms-transform: rotate(calc(5 * 18deg));
    transform: rotateZ(calc(5 * 18deg));
}

#page .big-gear .tooth:nth-of-type(7) {
    -webkit-transform: rotateZ(calc(6 * 18deg));
    -ms-transform: rotate(calc(6 * 18deg));
    transform: rotateZ(calc(6 * 18deg));
}

#page .big-gear .tooth:nth-of-type(8) {
    -webkit-transform: rotateZ(calc(7 * 18deg));
    -ms-transform: rotate(calc(7 * 18deg));
    transform: rotateZ(calc(7 * 18deg));
}

#page .big-gear .tooth:nth-of-type(9) {
    -webkit-transform: rotateZ(calc(8 * 18deg));
    -ms-transform: rotate(calc(8 * 18deg));
    transform: rotateZ(calc(8 * 18deg));
}

#page .big-gear .tooth:nth-of-type(10) {
    -webkit-transform: rotateZ(calc(9 * 18deg));
    -ms-transform: rotate(calc(9 * 18deg));
    transform: rotateZ(calc(9 * 18deg));
}

#page .big-gear>.content-wrapper {
    height: 96%;
    width: 96%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    overflow: auto;
}

#page .big-gear>.content-wrapper>a {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: calc(20% - 8px);
    padding-inline: 12px;
    background-color: #ce4141 !important;
    -webkit-animation: gear-scroll 12s ease-in-out;
    animation: gear-scroll 12s ease-in-out;
    animation-timeline: view();
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: regularF;
    cursor: pointer;
    -webkit-transition: -webkit-box-shadow 0.2s ease;
    transition: -webkit-box-shadow 0.2s ease;
    -o-transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease;
    transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
    font-size: 30px;
    font-weight: 300;
    color: #fff;
}

#page .big-gear>.content-wrapper>a:first-of-type {
    margin-top: calc(40% + 12px);
}

#page .big-gear>.content-wrapper>a:last-of-type {
    margin-bottom: calc(40% + 12px);
}

#page .big-gear>.content-wrapper>a:hover {
    -webkit-box-shadow: 0 0 4px black;
    box-shadow: 0 0 4px black;
}

#page .small-gear {
    -ms-grid-row: 3;
    grid-area: 3;
    height: 220px;
    bottom: 4.8vh;
    left: 8vh;
}

body #page .small-gear>.tooth {
    height: calc(100% + 2 * 16.8%);
    width: 16%;
}

#page .small-gear .tooth:nth-of-type(1) {
    -webkit-transform: rotateZ(calc(0 * 36deg));
    -ms-transform: rotate(calc(0 * 36deg));
    transform: rotateZ(calc(0 * 36deg));
}

#page .small-gear .tooth:nth-of-type(2) {
    -webkit-transform: rotateZ(calc(1 * 36deg));
    -ms-transform: rotate(calc(1 * 36deg));
    transform: rotateZ(calc(1 * 36deg));
}

#page .small-gear .tooth:nth-of-type(3) {
    -webkit-transform: rotateZ(calc(2 * 36deg));
    -ms-transform: rotate(calc(2 * 36deg));
    transform: rotateZ(calc(2 * 36deg));
}

#page .small-gear .tooth:nth-of-type(4) {
    -webkit-transform: rotateZ(calc(3 * 36deg));
    -ms-transform: rotate(calc(3 * 36deg));
    transform: rotateZ(calc(3 * 36deg));
}

#page .small-gear .tooth:nth-of-type(5) {
    -webkit-transform: rotateZ(calc(4 * 36deg));
    -ms-transform: rotate(calc(4 * 36deg));
    transform: rotateZ(calc(4 * 36deg));
}

#page .small-gear .tooth:nth-of-type(6) {
    -webkit-transform: rotateZ(calc(5 * 36deg));
    -ms-transform: rotate(calc(5 * 36deg));
    transform: rotateZ(calc(5 * 36deg));
}

#page .small-gear>.content-wrapper {
    height: 88%;
    width: 88%;
    border-radius: 100vw;
    display: -ms-grid;
    display: grid;
    place-items: center;
    overflow: clip;
}

#page .small-gear>.content-wrapper>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    aspect-ratio: 1;
}

@-webkit-keyframes gear-scroll {

    0%,
    16% {
        margin-left: calc(560px / 3);
    }

    24%,
    36% {
        margin-left: calc(560px / 7);
    }

    44%,
    56% {
        margin-left: calc(560px / 35);
    }

    64%,
    76% {
        margin-left: calc(560px / 7);
    }

    84%,
    100% {
        margin-left: calc(560px / 3);
    }
}

@keyframes gear-scroll {

    0%,
    16% {
        margin-left: calc(560px / 3);
    }

    24%,
    36% {
        margin-left: calc(560px / 7);
    }

    44%,
    56% {
        margin-left: calc(560px / 35);
    }

    64%,
    76% {
        margin-left: calc(560px / 7);
    }

    84%,
    100% {
        margin-left: calc(560px / 3);
    }
}


.page2-contact {
    position: relative;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 2.4vw;
    overflow: hidden;
}


/*.page2-contact-map{*/
/*  position: relative;*/
/*  width: 50%;*/
/*  height: 100%;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*}*/

/*.page2-contact-map>img{*/
/*  position: relative;*/
/*  height: 90%;*/
/*  width: 70%;*/
/*  object-fit: cover;*/
/*}*/

.page2-contact-map {
    position: relative;
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 4vw;
    padding: 5vw 2.4vw;
    overflow-x:hidden;
    flex-direction: row;
    justify-content: space-around;
}

.page2-contact-map>img {
    position: relative;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.page2-contact-cards {
    position: relative;
    width: 100%;
    margin-top: 2vw;
    gap: 2vw;
    overflow: hidden;
}

.page2-contact-cards-elems {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    gap: 6vw;
}



.deno {
    color: var(--color-red);
    position: relative;
    font-size: 150px;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--color-red);
}

.address-card>img {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.main-address-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.process-wrap {
    overflow-x: hidden;
}

.process {
    width: 300%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    height: 100vh !important;
}

.process__item {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
}

.empty {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.address-card a {
    height: auto;
    width: auto;
}

.address-card img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.address-desc a {
    color: #000;
}

.address-desc .city-name {
    font-size: 2vw;
    margin: 10px 0;
}

.address-desc p {
    padding: 10px 0;
}

.form-container-main {
    /* min-height: 100dvh; */
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0px;
}

.form-container {
    width: 50%;
    background-color: #000;
    padding: 30px 30px 30px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-left: 5px solid var(--color-red);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.form-container .form-image {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

.form-container .form-image model-viewer {
    margin-top: -30px;
    height: 100%;
    width: 100%;
}

.form-container .form {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
}

.form-container .form input {
    color: var(--color-black);
    width: 100%;
    border: none;
    outline: none;
    padding: 10px;
    margin-bottom: 20px;
    font-weight: bold;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-left: 1px solid transparent;
}

.form-container .form input:focus {
    border-left: 5px solid var(--color-red);
}

.form-container .form textarea {
    width: 100%;
    padding: 10px;
    border: none;
    outline: none;
    font-weight: bold;
    resize: none;
    max-height: 150px;
    margin-bottom: 20px;
    border-left: 1px solid transparent;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.form-container .form textarea:focus {
    border-left: 5px solid var(--color-red);
}

.form-container .form .button-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.form-container .form .button-container .send-button {
    -ms-flex-preferred-size: 70%;
    flex-basis: 70%;
    background: var(--color-red);
    padding: 10px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    border: 1px solid transparent;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.form-container .form .button-container .send-button:hover {
    background: transparent;
    border: 1px solid var(--color-red);
    color: #fff;
}

.form-container .form .button-container .reset-button-container {
    -webkit-filter: drop-shadow(1px 1px 0px var(--color-red));
    filter: drop-shadow(1px 1px 0px var(--color-red));
    -ms-flex-preferred-size: 30%;
    flex-basis: 30%;
}

.form-container .form .button-container .reset-button-container .reset-button {
    position: relative;
    text-align: center;
    padding: 10px;
    color: #fff;
    font-weight: bold;
    background: #001925;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.form-container .form .button-container .reset-button-container .reset-button:hover {
    background: var(--color-red);
    color: #fff;
}



.wrap-contact {
    position: relative;
    display: block !important;
    width: 50%;
}

.wrap-contact>h2 {
    padding-top: 2.5vw;
    font-size: 3.5vw;
}


.contact {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url("../../../images/contact.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000058;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact-container {
    position: relative;
    padding: 2vw;
    padding-top: 6vw;
    padding-bottom: 6vw;
    width: 50%;
}

.contact-container>h2 {
    text-align: center;
}

.contact-sucess {
    color: #00ff00;
}

.contact-error {
    color: #ff0000;
}

.contact-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 2vw;
}

.form-group {
    margin-bottom: 15px;
}

label {
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
    color: #333;
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    cursor: pointer;
}

textarea {
    resize: none;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}




.page2-contact-mobile {
    display: none;
}

.address-card {
    height: 60vh;
}

/*Contact css end*/

/*Career css start*/

/* why us section css   */
a {
    text-decoration: none !important;
}


.h2-heading {
    font-size: 40px;
    text-align: center;
}

.why-us-section {
    --background-color: #18181b;
    --text-color: #a1a1aa;
    --card-background-color: rgba(255, 255, 255, 0.015);
    --card-border-color: rgba(255, 255, 255, 0.1);
    --card-box-shadow-1: rgba(0, 0, 0, 0.05);
    --card-box-shadow-1-y: 3px;
    --card-box-shadow-1-blur: 6px;
    --card-box-shadow-2: rgba(0, 0, 0, 0.1);
    --card-box-shadow-2-y: 8px;
    --card-box-shadow-2-blur: 15px;
    --card-label-color: #fff;
    --card-icon-color: #d4d4d8;
    --card-icon-background-color: rgba(255, 255, 255, 0.08);
    --card-icon-border-color: rgba(255, 255, 255, 0.12);
    --card-shine-opacity: 0.1;
    --card-shine-gradient: conic-gradient(from 205deg at 50% 50%,
            rgba(16, 185, 129, 0) 0deg,
            #fa0707 25deg,
            rgba(255, 4, 0, 0.18) 295deg,
            rgba(16, 185, 129, 0) 360deg);
    --card-line-color: #2a2b2c;
    --card-tile-color: rgba(185, 16, 16, 0.05);
    --card-hover-border-color: rgba(255, 255, 255, 0.2);
    --card-hover-box-shadow-1: rgba(0, 0, 0, 0.04);
    --card-hover-box-shadow-1-y: 5px;
    --card-hover-box-shadow-1-blur: 10px;
    --card-hover-box-shadow-2: rgba(0, 0, 0, 0.3);
    --card-hover-box-shadow-2-y: 15px;
    --card-hover-box-shadow-2-blur: 25px;
    --card-hover-icon-color: #fa0707;
    --card-hover-icon-background-color: rgba(204, 39, 39, 0.16);
    --card-hover-icon-border-color: rgba(204, 39, 39, 0.16);
    --blur-opacity: 0.01;
}

.why-us-section.light {
    --background-color: #fafafa;
    --text-color: #52525b;
    --card-background-color: transparent;
    --card-border-color: rgba(24, 24, 27, 0.08);
    --card-box-shadow-1: rgba(24, 24, 27, 0.02);
    --card-box-shadow-1-y: 3px;
    --card-box-shadow-1-blur: 6px;
    --card-box-shadow-2: rgba(24, 24, 27, 0.04);
    --card-box-shadow-2-y: 2px;
    --card-box-shadow-2-blur: 7px;
    --card-label-color: #18181b;
    --card-icon-color: #18181b;
    --card-icon-background-color: rgba(24, 24, 27, 0.04);
    --card-icon-border-color: rgba(24, 24, 27, 0.1);
    --card-shine-opacity: 0.3;
    --card-shine-gradient: conic-gradient(from 225deg at 50% 50%,
            rgba(16, 185, 129, 0) 0deg,
            #10b981 25deg,
            #edfaf6 285deg,
            #fff 345deg,
            rgba(16, 185, 129, 0) 360deg);
    --card-line-color: #e9e9e7;
    --card-tile-color: rgba(16, 185, 129, 0.08);
    --card-hover-border-color: rgba(24, 24, 27, 0.15);
    --card-hover-box-shadow-1: rgba(24, 24, 27, 0.05);
    --card-hover-box-shadow-1-y: 3px;
    --card-hover-box-shadow-1-blur: 6px;
    --card-hover-box-shadow-2: rgba(24, 24, 27, 0.1);
    --card-hover-box-shadow-2-y: 8px;
    --card-hover-box-shadow-2-blur: 15px;
    --card-hover-icon-color: #18181b;
    --card-hover-icon-background-color: rgba(24, 24, 27, 0.04);
    --card-hover-icon-border-color: rgba(24, 24, 27, 0.34);
    --blur-opacity: 0.1;
}

why-us-section.toggle .grid * {
    -webkit-transition-duration: 0s !important;
    -o-transition-duration: 0s !important;
    transition-duration: 0s !important;
}

.grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 32px;
    position: relative;
    z-index: 1;
}

.why-us>h2 {
    font-size: 3vw;
    font-weight: 500;
}

.multi-content-card__item-label {
    margin-top: .5vw;
}

.multi-content-card__item-title-text {
    font-size: 1.6vw;
    color: #000;
}

.multi-content-card__item-label>a {
    font-size: 1.3vw;
    margin-top: 1vw;
}

.why-us-card {
    /* background-color: var(--background-color); */
    background-color: #ededed;
    -webkit-box-shadow: 0px var(--card-box-shadow-1-y) var(--card-box-shadow-1-blur) var(--card-box-shadow-1),
        0px var(--card-box-shadow-2-y) var(--card-box-shadow-2-blur) var(--card-box-shadow-2),
        0 0 0 1px var(--card-border-color);
    box-shadow: 0px var(--card-box-shadow-1-y) var(--card-box-shadow-1-blur) var(--card-box-shadow-1),
        0px var(--card-box-shadow-2-y) var(--card-box-shadow-2-blur) var(--card-box-shadow-2),
        0 0 0 1px var(--card-border-color);
    padding: 56px 16px 16px 16px;
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    -webkit-transition: -webkit-box-shadow 0.25s;
    transition: -webkit-box-shadow 0.25s;
    -o-transition: box-shadow 0.25s;
    transition: box-shadow 0.25s;
    transition: box-shadow 0.25s, -webkit-box-shadow 0.25s;
}

.why-us-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background-color: var(--card-background-color);
}

.why-us-card .icon {
    z-index: 2;
    position: relative;
    display: table;
    padding: 8px;
}

.why-us-card .icon::after {
    content: "";
    position: absolute;
    inset: 4.5px;
    border-radius: 50%;
    background-color: var(--card-icon-background-color);
    border: 1px solid var(--card-icon-border-color);
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    -webkit-transition: background-color 0.25s, border-color 0.25s;
    -o-transition: background-color 0.25s, border-color 0.25s;
    transition: background-color 0.25s, border-color 0.25s;
}

.why-us-card .icon svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 25px;
    height: 25px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    padding: 10px;
    color: #b91810;
    -webkit-transition: color 0.25s;
    -o-transition: color 0.25s;
    transition: color 0.25s;
}

.why-us-card h4 {
    z-index: 2;
    position: relative;
    margin: 12px 0 4px 0;
    font-family: regularF;
    font-weight: 600;
    font-size: 25px;
    line-height: 2;
}

.why-us-card p {
    z-index: 2;
    position: relative;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
}

.why-us-para {
    text-align: center;
    color: #515153;
    width: 70%;
    margin: 0 auto;
    font-size: 20px;
    margin-top: 1vw;
}

.why-us-card .shine {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.why-us-card .shine:before {
    content: "";
    width: 150%;
    padding-bottom: 150%;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: 55%;
    -webkit-filter: blur(35px);
    filter: blur(35px);
    opacity: var(--card-shine-opacity);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-image: var(--card-shine-gradient);
}

.why-us-card .background {
    border-radius: inherit;
    position: absolute;
    inset: 0;
    overflow: hidden;
    -webkit-mask-image: radial-gradient(circle at 60% 5%,
            black 0%,
            black 15%,
            transparent 60%);
    mask-image: radial-gradient(circle at 60% 5%,
            black 0%,
            black 15%,
            transparent 60%);
}

.why-us-card .background .tiles {
    opacity: 0;
    -webkit-transition: opacity 0.25s;
    -o-transition: opacity 0.25s;
    transition: opacity 0.25s;
}

.why-us-card .background .tiles .tile {
    position: absolute;
    background-color: var(--card-tile-color);
    -webkit-animation-duration: 8s;
    animation-duration: 8s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    opacity: 0;
}

.why-us-card .background .tiles .tile.tile-4,
.card .background .tiles .tile.tile-6,
.card .background .tiles .tile.tile-10 {
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.why-us-card .background .tiles .tile.tile-3,
.card .background .tiles .tile.tile-5,
.card .background .tiles .tile.tile-8 {
    -webkit-animation-delay: -4s;
    animation-delay: -4s;
}

.why-us-card .background .tiles .tile.tile-2,
.card .background .tiles .tile.tile-9 {
    -webkit-animation-delay: -6s;
    animation-delay: -6s;
}

.why-us-card .background .tiles .tile.tile-1 {
    top: 0;
    left: 0;
    height: 10%;
    width: 22.5%;
}

.why-us-card .background .tiles .tile.tile-2 {
    top: 0;
    left: 22.5%;
    height: 10%;
    width: 27.5%;
}

.why-us-card .background .tiles .tile.tile-3 {
    top: 0;
    left: 50%;
    height: 10%;
    width: 27.5%;
}

.why-us-card .background .tiles .tile.tile-4 {
    top: 0;
    left: 77.5%;
    height: 10%;
    width: 22.5%;
}

.why-us-card .background .tiles .tile.tile-5 {
    top: 10%;
    left: 0;
    height: 22.5%;
    width: 22.5%;
}

.why-us-card .background .tiles .tile.tile-6 {
    top: 10%;
    left: 22.5%;
    height: 22.5%;
    width: 27.5%;
}

.why-us-card .background .tiles .tile.tile-7 {
    top: 10%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}

.why-us-card .background .tiles .tile.tile-8 {
    top: 10%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}

.why-us-card .background .tiles .tile.tile-9 {
    top: 32.5%;
    left: 50%;
    height: 22.5%;
    width: 27.5%;
}

.why-us-card .background .tiles .tile.tile-10 {
    top: 32.5%;
    left: 77.5%;
    height: 22.5%;
    width: 22.5%;
}

@-webkit-keyframes tile {

    0%,
    12.5%,
    100% {
        opacity: 1;
    }

    25%,
    82.5% {
        opacity: 0;
    }
}

@keyframes tile {

    0%,
    12.5%,
    100% {
        opacity: 1;
    }

    25%,
    82.5% {
        opacity: 0;
    }
}

.why-us-card .background .line {
    position: absolute;
    inset: 0;
    opacity: 0;
    -webkit-transition: opacity 0.35s;
    -o-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

.why-us-card .background .line:before,
.card .background .line:after {
    content: "";
    position: absolute;
    background-color: var(--card-line-color);
    -webkit-transition: -webkit-transform 0.35s;
    transition: -webkit-transform 0.35s;
    -o-transition: transform 0.35s;
    transition: transform 0.35s;
    transition: transform 0.35s, -webkit-transform 0.35s;
}

.why-us-card .background .line:before {
    left: 0;
    right: 0;
    height: 1px;
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.why-us-card .background .line:after {
    top: 0;
    bottom: 0;
    width: 1px;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
}

.why-us-card .background .line.line-1:before {
    top: 10%;
}

.why-us-card .background .line.line-1:after {
    left: 22.5%;
}

.why-us-card .background .line.line-1:before,
.card .background .line.line-1:after {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.why-us-card .background .line.line-2:before {
    top: 32.5%;
}

.why-us-card .background .line.line-2:after {
    left: 50%;
}

.why-us-card .background .line.line-2:before,
.card .background .line.line-2:after {
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.why-us-card .background .line.line-3:before {
    top: 55%;
}

.why-us-card .background .line.line-3:after {
    right: 22.5%;
}

.why-us-card:hover {
    -webkit-box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1),
        0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2),
        0 0 0 1px var(--card-hover-border-color);
    box-shadow: 0px 3px 6px var(--card-hover-box-shadow-1),
        0px var(--card-hover-box-shadow-2-y) var(--card-hover-box-shadow-2-blur) var(--card-hover-box-shadow-2),
        0 0 0 1px var(--card-hover-border-color);
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

.why-us-card:hover .icon::after {
    background-color: var(--card-hover-icon-background-color);
    border-color: var(--card-hover-icon-border-color);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.why-us-card:hover .icon svg {
    color: var(--card-hover-icon-color);
}

.why-us-card:hover .shine {
    opacity: 1;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.why-us-card:hover .background .tiles {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    -o-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.why-us-card:hover .background .tiles .tile {
    -webkit-animation-name: tile;
    animation-name: tile;
}

.why-us-card:hover .background .line {
    opacity: 1;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
}

.why-us-card:hover .background .line:before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}

.why-us-card:hover .background .line:after {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
}

.why-us-card:hover .background .line.line-1:before,
.why-us-card:hover .background .line.line-1:after {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.why-us-card:hover .background .line.line-2:before,
.why-us-card:hover .background .line.line-2:after {
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.why-us-card:hover .background .line.line-3:before,
.why-us-card:hover .background .line.line-3:after {
    -webkit-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.why-us-section {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: regularF;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* background-color: var(--background-color); */
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 50px;
}

.why-us-section:before {
    content: "";
    position: absolute;
    background-image: -o-radial-gradient(top,
            ellipse,
            #b91810 0%,
            var(--background-color) 50%);
    background-image: radial-gradient(ellipse at top,
            #b91810 0%,
            var(--background-color) 50%);
    opacity: var(--blur-opacity);
}

.current-opening-heading {
    font-size: 3vw;
    line-height: 34px;
    letter-spacing: 0;
    font-weight: 500;
    font-family: regularF;
}

.current-opening-desc {
    font-size: 22px;
    line-height: 28px;
    margin: 1.5vw 0;
    padding-bottom: 1vw;
}

link-lg {
    font-size: 24px;
    line-height: 1.5em;
}

.type-v2.btn-link {
    color: #000;
    font-weight: 600;
}

.current-opening-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    margin-top: 80px;
    margin-bottom: 80px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    padding: 2vw;
    overflow-x:hidden;
}

.current-opening-section>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.current-opening-section>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.current-opening-section2 img {
    /* height:300px; */
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;

}

/* career-option-section */
.career-option-desc-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr 10px 1fr;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 10px;
    margin-top: 1vw;
    overflow-x:hidden;
}

.career-option-desc-section>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.career-option-desc-section>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

.career-option-desc-section>*:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.career-option-desc-section>*:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}

.career-option-desc-section>*:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
}

.career-option-desc-section>*:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}

.career-option-section {
    /* background-color: gainsboro; */
    padding: 2vw;
    overflow-x:hidden;
}

.career-option-main-heading {
    font-weight: 500;
    font-size: 3vw;
    font-family: regularF;
    margin-bottom: 1.5vw;
}

.multi-content-card--titletextcta .multi-content-card__item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.multi-content-card__item .multi-content-card__item-content {
    border-color: #b1b2b4;
    padding-top: 36px;
    padding-bottom: 12px;
}

.multi-content-card__item * {
    border-color: initial;
}

.experience-container>.experience-content {
    width: 100%;
    text-align: left;
    position: relative;
    padding-top: 48px;
    padding-bottom: 48px;
    padding-left: 12px;
    padding-right: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.experience-container[data-content-horizontal-alignment="left"] {
    text-align: left;
}

.experience-container[data-background-brightness="high"] {
    color: #000;
}

body>div.container-fluid.primary-container {
    -webkit-animation-duration: 0.001s;
    animation-duration: 0.001s;
    -webkit-animation-name: atNodeInserted54;
    animation-name: atNodeInserted54;
    visibility: visible;
}

.type-v2 h4,
.type-v2.h4,
h4.type-v2 {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 600;
}

.multi-content-card__item * {
    border-color: initial;
}

.type-v2 {
    font-size: 16px;
    line-height: 22px;
}

.multi-content-card--titletextcta .multi-content-card__item-title-text {
    background-image: -o-linear-gradient(330deg, #e30613 0%, #e30613 100%);
    background-image: linear-gradient(120deg, #e30613 0%, #e30613 100%);
    background-repeat: no-repeat;
    background-size: 100% 0;
    background-position: 0 88%;
    -webkit-transition: background-size 0.25s ease-in;
    -o-transition: background-size 0.25s ease-in;
    transition: background-size 0.25s ease-in;
    font-family: regularF;
}

.multi-content-card__item * {
    border-color: initial;
}

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

.type-v2 h4,
.type-v2.h4,
h4.type-v2 {
    font-size: 22px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 600;
}

.type-v2 {
    font-size: 16px;
    line-height: 22px;
}

.fa-arrow-right:hover {
    font-size: 20px;
    -webkit-transform: scaleX(1.5);
    -ms-transform: scaleX(1.5);
    transform: scaleX(1.5);
    -webkit-transition: ease 0.5s;
    -o-transition: ease 0.5s;
    transition: ease 0.5s;
    margin-left: 10px;
}

/* form css  */

.form-container {
    max-width: 90%;
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 25px 40px 10px 40px;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 80px;
    margin-top: 120px !important;
}

.form-container .text {
    text-align: center;
    font-size: 41px;
    font-weight: 600;
    background: -o-radial-gradient(81.9% 53.5%,
            circle,
            rgb(173, 53, 53) 16.3%,
            rgb(240, 60, 60) 100.2%);
    background: radial-gradient(circle at 81.9% 53.5%,
            rgb(173, 53, 53) 16.3%,
            rgb(240, 60, 60) 100.2%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-container form {
    padding: 30px 0 0 0;
}

.form-container form .form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 52px 0;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

form .form-row .input-data {
    width: 100%;
    height: 40px;
    margin: 0 20px;
    position: relative;
}

.input-data input {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    font-size: 17px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
}

.input-data input:focus~label,
.textarea textarea:focus~label,
.input-data input:valid~label,
.textarea textarea:valid~label {
    -webkit-transform: translateY(-33px);
    -ms-transform: translateY(-33px);
    transform: translateY(-33px);
    font-size: 14px;
    color: #db3434;
}

.textarea textarea {
    resize: none;
    padding-top: 10px;
}

.input-data label {
    position: absolute;
    pointer-events: none;
    bottom: 10px;
    font-size: 16px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.textarea label {
    width: 100%;
    bottom: 40px;
    background: #fff;
}

.input-data .underline {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100%;
}

.input-data input:focus~.underline:before,
.input-data input:valid~.underline:before,
.textarea textarea:focus~.underline:before,
.textarea textarea:valid~.underline:before {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.submit-btn .input-data {
    overflow: hidden;
    height: 45px !important;
    width: 25% !important;
}

.submit-btn .input-data .inner {
    height: 100%;
    width: 300%;
    position: absolute;
    left: -100%;
    background: -o-radial-gradient(81.9% 53.5%,
            circle,
            rgb(173, 53, 53) 16.3%,
            rgb(240, 60, 60) 100.2%);
    background: radial-gradient(circle at 81.9% 53.5%,
            rgb(173, 53, 53) 16.3%,
            rgb(240, 60, 60) 100.2%);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.submit-btn .input-data:hover .inner {
    left: 0;
}

.submit-btn .input-data input {
    background: none;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.news-main-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.page7-career-container {
    position: relative;
    width: 100%;
    margin-top: 4vw;
    padding: 2vw;
}

.page7-career-container>h3 {
    position: relative;
    font-weight: 500;
}

.page7-career-container>p {
    position: relative;
    font-size: 1.2vw;
    margin-top: 0.5vw;
    font-weight: 600;
}

.page7-career-container-elems {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1vw;
    height: 45vh;
    margin-top: 2vw;
}

.page7-career-elem {
    position: relative;
    padding: 2vw;
    color: #fff;
    border-radius: 1vw;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.page7-career-elem>h2 {
    font-size: 2vw;
}

.page7-career-elem>p {
    font-size: 1vw;
    width: 14vw;
    margin-top: 1vw;
}

.page7-career-elem1 {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--color-red);
}

.page7-career-elem2 {
    position: relative;
    width: 50%;
    background-color: var(--color-red);
}

.page7-career-elem3 {
    position: relative;
    width: 50%;
    background-color: var(--color-red);
}

.page7-career-elem4 {
    position: relative;
    width: 50%;
    background-color: var(--color-red);
}

.join-us-section {
    background-color: #e2ffdf;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

.small-cards {
    width: 100%;
    height: 100vh;
    position: sticky;
    top: 0;
    background-color: #e2dec4;
}


.shad {
    -webkit-box-shadow: rgba(114, 10, 10, 0) 0px 0px 0px,
        rgba(114, 10, 10, 0.024) 0px 2px 0.2px,
        rgba(114, 10, 10, 0.027) 0px 4px 0.4px,
        rgba(114, 10, 10, 0.03) 0px 6.1px 0.7px,
        rgba(114, 10, 10, 0.035) 0px 8.3px 0.9px,
        rgba(114, 10, 10, 0.035) 0px 10.7px 1.2px,
        rgba(114, 10, 10, 0.04) 0px 13.5px 1.6px,
        rgba(114, 10, 10, 0.04) 0px 16.6px 2.1px,
        rgba(114, 10, 10, 0.04) 0px 20.2px 2.7px,
        rgba(114, 10, 10, 0.043) 0px 24.6px 3.5px,
        rgba(114, 10, 10, 0.043) 0px 30.1px 4.4px,
        rgba(114, 10, 10, 0.043) 0px 36.8px 5.8px,
        rgba(114, 10, 10, 0.043) 0px 45.5px 7.5px,
        rgba(114, 10, 10, 0.043) 0px 56.9px 9.9px,
        rgba(114, 10, 10, 0.047) 0px 72.2px 13.2px,
        rgba(114, 10, 10, 0.047) 0px 93.6px 17.8px,
        rgba(114, 10, 10, 0.047) 0px 125px 24.8px,
        rgba(114, 10, 10, 0.05) 0px 175.1px 36px,
        rgba(114, 10, 10, 0.055) 0px 270.8px 57.8px;
    box-shadow: rgba(114, 10, 10, 0) 0px 0px 0px,
        rgba(114, 10, 10, 0.024) 0px 2px 0.2px,
        rgba(114, 10, 10, 0.027) 0px 4px 0.4px,
        rgba(114, 10, 10, 0.03) 0px 6.1px 0.7px,
        rgba(114, 10, 10, 0.035) 0px 8.3px 0.9px,
        rgba(114, 10, 10, 0.035) 0px 10.7px 1.2px,
        rgba(114, 10, 10, 0.04) 0px 13.5px 1.6px,
        rgba(114, 10, 10, 0.04) 0px 16.6px 2.1px,
        rgba(114, 10, 10, 0.04) 0px 20.2px 2.7px,
        rgba(114, 10, 10, 0.043) 0px 24.6px 3.5px,
        rgba(114, 10, 10, 0.043) 0px 30.1px 4.4px,
        rgba(114, 10, 10, 0.043) 0px 36.8px 5.8px,
        rgba(114, 10, 10, 0.043) 0px 45.5px 7.5px,
        rgba(114, 10, 10, 0.043) 0px 56.9px 9.9px,
        rgba(114, 10, 10, 0.047) 0px 72.2px 13.2px,
        rgba(114, 10, 10, 0.047) 0px 93.6px 17.8px,
        rgba(114, 10, 10, 0.047) 0px 125px 24.8px,
        rgba(114, 10, 10, 0.05) 0px 175.1px 36px,
        rgba(114, 10, 10, 0.055) 0px 270.8px 57.8px;
}

.emo {
    position: absolute;
    padding: 2px;
    font-size: 3em;
    border-radius: 20px;
    will-change: transform;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 20px;
    width: 20vw;
    background-color: #E2DEC4;
}

.emo img {
    max-width: 5vw;
    /* Adjust size as needed */
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.emo-img {
    scale: 2
}

.emo p {
    margin: 5px 0 0;
    text-align: center;
    font-size: 20px;
    /* Adjust font size as needed */
    color: #333;
    /* Adjust text color as needed */
    font-weight: 600;
}

.scroll-img {
    position: fixed;
    width: 100%;
    bottom: 0px;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.scroll-img img {
    -webkit-transform: scale(0.1);
    -ms-transform: scale(0.1);
    transform: scale(0.1);
}

.info-wrap {
    pointer-events: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.info-cont {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    display: none;
}

.info-cont p {
    font-size: 20px;
}

.career {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url("../../../images/career.jpg");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.career-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #00000058;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top:10vw;
}

.career-option-desc-section a {
    color: #e20010;
}

.multi-content-card__item-label a {
    color: #e20010;
}

/*Comman css start*/


:root {
    --font-color-primary: #fff;
    --font-color-secundary: #1d1e1f;
    --font-color-menu: #222;
    --bg-primary: #1d1e1f;
    --color-dark-gray: #2f2f2f;
    --bg-secundary: #fff;
    --color-black: #000;
    --color-gray: #282936;
    --color-white: #fff;
    --font-family-heading: regularF;
    --color-red: #e20010;
    --color-light-gray: ##555555;
    --color-text: #000;
    --color-bg: #fff;
    --color-bg-accent: #f7e3e3;
    --size: clamp(5rem, 1rem + 20vmin, 20rem);
    --gap: calc(var(--size) / 14);
    --duration: 60s;
    --scroll-start: 0;
    --scroll-end: calc(-100% - var(--gap));
    --card-height: 40vw;
    --card-margin: 4vw;
    --card-top-offset: 1em;
    --numcards: 4;
    --outline-width: 0px;
}

.menu-left .return-home {
    font-size: 1.2vw;
    margin-top: 2vw;
    color: #ce4141 !important;
}

.default-top-margin {
    margin-top: 80px;
    padding: 2vw 6vw;
}

li {
    list-style: none;
}

a {
    text-decoration: none !important;
}

/* UNIVERSAL CSS ENDS */

/* ##################### HEADER VIDEO SECTION CSS STARTS #######################3 */




.header {
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 200px;
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
    background-color: #2e2e2ea8;
}

.brand {
    color: var(--font-color-primary);
    font-size: 1.5em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.navegation-items a {
    position: relative;
    color: var(--font-color-primary);
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.navegation-items a::before {
    content: "";
    position: absolute;
    background: var(--font-color-primary);
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.home {
    padding: 100px 200px;
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: var(--bg-primary);
}

.home::before {
    z-index: 777;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.content {
    z-index: 888;
    color: var(--font-color-primary);
    width: 70%;
    margin-top: 50px;
    display: none;
}

.content.active {
    display: block;
}

.hero-main-heading {
    color: var(--font-color-primary);
    font-weight: 300;
    line-height: 77.49px;
    font-size: 56px;
}

.content p {
    margin-bottom: 65px;
}

.content a {
    background: var(--bg-secundary);
    padding: 15px 35px;
    color: var(--font-color-secundary);
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 2px;
}

.video-slide {
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider-navegation {
    z-index: 888;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
    margin-bottom: 12px;
}

.nav-btn {
    width: 12px;
    height: 12px;
    background: var(--bg-secundary);
    border-radius: 50%;
    cursor: pointer;
    -webkit-box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

.nav-btn.active {
    background: var(--bg-primary);
}

.nav-btn:not(:last-child) {
    margin-right: 20px;
}

.nav-btn:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.video-slide {
    position: absolute;
    width: 100%;
    -webkit-clip-path: circle(0% at 0 50%);
    clip-path: circle(0% at 0 50%);
}

.video-slide.active {
    -webkit-clip-path: circle(150% at 0 50%);
    clip-path: circle(150% at 0 50%);
    -webkit-transition: 2s ease;
    -o-transition: 2s ease;
    transition: 2s ease;
    -webkit-transition-property: -webkit-clip-path;
    transition-property: -webkit-clip-path;
    -o-transition-property: clip-path;
    transition-property: clip-path;
    transition-property: clip-path, -webkit-clip-path;
}

button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    outline: none;
    border: 0;
    vertical-align: middle;
    text-decoration: none;
    background: transparent;
    padding: 0;
    font-size: inherit;
}

button.learn-more {
    width: 12rem;
    height: auto;
}

button.learn-more .circle {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: relative;
    display: block;
    margin: 0;
    width: 3rem;
    height: 3rem;
    background: var(--color-gray);
    border-radius: 1.625rem;
}

button.learn-more .circle .icon {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    background: var(--color-white);
}

button.learn-more .circle .icon.arrow {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    left: 0.625rem;
    width: 1.125rem;
    height: 0.125rem;
    background: none;
}

button.learn-more .circle .icon.arrow::before {
    position: absolute;
    content: "";
    top: -0.25rem;
    right: 0.0625rem;
    width: 0.625rem;
    height: 0.625rem;
    border-top: 0.125rem solid var(--color-white);
    border-right: 0.125rem solid var(--color-white);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

button.learn-more .button-text {
    -webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    -o-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 0;
    margin: 0 0 0 1.85rem;
    color: var(--color-white);
    font-weight: 400;
    line-height: 1.6;
    text-align: center;
    text-transform: uppercase;
}

button:hover .circle {
    width: 100%;
}

button:hover .circle .icon.arrow {
    background: var(--color-white);
    -webkit-transform: translate(1rem, 0);
    -ms-transform: translate(1rem, 0);
    transform: translate(1rem, 0);
}

button:hover .button-text {
    color: var(--color-white);
}

@supports (display: grid) {
    #container {
        grid-area: main;
        -ms-grid-row-align: center;
        align-self: center;
        -ms-grid-column-align: center;
        justify-self: center;
    }
}

/* Media Queries */

/* Media queries for smartphone */


/* ##################### HEADER VIDEO SECTION CSS ENDS #######################3 */

/* #################### home-about-us CSS STARTS ######################## */

.home-about-us {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
}

.home-about-us>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.home-about-us>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
}

.about-video-section {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.about-video-section video {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wrap-container {
    max-width: 950px;
    margin: auto;
}

.text {
    position: relative;
    font-size: 25px;
    font-weight: 500;
    line-height: 45px;
    font-style: normal;
    display: inline-block;
    color: gray;
    font-family: regularF;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.highlight {
    position: absolute;
    width: 0;
    height: 100%;
    color: #000;
    left: 0;
    overflow: hidden;
}

.about-counter-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.carousel-item img {
    border-radius: 24px;
}

.carousel-indicators {
    bottom: -45px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--color-black) !important;
}

.about-heading {
    color: var(--color-red);
    font-weight: 700;
    line-height: 50px;
    font-size: 40px;
}

.about-sub-heading {
    font-weight: 300;
    font-size: 40px;
    line-height: 70px;
}

.padams-about-description {
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
}

.about-section-btn {
    color: var(--color-red);
    font-weight: 400;
    font-size: 20px;
}

.about-section-btn:hover img {
    width: 20px;
}


/* #################### home-about-us CSS ENDS ######################## */

.counter-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 30px;
}

.counter-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin: 30px 50px;
}

.counter-container span {
    font-size: 18px;
    font-weight: 700;
    line-height: 24.51px;
    text-align: center;
    color: var(--color-light-gray);
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.counter-container span:hover {
    color: var(--color-red);
}

.counter {
    font-size: 33.25px;
    font-weight: 700;
    line-height: 45.28px;
    text-align: center;
    color: var(--color-light-gray);
    -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
    transition: color 0.3s ease, -webkit-transform 0.3s ease;
    -o-transition: color 0.3s ease, transform 0.3s ease;
    transition: color 0.3s ease, transform 0.3s ease;
    transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.counter:hover {
    color: var(--color-red);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}



.learn-more {
    cursor: url(../../../images/images__2_-removebg-preview.html), auto;
}

/* expertise section css starts  */

.expertise {
    height: 100vh;
    display: -ms-grid;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.expertise-main-expertise-section {
    position: relative;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.expertise-item {
    width: 200px;
    height: 300px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    -webkit-box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
    box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
    -webkit-transition: left 0.75s, top 0.75s, width 0.75s, height 0.75s, -webkit-transform 0.1s;
    transition: left 0.75s, top 0.75s, width 0.75s, height 0.75s, -webkit-transform 0.1s;
    -o-transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
    transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s, -webkit-transform 0.1s;
    overflow: hidden;
    /* Ensures pseudo-element stays within bounds */
}

.expertise-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 0;
    pointer-events: none;
}

.expertise-content {
    position: relative;
    z-index: 1;
    width: min(30vw, 400px);
    top: 50%;
    left: 3rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font: 400 0.85rem helvetica, sans-serif;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
}

.expertise-item:nth-child(1),
.expertise-item:nth-child(2) {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
}

.expertise-item:nth-child(3) {
    left: 50%;
}

.expertise-item:nth-child(4) {
    left: calc(50% + 220px);
}

.expertise-item:nth-child(5) {
    left: calc(50% + 440px);
}

.expertise-item:nth-child(6) {
    left: calc(50% + 660px);
    opacity: 0;
}

.expertise-content {
    width: min(30vw, 400px);
    position: absolute;
    top: 50%;
    left: 3rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font: 400 0.85rem helvetica, sans-serif;
    color: white;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: none;
}

.expertise-content .expertise-title {
    font-family: regularF;
    text-transform: uppercase;
    font-size: 2.6rem;
}

.expertise-content .expertise-description {
    line-height: 1.7;
    margin: 1rem 0 1.5rem;
    font-size: 1rem;
}

.expertise-content button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: rgba(0, 0, 0, 0.1);
    color: white;
    border: 2px solid white;
    border-radius: 0.25rem;
    padding: 0.75rem;
    cursor: pointer;
}

.expertise-item:nth-of-type(2) .expertise-content {
    display: block;
    -webkit-animation: show 0.75s ease-in-out 0.3s forwards;
    animation: show 0.75s ease-in-out 0.3s forwards;
}

@-webkit-keyframes show {
    0% {
        -webkit-filter: blur(5px);
        filter: blur(5px);
        -webkit-transform: translateY(calc(-50% + 75px));
        transform: translateY(calc(-50% + 75px));
    }

    100% {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes show {
    0% {
        -webkit-filter: blur(5px);
        filter: blur(5px);
        -webkit-transform: translateY(calc(-50% + 75px));
        transform: translateY(calc(-50% + 75px));
    }

    100% {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
}

.expertise-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.expertise-nav .expertise-btn {
    background-color: rgba(255, 255, 255, 0.5);
    color: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(0, 0, 0, 0.6);
    margin: 0 0.25rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
}

.expertise-nav .expertise-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}


/* expertise section css ends   */

/* clientele-section css starts  */
.clientele-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 2fr;
    grid-template-columns: 1fr 2fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.clientele-section>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.clientele-section>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.Clientele-main-heading {
    font-size: 48px;
    font-weight: 300;
    line-height: 57.25px;
    color: #2f2f2f;
}

.Clientele-main-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 27.24px;
    color: #474747;
}

.logo-slider {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    overflow: hidden;
    gap: var(--gap);
    font-family: regularF;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--color-bg);
}

.marquee {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: var(--gap);
    -webkit-mask-image: -webkit-gradient(linear,
            left top, left bottom,
            from(var(--mask-direction, to right)),
            color-stop(hsl(0 0% 0% / 0)),
            color-stop(20%, hsl(0 0% 0% / 1)),
            color-stop(80%, hsl(0 0% 0% / 1)),
            to(hsl(0 0% 0% / 0)));
    -webkit-mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
    mask-image: -webkit-gradient(linear,
            left top, left bottom,
            from(var(--mask-direction, to right)),
            color-stop(hsl(0 0% 0% / 0)),
            color-stop(20%, hsl(0 0% 0% / 1)),
            color-stop(80%, hsl(0 0% 0% / 1)),
            to(hsl(0 0% 0% / 0)));
    mask-image: linear-gradient(var(--mask-direction, to right),
            hsl(0 0% 0% / 0),
            hsl(0 0% 0% / 1) 20%,
            hsl(0 0% 0% / 1) 80%,
            hsl(0 0% 0% / 0));
}

.marquee__group {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    -webkit-animation: scroll-x var(--duration) linear infinite;
    animation: scroll-x var(--duration) linear infinite;
}


.marquee--vertical {
    --mask-direction: to bottom;
}

.marquee--vertical,
.marquee--vertical .marquee__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.marquee--vertical .marquee__group {
    -webkit-animation-name: scroll-y;
    animation-name: scroll-y;
}

.marquee--reverse .marquee__group {
    animation-direction: reverse;
    -webkit-animation-delay: -3s;
    animation-delay: -3s;
}

@-webkit-keyframes scroll-x {
    from {
        -webkit-transform: translateX(var(--scroll-start));
        transform: translateX(var(--scroll-start));
    }

    to {
        -webkit-transform: translateX(var(--scroll-end));
        transform: translateX(var(--scroll-end));
    }
}

@keyframes scroll-x {
    from {
        -webkit-transform: translateX(var(--scroll-start));
        transform: translateX(var(--scroll-start));
    }

    to {
        -webkit-transform: translateX(var(--scroll-end));
        transform: translateX(var(--scroll-end));
    }
}

@-webkit-keyframes scroll-y {
    from {
        -webkit-transform: translateY(var(--scroll-start));
        transform: translateY(var(--scroll-start));
    }

    to {
        -webkit-transform: translateY(var(--scroll-end));
        transform: translateY(var(--scroll-end));
    }
}

@keyframes scroll-y {
    from {
        -webkit-transform: translateY(var(--scroll-start));
        transform: translateY(var(--scroll-start));
    }

    to {
        -webkit-transform: translateY(var(--scroll-end));
        transform: translateY(var(--scroll-end));
    }
}

.marquee svg {
    display: -ms-grid;
    display: grid;
    place-items: center;
    width: var(--size);
    fill: var(--color-text);
    background: var(--color-bg-accent);
    aspect-ratio: 16/9;
    padding: calc(var(--size) / 10);
    border-radius: 0.5rem;
}

.marquee--vertical svg {
    aspect-ratio: 1;
    width: calc(var(--size) / 1.5);
    padding: calc(var(--size) / 6);
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: var(--gap);
    margin: auto;
    max-width: 100vw;
}

.wrapper--vertical {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100vh;
}

.toggle {
    --size: 3rem;
    position: relative;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: var(--size);
    height: var(--size);
    font: inherit;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 50%;
    color: inherit;
    background-color: var(--color-bg-accent);
    z-index: 1;
}

.toggle:focus-visible {
    -webkit-box-shadow: 0 0 0 2px var(--color-text);
    box-shadow: 0 0 0 2px var(--color-text);
}

.toggle span {
    position: absolute;
    display: inline-block;
    top: 50%;
    left: calc(100% + 0.4em);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    white-space: nowrap;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-animation: fade 400ms 4s ease-out forwards;
    animation: fade 400ms 4s ease-out forwards;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.toggle svg {
    --size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    width: var(--size);
    height: var(--size);
    fill: currentcolor;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
    -o-transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
    transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 300ms cubic-bezier(0.25, 1, 0.5, 1);
}

.toggle--vertical svg {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    -ms-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
}

@-webkit-keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fade {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* clientele-section css ends   */

/*  stacking card css starts  */

.stacking-card-heading {
    font-size: 45.8px;
    font-weight: 400;
    line-height: 57.25px;
    color: #ce4141;
}

.stacking-card-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24.51px;
    color: #2f2f2f;
}

#cards {
    padding-bottom: calc(var(--numcards) * var(--card-top-offset));
    margin-bottom: var(--card-margin);
}

#card_1 {
    --index: 1;
    list-style: none;
}

#card_2 {
    --index: 2;
    list-style: none;
}

#card_3 {
    --index: 3;
    list-style: none;
}

#card_4 {
    --index: 4;
    list-style: none;
}

.stacking-card {
    position: sticky;
    top: 0;
    padding-top: calc(var(--index) * var(--card-top-offset));
}

@supports (animation-timeline: works) {
    @scroll-timeline cards-element-scrolls-in-body {
        source: selector(body);
        scroll-offsets:
            /* Start when the start edge touches the top of the scrollport */
            selector(#cards) start 1,
            /* End when the start edge touches the start of the scrollport */
            selector(#cards) start 0;
        start: selector(#cards) start 1;
        /* Start when the start edge touches the top of the scrollport */
        end: selector(#cards) start 0;
        /* End when the start edge touches the start of the scrollport */
        time-range: 4s;
    }

    .stacking-card {
        --index0: calc(var(--index) - 1);
        /* 0-based index */
        --reverse-index: calc(var(--numcards) - var(--index0));
        /* reverse index */
        --reverse-index0: calc(var(--reverse-index) - 1);
        /* 0-based reverse index */
    }

    .stacking-card__content {
        -webkit-transform-origin: 50% 0%;
        -ms-transform-origin: 50% 0%;
        transform-origin: 50% 0%;
        will-change: transform;
        --duration: calc(var(--reverse-index0) * 1s);
        --delay: calc(var(--index0) * 1s);
        -webkit-animation: var(--duration) linear scale var(--delay) forwards;
        animation: var(--duration) linear scale var(--delay) forwards;
        animation-timeline: cards-element-scrolls-in-body;
    }

    @-webkit-keyframes scale {
        to {
            -webkit-transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
            transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
        }
    }

    @keyframes scale {
        to {
            -webkit-transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
            transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
        }
    }
}

#debug {
    position: fixed;
    top: 1em;
    left: 1em;
}

#debug::after {
    content: " Show Debug";
    margin-left: 1.5em;
    color: white;
    white-space: nowrap;
}

#debug:checked~main {
    --outline-width: 1px;
}

/** PAGE STYLING **/

.stacking-card-section {
    width: 100vw;
}

#cards {
    list-style: none;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (var(--card-height))[var(--numcards)];
    grid-template-rows: repeat(var(--numcards), var(--card-height));
}

ul {
    padding-left: 0px !important;
}

.stacking-card__content {
    -webkit-box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
    background: rgb(255, 255, 255);
    color: rgb(10, 5, 7);
    border-radius: 1em;
    overflow: hidden;
    display: -ms-grid;
    display: grid;
    grid-template-areas: "text img";
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.stacking-card__content>div {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: text;
    width: 80%;
    -ms-grid-row-align: center;
    -ms-grid-column-align: center;
    place-self: center;
    text-align: left;
    display: -ms-grid;
    display: grid;
    gap: 1em;
    place-items: start;
}

.stacking-card__content>figure {
    -ms-grid-row: 1;
    -ms-grid-column: 2;
    grid-area: img;
    overflow: hidden;
}

.stacking-card__content>figure>img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*  stacking card css ends   */

/*  news section container css */
.news-section {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 2fr 20px 1fr;
    grid-template-columns: 2fr 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.news-section>*:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.news-section>*:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}

.news-card-1 {
    background-color: var(--color-red);
    color: #fff;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    /* Make the element position relative to position the pseudo-element */
}

.news-card-1::after {
    content: "";
    position: absolute;
    bottom: 0px;
    /* Adjust as needed */
    right: 0px;
    /* Adjust as needed */
    width: 100px;
    /* Width of the curved rectangle */
    height: 40px;
    /* Height of the curved rectangle */
    background-color: #fff;
    /* White color for the rectangle */
    border-radius: 12px 0px 0px 0px;
    /* Curved corners */
    z-index: 1;
    /* Ensure it is on top */
    color: #000;
}

.news-card-1 p {
    font-size: 20px;
    font-weight: 400;
    line-height: 29.07px;
    padding: 20px 0px 0px 0px;
}

.news-card-2 {
    border: 1px solid var(--color-red);
    border-radius: 24px;
    padding: 40px;
}

.fa-bell,
.fa-envelope {
    color: var(--color-red);
    margin-right: 10px;
}

.news-card-2 p {
    font-size: 14px;
    font-weight: 400;
    line-height: 29.07px;
}

.news-input {
    border: 1px solid var(--color-red);
    border-radius: 24px;
}

.news-input::-webkit-input-placeholder {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 29.07px;
    color: #2f2f2f;
}

.news-input::-moz-placeholder {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 29.07px;
    color: #2f2f2f;
}

.news-input:-ms-input-placeholder {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 29.07px;
    color: #2f2f2f;
}

.news-input::-ms-input-placeholder {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 29.07px;
    color: #2f2f2f;
}

.news-input::placeholder {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 29.07px;
    color: #2f2f2f;
}

/* footer section css starts  */
.footer-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.subscribe-btn {
    text-align: center;
    margin-top: 30px;
}

.subscribe-btn button {
    border: 1px solid var(--color-red);
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px;
}

.social-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #fff;
}

.social-container:last-child {
    border-bottom: 0;
}

.social-container .copyright {
    margin-top: 15px;
}

.social-container .copyright a {
    text-decoration: none;
    color: #0059cc;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    letter-spacing: 0;
}

.social-container .copyright a:hover {
    color: #004399;
    letter-spacing: 1px;
}

.zoom-style .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.zoom-style .social-icons li {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.zoom-style .social-icons i {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transform: scale(1) translateX(-50%) translateY(-50%);
    -ms-transform: scale(1) translateX(-50%) translateY(-50%);
    -webkit-transform: scale(1) translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.zoom-style .social-icons a {
    display: inline-block;
    position: relative;
}

.zoom-style .social-icons a:before {
    content: " ";
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background: -o-linear-gradient(45deg, #00b5f5, #002a8f);
    background: linear-gradient(45deg, #00b5f5, #002a8f);
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.zoom-style .social-icons a:hover:before {
    transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.zoom-style .social-icons a:hover i {
    color: #00b5f5;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transform: scale(2) translateX(-50%) translateY(-50%);
    -ms-transform: scale(2) translateX(-50%) translateY(-50%);
    -webkit-transform: scale(2) translateX(-50%) translateY(-50%);
    background: -webkit-linear-gradient(45deg, #00b5f5, #002a8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.gradient-style .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gradient-style .social-icons li {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.gradient-style .social-icons a {
    display: inline-block;
    position: relative;
}

.gradient-style .social-icons a:before {
    content: " ";
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background: -o-linear-gradient(45deg, #00b5f5, #002a8f);
    background: linear-gradient(45deg, #00b5f5, #002a8f);
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.gradient-style .social-icons a:hover:before {
    transform: scale(0);
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.gradient-style .social-icons a:hover i {
    color: #00b5f5;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transform: scale(2) translateX(-50%) translateY(-50%);
    -ms-transform: scale(2) translateX(-50%) translateY(-50%);
    -webkit-transform: scale(2) translateX(-50%) translateY(-50%);
    background: -webkit-linear-gradient(45deg, #00b5f5, #002a8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-transition: all 0.25s ease-in;
    -o-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
}

.gradient-style .social-icons a i {
    color: #fff;
    font-size: 20px;
    line-height: normal;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transform: scale(1) translateX(-50%) translateY(-50%);
    -ms-transform: scale(1) translateX(-50%) translateY(-50%);
    -webkit-transform: scale(1) translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.gradient-style .social-icons a.ic-facebook:before {
    background: -o-linear-gradient(320deg, #00c6ff, #0078ff);
    background: linear-gradient(130deg, #00c6ff, #0078ff);
}

.gradient-style .social-icons a.ic-facebook:hover i {
    background: -webkit-linear-gradient(-90deg, #00c6ff, #0078ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-style .social-icons a.ic-instagram:before {
    background: #feda75;
    background: -o-linear-gradient(320deg,
            rgba(254, 218, 117, 1) 0%,
            rgba(250, 126, 30, 1) 25%,
            rgba(214, 41, 118, 1) 50%,
            rgba(150, 47, 191, 1) 75%,
            rgba(79, 91, 213, 1) 100%);
    background: linear-gradient(130deg,
            rgba(254, 218, 117, 1) 0%,
            rgba(250, 126, 30, 1) 25%,
            rgba(214, 41, 118, 1) 50%,
            rgba(150, 47, 191, 1) 75%,
            rgba(79, 91, 213, 1) 100%);
}

.gradient-style .social-icons a.ic-instagram:hover i {
    background: -webkit-linear-gradient(-90deg,
            rgba(254, 218, 117, 1) 0%,
            rgba(250, 126, 30, 1) 25%,
            rgba(214, 41, 118, 1) 50%,
            rgba(150, 47, 191, 1) 75%,
            rgba(79, 91, 213, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-style .social-icons a.ic-twitter:before {
    background: -o-linear-gradient(320deg, #00c6fb, #005bea);
    background: linear-gradient(130deg, #00c6fb, #005bea);
}

.gradient-style .social-icons a.ic-twitter:hover i {
    background: -webkit-linear-gradient(0deg, #00c6fb, #005bea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-style .social-icons a.ic-youtube:before {
    background: -o-linear-gradient(320deg, #f00, #a11013);
    background: linear-gradient(130deg, #f00, #a11013);
}

.gradient-style .social-icons a.ic-youtube:hover i {
    background: -webkit-linear-gradient(0deg, #f00, #a11013);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-style .social-icons li span {
    position: absolute;
    z-index: -1;
    bottom: 50%;
    left: 50%;
    width: 80px;
    padding: 5px;
    color: #fff;
    font-size: 14px;
    border-radius: 5px;
    cursor: text;
    opacity: 0;
    visibility: hidden;
    background: var(--color-red);
    -webkit-transform: translateX(-50%) scale(0.5);
    -ms-transform: translateX(-50%) scale(0.5);
    transform: translateX(-50%) scale(0.5);
    -webkit-transition: all 0.35s, opacity 0.35s 0.1s;
    -o-transition: all 0.35s, opacity 0.35s 0.1s;
    transition: all 0.35s, opacity 0.35s 0.1s;
}

.email-tooltip {
    width: 115px !important;
}

.gradient-style .social-icons li span:after {
    content: "";
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    border: 5px solid transparent;
    border-top-color: var(--color-red);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.35s, opacity 0.35s 0.1s;
    -o-transition: all 0.35s, opacity 0.35s 0.1s;
    transition: all 0.35s, opacity 0.35s 0.1s;
}

.gradient-style .social-icons li a {
    position: relative;
}

.gradient-style .social-icons li a:hover span {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 10px);
    -webkit-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
}

.gradient-style .social-icons li a:hover span:after {
    opacity: 1;
    visibility: visible;
}

.neon-glow-style .social-icons {
    list-style: none;
    margin: 0 0 15px 0;
    padding: 0;
}

.neon-glow-style .social-icons li {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.neon-glow-style .social-icons i {
    font-size: 30px;
    text-shadow: 0 0 30px #000;
}

.neon-glow-style .social-icons a {
    width: 70px;
    height: 70px;
    background-color: #fafafa;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 10px;
}

.neon-glow-style .social-icons a:hover {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.neon-glow-style .social-icons a.ic-facebook {
    color: #006fff;
    -webkit-box-shadow: 0 20px 20px -20px rgba(0, 111, 255, 0.5);
    box-shadow: 0 20px 20px -20px rgba(0, 111, 255, 0.5);
}

.neon-glow-style .social-icons a.ic-facebook i {
    text-shadow: 0 0 30px #006fff;
}

.neon-glow-style .social-icons a.ic-facebook:hover {
    -webkit-box-shadow: 0 30px 45px -15px rgba(0, 111, 255, 0.75);
    box-shadow: 0 30px 45px -15px rgba(0, 111, 255, 0.75);
}

.neon-glow-style .social-icons a.ic-instagram {
    color: #ff5f40;
    -webkit-box-shadow: 0 20px 20px -20px rgba(255, 95, 64, 0.5);
    box-shadow: 0 20px 20px -20px rgba(255, 95, 64, 0.5);
}

.neon-glow-style .social-icons a.ic-instagram i {
    text-shadow: 0 0 30px #ff5f40;
}

.neon-glow-style .social-icons a.ic-instagram:hover {
    -webkit-box-shadow: 0 30px 45px -15px rgba(255, 95, 64, 0.75);
    box-shadow: 0 30px 45px -15px rgba(255, 95, 64, 0.75);
}

.neon-glow-style .social-icons a.ic-twitter {
    color: #00c6fb;
    -webkit-box-shadow: 0 20px 20px -20px rgba(0, 198, 251, 0.5);
    box-shadow: 0 20px 20px -20px rgba(0, 198, 251, 0.5);
}

.neon-glow-style .social-icons a.ic-twitter i {
    text-shadow: 0 0 30px #00c6fb;
}

.neon-glow-style .social-icons a.ic-twitter:hover {
    -webkit-box-shadow: 0 30px 45px -15px rgba(0, 198, 251, 0.75);
    box-shadow: 0 30px 45px -15px rgba(0, 198, 251, 0.75);
}

.neon-glow-style .social-icons a.ic-youtube {
    color: #fff;
    -webkit-box-shadow: 0 20px 20px -20px rgba(255, 0, 0, 0.5);
    box-shadow: 0 20px 20px -20px rgba(255, 0, 0, 0.5);
}

.neon-glow-style .social-icons a.ic-youtube i {
    text-shadow: 0 0 30px #f00;
}

.neon-glow-style .social-icons a.ic-youtube:hover {
    -webkit-box-shadow: 0 30px 45px -15px rgba(255, 0, 0, 0.75);
    box-shadow: 0 30px 45px -15px rgba(255, 0, 0, 0.75);
}

.glare-style .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.glare-style li {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.glare-style li a {
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    text-decoration: none;
    border-radius: 28%;
    -webkit-box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    opacity: 0.99;
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
    -o-transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
    transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.glare-style li a:hover:before {
    top: -10%;
    left: -10%;
}

.glare-style li a:hover i {
    color: #fff !important;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.glare-style li a:before {
    content: "";
    position: absolute;
    top: 90%;
    left: -110%;
    width: 120%;
    height: 120%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
    -o-transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
    transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.glare-style li a i {
    font-size: 38px;
    color: #555;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.35s;
    -o-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
    -o-transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
    transition-timing-function: cubic-bezier(0.31, -0.105, 0.43, 1.59);
}

.glare-style li a.ic-facebook i {
    color: #006fff;
}

.glare-style li a.ic-facebook:before {
    background-color: #006fff;
}

.glare-style li a.ic-instagram i {
    color: #ff5f40;
}

.glare-style li a.ic-instagram:before {
    background-color: #ff5f40;
}

.glare-style li a.ic-twitter i {
    color: #00c6fb;
}

.glare-style li a.ic-twitter:before {
    background-color: #00c6fb;
}

.glare-style li a.ic-tiktok i {
    color: #000;
}

.glare-style li a.ic-youtube i {
    color: #f00;
}

.glare-style li a.ic-youtube:before {
    background-color: #f00;
}

.solid-style .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.solid-style li {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.solid-style li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    width: 90px;
    height: 90px;
    background-color: #fff;
    border-radius: 30%;
}

.solid-style li a:hover i {
    color: #333;
    text-shadow: 1px 1px 0px #fff, 1px -1px 0px #fff, -1px 1px 0px #fff,
        -1px -1px 0px #fff;
    -webkit-transition: all ease 0.5s;
    -o-transition: all ease 0.5s;
    transition: all ease 0.5s;
}

.solid-style li a i {
    color: #fff;
    font-size: 40px;
    text-shadow: 1px 1px 0px #999, 1px -1px 0px #999, -1px 1px 0px #999,
        -1px -1px 0px #999;
    -webkit-transition: all ease-out 0.5s;
    -o-transition: all ease-out 0.5s;
    transition: all ease-out 0.5s;
}

.solid-style li a.ic-facebook:hover i {
    color: #006fff;
}

.solid-style li a.ic-instagram:hover i {
    color: #ff5f40;
}

.solid-style li a.ic-twitter:hover i {
    color: #00c6fb;
}

.solid-style li a.ic-youtube:hover i {
    color: #f00;
}

.sweep-style .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sweep-style .social-icons li {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.sweep-style .social-icons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    overflow: hidden;
    width: 64px;
    height: 64px;
    background-color: white;
    border-radius: 50%;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sweep-style .social-icons a:after {
    content: "";
    width: 64px;
    height: 64px;
    position: absolute;
    -webkit-transform: translate(0, 70px);
    -ms-transform: translate(0, 70px);
    transform: translate(0, 70px);
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: #000;
}

.sweep-style .social-icons a:hover {
    -webkit-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.16);
}

.sweep-style .social-icons a:hover i {
    color: #fff;
}

.sweep-style .social-icons a:hover:after {
    -webkit-transform: translate(0) scale(1.2);
    -ms-transform: translate(0) scale(1.2);
    transform: translate(0) scale(1.2);
}

.sweep-style .social-icons a i {
    margin: auto;
    font-size: 24px;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sweep-style .social-icons a.ic-facebook {
    color: #006fff;
}

.sweep-style .social-icons a.ic-facebook:after {
    background-color: #006fff;
}

.sweep-style .social-icons a.ic-instagram {
    color: #ff5f40;
}

.sweep-style .social-icons a.ic-instagram:after {
    background: #feda75;
    background: -o-linear-gradient(320deg,
            #feda75 0%,
            #fa7e1e 25%,
            #d62976 50%,
            #962fbf 75%,
            #4f5bd5 100%);
    background: linear-gradient(130deg,
            #feda75 0%,
            #fa7e1e 25%,
            #d62976 50%,
            #962fbf 75%,
            #4f5bd5 100%);
}

.sweep-style .social-icons a.ic-twitter {
    color: #00c6fb;
}

.sweep-style .social-icons a.ic-twitter:after {
    background-color: #00c6fb;
}

.sweep-style .social-icons a.ic-youtube {
    color: #f00;
}

.sweep-style .social-icons a.ic-youtube:after {
    background-color: #f00;
}

.transition-style .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.transition-style .social-icons li {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.transition-style .social-icons li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 100%;
}

.transition-style .social-icons li a:hover .inner-wrap {
    width: 50px;
    height: 50px;
    border-color: #fff;
}

.transition-style .social-icons li a:hover .inactive {
    -webkit-transform: translate(100px, -50%);
    -ms-transform: translate(100px, -50%);
    transform: translate(100px, -50%);
}

.transition-style .social-icons li a:hover .active {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.transition-style .social-icons li a .inner-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    height: 70px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 100%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.transition-style .social-icons li a i {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 30px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.transition-style .social-icons li a i.inactive {
    color: #ccc;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.transition-style .social-icons li a i.active {
    -webkit-transform: translate(-150px, -50%);
    -ms-transform: translate(-150px, -50%);
    transform: translate(-150px, -50%);
}

.transition-style .social-icons li a.ic-facebook {
    color: #006fff;
    background-color: #006fff;
}

.transition-style .social-icons li a.ic-instagram {
    color: #ff5f40;
    background-color: #ff5f40;
}

.transition-style .social-icons li a.ic-youtube {
    color: #f00;
    background-color: #f00;
}

.glassmorphism-style .social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
}

.glassmorphism-style .social-icons li {
    position: relative;
    display: inline-block;
    margin: 15px;
}

.glassmorphism-style .social-icons li a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 75px;
    height: 75px;
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    -webkit-perspective: 800px;
    perspective: 800px;
}

.glassmorphism-style .social-icons li a:hover .ic-front {
    -webkit-transform: translateZ(80px) translateY(-5px) rotateX(15deg) rotateY(15deg);
    transform: translateZ(80px) translateY(-5px) rotateX(15deg) rotateY(15deg);
}

.glassmorphism-style .social-icons li a:hover .ic-back {
    -webkit-transform: translateZ(20px) rotateZ(15deg) rotateX(-20deg) rotateY(-20deg);
    transform: translateZ(20px) rotateZ(15deg) rotateX(-20deg) rotateY(-20deg);
}

.glassmorphism-style .social-icons li a i {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 30px;
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.glassmorphism-style .social-icons li a.ic-facebook .ic-back {
    background-color: #006fff;
}

.glassmorphism-style .social-icons li a.ic-instagram .ic-back {
    background-color: #ff5f40;
}

.glassmorphism-style .social-icons li a.ic-twitter .ic-back {
    background-color: #00c6fb;
}

.glassmorphism-style .social-icons li a.ic-youtube .ic-back {
    background-color: #f00;
}

.glassmorphism-style .ic-back {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: inherit;
    height: inherit;
    border-radius: 20px;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    transform-origin: bottom right;
    -webkit-transform: rotateZ(15deg);
    -ms-transform: rotate(15deg);
    transform: rotateZ(15deg);
    will-change: transform;
    -webkit-box-shadow: 16px 0 40px #e4e4e4;
    box-shadow: 16px 0 40px #e4e4e4;
}

.glassmorphism-style .ic-front {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: inherit;
    height: inherit;
    border-radius: 20px;
    background-color: #fff 33;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    transition: 0.25s;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    overflow: hidden;
    -webkit-box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
}

/*  footer section  css ends  */

/* header  */
.project-main-header {
    background: url(../../../images/Screenshot.html\ 2024-08-16\ at\ 2.27.44\PM.png);
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.project-heading p {
    color: var(--color-white);
    font-size: 20px;
    text-align: center;
    margin: 0;
    font-weight: 100;
    letter-spacing: 0.02rem;
}

.project-main-header img[alt="arrow-icon"] {
    position: absolute;
    bottom: 2%;
    right: 2%;
    max-width: 8vw;
    height: auto;
}



/*Privacy css start*/

.privacy-main {
    position: relative;
    text-align: center;
    padding: 2vw;
}

#privacy-container {
    width: 100%;
    margin: 2vw auto;
    padding: 2vw;
    background-color: #fff;
    -webkit-box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 1vw rgba(0, 0, 0, 0.1);
}

#privacy-header {
    color: #333;
    text-align: center;
    font-size: 3vw;
}

.privacy-section {
    color: #444;
    margin-top: 3vw;
}

.privacy-section p {
    color: #666;
    line-height: 1.6;
    font-size: 1.2vw;
    padding-bottom:1vw;
}

.privacy-section h2 {
    padding-bottom: 2vw;
}

.privacy-list {
    padding-left: 3vw;
    list-style-type: disc;
}

.privacy-link {
    color: #337ab7;
    text-decoration: none;
    font-size: 1.2vw;
}

.privacy-link:hover {
    text-decoration: underline;
}

#contact-info {
    margin-top: 5vw;
}

#grievance-section {
    margin-top: 4vw;
}

footer {
    text-align: center;
    padding: 2vw;
    background-color: #333;
    color: #fff;
    margin-top: 4vw;
    font-size: 1.2vw;
}

/*Privacy css end*/

/*Career apply button start*/

.careeer-apply-button {
    margin-top: 1.5vw;
}

.careeer-apply-button a {
    background-color: var(--color-red);
    color: #fff;
    padding: .5vw 1vw;
    border-radius: .25vw;
}

/*Career apply button end*/

/*@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {*/
/*      .text-fill{*/
/*          height:70vw;*/

/*      }*/


/*    }*/

@media (max-width: 1024px) {


    h1 {
        font-size: 7vw;
        line-height: 1.2;
    }

    h2 {
        font-size: 5vw;
    }

    /*Nav css start*/
    .return-home {
        font-size: 3.2vw;
    }

    .menu {
        height: 100%;
    }

    .menu-elem {
        height: 4.5vw;
    }

    .menu-elem>span {
        font-size: 4vw;
    }

    .nav-right {
        gap: 2vw;
    }

    nav img {
        height: 4.5vw;
    }

    .nav-right select {
        font-size: 1.6vw;
    }

    .nav-right i {
        font-size: 2vw;
    }

    .menu-elem {
        height: 3vw;
    }

    .menu-elem>span {
        font-size: 3vw;
    }

    .menu-right-socials {
        display: block;
    }

    .email p {
        font-size: 3vw;
    }

    .media i {
        font-size: 2.4vw;
    }


    .search-bar>h6 {
        display: none;
    }

    .search-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        margin: 0 0;
        margin-top: 40px;
    }

    .search-bar .search {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        width: 100%;
    }

    .privacy-section{
        margin-top: 13vw;
    }

    .media i {
        font-size: 3.4vw;
    }


    .ri-close-large-fill:before {
        content: "\f4c7";
        font-size: 4vw;
    }

    .search>i {
        font-size: 2.3vw;
    }

    .search>input {
        padding: 0.6vw 1.2vw;
        width: 60%;
        border-radius: 0.5vw;
        font-size: 2vw;
        outline: none;
    }


    .menu-right>i {
        font-size: 5vw;
    }


    /*Nav css end*/

    /*Footer css start*/


    .footer-top-right a {
        font-size: 2vw;
        gap: 1vw;
    }

    .footer-top-right i {
        font-size: 2.6vw;
    }

    .footer-bottom a {
        font-size: 1.6vw;
    }

    .footer-bottom>p {
        left: 42%;
        font-size: 1.6vw;
    }

    /*Footer css end*/


    /*Home css start*/

    .page1-home-videos {
        height: 100%;
    }



    .page1-home {
        height: 100vh;
    }

    .page1-home-text button {
        font-size: 3.1vw;
    }

    .text-fill {
        padding: 5vw 2vw;
    }

    .text-fill>h3 {
        font-size: 3vw;
    }



    .certificated-logo {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5vw;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .certificated-logo>img {
        width: 20vw;
    }

    .expertise-top>h2 {
        top: 100%;
    }

    .expertise-bottom>h2 {
        top: 0%;
    }

    .expertise-card {
        height: 70%;
        width: 80%;
    }

    .expertise-card-overlay>h2 {
        font-size: 6vw;
    }

    .build-cursor>h3 {
        font-size: 2vw;
    }

    .page1-home-text {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }


    .page1-scroller {
        display: none;
    }

    .page3-card-left>h2 {
        font-size: 4.5vw;
    }

    .page3-card-left>p {
        font-size: 2vw;
    }


    .page1-videos {
        height: 100%;
    }

    .who {
        font-size: 8vw;
    }

    .content__text-tiny {
        font-size: 4vw;
    }

    .teams-left>p {
        font-size: 2.4vw;
    }

    .team-img {
        height: 70%;
    }


    .brands-clientele-img {
        height: 13vw;
        width: 15vw;
    }

    .brands {
        min-height: 60vh;
        gap: 12vw;
    }

    .brand {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

    .brands-img>p {
        font-size: 2vw;
    }

    .contact {
        height: 70vh;
    }

    .page7-container-elems {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .page7-elem {
        width: 45% !important;
    }


    .insights-announcements {
        padding-top: 0vw;
    }

    .insights-announcements>h3 {
        font-size: 3vw;
    }

    .insights-news {
        padding-top: 1.5vw;
    }

    .insights-win-box>p {
        font-size: 1.6vw;
    }

    .insights-news>h3 {
        font-size: 2.2vw;
        line-height: 1.4;
    }

    .insights-news>p {
        font-size: 1.6vw;
    }

    .insights-news>a {
        font-size: 1.6vw;
    }

    /*Home css end*/

    /*Project css start*/

    .project-overlay>p {
        font-size: 2vw;
    }

    .project-left-section {
        padding-left: 0px;
    }

    .main-project-section {
        -ms-grid-columns: 2fr 5fr;
        grid-template-columns: 2fr 5fr;
    }

    .single-project-card {
        width: 48%;
    }

    /*Project css end*/

    /*Expertise css start*/

    .page1-expertise-text p {
        font-size: 1.4vw;
    }

    .card>p {
        font-size: 1.6vw;
    }

    .card-heading>h2 {
        font-size: 4vw;
    }

    /*Expertise css end*/

    /*About css start*/

    .page1-about-text p {
        font-size: 2vw;
    }

    .text-about-fill>h3 {
        font-size: 4.5vw;
    }

    .text-about-fill>p {
        font-size: 2.8vw;
    }

    .content__text-tiny-about {
        font-size: 2.6vw;
    }

    .teams-about-left>h2 {
        font-size: 4.5vw;
    }

    .teams-about-left>p {
        font-size: 2.6vw;
    }

    .team-about-img-main>img {
        -o-object-position: 50% 10%;
        object-position: 50% 10%;
    }

    .team-about-img-dets p {
        font-size: 2.8vw;
    }

    .team-about-img-dets small {
        font-size: 1.8vw;
    }

    .teams-about-right {
        gap: 6vw;
    }

    .team-about-img {
        position: relative;
        width: 45vw;
        height: 80vh;
        margin-top: 2vw;
        -o-object-fit: cover;
        object-fit: cover;
    }

    /*About css end*/
    
       /*news css end*/
    
    .news-overlay>p {
    font-size: 2.1vw;
    color: #ffffffbf;
}

   /*news css end*/

    /*Clientele css start*/

    .clientele-text p {
        font-size: 2.1vw;
        text-align: center;
    }


    .page7-clientele-elem>h2 {
        font-size: 2.5vw;
    }

    .clientele-heading-text {
        margin-top: -30vw;
    }

    /*Clientele css end*/

    /*CSR css start*/

    .csr-3d .col {
        width: calc(48% - 2rem);
    }

    .csr-overlay>p {
        font-size: 2.2vw;
    }

    .csr-3d .front, .csr-3d .back {
        height: 32vw;
    }

    .csr-3d .front, .csr-3d .front {
        height: 32vw;
    }

    /*CSR css end*/

    /*Awards css start*/

    .brands-awards {
        gap: 10vw;
    }

    .brands-awards-img>p {
        font-size: 1.6vw;
    }

    /*Awards css end*/

    /*Contact css start*/

    .page2-contact {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    /*Contact css end*/

    /*Career css start*/

    .why-us-para {
        width: 96%;
    }

    .page7-career-elem>h2 {
        font-size: 2vw;
    }

    .page7-career-elem>p {
        font-size: 1.6vw;
    }

    .why-us>h2 {
        font-size: 4vw;
    }

    .current-opening-heading {
        font-size: 4vw;
    }

    .multi-content-card__item-label a {
        font-size: 2vw;
    }

    .career-option-main-heading {
        font-size: 4vw;
    }

    .multi-content-card__item-title-text {
        font-size: 2vw;
    }

    .multi-content-card__item-label a {
        font-size: 2vw;
    }

    .current-opening-section {
        margin-bottom: 40px;
    }

    /*Career css end*/

    /*Privacy css start*/

    .privacy-section h2 {
        font-size: 4vw;
    }

    .privacy-section p {
        font-size: 2vw;
    }

    /*Privacy css end*/

}

@media (max-width: 768px) {
    
    .build-cursor{
        display:none;
    }
    
    h1 {
        font-size: 9vw;
        font-weight: 300;
    }

    h2 {
        font-size: 7vw;
        font-weight: 500;
    }
    h5 {
       font-size: 4.6vw;
        font-weight: 500; 
        line-height: 6vw;
    }
    .page2-contact-map{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-list {
    margin-top: 5vw;
    }

    /*Nav css start*/

    .menu-left .return-home {
        font-size: 2vw;
    }
    .email{
        font-size: 2vw;
        padding-top: 1vw;
    }
    .email i{
        font-size: 2.2vw;
    }
    .menu {
        height: 100%;
        width: 100%;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .menu-left {
        height: 100%;
    }

    .menu-elem>span {
        font-size: 4vw;
    }


    /*.nav-right select {*/
    /*font-size: 4vw;*/
    /*}*/

    .nav-right {
        gap: 2vw;
    }

    /*.nav-right i {*/
    /*    font-size: 5vw;*/
    /*}*/

    .menu-elem {
        height: 2vw;
    }

    .menu-elem>span {
        font-size: 2vw;
    }

    .menu-right-socials {
        display: block;
    }

    .email p {
        font-size: 3vw;
    }

    .media i {
        font-size: 2.4vw;
    }


    .search-bar>h6 {
        display: none;
    }

    .search-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        margin: 0 0;
        margin-top: 40px;
    }

    .search-bar .search {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        width: 100%;
    }


    .media i {
        font-size: 2.2vw;
    }

    .ri-close-large-fill:before {
        content: "\f4c7";
        font-size: 4vw;
    }

    .search>i {
        font-size: 2.3vw;
    }

    .search>input {
        padding: 0.6vw 1.2vw;
        width: 60%;
        border-radius: 0.5vw;
        font-size: 2vw;
        outline: none;
    }



    /*Nav css end*/

    /*Footer css start*/


    .footer-top-right i {
        font-size: 4vw;
    }


    .footer-top-right a {
        font-size: 4vw;
        gap: 1vw;
    }

    .footer-bottom {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }

    .footer-bottom-cert {
        gap: 2vw;
    }

    .footer-bottom-cert>img {
        height: 12vw;
        width: 8vw;
    }

    .footer-bottom-cert>img:nth-child(4) {
        margin-left: 3vw;
    }

    .footer-bottom>p {
        display: none;
    }

    .footer-bottom a {
        font-size: 3.4vw;
    }

    /*Footer css end*/
    

    /*Home css start*/

    .page1-home-videos {
        height: 100%;
    }


    .page1-home {
        height: 75vh;
    }

    .page1-home-text button {
        font-size: 3.1vw;
    }

    .text-fill {
        padding: 5vw 2vw;
    }

    .text-fill>h3 {
        font-size: 4vw;
    }

    .coutner-elem>h2 {
        font-weight: 600;
        font-size: 4vw;
    }

    .coutner-line {
        border-left: 0px solid #000;
    }

    .coutner-section {
        padding: 2vw;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 3vw;
        padding: 16vw 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .coutner-elem {
        width: 40%;
    }

    .coutner-elem>h3 {
        font-size: 4vw;
        text-align: center;
    }

    .certificated-logo {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5vw;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .certificated-logo>img {
        position: relative;
        height: 24vw;
        -o-object-fit: cover;
        object-fit: cover;
        width: 35vw;
    }

    .expertise-top>h2 {
        top: 100%;
    }

    .expertise-bottom>h2 {
        top: 0%;
    }

    .expertise-card {
        height: 70%;
        width: 80%;
    }

    .expertise-card-overlay>h2 {
        font-size: 7vw;
    }

    .build-cursor>h3 {
        font-size: 2vw;
    }

    .clientele-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 2vw 4vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .Clientele-heading {
        font-size: 6.5vw;
        line-height: 1;
        margin-bottom: 1vw;
    }

    .Clientele-main-heading {
        font-size: 2.8vw;
    }

    .marque1 {
        margin-top: 4vw;
    }

    .marque1>img {
        height: 24vw;
        width: 25vw;
    }

    .marque2>img {
        height: 24vw;
        width: 25vw;
    }

    .page3-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .page3-card-left {
        height: 50%;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page3-card-right {
        height: 50%;
        width: 100%;
    }

    .page3-card-left>h2 {
        font-size: 6vw;
    }

    .page3-card-left>p {
        font-size: 1.4vw;
    }

    .insights-win-box>p {
        font-size: 3vw;
    }

    .stay-update>i {
        font-size: 4vw;
    }

    .insights {
        padding: 2vw 5vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2vw;
    }

    .insights-left {
        gap: 3vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .insights-announcements {
        width: 100%;
        text-align: center;
    }

    .insights-left {
        /* height: 25vh; */
        width: 100%;
    }

    .insights-announcements .swiper {
        height: 8vh;
    }

    .insights-news {
        width: 100%;
        text-align: center;
    }

    .insights-right>p {
        font-size: 3vw;
    }

    .insights-right {
        width: 100%;
        height: 20vh;
        padding: 1vw 5vw;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .insights-email i {
        font-size: 2vw;
    }

    .insights-line {
        width: 100%;
    }

    .swiper-slide>p {
        font-size: 4vw;
    }

    .insights-announcements>h3 {
        font-size: 4vw;
    }

    .insights-news>h3 {
        font-size: 3vw;
        line-height: 1.4;
    }

    .insights-news>p {
        font-size: 2.6vw;
    }

    .insights-news>a {
        font-size: 2.6vw;
    }

    .insights-right button {
        font-size: 2vw;
    }

    .insights-email input {
        font-size: 2vw;
        padding: 1vw;
    }

    .insights-email i {
        font-size: 3vw;
    }


    .page1-home-text {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }


    .sector-top-margin {
        margin-top: 0px;
    }

    .page1-scroller {
        display: none;
    }

    .menu-right>i {
        font-size: 5vw;
    }

    .page1 {
        height: 50vh;
    }

    .page1-videos {
        height: 100%;
    }

    .who {
        font-size: 8vw;
    }

    .content__text-tiny {
        font-size: 4vw;
    }

    .teams-left>p {
        font-size: 2.4vw;
    }

    .team-img {
        height: 70%;
    }

    .brands {
        min-height: 60vh;
        gap: 12vw;
    }
    .privacy-section{
        margin-top: 15vw;
    }
    .brand {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

    .brands-img>p {
        font-size: 2vw;
    }

    .page7-container-elems {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .page7-elem {
        width: 45% !important;
    }

    .why-us-para {
        font-size: 3vw;
    }

    .page7-elem>p {
        font-size: 3.4vw;
    }

    .career-option-main-heading {
        font-size: 24px;
    }

    /*Home css end*/

    /*Project css start*/

    .nav-right select {
        font-size: 2vw;
    }

    .img-gallery .swiper {
        width: 100%;
        height: 60%;
    }


    .project {
        height: 80vh;
    }

    .project-filter-btn {
        display: block;
    }

    .single-project-card {
        width: 98%;
    }

    .project-info img {
        display: none;
    }

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

    .project-overlay>p {
        font-size: 2.4vw;
    }

    .main-project-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: "0vw";
    }

    .project-left-section {
        display: none;
        padding-left: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1vw;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0vw 0;
        display: none;
    }

    .project-filter-btn {
        display: block;
    }

    .size-filter {
        width: 40%;
    }

    .size-filter ul li {
        font-size: 3.3vw;
    }

    .clear-btn {
        padding: 10px 0 20px 0;
    }

    /*Project css end*/

    /*Expertise css start*/

    .page1-expertise {
        height: 80vh;
    }

    .page1-expertise-text p {
        font-size: 2.4vw;
    }

    .page2-expertise-circle {
        height: 1vh;
        width: 1vh;
    }

    .card-heading>h2 {
        font-size: 7vw;
    }

    .card-img {
        height: 45vh;
    }

    .card>p {
        font-size: 4.4vw;
    }

    .page7-expertise-container-elems {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 3vw
    }

    .card1 .page7-expertise-elem {
        width: 99%;
    }

    .card2 .page7-expertise-elem {
        width: 99%;
    }

    .card3 .page7-expertise-elem {
        width: 99%;
    }

    .card4 .page7-expertise-elem {
        width: 99%;
    }

    .card5 .page7-expertise-elem {
        width: 99%;
    }

    .card6 .page7-expertise-elem {
        width: 99%;
    }

    .page7-expertise-elem h2 {
        font-size: 5.6vw;
    }

    .page7-expertise-elem p {
        font-size: 4.4vw;
    }

    /*Expertise css end*/

    /*About css start*/

    .page1-about {
        height: 80vh;
    }

    .page1-about-text p {
        font-size: 4.2vw;
        text-align: center;
    }


    .text-about-fill>h3 {
        font-size: 5vw;
    }

    .text-about-fill>p {
        font-size: 2vw;
    }

    .content__text-tiny-about {
        font-size: 3.5vw;
    }

    .teams-about-left>h2 {
        font-size: 7vw;
    }

    .teams-about-left>p {
        font-size: 3.5vw;
        margin-top: 2vh;
    }

    .teams-about-right {
        gap: 8vw;
    }

    .team-about-img {
        width: 45%;
        height: 45vh;
    }

    .team-about-img {
        margin-top: 6vw;
    }

    .team-about-img-dets p {
        font-size: 4vw;
    }

    .teams-about {
        padding-bottom: 12vw;
    }

    .team-about-img-main>img {
        -o-object-position: 50% 20%;
        object-position: 50% 20%;
    }

    .team-about-img-dets small {
        font-size: 2.5vw;
    }

    /*About css end*/

    /*Clientele css start*/

    .clientele {
        height: 80vh;
    }

    .clientele-text p {
        font-size: 3.2vw;
        text-align: center;
    }

    #page7-clientele {
        height: fit-content;
    }


    .brands-clientele-img {
        height: 13vw;
        width: 26vw;
    }

    .design-clientele-img {
        height: 12vw;
        width: 27vw;
    }


    .page7-clientele-elem>h2 {
        font-size: 5vw;
        font-weight: 500;
    }


    .page7-clientele-container-elems {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .page7-clientele-elem1 {
        width: 48%;
    }

    .page7-clientele-elem2 {
        width: 48%;
    }

    .page7-clientele-elem3 {
        width: 48%;
    }

    .page7-clientele-elem4 {
        width: 48%;
    }


    /*Clientele css end*/


    /*CSR css start*/

    .csr {
        height: 80vh;
    }

    .csr-overlay>p {
        font-size: 4.2vw;
    }

    .csr-3d .front, .csr-3d .back {
        height: 50vw;
    }

    .csr-3d .col {
        width: calc(50% - 2rem);
    }

    .csr-gallery {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .csr-gallery .swiper {
        height: 100%;
    }

    .csr-gallery .swiper-slide {
        width: 40vw;
        height: 40vw;
    }

    .csr-gallery .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 40%;
        scale: .5;
    }

    .csr-gallery .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 40%;
        scale: .5;
    }

    /*CSR css end*/

    /*News css start*/

    .news {
        height: 80vh;
    }

    .single-blog-post, .single-blog-post>a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .single-blog-post.horizontal a, .nayla-posts-grid.grid-list .single-blog-post a {
        width: 100%;
    }

    .single-blog-post.horizontal .post-details, .nayla-posts-grid.grid-list .single-blog-post .post-details {
        width: 100%;
    }

    .single-blog-post .single-post-image, .single-post-image img {
        width: 80%;
    }
    
       /*news css end*/
    
    .news-overlay>p {
    font-size: 3vw;
    color: #ffffffbf;
}

   /*news css end*/

    /*News css end*/

    /*Awards css start*/

    .awards {
        height: 80vh;
    }

    .brands-awards {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 15vw;
    }

    .brands-awards-img {
        height: 40vw;
        width: 100%;
    }

    .brands-awards-img>img {
        height: 35vw;
    }

    .brands-awards-img>p {
        font-size: 5vw;
    }

    /*Awards css end*/

    /*Contact us css start*/

    .contact {
        height: 80vh;
    }


    .page2-contact {
        min-height: 130vh;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 2vw;
    }

    .wrap-contact>h2 {
        font-size: 7vw;
    }

    .wrap-contact {
        width: 100%;
    }

    .page2-contact-cards {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .contact-container {
        padding: 0;
        width: 100%;
    }

    .address-card {
        height: 40vh;
    }

    /*Contact us css end*/

    /*Career css start*/

    .career {
        height: 80vh;
    }

    .page7-career-container-elems {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .why-us-section {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        min-height: -webkit-fit-content;
        min-height: -moz-fit-content;
        min-height: fit-content;
    }

    .why-us-para {
        width: 100%;
        padding: 0 2vw;
    }

    .page7-career-elem {
        width: 100%;
        text-align: center;
    }

    .page7-career-elem>h2 {
        font-size: 5vw;
    }

    .page7-career-elem>p {
        font-size: 2.8vw;
        width: 100%;
    }

    .current-opening-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .current-opening-section2 img {
        height: 100%;
        padding-right: 0px;
        padding-left: 0px;
    }

    .career-option-section {
        padding: 0 2vw;
        padding-bottom: 10vw;
    }

    .career-option-desc-section {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
        -ms-grid-rows: (1fr)[1];
        grid-template-rows: repeat(1, 1fr);
    }

    .career-option-desc-section>*:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .current-opening-desc {
        font-size: 3vw;
    }

    .multi-content-card__item-label {
        padding-bottom: 3vw;
        font-size: 2.2vw;
    }

    .current-opening-section1{
        text-align:center;
    }

    .current-opening-heading {
        font-size: 5vw;
    }

    .why-us>h2 {
        font-size: 5vw;
    }

    .multi-content-card__item-label a {
        font-size: 2.6vw;
    }

    .career-option-main-heading {
        font-size: 5vw;
        margin-bottom: 4vw;
    }

    .multi-content-card__item-title-text {
        font-size: 4vw;
    }

    .careeer-apply-button {
        margin-top: 1.5vw;
        margin-bottom: 3.5vw;
    }

    /*Career css end*/

    /*Privacy css start*/

    .privacy-section h2 {
        font-size: 5vw;
    }

    .privacy-section p {
        font-size: 2.4vw;
    }

    /*Privacy css end*/
    .emo-remove {
        opacity: 0;
    }
}


.emo-scale {
    scale: 1.05 !important;
}

@media (max-width: 600px) {
    
    h1 {
        font-size: 8vw;
        font-weight: 300;
    }

    h2 {
        font-size: 7vw;
        font-weight: 500;
    }
    
    h3{
    font-size: 6vw;
    font-weight: 500;
    }

    .address-desc .city-name {
        font-size: 5vw;
        margin: 10px 0;
    }

    h4 {
        font-size: 4vw;
        line-height: 1.4;
    }
    .email{
        font-size: 5vw;
    }
    .menu-left .return-home {
        font-size: 5vw;
    }
    .email i {
        font-size: 5vw;
    }
    
    .emo-img {
        scale: 4.5;
    }

    .emo {
        width: 40vw;
    }
    
    .emo p {
    margin: 13px 0 0;
    text-align: center;
    font-size: 3.3vw;
    color: #333;
    }

    .return-home {
        font-size: 3.2vw;
    }

    .menu {
        height: 100%;
    }


    .nav-right {
        gap: 3vw;
    }


    nav {
        padding: 2vw;
        width: 100%;
    }

    nav img {
        height: 5vh;
    }

    .nav-right i {
        font-size: 6vw;
    }

    .menu-elem {
        height: 6vw;
    }

    .menu-elem>span {
        font-size: 6vw;
    }

    .menu-left {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
    }

    .menu-right-socials {
        display: block;
    }

    .email p {
        font-size: 3vw;
    }

    .media i {
        font-size: 5.4vw;
    }


    .menu-right>i {
        font-size: 5vw;
    }



    .search-bar>h6 {
        display: none;
    }

    .search-bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        margin: 0 0;
        margin-top: 40px;
    }

    .search-bar .search {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        width: 100%;
    }


    .ri-close-large-fill:before {
        content: "\f4c7";
        font-size: 4vw;
    }

    .search>i {
        font-size: 2.3vw;
    }

    .search>input {
        padding: 0.6vw 1.2vw;
        width: 60%;
        border-radius: 0.5vw;
        font-size: 2vw;
        outline: none;
    }

    /*Nav css end*/

    /*Footer css start*/
    .footer {
    position: relative;
    width: 100%;
    padding: 5vw 2vw;
    } 

    .footer-top-right i {
        font-size: 6vw;
    }


    .footer-top-right a {
        font-size: 4vw;
        gap: 1vw;
    }

    .footer-bottom {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        gap: 5vw;
        padding-top: 3vw;
    }

    .footer-bottom-cert {
        gap: 2vw;
    }

    .footer-bottom-cert>img {
        height: 12vw;
        width: 20vw;
    }

    .footer-bottom-cert>img:nth-child(4) {
        margin-left: 3vw;
    }

    .footer-bottom>p {
        display: none;
    }

    .footer-bottom a {
        font-size: 4.4vw;
    }

    .footer-bottom-right {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /*Footer css end*/


    /*Home css start*/

    .page1-home-videos {
        height: 100%;
    }



    .page1-home {
        height: 60vh;
    }


    .page1-home-text button {
        font-size: 4.1vw;
    }

    .text-fill {
        padding: 5vw 2vw;
    }

    .text-fill>h3 {
        font-size: 5vw;
    }

    .coutner-elem>h2 {
        font-weight: 600;
        font-size: 4.5vw;
    }

    .coutner-line {
        border-left: 0px solid #000;
    }

    .coutner-section {
        padding: 2vw;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 3vw;
        padding: 16vw 0;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .coutner-elem {
        width: 40%;
    }

    .coutner-elem>h3 {
        font-size: 5vw;
        text-align: center;
    }

    .certificated-logo {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 5vw;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }

    .certificated-logo>img {
        position: relative;
        height: 24vw;
        -o-object-fit: cover;
        object-fit: cover;
        width: 35vw;
    }

    .expertise-top>h2 {
        top: 100%;
    }

    .expertise-bottom>h2 {
        top: 0%;
    }

    .expertise-card {
        height: 40%;
        width: 80%;
    }

    .clientele-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 2vw 4vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .Clientele-heading {
        font-size: 6.5vw;
        line-height: 1;
        margin-bottom: 1vw;
    }

    .Clientele-main-heading {
        font-size: 2.8vw;
    }

    .marque1 {
        margin-top: 4vw;
    }

    .marque1>img {
        height: 24vw;
        width: 25vw;
    }

    .marque2>img {
        height: 24vw;
        width: 25vw;
    }

    .page3-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .page3-card-left {
        height: 60%;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page3-card-right {
        height: 40%;
        width: 100%;
    }

    .page3-card-left>h2 {
        font-size: 7vw;
    }

    .page3-card-left>p {
        font-size: 3.6vw;
    }

    .insights-win-box>p {
        font-size: 4vw;
    }

    .stay-update>i {
        font-size: 4vw;
    }

    .insights {
        padding: 2vw 5vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2vw;
    }

    .insights-left {
        gap: 3vw;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .insights-announcements {
        width: 100%;
        text-align: center;
    }

    .insights-left {
        /* height: 25vh; */
        width: 100%;
    }

    .swiper {
        height: 8vh;
    }

    .insights-news {
        width: 100%;
        text-align: center;
    }

    .insights-right>p {
        font-size: 3vw;
    }

    .insights-right {
        width: 100%;
        height: 20vh;
        padding: 1vw 5vw;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .insights-email i {
        font-size: 2vw;
    }

    .insights-line {
        width: 100%;
    }

    .swiper-slide>p {
        font-size: 4vw;
    }

    .insights-announcements>h3 {
        font-size: 6vw;
    }

    .insights-news>h3 {
        font-size: 5vw;
        line-height: 1.4;
    }

    .insights-news>p {
        font-size: 4vw;
    }

    .insights-news>a {
        font-size: 3.6vw;
    }

    .insights-right button {
        font-size: 2vw;
    }

    .insights-email input {
        font-size: 2vw;
        padding: 1vw;
    }

    .insights-email i {
        font-size: 3vw;
    }


    .page1-home-text {
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .single-project-card {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .main-project-section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-right: "0vw";
    }

    .project-left-section {
        padding-left: 10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        display: none;
        gap: 1vw;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .size-filter {
        width: 40%;
    }

    .size-filter ul li {
        font-size: 3.3vw;
    }

    .sector-top-margin {
        margin-top: 0px;
    }

    .page1-scroller {
        display: none;
    }


    .page1 {
        height: 50vh;
    }

    .page1-videos {
        height: 100%;
    }

    .who {
        font-size: 8vw;
    }

    .content__text-tiny {
        font-size: 4vw;
    }

    .teams-left>p {
        font-size: 2.4vw;
    }

    .team-img {
        height: 70%;
    }

    .clientele {
        height: 65vh;
    }

    .brands-clientele-img {
        height: 14vw;
        width: 28vw;
    }

    #page7-clientele {
        height: fit-content;
        padding-bottom: 8vw;
    }

        .page7-clientele-elem1 {
        width: 48%;
        height: 30vw;
    }

    .brands {
        min-height: 60vh;
        gap: 12vw;
    }

    .brand {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }

    .brands-img>p {
        font-size: 2vw;
    }

    .page7-container-elems {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .page7-elem {
        width: 45% !important;
    }

    .why-us-para {
        font-size: 3.5vw;
    }

    .page7-career-elem>p {
        font-size: 3.4vw;
        width: 100%;
    }

    .current-opening-desc {
        font-size: 3.4vw;
    }

    .page7-elem>p {
        font-size: 3.4vw;
    }

    .career-option-main-heading {
        font-size: 24px;
    }

    .insights-announcements {
        padding: 4vw 0;
    }

    .insights-win {
        margin-top: 3vw;
    }

    .insights-news>p {
        margin-top: 3vw;
    }

    .footer-bottom>p {
        display: block;
        position: relative;
        left: 0;
        top: 0;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        font-size: 4.2vw;
        margin-top: 1vw;
    }

    /*Home css end*/

    /*Project css start*/

    .nav-right select {
        font-size: 3vw;
    }

    .project {
        height: 60vh;
    }


    /*Project css end*/

    /*Expertise css start*/

    .page1-expertise {
        height: 60vh;
    }

    .page2-expertise {
        padding-top: 6vw;
    }

    .card>p {
        font-size: 3vw;
    }

    .page7-expertise-elem h2 {
        font-size: 3.2vw;
    }

    /*Expertise css end*/

    /*About css start*/

    .page1-about {
        height: 60vh;
    }

    .team-about-img-main>img {
        -o-object-position: 50% 0%;
        object-position: 50% 0%;
    }

    .team-about-img-dets small {
        font-size: 2.3vw;
    }

    .text-about-fill>p {
        font-size: 4vw;
    }

.content__img-inner-about {
    background-size: contain;
            background-repeat: no-repeat;
}

    /*About css end*/

    /*Clientele css start*/

    .project-clientele {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .design-clientele {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .design-clientele-img {
        height: 20vw;
        width: 27vw;
    }

    .clientele-heading-text {
        margin-top: 0vw;
    }

    /*Clientele css end*/

    /*CSR css start*/

    .csr {
        height: 60vh;
    }

    .csr-overlay>p {
        font-size: 4.2vw;
    }

    .csr-3d-text h2 {
        font-size: 7vw;
    }

    .csr-gallery {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }

    .csr-gallery .swiper {
        height: 100%;
    }

    .csr-gallery .swiper-slide {
        width: 45vw;
        height: 45vw;
    }

    .csr-gallery .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: 40%;
        scale: .5;
    }

    .csr-gallery .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: 40%;
        scale: .5;
    }

    .csr-3d .col {
        width: calc(98% - 2rem);
    }

    .csr-3d .front, .csr-3d .back {
        height: 65vw;
    }

    /*CSR css end*/

    /*News css start*/

    .news {
        height: 60vh;
    }

    .single-blog-post .single-post-image, .single-post-image img {
        width: 100%;
    }
    
        .news-overlay>p {
    font-size: 4vw;
    color: #ffffffbf;
}

    /*News css end*/

    /*Contact css start*/



    .page2-contact {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 2vw;
        gap: 6vw;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
    }

    /*Contact css end*/

    /*Career css start*/

    .career {
        height: 60vh;
    }

    .why-us>h2 {
        font-size: 7vw;
    }

    .current-opening-heading {
        font-size: 7vw;
    }

    .multi-content-card__item-label>a {
        font-size: 3.6vw;
        font-weight: 500;
    }

    .career-option-main-heading {
        font-size: 7vw;
    }

    .multi-content-card__item-title-text {
        font-size: 4.5vw;
    }

    .current-opening-desc {
        line-height: 1.2;
    }
    .career-overlay {
    padding-top: 45vw;
}

    /*Career css end*/

    /*Privacy css start*/

    .privacy-section h2 {
        font-size: 6vw;
    }

    .privacy-section p {
        font-size: 3vw;
    }
    
    .join-us-section{
    display:none;
}

    /*Privacy css end*/
}
@media (min-width: 601px){
    .join-us-section-mob{
    display:none;
    }
}