/*home banner css start here*/
.home-about .highlights {
    display: flex;
    position: relative;
    column-gap: 2em;
    align-items: baseline;
    padding-top: 2.7em;
    padding-bottom: 2.2em;
    border-top: 1px solid #BEBEBE;
    flex-wrap: wrap;
    text-align: left;
    justify-content: space-between;
}

.rbox-overlay .rbox-next,
.rbox-prev {
    display: none;
}
.load_model .modal-body{
    padding: 0;
}
.load_model .btn-close{
    position: absolute;
    top: -1rem;
    right: -0.5rem;
    z-index: 999999;
    background-color: #fff;
    opacity: 1;
    border-radius: 0;
    padding: 0.6rem;
    font-size: 13px;
}
.home-about .stats-flex {
    display: flex;
    align-items: baseline;
    column-gap: 1rem;
    background: var(--color-light);
    width: auto;
    margin: 0 auto 4rem;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.load_model .modal-dialog{
    margin-top: 4rem;
}

.home-about .highlights span sup {
    top: -8px;
    left: 3px;
}

.home-about .stats-flex h5 {
    margin-block: auto;
    margin-top: 2rem;
    width: 100%;
    font: var(--text-30);
}


.home-about .new_home_link .stats-flex {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    background: var(--color-light);
    width: auto;
    margin-bottom: 1.5rem;
    flex-wrap: inherit;
    flex-direction: inherit;
    text-align: left;
}

.home-about .new_home_link .stats-flex h5 {
    margin: 0px;
}

.new_home_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new_home_link .link-icon {
    margin-right: 4rem;
}

.right-content .section-heading {
    margin-bottom: 2.5em;
}




.cd-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    z-index: 1;
}

.cd-slider.ie9 nav div span {
    display: none;
}

.cd-slider ul li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 73vh;
    visibility: hidden;
    transition: visibility 1.2s .6s;
    -webkit-transition: visibility 1.2s .6s;
    -moz-transition: visibility 1.2s .6s;
    -ms-transition: visibility 1.2s .6s;
    -o-transition: visibility 1.2s .6s;
}

.cd-slider ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    width: 135vh;
    height: 135vh;
    /*border: solid rgba(0,0,0,0.2);
        */
    border-width: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: border-width 1.2s .6s;
    -webkit-transition: border-width 1.2s .6s;
    -moz-transition: border-width 1.2s .6s;
    -ms-transition: border-width 1.2s .6s;
    -o-transition: border-width 1.2s .6s;
}

.content-wrapper {
    height: 85vh;
    /* max-height: 900px; */
    width: 100%;
    /* mix-blend-mode: lighten; */
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.2);
    transition: opacity 1.2s .5s, transform 1.2s 1.2s;
    -webkit-transition: opacity 1.2s .5s, transform 1.2s 1.2s;
    -moz-transition: opacity 1.2s .5s, transform 1.2s 1.2s;
    -ms-transition: opacity 1.2s .5s, transform 1.2s 1.2s;
    -o-transition: opacity 1.2s .5s, transform 1.2s 1.2s;
}

.home_banner .content-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    top: auto;
    height: 60%;
    background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    opacity: .7;
    bottom: 0;
}


.home_banner .content {
    z-index: 1090;
    padding-bottom: 3em;
}



.cd-slider nav div {
    position: absolute;
    top: 50%;
    left: 4%;
    width: 3rem;
    height: 3rem;
    margin-top: -2.5rem;
    list-style: none;
    margin-left: .5rem;
    z-index: 0;
}

.cd-slider nav div:last-of-type {
    left: auto;
    right: 4%;
}

.cd-slider .prev,
.next {
    transition: box-shadow .3s;
    background: none !important;
}

.cd-slider .prev::before,
.cd-slider .prev::after,
.cd-slider .next::before,
.cd-slider .next::after {
    content: '';
    position: absolute;
    left: 43%;
    background: #fff;
    width: .4rem;
    min-width: 3px;
    border-radius: 3px;
    height: 34%;
    display: none;
}

