h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
}

.mb-3 {
    margin-bottom: 3em;
}

.aakaar-btn {
    border-radius: 0;
    border: 1px solid #b2b2b2;
    color: #373737;
    font-weight: 500;
}

.aakaar-btn:hover {
    background: #c7e9f5;
    border-color: #a0d1e9;
    color: #0b76ac;
}

.aakaar-outline-btn {
    border-radius: 0;
    border-bottom: 1px solid #b2b2b2;
    color: #373737;
    font-weight: 500;
}

.aakaar-outline-btn:hover {
    border-bottom-color: #a0d1e9;
    color: #0b76ac;
}

.aakaar-secondary-btn {
    border-radius: 4px;
    border: 1px solid #6a6a6a;
    color: #373737;
    font-weight: 400;
    text-transform: uppercase;
    padding: 9px 20px;
    transition: all 0.3s ease-in-out;

}

.aakaar-secondary-btn:hover {
    border-color: #2e2e2e;
    color: #e2e2e2;
    background-color: #1d1d1d;
}


.normal-section {
    padding-top: 50px;
    padding-bottom: 50px
}

/* Page Wrapper Offset for Fixed Header */
.page-wrapper {
    padding-top: 80px;
}

@media (max-width: 991.98px) {
    .page-wrapper {
        padding-top: 70px;
    }
}

/* Header */
.main-header.header-style-two {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.main-header .auto-container {
    max-width: 1350px;
}

.header-style-two .header-upper {
    background: #181818 !important; /* Solid dark background */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 80px;
    transition: height 0.3s ease;
}

.main-header.fixed-header .header-inner {
    height: 70px; /* Shrink slightly on scroll */
}

.main-header .logo-outer {
    margin: 0 !important;
    text-align: left !important;
}

.main-header .logo-outer .logo img {
    max-height: 60px;
    width: auto !important;
    transition: all 0.3s ease;
}

.main-header.fixed-header .logo-outer .logo img {
    max-height: 50px;
}

.main-header .logo-outer .logo .sec-logo {
    display: none;
}

.main-header .logo-outer .logo .main-logo {
    display: inline;
}

.header-style-two.fixed-header .header-upper {
    position: relative !important;
    animation: none !important;
    background: #181818 !important; /* Solid dark background when fixed */
}

.main-header.fixed-header .logo-outer .logo .sec-logo {
    display: inline;
}

.main-header.fixed-header .logo-outer .logo .main-logo {
    display: none;
}

.header-style-two.fixed-header .nav-toggler button .line {
    margin-bottom: 6px;
    border-bottom: 2px solid #ffffff;
}

.header-inner .nav-toggler,
.header-inner .nav-toggler button {
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu */
.side-menu ul li.dropdown ul {
    padding: 16px 29px;
    background: #181818;
    border-radius: 10px;
    margin-right: 13px;
}

.side-menu ul li.dropdown ul li a {
    padding: 6px 11px 6px 0px;
    color: #fff;
    font-weight: 200;
}

/* CTA Sitevisit Fixed */
.cta-sitevisit {
    opacity: 0.9;
    position: fixed;
    left: 10px;
    bottom: 10px;
    z-index: 99;
}

.cta-sitevisit .aakaar-secondary-btn {
    background: #1592d1;
    color: white;
    border-color: #6ac2e8;
    font-size: 12px;
    font-weight: 500;
}

.cta-sitevisit .aakaar-secondary-btn:hover {
    background: #0e5b81;
}

/* Banner video */
video.hero-video {
    display: block;
    clip-path: fill-box;
}

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    /* Set the desired height */
}

/* Continuous Zoom In/Out Animation for Home Banner Images */
@keyframes heroZoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08); /* Smooth, elegant zoom in */
    }
    100% {
        transform: scale(1); /* Smooth, elegant zoom out */
    }
}

.hero img {
    animation: heroZoomInOut 10s ease-in-out infinite;
    transform-origin: center center;
    width: 100%;
    height: auto;
    display: block;
    backface-visibility: hidden;
}


.hero-video {
    width: 100%;
    transform: none;
    position: unset;
}

.image-outer {
    overflow: hidden;
}

.image-outer img {
    transition: transform 2s ease;
    display: block;
    width: 100%;
    height: auto;
}

.image-outer:hover img {
    transform: scale(1.1);
}

