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

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

@font-face {
    font-family: 'Albert Sans';
    src: url('../fonts/AlbertSans-Light.woff2') format('woff2'),
        url('../fonts/AlbertSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albert Sans';
    src: url('../fonts/AlbertSans-Medium.woff2') format('woff2'),
        url('../fonts/AlbertSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Albert Sans';
    src: url('../fonts/AlbertSans-SemiBold.woff2') format('woff2'),
        url('../fonts/AlbertSans-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
    /* enables smooth scrolling */
}

body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    box-sizing: border-box;
    font-family: 'Albert Sans';
    font-weight: 300;
    transition: all 0.4s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
}

html.has-scroll-smooth,
.has-scroll-smooth body,
.o-scroll {
    overflow: hidden;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Albert Sans';
    font-weight: 500;
}

p {
    margin: 0;
    font-weight: 300;
}

header {
    z-index: 9999999;
    position: absolute;
    transition: all 0.4s ease;
}

header.scrolled-fixed {
    position: fixed;
    /*mix-blend-mode: difference;*/
    transition: width 0.4s ease;
}

header .header-logo img {
    transition: max-width 0.4s ease;
}

header.scrolled-fixed .header-logo img {
    max-width: 280px;
}

header.scrolled-fixed .menu {
    color: #fff;
}

header .menu {
    background: transparent;
    border: none;
    color: #000;
    overflow: hidden;
    padding: 0;
}

.hoVerLink .inner {
    position: relative;
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);

}

.c-black .inner {
    color: #4c4d4d;
}

.hoVerLink .inner::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 100%;
}

.hoVerLink:hover .inner {
    transform: translateY(-100%);
}

header.scrolled-fixed .side-menu {
    mix-blend-mode: inherit;
}