.cd-slider .prev::before {
    transform: rotate(45deg);
    top: 24%;
}

.cd-slider .prev::after {
    transform: rotate(-45deg);
    bottom: 24%;
}

.cd-slider .next::before,
.cd-slider .next::after {
    left: auto;
    right: 43%;
    display: none;
}

.cd-slider .next::before {
    transform: rotate(-45deg);
    top: 24%;
}

.cd-slider .next::after {
    transform: rotate(45deg);
    bottom: 24%;
}

.cd-slider .prev:hover,
.cd-slider .next:hover {
    box-shadow: none;
}

.cd-slider nav>div>span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 100%;
    z-index: 5;
    pointer-events: none;
    will-change: width, height;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
}

.cd-slider li.current_slide {
    visibility: visible;
}

.cd-slider li.current_slide .content-wrapper {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s .5s, transform 1.2s .5s;
    -webkit-transition: opacity 1.2s .5s, transform 1.2s .5s;
    -moz-transition: opacity 1.2s .5s, transform 1.2s .5s;
    -ms-transition: opacity 1.2s .5s, transform 1.2s .5s;
    -o-transition: opacity 1.2s .5s, transform 1.2s .5s;
}

.home_banner .swiper-navs {
    position: absolute;
    bottom: 7em;
    right: 40rem;
}

.position-relative1.col-xl-8.mx-auto {
    position: unset;
}

@media (max-width: 2100px) {
    :is(.swiper-button-next, .swiper-button-prev) {
        width: 2.3rem;
        height: 2.3rem;
    }
}



.home_banner .line-top:after {
    width: .4em;
    height: 123%;
    clip-path: polygon(0 0, 100% 0, 0 0, 0 100%);
    background: linear-gradient(to bottom, var(--color-prime) 85%, var(--color-sec) 85%);
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 9;
}

article.sustainability {
    overflow: hidden;
}

@media (max-width: 1600px) {

    .home_banner .swiper-navs {
        position: absolute;
        bottom: 7em;
        right: 25rem;
    }
}






.hero-swiper {
    position: relative;
}

.hero-swiper .swiper-slide {
    padding-bottom: 4em;
}

.home_banner .content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
}

.home_banner .slide-text {
    padding-bottom: 1em;
    padding-left: 3em;
    position: relative;
    color: #fff;
    overflow-x: clip;
}

.home_banner .fraction {
    font: var(--text-21);
    font-weight: 300;
    margin-bottom: 1rem;
}

.home_banner .fraction span {
    font: var(--text-16);
    font-weight: 300;
    opacity: .6;
}

.home_banner .slide-text blockquote {
    font: var(--text-42);
    letter-spacing: -.126rem;
    max-width: 70%;
    position: relative;
    opacity: 0;
}