/* Home bg area */
.home-bg-area {
    height: 500px;
    background-image: url(../images/background/subpage.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.visionmissionarea {
    position: relative;
    background: url(../images/background/visionmission.jpg) no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.visionmissionarea::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.visionmissionarea .overlay {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
}

.visionmissionarea h5 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.visionmissionarea p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .visionmissionarea h5 {
        font-size: 1.5rem;
    }

    .visionmissionarea p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .visionmissionarea h5 {
        font-size: 1.2rem;
    }

    .visionmissionarea p {
        font-size: 0.9rem;
    }
}

.whowearewrapper ul {
    padding: 30px 20px 10px 20px;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    text-align: center;
}

.whowearewrapper ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: #999;
    position: relative;
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.whowearewrapper ul li a.active {
    color: #000;
}

.whowearewrapper ul li a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #000;
}

.whowearewrapper ul li a:hover {
    color: #000;
}


/* SUB PAGES */


.sub-page-banner {
    position: relative;
    padding: 100px 0px 100px;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    width: 100%;
}

.sub-page-banner .content-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.sub-page-banner h1 {
    position: relative;
    font-size: 34px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.4em;
    margin-bottom: 3px;
}

.sub-page-banner .text-content {
    position: relative;
    font-size: 17px;
    font-weight: 300;
    line-height: 1em;
    color: #ffffffab;
}

.sub-page-banner .overlay-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(24, 22, 22, 0.81);
}

/* Footer */
.contact-social {
    margin-top: 1.5em;
    margin-bottom: 1em;
}

.contact-social a {
    margin-right: 15px;
}

.contact-section-one p {
    color: white;
}


.contact-section-one .navigation-column ul li a {
    color: #ffffff;
    font-weight: 300;
    margin-bottom: 6px;
    display: block;
    text-transform: uppercase;
    font-size: 13px;
}

/* Team */
.team-section .team-member .inner-box {
    min-height: 300px;
    text-align: center;
}

.team-section .team-member img {
    max-width: 50px;
    display: inline-block;
    margin-bottom: 13px;
    margin-top: 10px;
}

.team-section {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* Slider */
.main-slider {
    position: relative;
}

.main-slider .slick-next {
    right: 18px;
}

.main-slider .slick-prev {
    left: 18px;
    z-index: 9;
}

.slider-mob {
    display: none;
}

.slider-pc {
    display: block;
}

/* Slider form */

.headerform {
    background: #ffffff6e;
    padding: 22px;
    border-radius: 4px;
}

.headerform h2 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: #1d1d1d;
}

.headerform input,
.headerform select {
    height: 45px;
    padding-left: 17px;
    font-size: 14px;
    width: 100%;
    margin-bottom: 12px;
    border-radius: 0;
    padding-right: 17px;
}

.headerform .btn-home {
    padding: 7px 26px;
    width: 100%;
    border-radius: 5px;
    background-color: #1e96d3;
    border-color: #1e96d3;
    color: #fff;
}

.headerform .btn-home:hover,
.headerform .btn-home:active {
    background-color: #16719e;
    border-color: #16719e;
}

.headerform {
    position: absolute;
    top: 15%;
    right: 3%;
}

/* Form */
.ipopi-message {
    color: white;
    padding: 5px 11px;
    line-height: 1;
    font-size: 14px;
    text-align: center;
}

.error {
    background: #f44336;
    margin-bottom: 10px;
}

.success {
    background: #4caf50;
    margin-bottom: 10px;
    font-size: 15px;
}


/* whatwedo */
.whatwedo {
    margin-bottom: 6em;
}