.side-menu {
    position: fixed;
    top: 0;
    right: -530px;
    /* hidden offscreen */
    width: 500px;
    height: 100%;
    background: #988b55;
    transition: right 0.4s ease, opacity 0.4s ease;
    padding: 20px;
    z-index: 9999999999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.closeArea div {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.close-menu {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding: 0;
    overflow: hidden;
}

.side-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-menu ul li {
    overflow: hidden;
    margin: 12px 0;
}

.side-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    overflow: hidden;
    line-height: 38px;
    text-transform: capitalize;
}

.side-menu.active {
    right: 0;
    /* slide into view */
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    z-index: 9999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu {
    background: #92ab33;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    font-weight: 500;
}

.hero-section {
    padding-top: 180px;
}

.overlay_site_top_banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.project-slider {
    position: relative;
    overflow: hidden;
}

.project-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.project-slider .caption {
    position: absolute;
    bottom: 25%;
    right: 6%;
    z-index: 99;
}

.view-btn {
    position: relative;
    padding: 15px 20px;
    display: block;
    min-width: 160px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 100;
    transition: all 0.5s ease-in-out;
    text-align: center;
}

.view-btn .top_left,
.view-btn .top_right,
.view-btn .bottom_left,
.view-btn .bottom_right {
    width: 15px;
    height: 15px;
    position: absolute;
    transition: all 0.5s ease-in-out;
}

.view-btn .bottom_right,
.view-btn .bottom_left {
    bottom: 0;
    border-bottom: 1px solid #999;
}

.view-btn .top_left,
.view-btn .top_right {
    top: 0;
    border-top: 1px solid #999;
}

.view-btn .top_left,
.view-btn .bottom_left {
    left: 0;
    border-left: 1px solid #999;
}

.view-btn .top_right,
.view-btn .bottom_right {
    right: 0;
    border-right: 1px solid #999;
}

.view-btn:hover .top_left,
.view-btn:hover .top_right,
.view-btn:hover .bottom_left,
.view-btn:hover .bottom_right {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    border-color: #92ab33;
}

.view-btn:hover {
    color: #92ab33;
}

.slick-prev,
.slick-next {
    background: #999999;
    border: none;
    color: #000;
    font-size: 14px;
    width: 40px;
    height: 40px;
    border-radius: 0px;
    cursor: pointer;
    z-index: 1000;
    border: none;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

.slick-prev {
    right: 78px;
    bottom: 40%;
    top: auto;
    left: auto;
}

.slick-next {
    right: 35px;
    bottom: 40%;
    top: auto;
}

.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
    background: #92ab33;
    color: #fff;
}


.project-section {
    max-width: 650px;
    margin: auto;
}

.project-title {
    font-size: 42px;
    color: #988b55;
    margin-bottom: 30px;
}

.project-meta {
    display: flex;
    gap: 80px;
    margin-bottom: 20px;
}

.meta-item {
    font-size: 14px;
    color: #000;
}

.meta-item span {
    display: block;
    font-size: 14px;
    color: #000;
    margin-top: 5px;
}

.project-description {
    line-height: 1.6;
    margin-bottom: 40px;
    color: #000;
    font-weight: 300;
}

.view-btn.view-more {
    color: #808080;
    text-align: center;
    margin-left: auto;
}

.view-btn.view-more:hover {
    color: #92ab33;
}

.mission_innovation {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.mission_innovation h2 {
    font-weight: 300;
    font-size: 32px;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.project-sub-title {
    font-size: 28px;
    color: #988b55;
}

.homePage_accordian .accordion {
    width: 100%;
    margin: 20px auto;
}

.homePage_accordian .accordion-item {
    border-top: 1px solid #c6c6c6 !important;
    border-radius: 0px !important;
    border-bottom: none;
}

.homePage_accordian .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 25px 15px;
    font-size: 22px;
    font-weight: 500;
    transition: color 0.3s ease;
    max-width: 650px;
    margin: auto;
}

.homePage_accordian .accordion-header:hover {
    background: transparent;
    color: #988b55;
}

.homePage_accordian .accordion-icon {
    font-size: 22px;
    transition: transform 0.3s ease;
    font-weight: 300;
}

.homePage_accordian .accordion-content {
    display: none;
    padding: 20px;
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    max-width: 650px;
    margin: auto;
}

.homePage_accordian .active .accordion-icon {
    transform: rotate(360deg);
}

.homePage_accordian .accordion-item.active .accordion-header {
    color: #988b55;
}

.video-container {
    position: relative;
    width: 100%;
    margin: auto;
    min-height: 650px;
}

.video-container video {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    color: #e83636;
    cursor: pointer;
    border: 3px solid #e83636;
    border-radius: 50%;
    padding: 10px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    user-select: none;
    opacity: 0;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.6);
}

.section-padding {
    padding: 90px 0;
}

.project-title-dark {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
    font-size: 42px;
}

.HrLineBg {
    border-color: #000;
    width: 170px;
    margin-top: 0;
    opacity: 1;
}

.project-title-dark.default-color {
    color: #988b55;
}

.homePage_accordian.homePage_accordianServices .accordion-item {
    border-bottom: 1px solid #c6c6c6 !important;
    border-radius: 0px !important;
    border-top: none !important;
}

.accordion-content-item h3 {
    font-size: 16px;
    color: #000;
}

.accordion-content-item p {
    font-size: 14px;
    color: #000;
}

.project-slider-image {
    position: relative;
}

.project-slider-image img {
    width: 100%;
    height: auto;
    display: block;
}

.project-slider-image .slick-prev {
    right: 78px;
    bottom: -95px;
    top: auto;
    left: auto;
}

.project-slider-image .slick-next {
    right: 35px;
    bottom: -95px;
    top: auto;
}

.about-scrolling-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.marquee {
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
}

.marquee-content span {
    font-size: 72px;
    font-weight: 500;
    color: #998c55;
    white-space: nowrap;
}

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

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

/* Content layout */
.about-scrolling-section .content {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-scrolling-section .text {
    max-width: 450px;
}

.about-scrolling-section .text p {
    font-size: 16px;
    line-height: 1.6;
}

.about-scrolling-section .image {
    width: 280px;
    height: auto;
    display: block;
    display: flex;
    align-items: flex-end;
    justify-content: end;
}

.about-scrolling-section .image img {
    width: 200px;
    height: auto;
    display: block;
    will-change: transform;
    transform: translateX(0);
    transition: transform 0.2s linear;
}




.reveal-wrapper {
    position: relative;
    overflow: hidden;
}

/* Image hidden initially */
.reveal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.2s ease;
}

.reveal-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(0);
    transition: transform 1.2s ease;
    background-color: #fff;
    z-index: 2;
}

.reveal-wrapper.is-inview .reveal-image::before {
    transform: translateX(100%);
}

.reveal-wrapper.is-inview img {
    transform: scale(1);
}

.footer {
    position: relative;
    background: #998c55;
    color: #fff;
    padding: 100px 0 0px;

    overflow: hidden;
    position: relative;
    width: 100vw;
}

.footer-form {
    max-width: 650px;
    margin: auto;
}

.footer-form h2 {
    color: #fff;
    font-size: 40px;
    display: inline-block;
    border-bottom: 1px solid #fff;
}

footer form input {
    color: #cccccc;
    border: 1px solid #cccccc;
    width: 100%;
    margin: 8px 0;
    background: transparent;
    padding: 10px 16px;
    font-weight: 300;
    font-size: 14px;
}

footer form input::placeholder {
    color: #eee;
    font-weight: 300;
}

footer form input:focus {
    outline: #988b55;
}

.SubmitBtn {
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: 15px;
    color: #eee;
    display: flex;
    gap: 8px;
    align-items: center;
    font-weight: 300;
    letter-spacing: 0.2px;
    margin-top: 15px;
    transition: all 0.4s ease-in-out;
}

.SubmitBtn:hover {
    gap: 20px;
}

footer .footerLinks ul li {
    overflow: hidden;
}

footer .footerLinks ul li a {
    font-size: 15px;
    color: #fff;
    transition: all 0.4s ease-in-out;
    font-weight: normal;
    margin: 6px 0;
    display: block;
    overflow: hidden;
}

.FooterbottomArea {
    max-width: 800px;
    margin: auto;
}

.social-media {
    display: flex;
    gap: 14px;
}

.social-media .social-icon {
    color: #fff;
    background-color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50px;
    transition: all 0.4s ease-in-out;
}

.social-media .social-icon:hover {
    background-color: #e83636;
}

.copyright p {
    font-size: 12px;
    letter-spacing: 1.5px;
}









.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    z-index: 99999999;
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}