.home_banner .slide-text blockquote::after {
    content: '';
    position: absolute;
    top: 50%;
    border: 1px solid #fff;
    opacity: .3;
    width: 30%;
    left: calc(100% + .5em);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

:where(.home_banner .swiper-slide-active, .home_banner li.current_slide) blockquote::after {
    animation-duration: 2s;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: clip-right;
    animation-delay: 4.5s;
}

:where(.home_banner .swiper-slide-active, .home_banner li.current_slide) .line-top:after {
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInline;
    animation-delay: 1.2s;
}

:where(.home_banner .swiper-slide-active, .home_banner li.current_slide) blockquote {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeRight;
    animation-delay: 3s;
}

:where(.home_banner .swiper-slide-active, .home_banner li.current_slide) .fraction {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeDown;
    animation-delay: 2s;
}

.home_banner picture {
    display: block;
    position: relative;
}

.home_banner picture::after {
    content: '';
    position: absolute;
    inset: 0;
    top: auto;
    height: 40%;
    background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    opacity: .7;
}

.home_banner picture::before {
    content: '';
    position: absolute;
    inset: 0;
    bottom: auto;
    height: 40%;
    /* background: transparent linear-gradient(0deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box; */
    opacity: .7;
}


.home_banner .swiper-navs img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.home_banner :is(.swiper-button-next, .swiper-button-prev) {
    border-color: var(--color-white);
}

.home_banner :is(.swiper-button-next, .swiper-button-prev):hover {
    border-color: var(--color-dark);
}

main {
    padding-top: 11.8rem;
}

@keyframes fadeInline {
    0% {
        opacity: 0;
        clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    }

    100% {
        opacity: 1;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@media (max-width: 1600px) {}

@keyframes clip-right {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    }

    100% {
        clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
    }
}


.desktop-banner {
    height: 85vh;
    width: 100%;
    object-fit: cover;
}

/* Product Section */
.home-product {
    padding-block: 4.4em 11.6rem;
    background: var(--color-white);
}

.home-product .section-heading {
    max-width: 45em;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .5em;
}

.product-thumb {
    padding: 1.5em 1em 3em;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--color-light);
    position: relative;
}

.product-thumb figure {
    margin-bottom: 4.5em;
}

.product-thumb img {
    mix-blend-mode: multiply;
}

.product-thumb a {
    color: var(--color-sec);
    /* position: relative; */
}

.product-thumb a::after {
    content: '';
    position: absolute;
    inset: 0;
}

.product-thumb .wheel-box {
    margin-bottom: 0;
    text-align: center;
    row-gap: 1rem;
    flex-grow: 1;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
    font: var(--text-21);
}

.product-thumb h5 {
    margin-bottom: 0;
    text-align: center;
    row-gap: 1em;
    flex-grow: 1;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
    font: var(--text-21);
}

.product-thumb .wheel-box::after {
    content: '';
    width: 37%;
    height: .2em;
    background: var(--color-prime);
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    -o-transition: .3s all;
}

.product-thumb h5::after {
    content: '';
    width: 37%;
    height: .2em;
    background: var(--color-prime);
    transition: .3s all;
    -webkit-transition: .3s all;
    -moz-transition: .3s all;
    -ms-transition: .3s all;
    -o-transition: .3s all;
}

.product-thumb:hover a {
    color: var(--color-prime);
}

.product-thumb:hover .wheel-box::after {
    width: 80%;
}

.product-thumb:hover h5::after {
    width: 80%;
}

@media (max-width: 1799px) {
    .product-thumb {
        padding: 1.5em 1em 2em;
    }
}



/* Process */

.process {
    background: var(--color-light);
    padding-block: 5.7em 14.8rem;
}

.process .section-heading {
    display: flex;
    column-gap: 2em;
    align-items: center;
    margin-bottom: 7em;
}

.home-product .section-heading h1 {
    width: 75%;
}

.process .section-heading .link-icon {
    translate: 0 19%;
}

.process>.container {
    position: relative;
    z-index: 9;
}

.process .tab-accordion-tabs {
    flex-wrap: nowrap;
    column-gap: 1em;
    margin-inline: -1.5em;
    border-bottom: none;
}

.process .tab-accordion-tabs .nav-item {
    position: relative;
    flex-grow: 1;
    width: calc((100% - 2em)/3);
}

.process .tab-accordion-tabs .nav-link {
    display: block;
    width: 100%;
    text-align: left;
    background: #0F1837dd;
    color: #fff;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    font: var(--text-21);
    font-weight: 200;
    padding: 1em 1.2em;
    backdrop-filter: blur(3px);
    border: none;
}

.process .tab-accordion-tabs .nav-link:hover {
    border: none;
}

.process .tab-accordion-tabs .nav-link.active {
    background: #0F1837dd;
    font-weight: 200;
    color: #fff;
    border: none;
}

.process .tab-accordion-tabs .short-content {
    display: none;
    padding: 0 1.5em 1.5em;
    color: #fff;
    position: absolute;
    background: #0F1837dd;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    backdrop-filter: blur(3px);
}

.process .tab-accordion-tabs p {
    font-weight: 200;
    margin-bottom: 1em;
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

.process .tab-accordion-tabs .link-icon {
    border-color: #fff;
}

.process .tab-accordion-tabs .link-icon img {
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}

.process .tab-accordion-tabs .nav-link.active+.short-content {
    display: block;
    animation-duration: 1s;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: clip-down;
}

@keyframes clip-down {
    0% {
        clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    }

    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

.process .accordion-item {
    background: transparent;
    border: none;
}

.process .maxwidth {
    padding-inline: 3.5%;
    margin-top: -2.5em;
}

.process .accordion-body {
    padding: 0
}

.process .content {
    display: grid;
    align-items: end;
}

.process .content>* {
    grid-area: 1/1;
}

.process figure {
    position: relative;
}

.process figure::after {
    content: '';
    position: absolute;
    inset: 0;
    top: auto;
    height: 50%;
    background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    opacity: 0.92;
}

.process .overlay-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding-bottom: 4em;
}

.process .overlay-content :is(h5, p) {
    position: relative;
    padding-left: 2rem
}

.process .overlay-content h5 {
    margin-bottom: 1.8em;
    font-weight: 500;
    min-height: 6rem;
}

.process .overlay-content h5::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 1px;
    background-color: var(--color-prime);
}

.process .overlay-content p {
    font: var(--text-14);
    font-weight: 200;
}

.process .overlay-content .row {
    --bs-gutter-x: 4em
}

.process .overlay-content .container {
    position: relative;
}

.process .separator {
    position: absolute;
    right: 0;
    top: calc(100% + 4em);
    translate: 0 -50%;
    height: .93em;
    width: 40%;
    background: var(--color-prime);
}

.process .separator img {
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
    object-fit: contain;
    rotate: 180deg;
}

/* .process .overlay-content .separator::before{ height: .93em;} */

@media (max-width: 1600px) {
    .process .overlay-content .row {
        --bs-gutter-x: 3em;
    }
}

/* home about */

.home-about {
    background-color: var(--color-light);
    overflow: hidden;
}

/* .home-about figure{height: 100;} */
.home-about .right-content {
    margin-left: 8em;
    max-width: 34em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-block: 3em;
}

.home-about .section-heading .heading-top {
    margin-bottom: 1.4em;
    display: block;
}

.home-about .section-heading p {
    margin-bottom: 2.5rem;
}

.home-about .highlights {
    /* display: flex; */
    /* position: relative; */
    /* column-gap: 2em; */
    /* align-items: center; */
    /* padding-top: 1.7em; */
    /* padding-bottom: 2.7em; */
    /* border-top: 1px solid #BEBEBE; */
}

.home-about .separator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: .4em;
    background: linear-gradient(to right, var(--color-sec)50%, var(--color-prime)50%);
    width: 100%;
}

