/*Font family*/
@font-face {
    font-family: 'Didot Regular';
    src: url('../fonts/Didot.woff2') format('woff2'),
        url('../fonts/Didot.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Didot Bold';
    src: url('../fonts/Didot-Bold.woff2') format('woff2'),
        url('../fonts/Didot-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FONTSPRING DEMO - The Seasons Regular';
    src: url('../fonts/FONTSPRINGDEMO-TheSeasonsRegular.woff2') format('woff2'),
        url('../fonts/FONTSPRINGDEMO-TheSeasonsRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    src: url('../fonts/FONTSPRINGDEMO-TheSeasonsBold.woff2') format('woff2'),
        url('../fonts/FONTSPRINGDEMO-TheSeasonsBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FONTSPRING DEMO - The Seasons LightRegular';
    src: url('../fonts/FONTSPRINGDEMO-TheSeasonsLightRegular.woff2') format('woff2'),
        url('../fonts/FONTSPRINGDEMO-TheSeasonsLightRegular.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/* root style */
body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Didot Regular';
    color: var(--ThemeBlueColor);
    background: var(--ThemebgColor);
    line-height: 1.2;
}

* {
    box-sizing: border-box;
}
.socialtext .linktext span {
    font-family: auto;
}
html {
    scroll-behavior: smooth;
}

:root {
    --black: #000;
    --white: #fff;
    --ThemebgColor: #F6F6F6;
    --ThemeBlueColor: #111738;
    --LightGreen: #C3CF99;
}

h1,
.h1 {
    font-size: clamp(32px, 5.21vw, 100px);
}

h2,
.h2 {
    font-size: clamp(26px, 2.08vw, 40px);
}

h3,
.h3 {
    font-size: 24px
}

h4,
.h4 {
    font-size: 20px;
}

h5,
.h5 {
    font-size: 16px;
}

p,
.p {
    font-size: 18px;
}

.white_bg {
    background-color: var(--white);
}

.black_text {
    color: var(--black);
}

.themeText {
    color: var(--ThemeBlueColor);
}

.themebg {
    background-color: var(--ThemebgColor);
}

.green_text {
    color: var(--LightGreen);
}

.green_bg {
    background-color: var(--LightGreen);
}

.fw-regular {
    font-weight: 400;
}

.text-uppercase {
    text-transform: uppercase;
}

.font_didot {
    font-family: 'Didot Regular';
}

.font_didotbold {
    font-family: 'Didot Bold';
}

.font_spring_r {
    font-family: 'FONTSPRING DEMO - The Seasons Regular';
}

.font_spring_b {
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
}

a,
span,
i {
    display: inline-block;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--ThemeBlueColor);
    text-decoration: none;
}

.d_inline_block {
    display: inline-block;
}

.d_block {
    display: block;
}

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

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

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

.flexitem {
    flex: 1;
}

.d-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.h-100 {
    height: 100%;
}

li {
    list-style: none;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

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

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

.textleft {
    text-align: left;
}

.position-relative {
    position: relative;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #a09fa2;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
}

.sec-padding {
    padding: 120px 0;
}

.pt_120 {
    padding-top: 120px;
}

.pb_120 {
    padding-bottom: 120px;
}

.p-0 {
    padding: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.b_radius_60 {
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
}

/* end */

/*header*/
header {
    position: fixed;
    z-index: 9;
    top: 30px;
    right: 0;
    left: 0;
    background: transparent;
    will-change: top;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -moz-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -ms-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled header {
    top: 20px;
}

.site-title {
    display: none;
}

header .navbar {
    position: relative;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 17px 24px; */
    padding: 4px;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
}

.site-branding {
    display: inline-flex;
    padding: 0 20px;
}

img.custom-logo {
    width: clamp(30px, 3.125vw, 60px);
}

header .menu {
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.menu-item {
    margin: 0 20px;
}

.menu-item:last-child {
    margin-right: 0;
}

.menu-item a {
    color: var(--ThemeBlueColor);
    text-transform: capitalize;
    font-size: 18px;
    cursor:pointer;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--LightGreen);
    transition: 0.3s;
}

.main-navigation.active .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 5px);
    -webkit-transform: rotate(45deg) translate(9px, 5px);
    -moz-transform: rotate(45deg) translate(9px, 5px);
    -ms-transform: rotate(45deg) translate(9px, 5px);
    -o-transform: rotate(45deg) translate(9px, 5px);
}

.main-navigation.active .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.main-navigation.active .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -5px);
    -webkit-transform: rotate(-45deg) translate(8px, -5px);
    -moz-transform: rotate(-45deg) translate(8px, -5px);
    -ms-transform: rotate(-45deg) translate(8px, -5px);
    -o-transform: rotate(-45deg) translate(8px, -5px);
}

.primary-btn {
    font-size: 20px;
    font-family: 'Didot Regular';
    color: var(--ThemeBlueColor);
    padding: 24px 24px;
    border-radius: 60px;
    border: none;
    max-width: fit-content;
    display: inline-block;
    cursor: pointer;
}

.primary-btn.green {
    background-color: var(--LightGreen);
}

.primary-btn.blue {
    background-color: var(--ThemeBlueColor);
    color: var(--white);
    padding: 24px 40px;
}

/* homepage */
.hero-section {
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    min-height: calc(100vh - 50px);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 0;
}
.hero-title {
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    color: var(--white);
position:relative;
    z-index:10;
}

.homepage .hero-title {
    text-transform: uppercase;
    padding: 20px 0 0;
}

.img-item {
    /* aspect-ratio: 784/753; */
    overflow: hidden;
    max-height: 753px;
}

.img-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sec-title {
    color: var(--ThemeBlueColor);
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    margin: 18px 0 60px;
}

.content-item {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 52px;
}

.border_circle {
    width: 12px;
    height: 12px;
    border: 2px solid var(--ThemeBlueColor);
    background: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.section-label {
    border-radius: 60px;
    border: 1px solid var(--LightGreen);
    background: transparent;
    padding: 12px 14px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.how-it-works .content-item {
    align-items: start;
    justify-content: start;
    text-align: start;
    height: 100%;
}

.how-it-works .sec-title {
    margin-bottom: 90px;
}

/* accordion */
.accordion-item {
    cursor: pointer;
    position: relative;
    margin: 0 0 32px;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-collapse {
    cursor: auto;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: relative;
}

.accordion-item .accordion-collapse p {
    padding: 20px 0  0;
}

.accordion-item p {
    text-align: start;
}

.collapse {
    opacity: 0;
}

.accordion-item.active .collapse {
    opacity: 1;
}

button:focus-visible {
    outline: none;
}

.accordion-item.active .accordion-button {
    font-family: 'Didot Bold';
}

.accordion-button {
    font-family: 'Didot Regular';
    color: var(--ThemeBlueColor);
    background-color: transparent;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 20px 0 32px;
    border-bottom: 1px solid #E2E2E2;
}

.accordion-button::before {
    content: "";
    position: absolute;
    height: 2px;
    width: 16px;
    background-color: var(--ThemeBlueColor);
    opacity: 0;
    transition: opacity 0.2s ease;
    -webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
}

.accordion-item.active .accordion-button::before {
    opacity: 1;
}

.accordion-item .accordion-button span {
    display: inline-block;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-button span {
    transform: translateX(24px);
}

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

.our-signature button {
    margin: 52px 0 0;
}

.cont-wrapper {
    max-width: 60%;
    margin: 0 auto;
}

.HorizontalSlider .swiper-pagination {
    max-width: calc(100% - 50%);
    right: 0;
    left: auto;
    top: 83%;
}

.swiper-pagination-bullet {
    height: 3px;
    width: 30px;
    border-radius: 10px;
    background: #E2E2E2;
    opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--ThemeBlueColor)
}

.project-img {
      /* aspect-ratio: 648/700;  */
    max-height: 700px;
}

.project-img img {
    width: 100%;
    max-height: 435px;
    object-fit: cover;
    object-position: center;
}
.scroll-item video {
    width: 100%;
    height: 916px;
    object-fit: cover;
}
.project-title {
    padding: 32px 0 0;
}

.swiper-slide.testimonial_slide {
    max-width: 916px;
    margin: 0 auto;
    text-align: center;
}

.TestimonialSlider .swiper-slide {
    width: 100%;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.5;
    padding: 0 120px;
}

.TestimonialSlider .swiper-slide-active {
    opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--ThemeBlueColor);
    border: 1px solid rgba(17, 17, 17, 0.45);
    border-radius: 50%;
    width: 68px;
    height: 68px;
    bottom: 0;
    top: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
}

.swiper-button-prev {
    left: 40%;
}

.swiper-button-next {
    right: 40%;
}

.TestimonialSlider .swiper-pagination {
    bottom: 20px;
}

.TestimonialSlider {
    padding-bottom: 80px;
}

.testimonial_text {
    padding: 32px 0 52px;
    text-align: center;
}

img.quotevector {
    text-align: center;
    margin: 0 auto;
}

.author-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.author-details h4 {
    margin: 20px 0 12px;
}

.author-image {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.author-location {
    color: #A1A1A1;
}

.our-projects .swiper-slide {
    max-width: 648px;
}

.our-projects h2 {
    margin: 18px 0 52px;
}

.catalogue-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.catalogue-img {
    aspect-ratio: 512/554;
    max-height: 554px;
    width: 100%;
}

.catalogue-img img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.downloadlink {
    background-color: transparent;
    color: var(--LightGreen);
    border: none;
    text-transform: uppercase;
    font-family: 'Didot Bold';
    font-size: 24px;
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    width: fit-content;
    margin: 0 auto;
    padding: 0;
}

.catalogue-title {
    padding: 32px 0 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

/* footer */
.wp-block-heading {
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    margin: 0 0 20px;
    font-size: 24px
}

.footer_top {
    position: relative;
    overflow: hidden;
    z-index: 1;
    /* min-height: 380px;
    max-width: 100vw; */
    width: 100%;
}

.footer_top .footer_brand {
    display: block;
    white-space: nowrap;
    text-transform: uppercase;
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    line-height: 1;
    font-size: 27vw;
    margin-top: -42px;
    color: var(--LightGreen);
}

.footer_menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer_menu ul li {
    margin: 0;
}

.footer_inner {
    padding: 160px 0 52px;
    display: grid;
    grid-template-columns: repeat(2, auto);
}

.footer-bottom {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid #E2E2E2;
}

.footer_link,
.footer_menu ul .menu-item a {
    font-size: 16px;
}

.footer-widget-area {
    max-width: 172px;
    min-width: 172px;
}

.footer_menu {
    display: flex;
    align-items: start;
    gap: 32px;
}

.footer_inner .f_disc {
    max-width: 50%;
}

.footer_inner .footer_link {
    line-height: 1.5;
}

.footer_inner #block-7 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* scroll image slider */
.scroll-img-slider-wrap {
    /* min-height: 100vh; */
    position: relative;
    /* height: 100vh; */
    /* overflow-y: scroll;
    scroll-snap-type: y mandatory; */
}

.fixed-text {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    transition: transform 0.6s ease, opacity 0.6s ease;
    margin: 0;
    line-height: 1;
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    font-weight: normal;
    color: var(--ThemeBlueColor);
    font-size: 11.5vw;
    text-align: center;
    width: 100%;
    -webkit-transition: transform 0.6s ease, opacity 0.6s ease;
    -moz-transition: transform 0.6s ease, opacity 0.6s ease;
    -ms-transition: transform 0.6s ease, opacity 0.6s ease;
    -o-transition: transform 0.6s ease, opacity 0.6s ease;
    /* mix-blend-mode: difference;
    background-clip: text; */
    -webkit-font-smoothing: antialiased;
    /* filter: invert(1); */
    opacity: 0;
    -webkit-transform: translate(-50%, -45%);
    -moz-transform: translate(-50%, -45%);
    -ms-transform: translate(-50%, -45%);
    -o-transform: translate(-50%, -45%);
}

.fixed-text.textStick {
    opacity: 1;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.fixed-text.leaving {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    opacity: 0;
    -webkit-transform: translate(-50%, -45%);
    -moz-transform: translate(-50%, -45%);
    -ms-transform: translate(-50%, -45%);
    -o-transform: translate(-50%, -45%);
}

.fixed-text::before {
    content: attr(data-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    color: white;
    /*strokecolor*/
    -webkit-text-stroke: 2px white;
    text-stroke: 2px white;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.fixed-text.overlay {
    color: transparent;
}

.fixed-text.overlay::before {
    opacity: 1;
}

/* .fixed-text.active {
    -webkit-text-stroke: 2px #fff;
    color: transparent;
} */

.fixed-text span:nth-child(1) {
    transform: translateX(-10rem);
    -webkit-transform: translateX(-10rem);
    -moz-transform: translateX(-10rem);
    -ms-transform: translateX(-10rem);
    -o-transform: translateX(-10rem);
}

.fixed-text span:nth-child(2) {
    display: block;
    transform: translateX(14rem);
    -webkit-transform: translateX(14rem);
    -moz-transform: translateX(14rem);
    -ms-transform: translateX(14rem);
    -o-transform: translateX(14rem);
}

.scrollimagwrapper {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: space-between;
    padding: 120px 0;
    width: 100%;
    height: 100%;
}

.scroll-item video {
    aspect-ratio: 580/600;
    max-width: 500px;
    max-height: 600px;
    object-fit: cover;
    object-position: center;
    /* transform: translateY(100px); */
    transition: transform 0.8s ease;
    -webkit-transition: transform 0.8s ease;
    -moz-transition: transform 0.8s ease;
    -ms-transition: transform 0.8s ease;
    -o-transition: transform 0.8s ease;
}

.scroll-item.in-view img {
    transform: translateY(0);
}

.scroll-item {
    position: relative;
    z-index: 4;
}

.scroll-item:nth-child(1),
.scroll-item:nth-child(3),
.scroll-item:nth-child(5) {
    margin-top: 50%;
}

.scroll-item:nth-child(2),
.scroll-item:nth-child(4),
.scroll-item:nth-child(6) {
    margin-bottom: 20%;
}

.who-we-are .disc-text {
    padding: 0 58px;
}

/* about us */
.banner.hero-section {
    min-height: 720px;
    background-size: cover;
    background-position: top;
    align-items: end;
    padding: 200px 0 0;
}
.aboutus.hero-section{
         background-position: center;
}
.bannertitle {
    font-size: 19vw;
    margin: 0;
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
    line-height: 1;
    /* -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background: transparent; */
    position: relative;
    transition: color 0.3s ease-in-out;
}

/* cursor effect on text */
.cursor-spotlight-effect {
    position: relative;
    display: inline-block;
    overflow: visible;
    cursor: none;
}

/* .blurryCircle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    pointer-events: none;
    background-color: #C3CF99;
    -webkit-mask-image: text;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: destination-in;
    filter: blur(50px);
    z-index: 2;
} */

/* .bannertitle::before {
    content: "Our Team";
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    pointer-events: none;
    background-color: #C3CF99;
    filter: blur(30px);
    -webkit-mask-image: text;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-composite: destination-in;
    mask-image: text;
    mask-repeat: no-repeat;
    mask-composite: intersect;
    transform: translate(-50%, -50%);
    opacity: 0;
    -webkit-filter: blur(30px);
} */

/* .bannertitle.active::after {
    opacity: 1;
    left: var(--circle-x);
    top: var(--circle-y);
} */

.blurredText {
    filter: blur(20px);
}

.aboutraneet .content-item {
    max-width: 43%;
    justify-content: start;
    align-items: start;
    text-align: start;
    padding-left: 0;
}

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


.aboutraneet .flex_row .aboutimgwrap img {
    width: 600px;
    margin-left: auto;
}
.aboutimgwrap .aboutimg.left {
    aspect-ratio: 408/511;
}

.aboutimgwrap .aboutimg.right {
    aspect-ratio: 408/753;
}

.visionimg {
    object-position: bottom;
}

.cgap52 {
    gap: 52px;
}

.mb52 {
    margin-bottom: 52px;
}

.ourvision .flex_row:nth-of-type(2) {
    flex-direction: row-reverse;
}

.flexreverse .content-item {
    padding-left: 0;
    padding-right: 52px;
}

.flexreverse img {
    object-position: bottom;
}

.ourvision .content-item {
    align-items: start;
    text-align: start;
}

.sustainability {
    position: relative;
}

.sustainability::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(/wp-content/uploads/2026/03/sustainability-img-scaled-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right 56%;
    transform: scaleX(-1);
    z-index: -1;
}

.rightsideheading h2 {
    color: var(--white);
    font-size: 120px;
    font-weight: normal;
    line-height: 1;
}

.leftsidestats .stat h3 {
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    color: var(--white);
    margin: 0 0 18px;
    font-size: 52px;
}

.leftsidestats .stat p {
    font-family: 'Didot Regular';
    color: var(--white);
    margin: 0;
}

.leftsidestats .stats {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 64px;
}

.rightsideheading {
    text-align: start;
    display: flex;
    align-items: end;
    margin: 0 0 -12px auto;
}

.ourteam {
    position: relative;
    z-index: 1;
    padding: 190px 0 0;
    /* aspect-ratio: 15.5 / 6.5;
    overflow: hidden; */
}

.ourteam h2 {
    background: linear-gradient(to bottom, #C3CF99 0%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: 'FONTSPRING DEMO - The Seasons Regular';
    font-weight: normal;
    margin: 0;
    font-size: 20vw;
    line-height: 1;
    text-transform: uppercase;
    position: absolute;
    top: 6rem;
}

.ourteam-img {
    position: relative;
    z-index: 2;
    /*top: -7rem;
    transform: scale(1.1);
    transform-origin: 16%;
    */
    /* transform: translateY(6rem);
    -webkit-transform: translateY(6rem);
    -moz-transform: translateY(6rem);
    -ms-transform: translateY(6rem);
    -o-transform: translateY(6rem); */
}

.ourteam-img img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

/* marquee */
.marquee-flex {
    display: flex;
    flex-wrap: wrap;
    width: max-content;
    animation: marquee-animate 24s linear infinite;
    -webkit-animation: marquee-animate 24s linear infinite;
}

.marquee-content {
    overflow: hidden;
    position: relative;
}

.marquee-flex:hover {
    animation-play-state: paused;
}

@keyframes marquee-animate {
    0% {
        transform: translateX(0%);
    }

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

/* end */
.ourteam-marquee .marquee-content span {
    font-size: 32px;
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    text-transform: uppercase;
    color: var(--ThemeBlueColor);
}

.ourteam-marquee .marquee-flex {
    gap: 10px;
}

.ourteam-marquee.marquee {
    background-color: var(--LightGreen);
    padding: 10px 0 7px;
    overflow: hidden;
}

.how-wework .content-item {
    max-width: calc(100% - 900px);
}

.how-we-work-img {
    aspect-ratio: 944/920;
    overflow: hidden;
    max-height: 920px;
}

.how-we-work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.how-wework {
    padding-right: 160px;
}

.ourjourneywrapper {
    padding: 52px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 52px;
}

.our-journey .cont-wrapper {
    text-align: center;
}

.scrolltext,
.stickyimgwrap {
    flex: 1;
}

.scrolltext h3 {
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    font-weight: normal;
    color: var(--ThemeBlueColor);
    margin: 0 0 50px;
}

.sticky-image {
    position: sticky;
    top: 160px;
    max-height: 730px;
    aspect-ratio: 550 / 730;
}

.sticky-image img {
    height: 100%;
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.scrolltext {
    max-width: 29%;
}

.year-block.left {
    margin-bottom: 50%;
}

.year-block.left {
    text-align: right;
}

.year-block.right {
    margin-top: 50%;
}

.service.banner {
    background-position: 100% 90%;
}

.projecttitle h3 {
    margin: 32px 0 0;
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    font-weight: normal;
}

.projectimg {
    aspect-ratio: 784/544;
    max-height: 544px;
}

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

.projectsgridwrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 32px;
}

.projectsitem {
    flex: 47%;
}

/* project detail page */
.projectdetail.hero-section {
    background-position: bottom;
    justify-content: end;
    align-items: end;
    padding-bottom: 0;
    overflow: visible;
}

.projectinfoitem h3,
.projectinfoitem h4 {
    font-weight: normal;
}

.projectinfoitem h3 {
    margin: 0 0 20px;
}

.projectdetail-bottom {
    padding: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    transform: translateY(80px);
    -webkit-transform: translateY(80px);
    -moz-transform: translateY(80px);
    -ms-transform: translateY(80px);
    -o-transform: translateY(80px);
}

.projectinfoitem {
    min-width: 336px;
}

.styleandstory {
    padding: 240px 0 120px;
}

.styleandstory .content-item {
    text-align: start;
    padding: 0 52px 0 0;
    max-width: calc(100% - 800px);
}

.styleandstory .img-item {
    aspect-ratio: 768/795;
    max-height: 795px;
}

.projectlandscap .cont-wrapper {
    max-width: 100%;
}

.ladscapprojectimg {
    margin: 52px 0 0;
}

.galleryslide {
    aspect-ratio: 502/580;
    max-height: 580px;
}

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

.ProjectGallerySlider .swiper-slide {
    max-width: max-content;
}




.ProjectGallerySlider .swiper-button-prev,
.ProjectGallerySlider .swiper-button-next {
    display: none;
}

.producttitle h3 {
    font-weight: normal;
    font-family: 'FONTSPRING DEMO - The Seasons Bold';
    margin:10px 0 0;
}

.badge {
    font-size: 20px;
    font-family: 'Didot Regular';
    padding: 20px 20px;
    background-color: var(--white);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.wishlist-btn {
    width: 54px;
    height: 54px;
    border: 1px solid var(--white);
    background: transparent;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.producttop {
    position: absolute;
    inset: 20px 20px auto 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wishlist-btn path {
    fill: none;
    stroke: #fff;
    stroke-width: 1;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.wishlist-btn.active svg path {
    fill: #fff;
    stroke: #fff;
}

/* product detail */
.productdetail.banner {
    background-position: 100% 87%;
}

.productdetail-story .primary-btn {
    background-color: transparent;
    border: 1px solid var(--ThemeBlueColor);
    margin: 60px 0 0;
}

.productdetail-story .content-item {
    justify-content: start;
    text-align: start;
    align-items: start;
}

.feature-showcase .img-item {
    aspect-ratio: 648/407;
    max-height: 407px;
}

.feature-showcase .img-item video {
    object-fit: cover;
    object-position: 100% 92%;
    height: 100%;
    max-width: 100%;
}

.feature-showcase .content-item {
    text-align: start;
    align-items: start;
    justify-content: start;
    padding: 0 52px 0 0;
}

.feature-showcase .d-grid {
    grid-template-columns: repeat(2, auto);
}

.featuresoverviewitem h2 {
    margin: 0 0 32px;
}

.featuresoverviewitem p {
    margin: 0;
    padding: 32px 0 0;
    border-top: 0.5px solid #C3CF99;
}

.featuresoverviewwrap {
    display: flex;
    flex-wrap: wrap;
    gap: 70px;
}

.featuresoverviewitem {
    flex: 1;
}

.featuresoverviewitem:nth-of-type(2) {
    padding: 80px 0 0;
}

.featuresoverviewitem:nth-of-type(3) {
    padding: 160px 0 0;
}

/* contact us  */
.contactusbanner.banner {
    background-position: 100% 78%;
}

textarea {
    min-width: 100%;
    max-height: 60px;
}

.form-input {
    border-top: 0;
    border-right: 0;
    border-left: 0;
    line-height: 1;
}

.form-input,
textarea {
    border-bottom: 1px solid #C3CF99;
    padding: 6px 0;
    font-size: 20px;
    color: var(--ThemeBlueColor);
    font-family: 'Didot Bold';
    max-width: 100%;
    width: 100%;
}

.form-input::placeholder,
textarea::placeholder {
    color: var(--ThemeBlueColor);
    font-size: 20px;
}

.form-input:focus-visible,
textarea:focus-visible {
    outline: none;
}

.wpcf7-form-control-wrap {
    position: relative;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 1em;
    font-weight: normal;
    display: block;
}

.wpcf7-not-valid-tip {
    font-size: 16px;
    margin: 10px 0 0;
    position: absolute;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border: none;
    padding: 0;
}

/* checkbox */
.custom-checkbox input[type="checkbox"] {
    /* display: none; */
    width: 24px;
    height: 24px;
    border-radius: 8px;
}

.custom-checkbox label {
    position: relative;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.custom-checkbox [type="checkbox"] {
    position: absolute;
    left: -9999px;
}

.custom-checkbox [type="checkbox"]+.wpcf7-list-item-label {
    position: relative;
    padding-left: 36px;
    line-height: 24px;
    font-size: 16px;
}

.custom-checkbox [type="checkbox"]+.wpcf7-list-item-label::before,
.custom-checkbox [type="checkbox"]+.wpcf7-list-item-label::after {
    content: "";
    position: absolute;
    box-sizing: border-box;
}

.custom-checkbox [type="checkbox"]+.wpcf7-list-item-label::before {
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid var(--ThemeBlueColor);
}

.custom-checkbox [type="checkbox"]+.wpcf7-list-item-label::after {
    content: "✔";
    top: 0;
    left: 5px;
    width: 18px;
    height: 18px;
    font-size: 16px;
    color: var(--white);
    transition: all 0.2s;
}

.custom-checkbox [type="checkbox"]:not(:checked)+.wpcf7-list-item-label::after {
    opacity: 0;
    transform: scale(0.01);
}

.custom-checkbox [type="checkbox"]:checked+.wpcf7-list-item-label::after {
    opacity: 1;
    transform: scale(1);
}

.custom-checkbox [type="checkbox"]:checked+.wpcf7-list-item-label::before {
    background-color: var(--ThemeBlueColor);
}

.custom-checkbox .wpcf7-list-item {
    margin: 0;
}

.custom-checkbox p {
    margin: 0;
}

label {
    font-size: 20px;
}

.contactform .group-column p {
    display: contents;
}

.contactform .form-group {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
}

.contactform .group-column {
    padding: 20px 0 0;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
}

.contactform .group-column:nth-of-type(1) {
    padding-top: 0;
}

.form-group.custom-checkbox {
    padding: 0 0 20px;
}

.contactform {
    padding-left: 52px;
    flex: 1;
    margin-left: 52px;
    border-left: 1px solid #C3CF99;
}

.contactform .primary-btn {
    background: transparent;
    padding: 20px 40px;
    border: 1px solid var(--ThemeBlueColor);
}

.socialicon {
    min-width: 76px;
    height: 76px;
    border: 1px solid #C3CF99;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.linktext {
    font-weight: normal;
    font-size: 24px;
    font-family: 'FONTSPRING DEMO - The Seasons Regular';
}

.socialtext h5 {
    font-family: 'FONTSPRING DEMO - The Seasons Regular';
    font-weight: normal;
    font-size: 16px;
    text-transform: uppercase;
}

.contactcolumn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.socialtext {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 52px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 52px;
    max-width: 378px;
}

.contactus .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.group-column.contact_btn {
    margin: 20px 0 0;
    padding: 0;
    display: block;
}

/* .cursor-spotlight-effect {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.cursor-spotlight-effect::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: inherit;
    filter: blur(5px);
    pointer-events: none;
}

.cursor-spotlight-effect h1 {
    position: relative;
    color: #fff;
}

.cursor-spotlight-effect h1::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    filter: blur(5px);
    pointer-events: none;
    color: inherit;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cursor-spotlight-effect:hover h1::after {
    opacity: 1;
    -webkit-mask-image: radial-gradient(circle 100px at var(--x, 50%) var(--y, 50%), transparent 90%, black 100%);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-image: radial-gradient(circle 100px at var(--x, 50%) var(--y, 50%), transparent 90%, black 100%);
    mask-repeat: no-repeat;
    mask-size: cover;
}

.blurryCircle {
    display: none;
} */

/* .blurryCircle {
    width: 100px;
    height: 100px;
    background: linear-gradient(#C3CF99);
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 9;
    display: none;
    -webkit-filter: blur(40px);
} */
.accordion-item.active .collapse{
    height:auto!important;
}
/* end */

.whatsappicon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
}

.productitem .fulllink {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
.productgridwrap {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
}

.productitem {
    position: relative;
}
.productitem .productimage img {
    width: 100%;
    aspect-ratio: 2/1.5;
    object-fit: cover;
    object-position: center;
}


.innerbannersection {
    padding: 140px 0 40px;
    text-align: center;
    position: relative;
}

.innerbannerwrap {
    max-width: 1100px;
    margin: 0 auto;
}

.innerbannerwrap h1,.innerbannerwrap p {
    color: #ffffff;
    margin: 0;
}

.innerbannerwrap p {
    font-size: 22px;
    line-height: 1.4;
}

.innerbannersection::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0;
}

.innerbannersection .container {
    position: relative;
}


/*-- Mobile Menu --*/
ul.menu.nav-menu > li.menu-item-has-children {
    position: relative;
}

ul.menu > li.menu-item-has-children > .sub-menu {
    padding: 0;
    position: absolute;
    background-color: #c4cf9a;
    padding: 0;
    transform: translateY(20px);
    opacity:0;
    transition:0.5s all ease;
}
ul.menu > li.menu-item-has-children:hover > .sub-menu{
	opacity:1;
    transform: translateY(0px);
}

ul.menu > li.menu-item-has-children > .sub-menu a {
    white-space: nowrap;
    padding: 11px 16px 8px 16px;
    display: block;
    transition: 0.3s all ease;
    line-height: 1;
}

ul.menu > li.menu-item-has-children > .sub-menu li {
    margin: 0;
}

ul.menu > li.menu-item-has-children > .sub-menu a:hover {
    background-color: #929d69;
    color: #ffffff;
}

ul.menu.nav-menu > li.menu-item-has-children:hover > .sub-menu {
    transform: translateY(0px);
    opacity:1;
}

.projects-slider-wrap .project-item {
    position: relative;
}
.projects-slider-wrap .project-item .fulllink {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}


/*-- Video Play --*/