.container {
    max-width: 1272px;
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
}

.padding-bottom-for-wrapper {
    padding-bottom: 200px;
}

/* ======= header ======= */
.header-wrapper {
    width: 100%;
    height: 110px;
    position: absolute;
    top: 0%;
    z-index: 999;
}

/* .theme-light .header-wrapper {
    position: relative;
} */

.header-wrapper .container {
    height: 100%;
}

.header-bar {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

#header-icon-dark-mode {
    display: none;
}

.headeer-logo-conter,
.headeer-logo-conter a {
    display: flex;
    align-items: center;
}

.hamburger-container {
    cursor: pointer;
    height: 100%;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-container .hamburger-menu {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hamburger-container .hamburger-menu .hamburger-line {
    width: 20px;
    height: 2px;
    background-color: var(--monochorme-white);
    border-radius: 50rem;
    transition: all 0.4s ease;
    /* transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
    transform-origin: left center;
    margin-bottom: 3px;
}

.theme-light .hamburger-container .hamburger-menu .hamburger-line {
    background-color: var(--monochorme-600);
}

.hamburger-container .hamburger-menu .hamburger-line:last-child {
    margin-bottom: 0%;
}

.hamburger-container .hamburger-menu.open .hamburger-line {
    margin-bottom: 4px;
    background: rgb(var(--warms-orange));
}

.hamburger-container .hamburger-menu.open .line1 {
    transform: none;
}

.hamburger-container .hamburger-menu.open .line2 {
    transform: translateY(-50%) rotate(25deg);
    transform-origin: left center;
}

.hamburger-container .hamburger-menu.open .line3 {
    transform: none;
    transform: translateY(5px);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 998;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(4px);
    z-index: 990;
    pointer-events: none;
}

.menu-content {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
    position: relative;
    z-index: 991;
    margin-top: 110px;
    pointer-events: none;
}

.menu-content .container {
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
}

.menu-content .container .menu-nav {
    pointer-events: all;
    list-style: none;
}

.menu-content .container .menu-nav li {
    transform: matrix(0.98, 0.22, 0.02, 1, 0, 0);
    margin-bottom: 35px;
    display: flex;
    justify-content: flex-end;
    text-align: right;
}

.menu-content .container .menu-nav li a {
    color: var(--monochorme-600);
    text-transform: capitalize;
}

.menu-content .container .menu-nav li a:hover {
    color: var(--monochorme-400);
}

.menu-content .container .menu-nav li.current-menu-item a {
    color: rgb(var(--warms-orange));
}

/* ====== hero wrapper ======*/
.home-wrapper {
    padding: 0;
    margin: 0%;
    box-sizing: border-box;
}

.home-wrapper .hero-clip {
    width: 100%;
    padding-top: 196px;
    position: relative;
    overflow: hidden;
    padding-bottom: 591px;
}

/* start background gradient */
.home-wrapper .hero-clip .gradient-overlay {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    overflow: hidden;
    width: 2190.8px;
    height: 100%;
    clip-path: polygon(0 0,
            100% 0,
            100% calc(100% - 510px),
            31.6% 100%,
            0 calc(100% - 505px));
    /* clip-path: polygon(0 0, 100% 0, 100% 70%, 31.6% 100%, 0 71%); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-wrapper .hero-clip .gradient-overlay .inner-image-background {
    width: 100vw;
    height: 100%;
    position: relative;
    /* background: linear-gradient(to bottom,
            #000000 0%,
            #4a0000 25%,
            #c70000 50%,
            #ff4e00 75%,
            #ffcc00 100%); */
}

.home-wrapper .hero-clip .gradient-overlay .inner-image-background .gradient-image {
    position: absolute;
    height: 2493.33px;
    width: auto;
    left: 0px;
    top: -635.68px;
    transform: scale(0.5);
    display: none;
}

/* hero section grain overlay */
.home-wrapper .hero-clip .gradient-overlay .inner-image-background .hero-overlay-grain-imge {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    mask: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* end background gradient */
/* hero section */
.home-wrapper .hero-clip .hero-section {
    position: relative;
    z-index: 1;
}

/* hero round overlay */
.home-wrapper .hero-clip .hero-section .hero-overlay-circule {
    position: absolute;
    left: 50%;
    top: 5vh;
    transform: translateX(-50%);
    z-index: -1;
}

/* hero section banner*/
.home-wrapper .hero-clip .hero-section .hero-benner-box {
    height: calc(100vh - 196px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-benner-box-inner .hero-image-box {
    width: 100%;
    height: 141px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-benner-box-inner .hero-image-box .hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-headding {
    margin-left: -10.5px;
    margin-right: -10.5px;
    text-align: center;
    color: var(--monochorme-200);
    line-height: 75px;
    text-transform: uppercase;
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-headding.changing-text {
    margin-bottom: 23px;
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-headding .animation-heading-wrapper {
    position: relative;
    height: 75px;
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-headding .animation-heading-wrapper .animation-heading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-headding .animation-heading-wrapper .animation-heading.animation-heading.active {
    opacity: 1;
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-headding .animation-heading-wrapper .animation-heading.animation-heading.exit {
    opacity: 0;
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-dscription {
    text-align: center;
    color: var(--monochorme-200);
}

.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-button-box {
    margin-top: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* remove if video hero remove */
.home-wrapper .hero-clip .hero-section .hero-benner-box .hero-button-box .hero-button {
    position: absolute;
    z-index: -1;
}


/* hero video section */
/* remove if video hero remove */
.image-origin {
    width: 171px;
    height: 96px;
    /*  margin-left: 30px;
    margin-right: 16px; */
    display: inline-flex;
    transform: translate(0, 11px);
    position: relative;
    z-index: 1;
}

.section_home-hero_showreel {
    background-color: #fff0;
    padding-left: 0%;
    padding-right: 0%;
    position: relative;
}

.showreel_placeholder {
    border: 2px #000;
    max-width: 1400px;
    height: 654.484px;
    margin-left: auto;
    margin-right: auto;
}

.showreel_placeholder._2 {
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    position: relative;
    aspect-ratio: 16 / 9;
}

.target {
    opacity: 1;
    -webkit-clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    clip-path: polygon(50% 0, 50% 0, 50% 100%, 50% 100%);
    width: 100%;
    height: 100%;
    transition: 0.2 linear all;
}

.target.show-reel-bg {
    cursor: pointer;
}

.background-video {
    will-change: transform;
    width: 100%;
    height: 100%;
}

.div-block {
    z-index: 1;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.w-background-video {
    color: #fff;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.w-background-video>video {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: 100%;
    margin: auto;
    position: absolute;
    inset: -100%;
}

.w-background-video>iframe {
    object-fit: cover;
    z-index: -100;
    background-position: 50%;
    background-size: cover;
    width: 100%;
    height: auto;
    margin: auto;
    position: absolute;
    inset: -100%;
    aspect-ratio: 16 / 9;
}

.ytp-title {
    display: none !important;
    visibility: hidden;
}

.w-background-video>video::-webkit-media-controls-start-playback-button {
    -webkit-appearance: none;
    display: none !important;
}

.w-background-video--control {
    background-color: #0000;
    padding: 0;
    position: absolute;
    bottom: 1em;
    right: 1em;
}

.w-background-video--control>[hidden] {
    display: none !important;
}

@media screen and (min-width: 1440px) {

    .image-origin {
        height: 96px;
        margin-bottom: 0;
        transform: none;
    }

    /* .showreel_placeholder._2 {
        height: auto;
        aspect-ratio: 16 / 9;
    } */

    .background-video {
        width: 100%;
        height: 100%;
    }

    .div-block {
        z-index: 1;
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .target {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@media screen and (max-width: 479px) {
    .image-origin {
        width: 110px;
        height: 54px;
        /* margin: -5px 0 0 20px; */
        transform: translate(0, 4px);
    }

    .target {
        will-change: transform, height, width;
        margin-top: -5px;
    }

    /*  .w-background-video {
        height: 100%;
    }

    .w-background-video>iframe {
        width: auto;
        height: 100%;

    } */

    /* .showreel_placeholder._2 {
        height: 30vh;
    } */
}

/* hero slider */
.home-wrapper .hero-clip .hero-section .hero-brand-slider {
    padding-bottom: 90px;
    padding-top: 90px;
    /* remove if video hero remove */
}

.home-wrapper .hero-clip .hero-section .hero-brand-slider .hero-brand-tital {
    text-align: center;
    /*  margin-bottom: 40px; */
    color: var(--monochorme-200);
}

.home-wrapper .hero-clip .hero-section .hero-brand-slider .hero-logo-partner-slider-parent {
    overflow: hidden;
    width: 100%;
    height: 42px;
    position: relative;
    mask: linear-gradient(to right, transparent, black 20%, black 80%, transparent);
    margin-top: 40px;
}

.home-wrapper .hero-clip .hero-section .hero-brand-slider .hero-logo-partner-slider {
    opacity: 50%;
    display: flex;
    align-items: center;
    gap: 64px;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.home-wrapper .hero-clip .hero-section .hero-brand-slider .hero-logo-partner-slider .item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-wrapper .hero-clip .hero-section .hero-brand-slider .hero-logo-partner-slider .item .slider-icons {
    height: 42px;
    width: fit-content;
}

/* ======== none hero section ====== */
.none-herowrapper-wrapper {
    margin-top: -296px;
    position: relative;
    /*  overflow: hidden; */
}

.background-line-underlay {
    position: absolute;
    top: 0%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-line {
    position: absolute;
    top: 590px;
    left: 210px;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #D6CEC7 0%, rgba(249, 249, 249, 0.133333) 7.69%, #F9F9F9 91.89%, #D6CEC7 100%);
    z-index: -1;
}

/* ==== who we are ==== */

/*details*/
.who-we-are-wrapper {
    padding-bottom: 200px;
}

.who-we-are-wrapper .who-we-are {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 125px;
}

.who-we-are-wrapper .who-we-are .who-are-we-detailes {
    width: 49%;
}

.who-we-are-wrapper .who-we-are .who-are-we-detailes .we-we-are-heading {
    height: 108px;
    display: flex;
    align-items: center;
    text-align: left;
    margin-right: -69px;
}

.who-we-are-wrapper .who-we-are .who-are-we-detailes .who-we-are-button {
    margin-top: 40px;
}

/*cure image*/
.cube-apttern {
    width: 505px;
    height: 601px;
    /*  position: absolute;
    left: 0; */
    margin-bottom: 31px;
    display: flex;
    align-items: flex-end;
}

.cube-apttern .cube-image {
    width: 100%;
    /* opacity: 0.5; */
}

/* ==== case studies ====*/
.case-studies-wrapper {
    padding-bottom: 200px;
}

.case-studies-wrapper .case-studies .case-studies-heading {
    text-align: center;
}

.case-studies-wrapper .case-studies .case-studies-cards-wrapper {
    padding-top: 80px;
}

/* to remove the default wp header */
/* .nojq {
    display: none !important;
}
 */

.hydrated {
    margin: 0% !important;
}

.case-studies-cards-box {
    column-count: 2;
    column-gap: 20px;
    width: 100%;
}

.case-studies-card {
    margin-bottom: 40px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
}

.case-studies-card.just-text-box {
    margin-bottom: 97.81px;
}

.case-studies-card .case-studies-text {
    margin-bottom: 32px;
}

.case-studies-card .case-studies-card-main {
    padding: 21.56px 30.9px 21.56px 30.9px;
    border-radius: 12px;
    background-color: var(--monochorme-300);
    border: 1px solid var(--monochorme-400);
    position: relative;
    overflow: hidden;
}

.case-studies-card .case-studies-card-main .case-studies-card-icon {
    height: 40px;
    width: auto;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.case-studies-card .case-studies-card-main .case-studies-card-icon .case-studies-icon {
    height: 100%;
    /* border-radius: 17.26px; */
}

.case-studies-card .case-studies-card-main .case-studies-card-webimage {
    width: 100%;
    height: 100%;
    aspect-ratio: 16/9;
    border-radius: 18.33px;
    /* outline: 3.32px solid var(--monochorme-black);
    box-shadow: 0px 6.07px 15.17px 0.76px rgba(0, 0, 0, 0.25); */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.case-studies-card .case-studies-card-main .case-studies-card-webimage .case-studies-web-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.case-studies-card .case-studies-card-main .background-gradient-sm {
    position: absolute;
    background: rgba(250, 111, 10, 0.2);
    width: 300.56px;
    height: 277.21px;
    top: -71.45px;
    left: -92.58px;
    opacity: 0.6;
    filter: blur(47.8606px);
    z-index: 0;
}

.case-studies-card .case-studies-card-main .background-gradient-lg {
    position: absolute;
    background: rgba(194, 27, 0, 0.3);
    width: 681.04px;
    height: 151.86px;
    left: 2%;
    top: 41%;
    filter: blur(47.8606px);
    z-index: 0;
    transform: rotate(-26.98deg);
}

.case-studies-card .case-studies-overlay {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    z-index: 3;
    background: rgba(230, 229, 226, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 55.73px 49px 31.72px 31px;
    opacity: 0;
    visibility: hidden;
    transition: 0.8s all ease-in-out;
    border-radius: 12px;
    overflow: hidden;
}

.case-studies-card .case-studies-overlay .case-studies-overlay-image-box {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    z-index: -1;
    opacity: 0.8;
}

.case-studies-card .case-studies-overlay .case-studies-overlay-image-box .case-studies-overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    filter: blur(2px);
    backdrop-filter: blur(50px);
    transform: scale(1.2) matrix(1, 0, 0, -1, 0, 0);
}

.case-studies-card .case-studies-overlay .case-studies-overlay-heading-box .case-studies-overlay-heading {
    color: var(--monochorme-white);
    margin-bottom: 17.07px;
}

.case-studies-card .case-studies-overlay .case-studies-overlay-heading-box .case-studies-proparties {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.case-studies-card .case-studies-overlay .case-studies-overlay-heading-box .case-studies-proparties .case-studies-propart-text {
    color: var(--monochorme-white);
    background-color: rgba(184, 175, 173, 0.2);
    padding: 4px;
    border-radius: 4px;
}

.case-studies-card:hover .case-studies-overlay {
    opacity: 1;
    visibility: visible;
}

.case-studies-card.just-for-mobile {
    display: none;
}

/* full width case stuieds */

.full-screen .case-studies-card .case-studies-card-main {
    padding: 14.75px 15px 14.75px 15px;
    border-radius: 36px;
    display: flex;
    gap: 24px;
}

.full-screen .case-studies-card .case-studies-card-main .case-studies-card-icon {
    margin-bottom: 20px;
}

.full-screen .case-studies-card .case-studies-card-main .case-studies-card-webimage {
    width: 65%;
    border-radius: 23.34px;
}

.full-screen .case-studies-card .case-studies-overlay {
    z-index: 0;
    border-radius: 32px;
}

.full-screen .case-studies-card .case-studies-overlay .case-studies-overlay-image-box {
    opacity: 0.4;
}

.full-screen .case-studies-card .case-studies-overlay-image-box .case-studies-overlay-image {
    height: unset;
    backdrop-filter: blur(100px);
    transform: scale(1.2) rotate(-90deg);
}

.full-screen .case-studies-card .case-studies-card-side-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    width: 45%;
}

.full-screen .case-studies-card .case-studies-card-side-details .case-studies-overlay-heading-box .case-studies-overlay-heading {
    color: var(--monochorme-600);
    margin-bottom: 17.07px;
    transition: 0.8s all ease-in-out;
}

.full-screen .case-studies-card:hover .case-studies-card-side-details .case-studies-overlay-heading-box .case-studies-overlay-heading {
    color: var(--monochorme-white);
}

.full-screen .case-studies-card .case-studies-card-side-details .case-studies-overlay-heading-box .case-studies-proparties {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.full-screen .case-studies-card .case-studies-card-side-details .case-studies-overlay-heading-box .case-studies-proparties .case-studies-propart-text {
    color: var(--monochorme-white);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 4px;
    border-radius: 4px;
}

/* ==== testimonials ====*/
.testimonials-wrapper {
    padding-bottom: 200px;
    position: relative;
    overflow: visible;
    background-color: var(--gradient-background-grey);
}

.testimonials-wrapper .overlay-background-circle {
    position: absolute;
    bottom: -7%;
    left: 0%;
    z-index: 0;
    width: 1058.05px;
    height: 860.44px;
    background: linear-gradient(129.35deg, rgba(255, 122, 0, 0.15) 5.32%, rgba(255, 122, 0, 0) 94.68%);
    filter: blur(100px);
    transform: translateX(-54%) rotate(-180deg);
}

.testimonials-wrapper .testimonials-heading-box {
    position: relative;
    z-index: 1;
}

.testimonials-wrapper .testimonials-heading-box .testimonials-sub-heading {
    margin-bottom: 40px;
    text-align: center;
}

.testimonials-wrapper .testimonials-heading-box .testimonials-ratting-clutch-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonials-wrapper .testimonials-heading-box .testimonials-ratting-clutch-box .testimonials-ratting {
    color: rgb(var(--warms-orange));
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.testimonials-wrapper .testimonials-heading-box .testimonials-ratting-clutch-box .testimonials-clutch-logo {
    height: 75px;
    width: auto;
    border: 1px solid var(--monochorme-400);
    box-shadow: 12px 0px 16px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}


.testimonials {
    position: relative;
    z-index: 1;
}

.testimonials .testimonials-carousel-wrapper .testimonial-carousel {
    width: 100vw;
    overflow: hidden;
}

.testimonials .testimonials-carousel-wrapper .testimonial-carousel .owl-stage-outer {
    overflow-x: visible;
    overflow-y: visible;
}

.testimonials .testimonials-carousel-wrapper .testimonial-carousel .owl-stage {
    padding: 20px 0;
}

.testimonials .testimonials-carousel-wrapper .testimonial-carousel .item {
    height: fit-content;
    width: 502px;
}

.testimonials .testimonials-carousel-wrapper .testimonial-carousel .item .testimonial-card {
    border: 1px solid var(--monochorme-400);
    background: rgba(253, 252, 248, 0.5);
    box-shadow: 12px 0px 16px 0px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(50px);
    display: block;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    padding: 23px 39px;
}

.testimonials .testimonials-carousel-wrapper .testimonial-carousel .item .testimonial-card .testimonial-card-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

/* testimonial icon */
.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(var(--warms-orange));
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-clutch .testimonial-clutch-image {
    border-radius: 8px;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-icon svg {
    width: 60px;
}

/* testimonial comments */
.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-comments {
    min-height: 135px;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-comments .testimonial-comments-text-box {
    margin-bottom: 20px;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-comments .testimonial-comments-text {
    color: var(--monochorme-700);
    margin-bottom: 0%;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative; */
    overflow: hidden;
    position: relative;
    /* smooth expand */
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-comments .testimonial-comments-text.clamped {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* height: 66px; */
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-comments .testimonial-comments-text.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-comments .read-more-btn {
    color: var(--monochorme-700);
    font-family: var(--CTA-font-family);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    background-color: unset;
    display: none;
    border: unset;
    margin-left: auto;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-body .testimonial-comments .read-more-btn.show {
    display: block;
}

/* testimonial footer*/
.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-footer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-footer .testimonial-footer-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 12px 0px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    background: rgb(var(--warms-orange));
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-footer .testimonial-footer-icon .testimonial-footer-icon-img {
    width: auto;
    height: auto;
    box-shadow: none !important;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-footer .testimonial-footer-details .person-name {
    color: var(--monochorme-700);
    margin-bottom: 8px;
}

.testimonials .testimonial-card .testimonial-card-inner .testimonial-card-footer .testimonial-footer-details .compney-name {
    color: var(--monochorme-500);
    font-size: 18px;
}

/* testimonial arrows */
.owl-nav {
    text-align: left !important;
    margin-top: 0% !important;
}

.owl-prev,
.owl-next {
    margin: 0% !important;
}

.owl-prev:hover,
.owl-next:hover {
    background: transparent !important;
}

.custom-prev,
.custom-next {
    color: var(--monochorme-600);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease all;
}

.custom-prev svg,
.custom-next svg {
    width: 13px;
    height: auto;
}

.owl-prev:hover .custom-prev,
.owl-next:hover .custom-next {
    color: rgb(var(--warms-orange));
}

/* questions */

.questions-wrapper .questions-heading-box {
    margin-bottom: 40px;
}

.questions-wrapper .questions-accordion {
    display: flex;
    justify-content: center;
}

.questions-wrapper .questions-accordion .accordion-container {
    max-width: 1028px;
    width: 100%;
}

.questions-wrapper .questions-accordion .accordion-container .ac {
    background-color: transparent;
    border-bottom: 1px solid var(--warms-papaya);
    padding: 12px 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: 0%;
}

.questions-wrapper .questions-accordion .accordion-container .ac:last-child {
    border: none;
    padding-bottom: 0%;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled {
    transition: 0.25s ease all;
    border-radius: 8px;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-header {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: 0.25s ease all;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger {
    font-size: 24px !important;
    color: var(--monochorme-700);
    padding: 6px 50px 6px 6px;
    position: relative;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger:hover {
    background: unset;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger .accordion-svg {
    width: 25px;
    height: auto;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5 ease all;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger .accordion-svg.open {
    opacity: 0;
    visibility: hidden;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger .accordion-svg.in-close {
    opacity: 1;
    visibility: visible;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger::after {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-panel {
    opacity: 0;
    transition: 0.25s ease all;
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-panel .ac-text {
    padding: 16px 0;
    font-size: 18px !important;
    line-height: 22px !important;
    color: var(--monochorme-600);
}

.questions-wrapper .questions-accordion .accordion-container .ac .ac-chiled .ac-panel .clip-container .clip {
    padding-top: 0%;
    padding-bottom: 0%;
}

/* active accordion */
.questions-wrapper .questions-accordion .accordion-container .ac.is-active .ac-chiled {
    background-color: var(--monochorme-white);
    padding: 16px;
}

.questions-wrapper .questions-accordion .accordion-container .ac.is-active .ac-chiled .ac-header .ac-trigger {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 0%;
}

.questions-wrapper .questions-accordion .accordion-container .ac.is-active .ac-chiled .ac-header .ac-trigger .accordion-svg.in-close {
    opacity: 0;
    visibility: hidden;
}

.questions-wrapper .questions-accordion .accordion-container .ac.is-active .ac-chiled .ac-header .ac-trigger .accordion-svg.open {
    opacity: 1;
    visibility: visible;
}

.questions-wrapper .questions-accordion .accordion-container .ac.is-active .ac-chiled .ac-header {
    border-width: 0px;
}

.questions-wrapper .questions-accordion .accordion-container .ac.is-active .ac-chiled .ac-panel {
    opacity: 1;
}

.gradient-line {
    display: block;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, #DDD4D1 0%, rgba(221, 212, 209, 0) 100%);
}

/* sub site still curious */
.still-curious-wrapper {
    position: relative;
    margin-bottom: 150px;
}

.still-curious-sun-bottomlay {
    position: absolute;
    left: 50%;
    top: -50%;
    width: 1030px;
    height: 837.63px;
    z-index: 0;
    background: linear-gradient(129.35deg, rgba(255, 122, 0, 0.15) 5.32%, rgba(255, 122, 0, 0) 94.68%);
    filter: blur(100px);
    transform: translate(-50%, 20%) rotate(-180deg);
    pointer-events: none;
}

.still-curious-sun-bottomlay-tir {
    position: absolute;
    left: 50%;
    top: -15%;
    z-index: 0;
    transform: translateX(-52%);
    filter: blur(144.25px);
}

.still-curious-sun-bottomlay-tir .inner {
    width: 1439.54px;
    height: 649.07px;
    background: radial-gradient(48.27% 24.79% at 47.7% 59.54%,
            rgba(253, 224, 197, 0.5) 0%,
            rgba(240, 109, 9, 0.5) 100%);
    clip-path: path("M0 308.3 L496.6 341.2 L747.3 200.9 L987.6 397.6 L1439.5 438.5 L750 590 L725 660 L700 590 L0 308.3 Z");
    -webkit-clip-path: path("M0 308.3 L496.6 341.2 L747.3 200.9 L987.6 397.6 L1439.5 438.5 L750 590 L725 660 L700 590 L0 308.3 Z");
    transform: rotate(-6deg);
}

.still-curious-wrapper .still-curious-heading-box {
    margin-bottom: 41.68px;
}

.still-curious-wrapper .still-curious-heading-box .still-curious-heading {
    font-size: 80px;
}

.still-curious-wrapper .still-curious-sub-details {
    height: 782.97px;
    position: relative;
}

.still-curious-sub-details .still-curious-sun-circle {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    width: 604.27px;
    height: 607.53px;
    background: radial-gradient(58.34% 58.34% at 50% 50%, #FF4E0D 36.63%, #F7BF61 100%);
    border-radius: 50rem;
}

.still-curious-sub-details .bottom-blur {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 479.2px;
    z-index: 2;
    backdrop-filter: blur(30px);
}

.still-curious-sub-details .still-curious-top-heading-box {
    position: relative;
    z-index: 3;
    display: flex;
    justify-self: center;
    padding: 96.98px 0 41.79px;
}

.still-curious-sub-details .still-curious-top-heading-box .still-curious-top-heading-box-inner {
    text-align: center;
}

.still-curious-sub-details .still-curious-top-heading-box .still-curious-top-heading-box-inner .still-curious-top-heading {
    color: var(--monochorme-white);
    margin-bottom: 24px;
}

.still-curious-sub-details .still-curious-top-heading-box .still-curious-top-heading-box-inner .still-curious-top-sub-heading {
    color: var(--monochorme-200);
}

/* still curious contact div */
.still-curious-contact-information {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 56px;
    min-height: 479.2px;
}

.still-curious-contact-information .still-curious-contact-information-backlay {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(180deg, rgba(253, 252, 248, 0.5) 0%, rgba(249, 249, 249, 0.5) 100%);
    /* backdrop-filter: blur(30px); */
    z-index: 2;
}

.still-curious-contact-information-backlay-border {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 3px;
    background: linear-gradient(270deg, rgba(247, 191, 97, 0) 0%, #FF4E0D 57.22%, rgba(247, 191, 97, 0) 100%);
    z-index: 3;
}

.still-curious-contact-information-inner {
    max-width: 400px;
    width: 100%;
    position: relative;
    z-index: 5;
}

.still-curious-contact-information-inner .still-curious-contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
}

.still-curious-contact-information-inner .still-curious-contact-box .form-message {
    width: 100%;
    margin-top: 8px;
}

.still-curious-contact-information-inner .still-curious-contact-box .still-curious-contact-button {
    margin: 0 auto 64px;
}

.still-curious-contact-information-inner .reach-us-here .reach-us-here-heading {
    color: var(--monochorme-700);
    padding: 7px 0;
    text-align: center;
    border-bottom: 1px solid var(--monochorme-400);
    margin-bottom: 20px;
}

.still-curious-contact-information-inner .reach-us-here .reach-us-here-details {
    background: rgba(253, 252, 248, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px;
}

.still-curious-contact-information-inner .reach-us-here .reach-us-here-details .reach-us-here-details-contact {
    color: var(--monochorme-700);
}

.still-curious-contact-information-inner .reach-us-here .reach-us-here-details .reach-us-here-details-icon-box {
    height: 36px;
    width: 36px;
    border-radius: 4px;
    background-color: var(--monochorme-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.still-curious-contact-information-inner .reach-us-here .reach-us-here-details .reach-us-here-details-icon {
    width: 19px;
    height: 19px;
}

/* footer */
.top-footer {
    position: relative;
    z-index: 5;
}

.footer-wrapper .top-header-children {
    max-width: 775px;
    width: 100%;
    margin: 0 160px 0 auto;
    transform: matrix(0.98, 0.22, 0, 1, 0, 0);
}

.footer-wrapper .footer-links {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-wrapper .footer-links:hover {
    transform: translateY(-5px);
}

/* footer galaert to header */
.footer-wrapper .top-header-children .image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    width: calc(100% - 120px);
}

.image-box {
    width: 100%;
    height: 100%;
}

.image-box .image-box-inner {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    gap: 20px;
}

.image-box .image-box-inner .image-box-inner-image {
    width: 100%;
    height: auto;
    border: 5px solid var(--warms-papaya);
    filter: brightness(1.5) contrast(0.7);
}

.image-box .image-box-inner .image-box-inner-image.portrait {
    width: 50%;
}

.image-box .image-box-inner .collaction-rock-paper-scissors {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}

.image-box .image-box-inner .collaction-rock-paper-scissors .collaction-image {
    width: calc(33.33% - 13.33px);
    height: auto;
    border: 5px solid var(--warms-papaya);
}

/* footer heading top header */
.footer-wrapper .top-header-children .footer-top-header-text {
    color: var(--monochorme-600);
}

.footer-wrapper .top-header-children .footer-top-sub-header-text {
    color: var(--monochorme-white);
    margin-top: 45px;
}

.top-header-button {
    max-width: 775px;
    width: 100%;
    margin: -35px 160px 0 auto;
}

.top-header-button .footer-button {
    margin-left: 10px;
}

/* bottom footer */
.bottom-footer {
    margin-top: -380px;
    position: relative;
    z-index: 0;
}

.bottom-footer .footer-clip {
    padding-top: 600px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.bottom-footer .footer-clip .footer-gradient-overlay {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    overflow: hidden;
    width: 2190.8px;
    height: 100%;
    clip-path: polygon(0 0, 100% 495px, 100% 100%, 0 100%);

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

.bottom-footer .footer-clip .footer-gradient-overlay .inner-footer-image-background {
    width: 100vw;
    height: 100%;
    position: relative;
}

.bottom-footer .footer-clip .footer-gradient-overlay .inner-footer-image-background .footer-background-image {
    height: 1801px;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scaleY(-1);
}

.bottom-footer .footer-clip .footer-gradient-overlay .inner-footer-image-background .grain-layaer {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transform: scaleY(-1);
    mask: linear-gradient(to bottom, black 10%, transparent 100%);
}

/* .garain-layer-box .stairs-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 678px), calc(-50% + 260px));
} */

.garain-layer-box .stairs-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 789px), calc(-50% + 539px));
    pointer-events: none;
    width: 800px;
}

.garain-layer-box .stairs-layer.white-stairs-layer {
    display: none;
}

.garain-layer-box .button-toggle-modes {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 440px), calc(-50% - 35px));
    z-index: 2;
    background-color: transparent;
    border: none;
    outline: none;
}

.garain-layer-box .button-toggle-modes span {
    transform: matrix(0.98, 0.22, 0, 1, 0, 0);
}

.bottom-footer .footer-logo-wrapper {
    margin-bottom: 150px;
    margin-top: 100px;
}

.bottom-footer .footer-logo-wrapper .footer-logo-container {
    transform: matrix(0.98, 0.22, 0, 1, 0, 0);
}

.bottom-footer .footer-logo-wrapper .footer-logo-container img {
    width: 50%;
}

.bottom-footer .footer-links-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 300px;
    transform: matrix(0.98, 0.22, 0, 1, 0, 0);
}

.bottom-footer .footer-links-wrapper .footer-links-box {
    width: calc(50% - 10px);
    /* transform: matrix(0.98, 0.22, 0, 1, 0, 0); */
}

/* .bottom-footer .footer-links-wrapper .footer-links-box.left {
    padding-left: 100px;
}
 */
.bottom-footer .footer-links-wrapper .footer-links-box .footer-logo-container {
    width: 100%;
    margin-bottom: 60px;
}

.bottom-footer .footer-links-wrapper .footer-links-box .footer-logo-container .footer-logo {
    max-width: 80%;
    height: auto;
}

/* footer quick link */

.footer-quick-links .footer-quick-links-heading {
    color: var(--monochorme-white);
    margin-bottom: 30px;
}

.footer-quick-links .footer-quick-links-link-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-links {
    /* background: rgba(253, 252, 248, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.1); */
    margin-bottom: 66px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    /*  padding: 6px; */
    margin: 0%;
    height: 40px;
    font-weight: 200;
}

.footer-quick-links .footer-quick-links-link-box .footer-quick-links-link {
    color: var(--monochorme-white);
}

/* footer reach us */
.footer-reach-us .footer-reach-us-heading {
    color: var(--monochorme-white);
    margin-bottom: 20px;
}

.footer-reach-us .footer-reach-us-details-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-reach-us .footer-reach-us-details-link {
    color: var(--monochorme-white);
}

.footer-reach-us .footer-reach-us-details-link .footer-reach-us-details-icon-box,
.footer-quick-links .footer-quick-links-link-box .footer-quick-links-link .footer-links-icon-box {
    height: 36px;
    width: 36px;
    border-radius: 4px;
    background-color: var(--monochorme-white);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-reach-us .footer-reach-us-details-link .footer-reach-us-details-icon-box img,
.footer-quick-links .footer-quick-links-link-box .footer-quick-links-link .footer-links-icon-box img {
    width: 19px;
    height: 19px;
}

/* footer bottom  information */
.footer-bottom-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-info .footer-bottom-rights p {
    color: var(--monochorme-400);
}

.footer-bottom-link ul {
    list-style: none;
    padding: 0%;
    margin: 0%;
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-link ul a {
    color: var(--monochorme-white);
}


/* our work pages */
.our-work-wrapper {
    padding-top: 131px;
    padding-bottom: 332px;
}

.our-work-container .our-work-heading-box {
    text-align: center;
    margin-bottom: 34px;
}

.our-work-container .our-work-heading-box .our-work-heading {
    margin-bottom: 24px;
}

.our-work-container .what-we-work-wrapper {
    position: relative;
}

.background-bellow-circule-1 {
    position: absolute;
    top: 500px;
    left: calc(50% - 700px);
    transform: translate(-50%, -50%);
    background: rgb(var(--warms-orange));
    opacity: 0.1;
    filter: blur(90px);
    border-radius: 900px;
    width: 336px;
    height: 648px;
    z-index: -1;
}

.background-bellow-circule-2 {
    position: absolute;
    bottom: -500;
    right: calc(0% - 400px);
    /* transform: translateX(-50%); */
    background: rgb(var(--warms-orange));
    opacity: 0.1;
    filter: blur(90px);
    border-radius: 900px;
    width: 672px;
    height: 1296px;
    z-index: -1;
}


.our-work-container .what-we-work-wrapper .what-we-work-tags {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 20px 0;
}

.our-work-container .what-we-work-wrapper .what-we-work-tags .what-we-work-tags-heading {
    flex: 0 0 auto;
    white-space: nowrap;
}

.our-work-container .what-we-work-wrapper .what-we-work-tags .what-we-work-taggs {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    column-gap: 32px;
    row-gap: 10px;
}

.our-work-container .what-we-work-wrapper .what-we-work-tags .what-we-work-taggs.clip-container .clip.active {
    color: var(--monochorme-black);
}

.our-work-container .what-we-work-wrapper .what-we-work-tags .what-we-work-taggs.clip-container .clip::after {
    opacity: 0;
}

.our-work-container .what-we-work-wrapper .what-we-work-tags .what-we-work-taggs.clip-container .clip::before {
    opacity: 1;
}

.our-work-container .what-we-work-wrapper .what-we-work-tags .what-we-work-taggs.clip-container .clip.active::after {
    opacity: 1;
}

.our-work-container .what-we-work-wrapper .what-we-work-tags .what-we-work-taggs.clip-container .clip.active::before {
    opacity: 0;
}

.what-we-work-case-studies {
    column-count: 1;
    column-gap: 20px;
    width: 100%;
    margin-top: 69px;
}

.what-we-work-case-studies .case-studies-card {
    margin-bottom: 20px;
}

/* .what-we-work-case-studies .case-studies-card:first-child {
    margin-top: 80px;
} */

.load-more-cta {
    margin-top: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.load-more-cta-button {
    border-radius: 12px;
    background-color: #FA6F0A1A;
}

/* case studies single page style */
.case-studay-single-content-wrapper {
    padding-top: 191px;
    padding-bottom: 230px;
}

.case-studay-single-content-container .case-study-single-heading-box .our-work-heading {
    margin-bottom: 24px;
    text-transform: uppercase;
}

.case-studay-single-content-container .case-study-single-heading-box .our-work-sub-heading {
    max-width: 724px;
    text-align: center;
    margin-bottom: 100px;
    margin-left: auto;
    margin-right: auto;
}

.case-studay-single-details-wrapper {
    position: relative;
}

.background-bellow-circule-single-1 {
    position: absolute;
    top: 200px;
    right: calc(0% - 175px);
    /* transform: translateX(-50%); */
    background: rgba(var(--warms-orange), 0.2);
    opacity: 0.6;
    filter: blur(47.8606px);
    border-radius: 900px;
    width: 300.56px;
    height: 277.21px;
    z-index: -1;
}

.background-bellow-circule-single-2 {
    position: absolute;
    top: 18%;
    left: calc(0% - 275px);
    /* transform: translateX(-50%); */
    background: rgba(var(--warms-orange), 0.2);
    opacity: 0.6;
    filter: blur(47.8606px);
    border-radius: 900px;
    width: 300.56px;
    height: 277.21px;
    z-index: -1;
}

.background-bellow-circule-single-3 {
    position: absolute;
    top: 35%;
    left: calc(0% - 275px);
    /* transform: translateX(-50%); */
    background: rgb(var(--warms-orange));
    opacity: 0.1;
    filter: blur(90px);
    border-radius: 900px;
    width: 336px;
    height: 436px;
    z-index: -1;
}

.background-bellow-circule-single-4 {
    position: absolute;
    top: 50%;
    right: calc(0% - 275px);
    /* transform: translateX(-50%); */
    background: rgba(var(--warms-orange), 0.4);
    opacity: 0.2;
    filter: blur(240px);
    border-radius: 1800px;
    width: 672px;
    height: 872px;
    z-index: -1;
}


/* hero section of case studies */
.case-studay-single-hero-box .case-studay-single-hero-image-box {
    border-radius: 34px;
    position: relative;
    width: 100%;
    height: fit-content;
    /* aspect-ratio: 16 / 9; */
    overflow: hidden;
    margin-bottom: 40px;
    display: block;
}

.case-studay-single-hero-box .case-studay-single-hero-image-box .case-studay-single-hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.case-studay-hero-details {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 100px;
}

.case-studay-hero-details .case-studay-hero-details-inner {
    display: flex;
    align-items: flex-start;
    gap: 68px;
}

.case-studay-hero-details .case-studay-hero-details-inner .case-studay-details-box {
    width: auto;
    max-width: 400px;
}

.case-studay-hero-details .case-studay-hero-details-inner .case-studay-details-box .details-heding {
    margin-bottom: 20px;
}

/* two section style */
.two-section-container {
    display: flex;
    gap: 80px;
    margin-bottom: 63px;
}

.two-section-container .two-section-heading-box {
    width: 45%;
}

.two-section-container .two-section-heading-box .two-section-heading {
    text-align: left;
}

.two-section-container .two-section-details {
    width: 55%;
}

.two-section-container .two-section-details .two-section-details-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 37px;
}

.two-section-container .two-section-details .two-section-details-inner .two-section-details-heading {
    display: inline-block;
    width: fit-content;
}

.two-section-container .two-section-details .two-section-details-inner .two-section-details-description {
    color: var(--monochorme-600);
}

.two-section-container .two-section-details .two-section-details-inner .two-section-details-description ul {
    padding-left: 40px;
}

/* feature image container section */
.feature-set-image-container {
    width: 100%;
    margin-bottom: 100px;
    border-radius: 27px;
    overflow: hidden;
}

.feature-set-image-container .feature-set-image {
    width: 100%;
    height: auto;
    margin-bottom: -6px;
}

/* states style */
.states-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 100px;
}

.states-container .states-box {
    width: calc(33.33% - 14px);
    border: 2px solid rgba(var(--warms-orange), 0.502);
    border-radius: 8px;
    background: rgba(var(--warms-orange), 0.051);
    padding: 30px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: fit-content;
    gap: 15px;
}

.states-container .states-box .states-name {
    color: var(--monochormeb-800);
}

.states-container .states-box .states-value {
    line-height: 18px;
    color: rgb(var(--warms-orange));
}

/* more case studies */
.more-case-studies-container .more-case-studies-heading-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* .more-case-studies-box {
    column-count: 2;
    column-gap: 20px;
}
 */
/* blogs */
.blogs .footer-wrapper .bottom-footer {
    margin-top: 0%;
}

.blogs .footer-wrapper .top-footer {
    display: none;
}

.remove-logo-from-blog .header-icon {
    display: none;
}

.blog-wrapper {
    padding-bottom: 200px;
}

/* blog hero section */
.blogs-hero-clip {
    position: relative;
    top: 0;
    width: 100%;
    padding-top: 110px;
    height: 700px;
    border-bottom: 4px solid rgb(var(--warms-orange));
}

.blogs-hero-clip .blogs-hero-image-box {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
}

.blogs-hero-clip .blogs-hero-image-box .blogs-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.blogs-hero-clip .hero-slanted-box {
    position: absolute;
    top: 0;
    left: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: 2190.8px;
    height: 100%;
    background-color: var(--monochorme-white);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), 0% 523px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogs-hero-clip .container {
    height: calc(100% - 131px);
}

.blogs-hero-clip .hero-section-blogs {
    height: 100%;
    position: relative;
}

.get-layer-hero-blog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 335px), calc(-50% + 136px));
}

.get-layer-hero-blog-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(calc(-50% - 567px), calc(-50% + 312px))
}

.hero-section-blogs .hero-heading {
    /* transform: matrix(0.98, 0.22, 0.02, 1, 0, 0); */
    color: var(--monochorme-white);
    margin-top: 131px;
}

.hero-section-blogs .blogs-type-buttons {
    position: absolute;
    bottom: -2px;
    right: 0%;
    width: fit-content;
    /* transform: translateY(119px) matrix(0.98, 0.21, 0, 1, 0, 0); */
}

.hero-section-blogs .blogs-type-buttons .blogs-type-buttons-inner {
    width: fit-content;
    display: flex;
    align-items: flex-end;
}

.hero-section-blogs .blogs-type-buttons .blogs-button {
    display: inline-flex;
    margin-left: -2px;
    transform: unset;
    width: fit-content;
    min-width: unset;
}

.hero-section-blogs .blogs-type-buttons .blogs-button.active {
    height: 45px;
    background-color: var(--warmsdark-orange);
    color: var(--monochorme-white);
}

.hero-section-blogs .blogs-type-buttons .blogs-button.active::before,
.hero-section-blogs .blogs-type-buttons .blogs-button.active::after {
    background-color: var(--warmsdark-orange);
}

/* blogs all lists*/

.blog-lis-slate {
    display: flex;
    flex-wrap: wrap;
    /* column-count: 2; */
    column-gap: 20px;
    width: 100%;
    padding-top: 99px;
}

.blog-lis-slate .single-blog-card {
    display: block !important;
    margin-bottom: 50px;
    break-inside: avoid;
    /* Prevents card from breaking across columns */
    page-break-inside: avoid;
    /* For older browsers */
    width: calc(50% - 10px);
}

/* .blog-lis-slate .single-blog-card .single-blog-card-inner {
    transform: matrix(0.98, 0.22, 0, 1, 0, 0);
} */

.blog-lis-slate .single-blog-card.hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.blog-lis-slate .single-blog-card:first-child {
    width: 100%;
}

.blog-lis-slate .single-blog-card .single-blog-card-image-box {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 12px;
    max-height: 558px;
}

.blog-lis-slate .single-blog-card .single-blog-card-image-box .single-blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.blog-lis-slate .single-blog-card .single-blog-card-details-box .single-blog-card-details-top {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: var(--monochorme-500);
    margin-bottom: 6px;
}

.blog-lis-slate .single-blog-card .single-blog-card-details-box .single-blog-card-details-heading {
    height: 66px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: var(--monochormeb-800);
}

/* blog details page */
.blog-detail-wrapper {
    padding-bottom: 100px;
}

/* blog details page hero */
.blog-details-hero-box {
    padding-top: 248px;
    background-color: var(--monochorme-white);
    margin-top: -110px;
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-breadCrump {
    color: var(--monochorme-600);
    margin-bottom: 41px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-breadCrump a {
    color: var(--monochorme-600);
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-breadCrump .current {
    color: rgb(var(--warms-orange));
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-title-box {
    padding-bottom: 125px;
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-title-box .blog-details-hero-title {
    color: var(--monochorme-600);
    margin-bottom: 13px;
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-title-box .blog-details-hro-subheading-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--monochorme-400);
    margin-bottom: 13px;
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-title-box .blog-details-hro-subheading-date .entry-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--monochorme-400);
    margin-bottom: 13px;
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-title-box .blog-details-hro-subheading-date .entry-meta a {
    color: var(--monochorme-400);
}

.entry-content {
    margin-bottom: 40px;
}

.entry-content .wp-block-image,
.entry-content figure {
    margin-bottom: 40px;
}

.entry-content iframe {
    width: 100% !important;
    height: auto !important;
}

.entry-content img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.entry-footer,
.navigation.post-navigation {
    display: none;
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-title-box .blog-details-hero-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-detail-wrapper .blog-details-hero .blog-details-hero-title-box .blog-details-hero-tags .blog-details-hero-tag {
    background-color: rgba(var(--warms-orange), 0.2);
    color: var(--warmsdark-orange);
    border-radius: 4px;
    padding: 4px;
}

/* blog content part */
.blog-content-box {
    margin-top: -85px;
    background-color: var(--gradient-background-grey);
    border-radius: 16px;
}

.blog-content-box .blog-actual-content {
    max-width: 820px;
    margin: auto;
    padding-top: 40px;
}

.blog-content-box .blog-hero-image-box {
    width: 100%;
    height: auto;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 79px;
}

.blog-content-box .blog-hero-image-box .blog-hero-image {
    width: 100%;
    height: auto;
}

.blog-content-box .blog-content-container {
    max-width: 820px;
    margin: auto;
}

.blog-content-box .blog-content-container .blog-text-Wysiwyg {
    color: var(--monochorme-700);
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.blog-content-box .blog-content-container .blog-text-Wysiwyg h1,
.blog-content-box .blog-content-container .blog-text-Wysiwyg h2,
.blog-content-box .blog-content-container .blog-text-Wysiwyg h3,
.blog-content-box .blog-content-container .blog-text-Wysiwyg h4,
.blog-content-box .blog-content-container .blog-text-Wysiwyg h5,
.blog-content-box .blog-content-container .blog-text-Wysiwyg h6 {
    background: var(--gradient-heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.blog-content-box.entry-content h1,
.blog-content-box.entry-content h2,
.blog-content-box.entry-content h3,
.blog-content-box.entry-content h4,
.blog-content-box.entry-content h5,
.blog-content-box.entry-content h6 {
    color: var(--monochormeb-900);
    margin-top: 30px;
}

.blog-content-box.entry-content h2 {
    font-weight: 500;
    font-size: 43px;
    line-height: 52px;
    margin-bottom: 40px;
}

.blog-content-box.entry-content h3 {
    font-weight: 500;
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 40px;
}

.blog-content-box.entry-content h4 {
    font-weight: 500;
    font-size: 33px;
    line-height: 42px;
    margin-bottom: 35px;
}

.blog-content-box.entry-content h5 {
    font-weight: 500;
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 30px;
}

.blog-content-box.entry-content h6 {
    font-weight: 500;
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 25px;
}

.blog-content-box .blog-content-container .blog-text-Wysiwyg p {
    color: var(--monochorme-700);
}

.blog-content-box.entry-content p {
    color: var(--monochorme-700);
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.blog-content-box.entry-content .more-articles-box p {
    margin-bottom: 0%;
    font-size: 20px;
    line-height: 28px;
    color: var(--monochorme-500) !important;
}

.blog-content-box.entry-content .more-articles-box h4 {
    font-family: var(--heading-font-family);
    font-weight: 700;
    font-size: 28px;
    line-height: 32px;
    margin-top: 0%;
    margin-bottom: 0%;
}

.blog-content-box.entry-content a:hover {
    color: var(--monochorme-700);
}

.blog-content-box.entry-content ul,
.blog-content-box.entry-content ol {
    color: var(--monochorme-700);
    padding-left: 40px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.blog-content-box.entry-content ul li,
.blog-content-box.entry-content ol li {
    margin-bottom: 20px;
}

.blog-content-box.entry-content b,
.blog-content-box.entry-content strong {
    color: var(--monochormeb-900);
}

.blog-content-box .blog-content-container .blog-text-Wysiwyg b,
.blog-content-box .blog-content-container .blog-text-Wysiwyg strong {
    color: var(--monochormeb-900);
}


.blog-content-box .blog-content-container .blog-text-Wysiwyg ul,
.blog-content-box .blog-content-container .blog-text-Wysiwyg ol {
    padding-left: 40px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.blog-content-box .blog-content-container .blog-text-Wysiwyg ul li,
.blog-content-box .blog-content-container .blog-text-Wysiwyg ol li {
    margin-bottom: 20px;
}

.blog-content-box .blog-content-container .blog-text-Wysiwyg ul li:last-child,
.blog-content-box .blog-content-container .blog-text-Wysiwyg ol li:last-child {
    margin-bottom: 0;
}

/* boday quote in blogs details */
.blog-quotes {
    font-size: 40px;
    line-height: 48px;
    color: var(--monochormeb-900);
    padding-left: 12px;
    border-left: 8px solid var(--warms-papaya);
    margin-bottom: 40px;
}

/* image block in blogs details */
.image-blog {
    margin-bottom: 40px;
}

.image-blog .image-blog-box {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 16px;
    overflow: hidden;
}

.image-blog .image-blog-box .image-block-image {
    width: 100%;
    height: auto;
    margin-bottom: -6px;
}

.image-blog .image-block-caption {
    color: var(--monochorme-700);
}

/* more articales */
.more-articles-container {
    margin-top: 161px;
}

.more-articles-container .more-articles-heading-box {
    margin-bottom: 40px;
}

.more-articles-container .more-articles-heading-box .more-articles-heading {
    background: var(--gradient-heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 63px;
    line-height: 124px;
}

.more-articles-container .more-articles-box .blog-lis-slate {
    padding: 0%;
}

.more-articles-container .more-articles-box .blog-lis-slate .single-blog-card {
    margin-top: 0;
    width: calc(50% - 10px);
}

.more-articles-container .more-articles-box .read-more-button-box {
    display: flex;
    justify-content: center;
}

/* about use section */

/* hero section  */
.hero-section-about-us-container-parent {
    height: 200vh;
}

.about-us-wrapper .hero-section-about-us-container {
    height: 100vh;
    width: 100%;
    overflow: visible;
    position: sticky;
    top: 0;
    left: 0;
}

.about-us-wrapper .hero-section-about-us-container .hero-section-about-us {
    height: 1683px;
    width: 100%;
    background-color: var(--monochorme-black);
    position: relative;
    overflow: hidden;
}

.about-us-wrapper .hero-section-about-us .hero-about-us-content {
    position: relative;
    z-index: 1;
    margin-top: 180px;
}

.about-us-wrapper .hero-section-about-us .hero-about-us-content .hero-about-us-heading {
    text-align: center;
    background: var(--gradient-heading-gradient-about);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 14px;
}

.about-us-wrapper .hero-section-about-us .hero-about-us-content .hero-about-us-subheading {
    color: var(--monochorme-400);
    text-align: center;
}

.background-glob-wrappe {
    position: absolute;
    top: 0;
    left: 0%;
    right: 0%;
    bottom: 0%;
    width: 100%;
    height: 100%;
}

.background-glob-wrappe .background-glob-image-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.background-glob-wrappe .background-glob-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transform: scale(1);
    /* transition: transform 0.3s ease-out; */
    will-change: transform;
}

/* how we started section */
.how-we-started-container {
    padding-bottom: 242px;
    margin: 0%;
    box-sizing: border-box;
    /* height: 2187px; */
    min-height: 300vh;
    position: relative;
    z-index: 1;
    margin-top: -100vh;
}

.how-we-started-container .hero-clip {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-bottom: 591px;
    z-index: 1;
}

.gradient-overlay-parent {
    height: fit-content;
    width: fit-content;
    background-color: var(--monochorme-white);
}

.how-we-started-container .hero-clip .gradient-overlay {
    position: absolute;
    top: 352px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    overflow: hidden;
    width: 2190.8px;
    height: calc(100% - 352px);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 510px), 31.6% 100%, 0 calc(100% - 505px));
    /* clip-path: polygon(0 0, 100% 0, 100% 70%, 31.6% 100%, 0 71%); */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--monochorme-black);
}

.how-we-started-container .hero-clip .gradient-overlay .inner-gradient-over {
    background: linear-gradient(to bottom, #000000 0%, #4a0000 25%, #c70000 50%, #ff4e00 75%, #ffcc00 100%);
    width: 100vw;
    height: 100%;
    position: relative;
    top: 35%;
}

.how-we-started-container .hero-clip .how-we-started-heading-box {
    padding: 114px 0 0;
    background-color: rgba(0, 0, 0, 0.93);
}

.how-we-started-container .hero-clip .how-we-started-heading-box .how-we-started-heading {
    text-align: center;
    background: var(--gradient-heading-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.how-we-started-container .hero-clip .how-we-started-heading-box .how-we-started-subheading {
    color: var(--monochorme-400);
    text-align: center;
    margin-top: 26px;
}

/* our team style about us section */
.our-team-container {
    padding-bottom: 273.5px;

}

.our-team-container .our-team-box-heading-box {
    margin-bottom: 48.5px;
}

.our-team-container .our-team-box-heading-box .our-team-box-heading {
    text-align: center;
    background: var(--gradient-heading-gradient-about);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.our-team-container .our-team-tabs-box .our-team-tab-buttons {
    justify-content: center;
    /* margin-bottom: 48.5px; */
    gap: 32px;
    flex-wrap: wrap;
    margin: 0 60px;
}

.our-team-container .our-team-tabs-box .our-team-tab-buttons .clip {
    height: 46px;
}

.our-team-container .our-team-tabs-box .our-team-tab-buttons .clip::before {
    opacity: 1;
}

.our-team-container .our-team-tabs-box .our-team-tab-buttons .clip::after {
    opacity: 0;
}

.our-team-container .our-team-tabs-box .our-team-tab-buttons .clip.active::after {
    opacity: 1;
}

.our-team-container .our-team-tabs-box .our-team-tab-buttons .clip.active::before {
    opacity: 0;
}

.our-team-container .our-team-tabs-box .our-team-tab-content {}

.our-team-container .our-team-tabs-box .our-team-tab-content>.our-team-tab-content-details-box {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    position: relative;
    z-index: 1;
    padding: 0;
    margin: 0;
    height: 0;
    overflow: hidden;
}

.our-team-container .our-team-tabs-box .our-team-tab-content>.our-team-tab-content-details-box.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    /* padding: 0 20px; */
    height: auto;
    overflow: visible;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 88.5px 0 0;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-nav {
    position: relative;
    /* top: -46px; */
    width: 100%;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    gap: 20px;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-nav .disabled {
    opacity: 0.15;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-nav button {
    height: 100%;
    pointer-events: all;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-nav button .custom-prev svg,
.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-nav button .custom-next svg {
    width: 24px;
    height: auto;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-stage-outer {
    width: 100%;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-stage-outer .owl-stage {
    padding-bottom: 60px;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .team-member {
    /* flex: 0 0 32%;
    max-width: 32%; */
    box-sizing: border-box;
    position: relative;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-item {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 1st item in every row: left */
.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-item:nth-child(3n+1)

/* .our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .team-member.active-first */
    {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-item.active-first {
    justify-content: flex-start !important;
}

/* 2nd item in every row: center */
.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-item:nth-child(3n+2)

/* .our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .team-member.active-second */
    {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-item.active-second {
    justify-content: center !important;
}

/* 3rd item in every row: right */
.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-item:nth-child(3n)

/* .our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .team-member.active-third */
    {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.our-team-container .our-team-tabs-box .our-team-tab-content .our-team-tab-content-details-box .team-member-box .owl-item.active-third {
    justify-content: flex-end !important;
}

.our-team-tab-content-details-box .team-member-box .team-member .team-member-front .team-member-image {
    height: 441px;
    width: auto;
}

.our-team-tab-content-details-box .team-member-box .team-member .team-member-front .team-member-name {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    transform: matrix(0.98, 0.22, 0.02, 1, 0, 0);
    color: var(--monochorme-600);
    text-align: center;
    margin-top: 30px;
    max-width: 320px;
}

.team-member-hover {
    width: 261px;
    height: auto;
    padding: 8px;
    position: absolute;
    top: 0;
    background: linear-gradient(0.17deg, #2F2F2F 0.15%, #313131 99.85%);
    border-radius: 8px;
    box-shadow: 0px 0px 6.93px 0px #FFFFFF47 inset;
    color: var(--monochorme-white);
    z-index: 1;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-member-box:hover .team-member {
    opacity: 0.5;
}

.team-member-box:hover .team-member:hover {
    opacity: 1;
}

.owl-nav button:hover~.owl-stage-outer .team-member {
    opacity: 1;
}

.team-member-hover::before {
    content: "";
    position: absolute;
    left: -16px;
    top: 40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(0.28deg, #2F2F2F -32.92%, #313131 99.77%);
    box-shadow: 0px 0px 6.93px 0px #FFFFFF47 inset;
    border-radius: 6px;
    z-index: -1;
    transform: rotate(45deg);
}

.team-member-box .owl-item:nth-child(3n+1) .team-member-hover

/* .team-member-box .team-member.active-first .team-member-hover */
    {
    left: 240px;
}



.team-member-box .owl-item:nth-child(3n+2) .team-member-hover

/* .team-member-box .team-member.active-second .team-member-hover */
    {
    left: 265px;
}



.team-member-box .owl-item:nth-child(3n) .team-member-hover

/* .team-member-box .team-member.active-third .team-member-hover  */
    {
    right: 230px;
    transform: translateX(60px);
}



.team-member-box .owl-item:nth-child(3n) .team-member-hover::before

/* .team-member-box .team-member.active-third .team-member-hover::before */
    {
    right: -16px;
    left: unset;
}

.team-member-box .owl-item.active-first .team-member-hover::before,
.team-member-box .owl-item.active-second .team-member-hover::before {
    right: unset !important;
    left: -16px !important;
}

.team-member-box .owl-item.active-third .team-member-hover::before {
    right: -16px !important;
    left: unset !important;
}

.team-member-box .owl-item.active-first .team-member-hover {
    left: 240px !important;
    right: unset !important;
    transform: translateX(-60px);
}

.team-member-box .owl-item.active-second .team-member-hover {
    left: 265px !important;
    right: unset !important;
    transform: translateX(-60px);
}

.team-member-box .owl-item.active-third .team-member-hover {
    left: unset !important;
    right: 230px !important;
    transform: translateX(60px);
}

.our-team-tab-content-details-box .team-member-box .team-member:hover .team-member-hover {
    opacity: 1;
    transform: translateX(0px);
}

.team-member-hover .member-actual-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0px 1.46px 6.93px 0px #000000C4;
}

.team-member-hover .team-member-hover-text {
    padding: 11px 2px 10px;
}

.team-member-hover .team-member-hover-text .member-designation {
    color: var(--monochorme-white);
}

.team-member-hover .team-member-hover-text .member-name {
    margin-bottom: 7px;
    color: var(--monochorme-white);
    text-transform: capitalize;
}

.team-member-hover .team-member-hover-text .member-small-text {
    color: var(--monochorme-400);
    font-size: 12px;
}

/* our location about us */
.our-location-container {
    margin-bottom: 251px;
}

.our-location-container .our-location-box-heading-box {
    margin-bottom: 43px;
}

.our-location-container .our-location-box-heading-box .our-location-box-heading {
    text-align: center;
    background: var(--gradient-heading-gradient-about);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 96px;
}

.our-location-main-box {
    position: relative;
}

.our-location-main-box .our-location-main-box-inner {
    /* background-color: var(--monochorme-white); */
    border: 1px solid #FFFFFFAD;
    border-radius: 24px;
    display: flex;
    gap: 24px;
    padding: 126px 24px 72px;
    flex-wrap: wrap;
}

.our-location-main-box .our-location-main-box-inner .our-location-box {
    width: calc(25% - 18px);
}

.our-location-main-box .our-location-main-box-inner .our-location-box .our-location-imge-box {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.our-location-main-box .our-location-main-box-inner .our-location-box .our-location-imge-box .our-location-imge {
    height: 242px;
    width: auto;
}

.our-location-main-box .our-location-main-box-inner .our-location-box .our-location-box-address-box {
    padding: 8px;
    border: 1px solid var(--monochorme-700);
    border-radius: 16px;
}


.our-location-main-box .our-location-main-box-inner .our-location-box .our-location-box-address-box h4 {
    text-align: center;
    color: var(--monochorme-700);
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 8px;
}

.our-location-main-box .our-location-main-box-inner .our-location-box .our-location-description {
    text-align: center;
    font-size: 15px;
    line-height: 24px;
    color: var(--monochorme-700);
}

.our-location-background {
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.our-location-background .our-location-white-background {
    border-radius: 24px;
    background-color: var(--monochorme-white);
    opacity: 0.45;
    width: 100%;
    height: 100%;
}

.our-location-background .our-location-world {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.still-curious-wrapper.about {
    margin-bottom: 471px;
}

/* what we do styles about us */
.what-we-do-wrapper {
    margin-bottom: 215px;

}

.what-we-do-heading-box {
    margin-bottom: 60px;
}

.what-we-do-heading-box .what-we-do-heading {
    text-align: center;
    background: var(--gradient-heading-gradient-about);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-left: -18px;
    margin-right: -18px;
}

.what-we-do-accordion {
    width: 100%;
    position: relative;
}


.what-we-do-accordion .background-what-we-do-circule {
    position: absolute;
    left: -49%;
    top: -13%;
    z-index: 0;
    width: 1058px;
    height: 860px;
    background: linear-gradient(129.35deg, rgba(255, 122, 0, 0.15) 5.32%, rgba(255, 122, 0, 0) 94.68%);
    filter: blur(100px);
    transform: rotate(-180deg);
}

.what-we-do-accordion .accordion-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.what-we-do-accordion .accordion-container .ac {
    background-color: transparent;
    border-bottom: 1px solid var(--warms-papaya);
    padding: 12px 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-top: 0%;
    position: unset;
    max-width: 715px !important;
}

.what-we-do-accordion .accordion-container .ac .accordion-ac-video-box {
    display: block;
    width: 505px;
    height: 525px;
    position: absolute;
    top: 0%;
    right: 0%;
    opacity: 0;
    /* pointer-events: none; */
    transition: all .3s ease-in-out;
    z-index: -1;
    overflow: hidden;
}

.what-we-do-accordion .accordion-container .ac .accordion-ac-video-box video {
    height: 100%;
    object-fit: contain;
    width: 100%;
    transform: scale(1.2);
}

.what-we-do-accordion .accordion-container .ac .accordion-ac-video-box img {
    height: 100%;
    object-fit: contain;
    width: 100%;
    transform: scale(1.2);
}

.what-we-do-accordion .accordion-container .ac:last-child {
    border: none;
    padding-bottom: 0%;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled {
    transition: 0.25s ease all;
    border-radius: 8px;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-header {
    transition: 0.25s ease all;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: var(--monochorme-700);
    padding: 6px 32px 6px 6px;
    position: relative;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger:hover {
    background: unset;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger .accordion-svg {
    width: 25px;
    height: auto;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5 ease all;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger .accordion-svg.in-close {
    opacity: 1;
    visibility: visible;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger .accordion-svg.open {
    opacity: 0;
    visibility: hidden;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-header .ac-trigger::after {
    visibility: hidden;
    opacity: 0;
    display: none;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-panel {
    opacity: 0;
    transition: 0.25s ease all;
    height: 0;
}

.what-we-do-accordion .accordion-container .ac.is-active .ac-chiled .ac-panel {
    height: auto;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-panel .ac-text {
    padding: 16px 0;
    font-size: 18px !important;
    line-height: 22px !important;
    color: var(--monochorme-600);
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-panel .ac-text.ac-text-wy ul,
.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-panel .ac-text.ac-text-wy ol {
    padding-left: 30px;
}

.what-we-do-accordion .accordion-container .ac .ac-chiled .ac-panel .clip-container .clip {
    padding-top: 0%;
    padding-bottom: 0%;
}

/* active accordion */
.what-we-do-accordion .accordion-container .ac.is-active .accordion-ac-video-box {
    opacity: 1;
}

.what-we-do-accordion .accordion-container .ac.is-active .ac-chiled {
    background-color: rgba(255, 255, 255, 0.45);
    padding: 16px;
    border-color: rgba(255, 255, 255, 0.28);
}

.what-we-do-accordion .accordion-container .ac.is-active .ac-chiled .ac-header .ac-trigger {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 0%;
}

.what-we-do-accordion .accordion-container .ac.is-active .ac-chiled .ac-header .ac-trigger .accordion-svg.open {
    opacity: 1;
    visibility: visible;
}

.what-we-do-accordion .accordion-container .ac.is-active .ac-chiled .ac-header .ac-trigger .accordion-svg.in-close {
    opacity: 0;
    visibility: hidden;
}

.what-we-do-accordion .accordion-container .ac.is-active .ac-chiled .ac-header {
    border-width: 0px;
}

.what-we-do-accordion .accordion-container .ac.is-active .ac-chiled .ac-panel {
    opacity: 1;
}

/* Overlay styling */
#transitionOverlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    /* background: linear-gradient(to bottom, #000000 0%,
            #4a0000 25%,
            #c70000 50%,
            #ff4e00 75%,
            #ffcc00 100%); */
    /*  background-attachment: fixed; */
    /* backdrop-filter: blur(8px); */
    z-index: 9999;
    pointer-events: none;
    transition: height 1.5s ease-in-out;
    overflow: hidden;
    opacity: 1;
}

#transitionOverlay img {
    height: 100%;
    width: 100%;
}

/* Make it full screen */
#transitionOverlay.active {
    height: 500vh;
}

/* about us time line */
.how-we-started-timline {
    /*  overflow: hidden; */
    position: relative;
}

.margin-bottom-medium {
    margin-bottom: 32px;
}

.paragraph-large {
    letter-spacing: -0.02em;
    font-size: 20px;
}

/* .section-timeline-heading {
    background-color: #0a0a0a;
} */

.padding-vertical-xlarge {
    padding-top: 120px;
    padding-bottom: 120px;
}

.timeline-main_heading-wrapper {
    color: #fff;
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.timeline_component {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* max-width: 1120px;
    margin-left: auto;
    margin-right: auto; */
    display: flex;
    position: relative;
    padding: 125px 0;
}

.timeline_item {
    z-index: 2;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 180px 1fr;
    grid-auto-columns: 1fr;
    padding-top: 175px;
    padding-bottom: 175px;
    display: grid;
    position: relative;
    /* align-items: center; */
    min-height: 500px;
}

.timeline_left {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 13px;
}

.timeline_left .timeline-date-img {
    width: 35px;
    height: 35px;
}

.timeline_centre {
    justify-content: center;
    display: flex;
}

.timeline_date-text {
    background: linear-gradient(90deg, #FA6F0A 0%, #944206 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: -0.03em;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    position: sticky;
    top: 50vh;
}

.timeline_text {
    color: var(--gradient-background-grey);
    font-size: 24px;
    line-height: 32px;
    font-weight: 400;
}

.timeline_circle {
    background-color: #EC4903;
    border-radius: 100%;
    width: 27px;
    min-width: 27px;
    max-width: 27px;
    height: 27px;
    min-height: 27px;
    max-height: 27px;
    position: sticky;
    top: 50vh;
    box-shadow: 0px 0px 17px 0px #FF5900E5;
    transition: background-color 0.3s ease;
}

.timeline_circle.active {
    background-color: #ff6a00;
    box-shadow: 0px 0px 25px 0px #FF5900E5;
}

.timeline_progress {
    z-index: -2;
    background-color: #414141;
    width: 3px;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    mask: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.timeline_progress-bar {
    z-index: -1;
    background: linear-gradient(to bottom, #FA6F0A 0%, #EC4903 100%);
    width: 3.5px;
    height: 0px;
    position: absolute;
    top: 0;
    left: calc(50% + 0.4px);
    transform: translateX(-50%);
    transition: height 0.1s ease-out;
}

.section-timeline {
    z-index: 5;
    /* background-color: #0a0a0a; */
    position: relative;
    padding-top: 100px;
}

.margin-bottom-xlarge {
    display: flex;
    align-items: center;
}

.timeline_link {
    opacity: 0.6;
    color: #fff;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 8px;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
}

.timeline_link:hover {
    opacity: 1;
}

.link-icon {
    width: 20px;
    height: 20px;
    margin-left: 8px;
}

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

.text-colour-lightgrey {
    color: #ffffffa6;
}

.overlay-fade-top {
    background-image: linear-gradient(var(--monochorme-black), #0a0a0a00);
    height: 80px;
    position: absolute;
    inset: 0% 0% auto;
}

.overlay-fade-bottom {
    background-image: linear-gradient(to top, #0a0a0a, #0a0a0a00);
    height: 80px;
    position: absolute;
    inset: auto 0% 0%;
}

/* Add some space before timeline for better effect */
.timeline-spacer {
    height: 100vh;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-intro {
    text-align: center;
    color: #fff;
}

.timeline-intro h1 {
    font-size: 60px;
    background: linear-gradient(90deg, #FA6F0A 0%, #944206 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.timeline-intro p {
    font-size: 24px;
    color: #ffffffa6;
    max-width: 600px;
    margin: 0 auto;
}

/* text page tamplate style for privacy policy and terms of service */
.text-pages {
    overflow: unset;
}

.text-page-wrapper {
    padding: 100px 0 150px;
}

.text-page-grid {
    display: grid;
    grid-template-columns: 1.25fr 2fr;
    gap: 20px;
    align-items: start;
}

.text-page-title {
    position: sticky;
    top: 200px;
}

.text-page-title .page-title {
    align-self: start;
    text-align: left;
    font-weight: 800;
    line-height: 1.5;
}

/* Content Styling */
.text-page-content {
    line-height: 1.7;
    padding-left: 20px;
}

.text-page-content p,
.text-page-content ul,
.text-page-content ol {
    margin-bottom: 20px;
}

.text-page-content h1,
.text-page-content h2,
.text-page-content h3,
.text-page-content h4,
.text-page-content h5,
.text-page-content h6 {
    margin-bottom: 20px;
}

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

/* one pager */
.one-pager .hero-clip .hero-section .hero-benner-box .hero-headding {
    font-weight: 700;
    text-transform: none;
    margin-bottom: 32px;
}

.one-pager .testimonials-wrapper {
    background-color: transparent;
}

.one-pager~.footer-wrapper.onepager .footer-bottom-link ul a {
    color: var(--monochorme-400);
}

.one-pager~.footer-wrapper.onepager .bottom-footer {
    margin-top: 0;
}

.one-pager~.footer-wrapper.onepager .bottom-footer .footer-clip {
    padding-top: 100px;
}

.one-pager~.footer-wrapper.onepager .top-footer {
    display: none;
}

.onepeger-top-footer-heading {
    font-size: 43px;
}

.footer-wrapper .top-header-children .footer-top-sub-header-text.onepeger-top-footer-heading {
    margin-top: 5px;
}

.one-pager .we-we-are-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 56px;
    color: var(--monochorme-600);
}

.one-pager .who-we-are-discription {
    color: var(--monochorme-600);
}

.one-pager~.footer-wrapper.onepager .footer-gradient-overlay,
.one-pager~.footer-wrapper.onepager .footer-logo-wrapper,
.one-pager~.footer-wrapper.onepager .footer-links-wrapper {
    display: none;
}

/* .one-pager .who-we-are-wrapper .who-we-are {
    align-items: center;
} */

.one-pager .what-we-do-accordion .accordion-container .ac .accordion-ac-video-box img {
    transform: scale(1);
}

.testimonials-more-info-box {
    background: #FDFCF833;
    border: 1px solid #B8AFAD;
    backdrop-filter: blur(50px);
    border-radius: 24px;
    padding: 12px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    min-width: 435px;
    height: 96px;
}

.one-pager .testimonials-wrapper .testimonials-heading-box .testimonials-ratting-clutch-box .testimonials-ratting {
    font-family: var(--body-font-family);
    font-size: 48px;
    line-height: 72px;
}

.testimonials-more-info-box .testimonials-more-info-heading {
    display: flex;
    align-items: center;
    gap: 6px;
}

.one-pager .testimonials-wrapper .testimonials-heading-box .testimonials-ratting-clutch-box .testimonials-clutch-logo {
    width: 245px;
    height: auto;
    border: none;
}

.testimonials-more-info-box p {
    color: var(--monochorme-600);
    font-size: 24px;
    font-weight: 700;
    margin: 0%;
}

.testimonials-more-info-box a {
    display: flex;
    align-items: center;
}

.one-pager .testimonials-wrapper .overlay-background-center {
    position: absolute;
    left: 50%;
    top: -50%;
    width: 600px;
    height: 600px;
    z-index: 0;
    background: linear-gradient(129.35deg, rgba(255, 122, 0, 0.4) 5.32%, rgba(255, 122, 0, 0) 94.68%);
    filter: blur(100px);
    transform: translate(-50%, 100%) rotate(-180deg);
    pointer-events: none;
}

.one-pager .still-curious-contact-information-inner .still-curious-contact-box .still-curious-contact-button {
    margin-bottom: 0;
    height: 48px;
}

.one-pager .still-curious-wrapper .still-curious-sub-details {
    height: auto;
    margin-bottom: 200px;
}

.still-curious-contact-form-and-meet-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 48px;
}

.still-curious-contact-form-and-meet-container .still-curious-meet-container,
.still-curious-contact-form-and-meet-container .still-curious-contact-form-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.still-curious-contact-form-and-meet-container .still-curious-meet-container .reach-us-here-heading,
.still-curious-contact-form-and-meet-container .still-curious-contact-form-container .reach-us-here-heading {
    color: var(--monochorme-700);
    padding: 7px 0;
    text-align: center;
    border-bottom: 1px solid var(--monochorme-400);
    width: 100%;
}

.still-curious-contact-form-and-meet-container .still-curious-contact-form-container {
    width: 100%;
}

.still-curious-contact-form-and-meet-container .still-curious-contact-form-container .get-in-touch-form {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.still-curious-contact-form-and-meet-container .still-curious-contact-form-container button {
    height: 48px;
}

.still-curious-contact-form-and-meet-container .still-curious-contact-form-container input {
    border: 4px solid #FFFFFF1A;
    background: #FDFCF81A;
    border-radius: 8px;
    min-width: 200px;
    height: 48px;
    outline: none;
    box-shadow: none;
    padding: 10px;
}

.still-curious-contact-form-and-meet-container .still-curious-contact-form-container .get-in-touch-form .input-filed {
    flex: 1;
}

.still-curious-contact-form-and-meet-container .still-curious-contact-form-container .get-in-touch-form .input-filed input {
    width: 100%;
}

.one-pager .still-curious-contact-information-inner {
    max-width: unset;
    width: fit-content
}

.one-pager .reach-us-here-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.one-pager .still-curious-contact-information-inner .reach-us-here .reach-us-here-details {
    min-width: 380px;
}

.one-pager .still-curious-contact-information {
    min-height: 400px;
}

.one-pager .still-curious-wrapper {
    margin-bottom: 50px;
}

.one-pager .footer-title-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 72px;
}

.one-pager .footer-title-icon-wrapper h4 {
    margin-bottom: 40px;
    text-align: center;
}

.one-pager .footer-title-icon-wrapper img {
    width: 100%;
    max-width: 900px;
    height: auto;
}

.book_a_call_cta {
    background-color: rgb(var(--warms-orange));
}

.book_a_call_cta:hover {
    background-color: var(--warmsdark-orange);
}