.home-about .stats-flex {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    background: var(--color-light);
}

.home-about .stats-flex [data-count] {
    letter-spacing: -.49rem;
}

.home-about .stats-flex h5 {
    font-weight: 600;
    margin-block: auto;
}

.home-about .stats-flex img {
    mix-blend-mode: multiply;
    margin-bottom: 2rem;
}

.links {
    display: flex;
    column-gap: 2.8em;
    margin-top: 3.5em;
}

.links a {
    font: var(--text-18);
    font-weight: 300;
    color: var(--color-sec);
    position: relative;
    display: block;
}

.links a:hover {
    color: var(--color-prime);
}

.links a::after {
    content: '';
    position: absolute;
    right: -1.1em;
    top: 50%;
    translate: 0 -50%;
    width: 5px;
    height: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../images/angle-right-prime.svg');
}

@media (max-width: 1600px) {
    .home-about .right-content {
        max-width: 36em;
    }

}

@media (max-width: 1200px) {
    .home-about .right-content {
        margin-left: 4em;
        padding-block: 2em;
    }

    .home-about .section-heading {
        margin-bottom: 2.5em;
        padding-inline: 2rem;
    }

    .home-about .highlights {
        padding-block: 1.3em 1.5em;
        column-gap: 1em;
        overflow: hidden;
        display: block;
        margin-inline: 2rem 0;
    }
}



/* People */
.our-people {
    background: var(--color-light);
    padding-block: 4em 5em;
}