.whatwedo .whatwedo-item h4 {
    font-weight: 300;
    color: #1d1d1d;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}

/* Responsive */

@media (max-width: 1399.98px) {
    .headerform {
        top: 10%;
    }
}

@media (max-width: 1199.98px) {
    .headerform {
        top: 5%;
    }
}

@media (max-width: 991.98px) {
    .slider-mob {
        display: block;
    }

    .slider-pc {
        display: none;
    }

    .headerform {
        top: .5%;
    }

    .home-bg-area {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .headerform {
        z-index: 0;
        position: initial;
        background: #ffffff;
        border-radius: 0;
        border: 1px solid #cccccc;
    }

    .sub-page-banner h1 {
        font-size: 28px;
    }

    .sub-page-banner .text-content {
        font-size: 15px;
        color: #ffffffc4;
    }

    .main-header .logo-outer .logo img {
        max-width: 85px;
    }

    .header-style-two .nav-toggler button {
        margin: 15px 0px 0px;
    }

    .hero {
        height: auto;
    }

    .hero-video {
        width: 100%;
        transform: none;
        position: unset;
    }

    .team-section .team-member .inner-box {
        min-height: 250px;
    }
}

.director-section {
    background: #1d1d1d;
    padding-top: 4em;
    padding-bottom: 4em;
}

.director-section h2 {
    margin-bottom: 1em;
    color: white;
    font-weight: 600;
}

.director-section h3 {
    color: #d7f1fc;
    font-weight: 600;
    font-size: 1.6em;
    margin-bottom: 10px;
}

.director-section h3 small {
    font-size: 12px;
}

.director-section p {
    color: #dcf4fd;
}

/*  Property */
.property-card {
    box-shadow: 0 8px 16px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 26px;
    background-color: #fff;
}

ul.key-distance li {
    line-height: 2;
    font-weight: 300;
    color: #292929;
    font-size: 15px;
}

ul.key-distance li strong {
    font-weight: 700;
}


.properties-section ul {
    padding: 0;
    margin: 0;
}

.properties-section ul li {
    list-style: none;
    margin-top: 10px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    color: #4f4f4f;
}

.properties-section ul li::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 38%;
    -webkit-transform: translateY(-38%);
    -ms-transform: translateY(-38%);
    transform: translateY(-38%);
    border: 1px dashed;
    border-color: #b2b2b2;
    z-index: 1;
}

.properties-section ul li label {
    padding-right: 10px;
    background-color: white;
    position: relative;
    z-index: 2;
}

.properties-section ul li span {
    float: right;
    padding-left: 10px;
    background-color: white;
    position: relative;
    z-index: 2;
    color: #111;
}

.project-main-details h3 {
    color: #1d1d1d;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 7px;
}

.project-main-details .address p {
    font-size: 16px;
    font-style: italic;
    color: #0a6fa2;
    font-weight: 300;
}

.project-main-details .address i {
    color: #2f2f2f;
    font-size: 21px;
    line-height: normal;
    margin-right: 5px;
}


.property-info-section .project-main-details .rera {
    font-weight: 300;
    color: #787878;
    font-size: 18px;
}

.accordian-button {
    display: inline-block;
    color: #242424;
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0px;
    text-transform: uppercase;
    background: transparent;
}

.accordian-button.collapsed {
    font-weight: 300;
}

.property-info-section span.slash {
    font-weight: 600;
    color: #2e2e2e;
    font-size: 19px;
}

.property-info-section .rera {
    font-style: italic;
    color: #7a7a7a;
    display: inline;
    overflow-wrap: break-word;
    font-size: 21px;
}

@media (max-width: 767.98px) {
    .property-info-section .rera {
        font-size: 18px;
    }
}

.downloads {
    margin-top: 2em;
    margin-bottom: 3em;
}

.download-item {
    padding: 13px;
    text-align: center;
    margin-bottom: 12px;
}

.download-item img {
    width: 100%;
    max-width: 120px;
    display: inline-block;
}

.download-item img.download-icon {
    display: inline;
    max-width: 17px;
}

.download-item span {
    color: #373737;
    font-size: 15px;
    font-weight: 500;
}

/* Sitevisit */
.form-full-container {
    padding: 35px;
    border: 1px solid #c5c5c5;
}

.form-full-container label {
    margin-bottom: 0;
    color: #212121;
    font-size: 14px;
    font-weight: 400;
}

.form-full-container .title-box h2 {
    font-size: 30px;
}

.form-full-container .default-form textarea {
    height: auto;
}

/* Gallery */


.gal-item .image-container {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gal-item .image-container img {
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Misc */
.main-heading-home h1 {
    color: #161616;
    font-weight: 600;
    font-size: 2em;
    border: 3px solid #e9f8ff;
    border-right: none;
    border-left: none;
    padding: 14px 5px;
}

@media (max-width: 767.98px) {
    .main-heading-home h1 {
        font-size: 1.5em;
    }
}

/* New Footer */
.footer-v2 {
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    background-color: #000;
    text-align: center;
}

.footer-v2 h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-v2 p,
.footer-v2 a {
    color: #fff;
    font-size: 15px;
    margin-bottom: 8px;
    text-decoration: none;
    font-weight: 400;
}

.footer-v2 a:hover {
    color: #1e96d3;
    text-decoration: none;
}

.footer-v2 .social a {
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-v2 .social a:hover {
    color: #1e96d3;
}

.footer-v2 hr {
    margin: 20px 0;
    border-color: rgba(255, 255, 255, 0.2);
}


/* Leadership */
.leadership-container ul {
    padding: 30px 20px 10px 20px;
    list-style: none;
    margin: 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    text-align: center;
}

.leadership-container .leader-tab {
    font-weight: 400;
    text-transform: uppercase;
    color: #444;
    border: none;
    padding-bottom: 6px;
}

.leadership-container .leader-tab.active {
    border-bottom: 1px solid #000;
    color: #000;
}

.leader-card .leader-img-wrap {
    overflow: hidden;
}

.leader-card img {
    transition: transform 1s ease;
}

.leader-card:hover img {
    transform: scale(1.1);
}

.leader-name {
    font-size: 1rem;
    font-weight: 700;
    color: #2f2f2f;
}

.leader-role {
    font-weight: 400;
    font-size: 0.85rem;
    color: #8b8b8b;
}

/* Project Highlights Section Styling */
.project-highlights-section {
    background-color: #f9fbfd;
    padding-top: 80px;
    padding-bottom: 80px;
}

.highlights-tabs-nav .nav-pills {
    background-color: #ffffff;
    padding: 6px;
    border-radius: 30px;
    display: inline-flex;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.highlights-tabs-nav .nav-item {
    margin: 0;
}

.highlights-tabs-nav .nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #555555;
    padding: 10px 30px;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    border: none;
    background: transparent;
}

.highlights-tabs-nav .nav-link:hover {
    color: #1e96d3;
    text-decoration: none;
}

.highlights-tabs-nav .nav-link.active {
    background-color: #1e96d3 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(30, 150, 211, 0.3);
}

/* Photo Gallery Items */
.highlight-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.highlight-item .image-container-h {
    height: 280px;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.highlight-item .image-container-h img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.highlight-item:hover .image-container-h img {
    transform: scale(1.08);
}

.highlight-item .hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 150, 211, 0.8);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease;
}

.highlight-item:hover .hover-overlay {
    opacity: 1;
}

.highlight-item .zoom-icon {
    color: #ffffff;
    font-size: 24px;
    border: 2px solid #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.highlight-item:hover .zoom-icon {
    transform: scale(1);
}

/* Video Items */
.video-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 15px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.video-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    display: block;
    outline: none;
    border-radius: 8px;
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    background: #000;
}

@media (max-width: 767.98px) {
    .video-wrapper video {
        max-height: 360px;
    }
}

.video-info .video-title {
    font-size: 16px;
    font-weight: 600;
    color: #222222;
    margin: 12px 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Desktop & Tablet Menu Styling */
.desktop-nav-container {
    width: 100%;
    margin: 0 auto;
    clear: both;
}

.desktop-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    position: relative;
    width: 100%;
}

.desktop-menu > li {
    margin: 0 18px;
    position: relative;
}

/* Adjust margins on large/medium screens for fit */
@media (max-width: 1199px) {
    .desktop-menu > li {
        margin: 0 10px;
    }
}

.desktop-menu > li > a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 0;
    display: block;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

/* Underline hover effect */
.desktop-menu > li > a::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #1e96d3;
    transition: width 0.3s ease;
}

.desktop-menu > li:hover > a {
    color: #1e96d3;
}

.desktop-menu > li:hover > a::after {
    width: 100%;
}

.desktop-menu > li > a .arrow-down {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid;
    border-right: 4px transparent;
    border-left: 4px transparent;
    transition: transform 0.3s ease;
}

.desktop-menu > li:hover > a .arrow-down {
    transform: rotate(180deg);
}

/* Dropdown Container */
.desktop-menu .desktop-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #181818;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    padding: 20px;
    display: flex;
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    border: 1px solid #2e2e2e;
    min-width: 450px;
    text-align: left;
}