/* Trailing cursor (bigger, follows with delay) */
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background-color: white;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    z-index: 9999;
}





.counter-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 80px auto;
    text-align: left;
    max-width: 650px;
}

.num {
    font-size: 60px;
    font-weight: 400;
    line-height: 60px;
}

.label {
    font-size: 12px;
    margin-top: 0px;
    font-weight: normal;
    letter-spacing: 0px;
}

.stat::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #999;
    margin-bottom: 15px;
}


.slide-wrapper {
    transform: scale(0.7);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
}

.slide-wrapper.is-inview {
    transform: scale(1);
    opacity: 1;
}

.HoverEffectTitle {
    transition: all 0.4s ease-in-out;
}

.project-title-dark.HoverEffectTitle:hover {
    color: #988b55;
    gap: 40px;
}

.project-title-dark.HoverEffectTitle:hover svg {
    color: #988b55;
    transition: all 0.4s ease-in-out;
    fill: #988b55;
}

.BgWhite {
    background: #fff;
    position: relative;
    z-index: 1;
}

.clearfix {
    clear: both;
}

.PBottomShowArrow {
    padding-bottom: 75px;
}

.One-Stop-Shop-Service p {
    font-size: 14px;
    padding-bottom: 6px;
}

.One-Stop-Shop-Service p strong {
    font-weight: 600;
}