.people-inner {
    padding: 3.3em;
    padding-bottom: 3.8rem;
    background: var(--color-white);
}

.people-inner>.row {
    translate: 8.33%
}

.people-inner .row .row {
    --bs-gutter-x: 1.4em;
    --bs-gutter-y: 1em
}

.people-inner .row .row>div:nth-last-child(-n + 2) {
    translate: 8vw
}

.people-inner .left-content {
    max-width: 28em;
    padding-block: 7rem 9em;
    position: relative;
}

.people-inner :is(.links, .section-heading) {
    margin-bottom: 2.5em
}

.people-inner .links {
    margin-top: 2.5em;
}

.people-inner .separator {
    position: absolute;
    width: 140%;
    bottom: 0;
    left: 0;
    display: flex;
    translate: -30% 207%;
}

.people-inner .separator::before {
    content: '';
    display: block;
    bottom: 0;
    left: 0;
    height: .9em;
    background: var(--color-prime);
    width: 100%;
    flex-grow: 1;
}

.people-inner .separator img {
    height: .9em;
    width: auto;
    object-fit: contain;
}

/* .people-inner .separator{position: absolute; bottom: 0; left: 0; height: .9em; background: var(--color-prime); width: 100%; translate: -50% 100%}
.people-inner .separator img{position: absolute; bottom: 0; left: calc(100% - 1px); height: .9em; object-fit: contain;} */
.people-inner figure {
    position: relative;
    overflow: hidden;
}

.people-inner figure img {
    width: 100%;
}

.people-inner figure .figcaption::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #00000000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    transition: .6s all;
    -webkit-transition: .6s all;
    -moz-transition: .6s all;
    -ms-transition: .6s all;
    -o-transition: .6s all;
    z-index: -1;
}

.people-inner figure .figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.8em 2.2em;
    padding-left: 3.3em;
    z-index: 1;
    color: #fff;
    translate: 0 100%;
    transition: .6s all;
    -webkit-transition: .6s all;
    -moz-transition: .6s all;
    -ms-transition: .6s all;
    -o-transition: .6s all;
    isolation: isolate;
}

.people-inner figure .figcaption::before {
    content: '';
    position: absolute;
    inset: 2em 2.2em;
    right: auto;
    width: 1px;
    background-color: var(--color-prime);
    z-index: 1;
}

.people-inner figure .figcaption h6 {
    font-weight: 200 !important;
    font: var(--text-18);
}

.people-inner figure .figcaption p {
    font: var(--text-14);
    font-weight: 200;
}

.people-inner figure:hover .figcaption {
    translate: 0 0;
}

.people-inner figure:hover .figcaption::after {
    height: 120%;
}


/* Sustainability */

.sustainability .maxwidth {
    display: grid;
    grid-template-columns: 18% 28% 33% 20.3%;
    gap: 4px;
    background: var(--color-light);
}

.sustainability figure img {
    width: 100%;
}

.sustainability .content {
    max-width: 29em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* margin-inline: auto; */
    margin-left: 8.2rem;
    margin-right: 8.2rem;
    justify-content: center;
    height: 100%;
    padding-right: 4.2rem;
}

.sustainability .content p:last-child {
    font-size: 1.2rem;
}

.sustainability p.text-mid {
    font-weight: 300 !important;
    margin-bottom: .9em;
    font: var(--text-18);
}

.sustainability .section-heading {
    margin-bottom: 1.8em;
}

.sustainability .links {
    margin-block: 2em;
    padding-top: 2em;
    border-top: 1px solid #D5D5D5;
}

.sustainability .item {
    position: relative;
}

.sustainability .separater {
    position: absolute;
    left: 0;
    bottom: 3em;
    height: .9em;
    width: 35%;
    background: var(--color-prime);
}

.sustainability .separater img {
    position: absolute;
    right: calc(100% - 1px);
    rotate: 180deg;
    bottom: 0em;
    height: .9em;
    object-fit: contain;
}

/* Updates */

.updates {
    padding-block: 10em 6.5em;
    background: var(--color-light);
    position: relative;
}