/* Single column dropdown modifier */
.desktop-menu .desktop-dropdown.single-column {
    min-width: 220px;
}

.desktop-menu li:hover .desktop-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Dropdown column */
.desktop-menu .dropdown-column {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.desktop-menu .desktop-dropdown.single-column .dropdown-column {
    min-width: 100%;
}

/* Dropdown header */
.desktop-menu .dropdown-header {
    font-size: 11px;
    font-weight: 700;
    color: #8b8b8b;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    border-bottom: 1px solid #2e2e2e;
    padding-bottom: 5px;
    display: block;
}

/* Dropdown links */
.desktop-menu .dropdown-column a {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    border-bottom: none;
    text-transform: capitalize;
    display: block;
}

.desktop-menu .dropdown-column a:hover {
    color: #1e96d3 !important;
    padding-left: 5px;
    text-decoration: none;
}

/* Logo Item in center of menu */
.desktop-menu .logo-item {
    margin: 0 30px;
}

.desktop-menu .logo-item a {
    display: block;
    padding: 0;
}

.desktop-menu .logo-item a::after {
    display: none;
}

.desktop-menu .logo-item img {
    max-height: 65px;
    width: auto;
    transition: all 0.3s ease;
}

.desktop-menu .logo-item .sec-logo {
    display: none;
}

.desktop-menu .logo-item .main-logo {
    display: inline-block;
}

/* Scrolled state header logo sizing adjustment */
.main-header.fixed-header .desktop-menu .logo-item img {
    max-height: 50px;
}

.main-header.fixed-header .desktop-menu .logo-item .sec-logo {
    display: inline-block !important;
}

.main-header.fixed-header .desktop-menu .logo-item .main-logo {
    display: none !important;
}