.scrollanim_clip {
    clip-path: inset(0px 20vw);
    width: 100%;
    height: 110vh;
}

.scrollanim_clip video {
    width: 105%;
    height: 105%;
    display: block;
    object-fit: cover;
}

.visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
}

.HeadBannerImage,
.HeadBannerImage img {
    height: 100vh;
    overflow: hidden;
}

.TopHeadImage {
    position: absolute;
    bottom: -200px;
    left: 0;
    width: 100%;
    z-index: 9;
}

.HeadOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.TopHeadImage h1 {
    font-size: 40vh;
    color: #fff;
    letter-spacing: -20px;
}

.TopHeadImage p {
    font-size: 21px;
    max-width: 600px;
    margin: auto;
}

.scroll_item {
    position: absolute;
    bottom: 250px;
    right: 35px;
}

.scroll_item span {
    font-size: 17px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    color: #fff;
    position: relative;
    z-index: 3;
}

.scrolldown {
    height: 260px;
    position: absolute;
    left: 42%;
    top: 0;
    z-index: 3;
}

.scrolldown:before,
.scrolldown:after {
    content: "";
    position: absolute;
    background: #fff;
}

.scrolldown:before {
    bottom: 0;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation:
        circlemove 3s ease-in-out infinite,
        cirlemovehide 3s ease-out infinite;
}

@keyframes circlemove {
    0% {
        bottom: 165px;
    }

    100% {
        bottom: -5px;
    }
}

@keyframes cirlemovehide {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

.scrolldown:after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 168px;
}


.project-title-dark-team {
    font-size: 6vh;
    color: #000;
    letter-spacing: -4px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    align-items: center;
}

.AdvisorsImage img,
.AdvisorsImage {
    max-width: 235px;
    margin: auto;
    height: 300px;
    object-fit: cover;
}

.AdvisorsImage {
    position: relative;
    overflow: hidden;
}

.AdvisorsImage .overlay-team-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: height 0.3s ease;
    text-transform: uppercase;
    max-width: 235px;
    margin: auto;
}

.AdvisorsImage:hover .overlay-team-name {
    height: 30%;
    /* overlay comes up */
}

.AdvisorsImage .overlay-team-name h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

h1.TitleSizeSmall {
    font-size: 32vh;
    color: #fff;
    letter-spacing: -20px;
}

.contactForm {
    max-width: 450px;
}

.ContactFormHeading {
    font-size: 44px;
}

.contactForm .form-control {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-radius: 0px;
    border-bottom: 1px solid #808080;
    margin-bottom: 25px;
    font-size: 22px;
}

.contactForm .form-control:focus {
    outline: none;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #988b55;
}

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

.send-btn {
    display: flex;
    align-items: center;
    color: #000;
    background-color: #fff;
    border: none;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-top: 20px;
    gap: 10px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}

.send-btn:hover svg,
.send-btn:hover {
    color: #988b55;
}

.AddressImage {
    margin-left: -200px;
}

.borderLeft {
    border-left: 1px solid #988b55;
    padding: 140px 0 140px 40px;
}

.textColorDefault {
    color: #988b55;
    font-size: 18px;
}

.Listing {
    list-style: inside;
}

.Listing li {
    font-size: 18px;
    padding: 5px 0;
}

.leading-9 {
    line-height: 40px;
}

.ServicesImageRow,
.ServicesImageRow img {
    border-radius: 50%;
    min-width: 300px;
    min-height: 300px;
    object-fit: cover;
}

.SmallSizeHeading {
    font-size: 52px;
    color: #000;
}

.ServicesAddress .meta-item span {
    font-size: 18px;
    font-weight: 500;
}

.CustomContainer {
    max-width: 650px;
    margin: auto;
    padding-top: 80px;
}

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

.ytvid {
    width: 100%;
    height: 400px;
}

.project-top img {
    object-fit: cover;
}

.AdvisorsImage {
    margin-bottom: 30px;
}