.updates::before {
    content: '';
    position: absolute;
    inset: 0;
    top: 28em;
    background: var(--color-sec);
}

.updates .heading-top {
    margin-bottom: .8em;
}

.updates .section-heading {
    display: flex;
    align-items: flex-end;
    column-gap: 2rem;
    justify-content: space-between;
}

.update-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em 1.13em;
    position: relative;
    z-index: 1;
}

.news-thumb {
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-thumb .thumb-details {
    flex-grow: 1;
    padding: 1em 1.5em;
    display: flex;
    align-items: center;
    column-gap: 0em;
    color: #fff;
}

.news-thumb .thumb-details p {
    font-weight: 200;
    margin-bottom: 0;
}

.news-thumb .thumb-details a {
    margin-top: auto;
}

.news-thumb:not(.news-thumb:nth-child(3), .news-thumb:nth-child(5)) .thumb-details .link-icon {
    width: 0;
    height: 0;
    opacity: 0;
}

.news-thumb .thumb-details .link-icon::before {
    content: '';
    position: absolute;
    inset: 0;
}

.news-thumb time {
    font: var(--text-36);
    line-height: 1.1;
    margin-right: .85em;
    position: relative;
    text-align: center;

}

.news-thumb time span {
    font-size: .3em;
    display: block;
    font-weight: 400;
    white-space: nowrap;
}

.news-thumb time::before {
    content: '';
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: -.45em;
    height: 1.4em;
    width: 1px;
    background-color: rgb(255, 255, 255, 33%);
}

.news-thumb figure img {
    width: 100%;
}

:is(.news-thumb:nth-child(3), .news-thumb:nth-child(5)) {
    box-shadow: 0px 3px 32px #00000014;
}

:is(.news-thumb:nth-child(3), .news-thumb:nth-child(5)) figure {
    display: none;
}

:is(.news-thumb:nth-child(3), .news-thumb:nth-child(5)) .thumb-details {
    flex-direction: column;
    align-items: flex-start;
    padding: 3em 2em 2.5em;
}

:is(.news-thumb:nth-child(3), .news-thumb:nth-child(5)) time::before {
    display: none;
}

.news-thumb:nth-child(3) {
    background-color: var(--color-white);
}

.news-thumb:nth-child(3) .thumb-details {
    color: var(--color-sec);
}

.news-thumb:nth-child(3) time,
.news-thumb:nth-child(5) time {
    margin-bottom: .8em;
    margin-right: 0;
}

.news-thumb:nth-child(3) .thumb-details p {
    font-weight: 300;
}

.news-thumb:nth-child(3) .thumb-details p:first-of-type,
.news-thumb:nth-child(5) .thumb-details p:first-of-type {
    margin-bottom: 1.4em;
    font: var(--text-21);
    font-weight: 300;
}

.news-thumb:nth-child(5) {
    background-color: var(--color-black);
}

.product-grid .product-thumb:hover figure img {
    scale: 1.1;
}

.product-grid .product-thumb figure img {
    transition: .5s ease all;
}

.home-about .section-title {
    position: relative;
}

.home-about .section-title:before {
    content: "";
    width: 18%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: -14.5rem;
    top: 22px;
}

.home-about .section-title:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    right: -51rem;
    top: 22px;
}

.product-thumb a img {
    display: block;
    margin: 0 auto 1rem;
}

.home-about .stats-flex p {
    font: var(--text-16);
}

.wheel_icon_img {
    text-align: center;
    margin-bottom: 0rem;
}

.wheel-box {
    width: 100%;
}

.product-thumb .wheel-box h4 {
    margin-bottom: 2rem;
}

.how_we_mobile,
.m-icon {
    display: none;
}


.our-people .swiper-wrapper .swiper-slide {
    width: 50%;
    height: auto;
}

.update-wrapper .news-thumb:nth-child(5),
.update-wrapper .news-thumb:nth-child(3) {
    position: relative;
}

.update-wrapper .news-thumb:nth-child(5):after,
.update-wrapper .news-thumb:nth-child(3):after {
    content: "";
    background-color: var(--color-prime);
    height: 5px;
    width: 127px;
    position: absolute;
    bottom: -2px;
    left: 35px;
}
@media screen and (max-width:1550px){
    .load_model{
        overflow: hidden;
    }
    .load_model .modal-dialog{
        max-width: 400px;
    }
}
@media (min-width:1400px) {
    .people-inner .swiper-wrapper .swiper-slide:nth-child(2) figure {
        width: 273px;
        height: 353px;

    }

    .people-inner .swiper-wrapper .swiper-slide:nth-child(4) figure {
        width: 263px;
        height: 353px;

    }

    .people-inner .swiper-wrapper .swiper-slide:nth-child(2) {
        left: 5rem;
        position: relative;
    }

    .people-inner .swiper-wrapper .swiper-slide:nth-child(4) {
        left: 5rem;
        position: relative;
    }

    .people-inner .swiper-wrapper .swiper-slide figure {
        width: 335px;
        height: 434px;

    }
}
@media (min-width:1000px) {

    .our-people .swiper-wrapper {
        flex-wrap: wrap;
    }

    .our-people .swiper-wrapper .swiper-slide:nth-child(2) {
        margin-top: auto !important;
        margin-bottom: 0 !important;
    }

    .people-inner .swiper-wrapper {
        /* --bs-gutter-x: 1.4em;
    --bs-gutter-y: 1em; */
        display: flex;
        flex-wrap: wrap;
        margin-top: calc(-1* var(--bs-gutter-y));
        margin-right: calc(-.5* var(--bs-gutter-x));
        margin-left: calc(-.5* var(--bs-gutter-x));
    }


    .our-people .swiper-wrapper>* {
        flex-shrink: 0;
        width: 100%;
        max-width: 100%;
        padding-right: calc(var(--bs-gutter-x)* .5);
        padding-left: calc(var(--bs-gutter-x)* .5);
        margin-top: var(--bs-gutter-y);
    }

    .our-people .swiper-wrapper>.swiper-slide:nth-last-child(-n + 2) {
        translate: 8.2vw;
        margin-top: 2rem;
    }

    .sustainability .content p:last-child {
        font-size: 1.2rem !important;
    }

    /* .our-people .swiper-wrapper .swiper-slide {
    flex-grow: 1 !important;
    flex: 0 0 auto;
    height: auto;
    width: 50%;
} */
    /* .people-inner .swiper-wrapper .swiper-slide:nth-child(2) figure{
    width: 263px;
}
    .people-inner .swiper-wrapper .swiper-slide:nth-child(2) figure img {

        height: 319px;
    } */

 

}

.mobile-sustain {
    display: none;
}

/* Desktop: Display as is */
@media (min-width: 768px) {
    .highlights .swiper-container .swiper-wrapper {
        flex-wrap: wrap;
    }

    .stats {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 10px;
    }

    .highlights .swiper-container .swiper-wrapper .swiper-slide {
        width: 33%;
    }
}

/* Mobile: Swiper slider */
@media (max-width: 767px) {
    .stats {
        display: none;
        /* Hide static stats on mobile */
    }

    .highlights .swiper-container {
        display: block;
        /* Show Swiper container on mobile */
    }
    .load_model .modal-dialog {
        margin:2rem auto;
        padding: 2rem;
    }
}

.home_banner {
    position: relative;
    padding-bottom: 5rem;
    background-color: #fff;
}

.slider_line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
}

.slider_line .line-top {
    width: .4em;
    height: 260px;
    /* clip-path: polygon(0 0, 100% 0, 0 0, 0 100%); */
    z-index: 1090;
    background: linear-gradient(to bottom, var(--color-prime) 85%, var(--color-sec) 85%);
    position: relative;
    z-index: 1;
}

.rbox-overlay {
    background: transparent !important;
}

@media (max-width: 767px) {
    .slider_line {
        bottom: 66px;
    }
}

@media (max-width: 575px) {
    .slider_line {
        bottom: 185px;
    }
 
}