body {
    background: #f4efe8;
    color: #1f2f46;
    font-family: Arial, sans-serif;
    margin: 0;
}

* {
    box-sizing: border-box;
}

.amenities {
    padding: 100px 8%;
}

.amenities-list {
    background: #ffffff;
    padding: 100px 8%;
}

.amenities-list-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin: 50px auto 0;
    max-width: 1100px;
}

.amenities-list-item {
    background: #f7f3ed;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(12, 24, 40, 0.08);
    color: #223654;
    display: flex;
    font-size: 18px;
    font-weight: 700;
    justify-content: center;
    min-height: 84px;
    padding: 22px;
    text-align: center;
    align-items: center;
    transition: all 0.25s ease;
}

.amenities-list-item:hover {
    box-shadow: 0 18px 40px rgba(12, 24, 40, 0.14);
    transform: translateY(-4px);
}

.amenity-category {
    margin-top: 70px;
}

.amenity-category h3 {
    color: #223654;
    font-size: 2rem;
    margin: 0 0 30px;
    text-align: center;
}

.amenity-content {
    align-self: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 20px;
}

.amenity-content h3 {
    color: #223654;
    font-size: 36px;
    margin: 0 0 24px;
}

.amenity-content p {
    color: #4d5f7c;
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
}

.amenity-row {
    align-items: center;
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr 1fr;
    margin-top: 60px;
}

.amenity-row-reverse {
    grid-template-columns: 1fr 1fr;
}

.amenity-image img {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: block;
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.apply-button {
    background: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 999px;
    color: #223654;
    font-weight: 800;
    padding: 14px 26px;
    text-decoration: none;
}

.apply-button:hover {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: auto;
}

.carousel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .8s ease,
        visibility .8s ease;

    border-radius: inherit;
}

.carousel-image.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.carousel-arrow {
    background: transparent;
    border: none;
    color: #223654;
    cursor: pointer;
    font-size: 52px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-prev {
    left: 22px;
}

.carousel-next {
    right: 22px;
}

.contact-actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 32px;
}

.contact-card {
    background: #223654;
    border-radius: 28px;
    color: #ffffff;
    margin: 0 auto;
    max-width: 980px;
    padding: 70px;
    text-align: center;
}

.contact-card h2 {
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    margin: 0 0 24px;
}

.contact-card p {
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

.contact-details {
    margin-top: 40px;
}

.contact-section {
    background: #f7f3ed;
    padding: 110px 8%;
}

.directions-section {
    background: #ffffff;
    padding: 100px 8%;
}

.direction-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    margin: 50px auto 0;
    max-width: 1200px;
}

.direction-card {
    background: #f7f3ed;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(12, 24, 40, 0.1);
    padding: 34px;
    text-align: center;
    transition: all 0.25s ease;
}

.direction-card:hover {
    box-shadow: 0 28px 60px rgba(12, 24, 40, 0.15);
    transform: translateY(-6px);
}

.direction-card h3 {
    color: #223654;
    font-size: 24px;
    margin: 0 0 10px;
}

.direction-card p {
    color: #536174;
    font-size: 18px;
    margin: 0;
}

.features {
    background: #ffffff;
    padding: 80px 8% 150px;
}

.feature-card {
    background: #f7f3ed;
    border-radius: 18px;
    box-shadow: 0 24px 70px rgba(12, 24, 40, 0.12);
    display: flex;
    flex-direction: column;
    padding: 42px;
    transition: box-shadow 0.3s ease;
    margin: 0 auto;
    max-width: 1100px;
    width: 100%;
}

.feature-card-content {
    margin: 0 auto;
    max-width: 700px;
    text-align: left;
}

.feature-card h3 {
    color: #223654;
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 18px;
}

.feature-card h3,
.feature-card p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}

.feature-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.feature-card img {
    border-radius: 14px;
    display: block;
    height: 300px;
    margin: 0 auto 32px;
    object-fit: cover;
    width: 480px;
}

.feature-card p {
    color: #536174;
    flex-grow: 1;
    font-size: 18px;
    line-height: 1.7;
    margin: 0;
}

.feature-grid {
    display: grid;
    gap: 32px;
    margin: 60px auto 0;
    max-width: 1100px;
}

.floorplans {
    background: #ffffff;
    padding: 110px 8%;
}

.floorplan-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
}

.floorplan-card h3 {
    color: #223654;
    font-size: 28px;
    margin: 24px 0 14px;
}

.floorplan-card:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.floorplan-card img {
    background: #ffffff;
    border-radius: 14px;
    height: 280px;
    object-fit: contain;
    width: 100%;
}

.floorplan-card p {
    color: #4d5f7c;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px;
}

.floorplan-carousel {
    align-items: center;
    background: #ffffff;
    border: 1px solid #d8d0c4;
    border-radius: 18px;
    display: flex;
    height: 300px;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.floorplan-cta {
    background: #f7f3ed;
    border-radius: 24px;
    margin: 70px auto 0;
    max-width: 900px;
    padding: 50px;
    text-align: center;
}

.floorplan-cta h3 {
    color: #223654;
    font-size: 34px;
    margin: 0 0 18px;
}

.floorplan-cta p {
    color: #536174;
    font-size: 19px;
    line-height: 1.7;
    margin: 0;
}

.floorplan-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    max-width: 1000px;
    margin: 60px auto 0;
}

.floorplan-lightbox {
    cursor: zoom-in;
}

.floorplan-options {
    display: flex;
    gap: 10px;
    margin: 18px 0;
    flex-wrap: wrap;
}

.floorplan-option {
    background: #f7f3ed;
    border: 1px solid #d8d0c4;
    border-radius: 999px;
    color: #223654;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 10px 16px;
}

.floorplan-option.active {
    background: #223654;
    border-color: #223654;
    color: #ffffff;
}

.floorplan-price {
    color: #223654;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 14px;
}

.floorplan-specs {
    color: #536174;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 12px;
}

.form-row {
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr 1fr;
}

.gallery-grid img,
.amenity-image img,
.feature-card,
.floorplan-card,
.site-button,
.header-button,
.apply-button,
.primary-button,
.secondary-button {
    transition: all 0.25s ease;
}

.gallery-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
}

.gallery-grid img {
    border-radius: 18px;
    height: 280px;
    object-fit: cover;
    width: 100%;
}

.gallery-grid img:hover,
.amenity-image img:hover {
    transform: scale(1.02);
}

.gallery-section {
    background: #f7f3ed;
    padding: 110px 8%;
}

.gallery-section-white {
    background: #ffffff;
}

/* Navigation arrows */
.gbtn {
    color: #444 !important;
}

/* Lighten the background */
.goverlay {
    background: rgba(255,255,255,.97) !important;
}

/* Image container */
.gslide-image {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

/* Make the image much larger */
.gslide-image img {
    max-width: 90vw !important;
    max-height: 90vh !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.gslide-description {
    display: block !important;
    padding: 12px 20px;
    text-align: center;
}

.gslide-title {
    color: #223654;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.header-button {
    background: #ffffff;
    border-radius: 999px;
    color: #223654;
    font-weight: 700;
    padding: 14px 24px;
    text-decoration: none;
}

.hero {
    align-items: center;
    background-image: linear-gradient(rgba(13, 31, 52, 0.35), rgba(13, 31, 52, 0.45)), url('../images/hero-pond-property.png');
    background-position: center;
    background-size: cover;
    display: flex;
    min-height: 100vh;
    padding: 140px 8%;
}

.hero-amenities {
    background-image: linear-gradient(rgba(13, 31, 52, 0.35), rgba(13, 31, 52, 0.45)), url('../images/poolreflection1.jpg');
}

.hero-buttons {
    display: flex;
    gap: 18px;
}

.hero-contact {
    min-height: 75vh;
    background-position: center;
    background-image: linear-gradient(rgba(13, 31, 52, 0.35), rgba(13, 31, 52, 0.45)), url('../images/herosizedcontactus.png');
}

.hero-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 28px;
    max-width: 600px;
    padding: 42px;
}

.hero-content h1 {
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1;
    margin: 0 0 24px;
}

.hero-directions {
    background-image: linear-gradient(rgba(13, 31, 52, 0.35), rgba(13, 31, 52, 0.45)), url('../images/herodirectionspage.png');
    min-height: 75vh;
    background-position: center;
}

.hero-floorplans {
    background-image:
        linear-gradient(rgba(13, 31, 52, 0.35), rgba(13, 31, 52, 0.45)),
        url('../images/IMG_0062.jpg');
}

.hero-gallery {
    background-image:
        linear-gradient(rgba(13, 31, 52, 0.35), rgba(13, 31, 52, 0.45)),
        url('../images/colonial-crest-apartments-muncie-in-sunset-skies.jpg');
}

.hero-home {
    background-image: linear-gradient(rgba(13, 31, 52, 0.35), rgba(13, 31, 52, 0.45)), url('../images/Remodel Kitchen 1.png');
}

.hero-special {
    display: inline-block;
    margin: 32px 0;
    padding: 20px 28px;
    background: rgba(255,255,255,.92);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
    text-align: left;
}

.hero-special h3 {
    color: #223654;
    font-size: 1.8rem;
    margin: 0 0 6px;
}

.hero-special span {
    color: #666;
    font-size: .95rem;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 50px auto 0;
    max-width: 860px;
}

.lead-form .site-button {
    align-self: center;
    min-width: 220px;
    text-align: center;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    border: 1px solid #d8d0c4;
    border-radius: 14px;
    color: #223654;
    font: inherit;
    padding: 16px 18px;
    width: 100%;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: #223654;
    outline: none;
}

.lead-form textarea {
    min-height: 150px;
    resize: vertical;
}

.lead-form-section {
    background: #ffffff;
    padding: 110px 8%;
}

.leasing-office {
    background: #f7f3ed;
    padding: 90px 8%;
}

.lightbox {
    align-items: center;
    background: rgba(0,0,0,.85);
    display: none;
    height: 100%;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
}

.lightbox img {
    border-radius: 8px;
    max-height: 90%;
    max-width: 90%;
}

.lightbox-close {
    color: #fff;
    cursor: pointer;
    font-size: 42px;
    position: absolute;
    right: 30px;
    top: 20px;
}

.listing-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.listing-links {
    background: #ffffff;
    padding: 90px 8%;
    text-align: center;
}

.logo img {
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
    height: 80px;
    max-height: 92px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.map-section {
    background: #f7f3ed;
    padding: 100px 8%;
}

.map-wrapper {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(12, 24, 40, 0.12);
    height: 480px;
    margin: 50px auto 0;
    max-width: 1200px;
    overflow: hidden;
}

.map-wrapper iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

.menu-toggle {
    background: transparent;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    display: none;
    font-size: 34px;
    line-height: 1;
    padding: 8px;
}

.nearby-section {
    background: white;
    padding: 100px 8%;
}

.nearby-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 50px;
}

.nearby-card {
    background: #f7f3ed;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(12,24,40,.08);
    padding: 34px;
    transition: .25s;
}

.nearby-card:hover {
    transform: translateY(-6px);
}

.nearby-card h3 {
    color: #223654;
    margin-bottom: 12px;
}

.nearby-card p {
    color: #536174;
    line-height: 1.7;
}

.office-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
    margin: 50px auto 0;
    max-width: 1200px;
}

.office-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(12, 24, 40, 0.08);
    padding: 30px;
    text-align: center;
}

.office-item h3 {
    color: #223654;
    font-size: 24px;
    margin: 0 0 16px;
}

.office-item p {
    color: #4d5f7c;
    line-height: 1.7;
    margin: 0;
}

.office-item a {
    color: #223654;
    font-weight: 700;
    text-decoration: none;
}

.office-item:hover {
    box-shadow: 0 20px 50px rgba(12, 24, 40, 0.12);
    transform: translateY(-4px);
    transition: all 0.25s ease;
}

.primary-button,
.secondary-button {
    border-radius: 999px;
    display: inline-block;
    font-weight: 700;
    padding: 16px 26px;
    text-decoration: none;
}

.primary-button {
    background: #223654;
    color: #ffffff;
}

.secondary-button {
    background: #ffffff;
    color: #223654;
}

.section-intro {
    margin: 0 auto 64px;
    max-width: 780px;
    text-align: center;
}

.section-intro h2 {
    color: #223654;
    font-size: clamp(30px, 3.5vw, 48px);
    line-height: 1.05;
    margin: 0 0 22px;
}

.section-intro p {
    color: #536174;
    font-size: 20px;
    line-height: 1.7;
    margin: 0;
}

.site-button {
    align-self: flex-start;
    background: ffffff;
    border: 2px solid #1f355d;
    border-radius: 999px;
    color: #1f355d;
    display: inline-block;
    font-weight: 700;
    padding: 14px 24px;
    text-decoration: none;
    transition: .3s ease;
}
 
.site-button:hover,
.header-button:hover,
.apply-button:hover,
.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
    background: #1f355d;
    color: #ffffff;
}

.site-button-light {
    background: #ffffff;
    border: 2px solid #223654;
    border-radius: 999px;
    color: #223654;
    display: inline-block;
    font-weight: 700;
    padding: 14px 24px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.site-footer {
    background: #223654;
    color: #ffffff;
    padding: 36px 8%;
    text-align: center;
}

.site-footer p {
    margin: 6px 0;
}

.site-header {
    align-items: center;
    background: rgba(34, 54, 84, 0.96);
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 14px 8%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.special-banner {
    background: #f7f3ed;
    padding: 120px 8% 36px;
    text-align: center;
}

.special-banner-content {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(12, 24, 40, 0.12);
    margin: 0 auto;
    max-width: 980px;
    padding: 34px;
}

.special-banner h2 {
    color: #223654;
    font-size: clamp(28px, 4vw, 44px);
    margin: 8px 0 12px;
}

.special-banner p {
    color: #536174;
    font-size: 18px;
    margin: 0 0 22px;
}

.special-label {
    color: #c57c00;
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.tour-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto 32px;
}

.tour-option {
    background: #f7f3ed;
    border: 1px solid #d8d0c4;
    border-radius: 999px;
    color: #223654;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    padding: 12px 18px;
}

.tour-option.active {
    background: #223654;
    border-color: #223654;
    color: #ffffff;
}

.tour-current {
    margin: 0 auto 36px;
    text-align: center;
}

.tour-current p {
    color: #536174;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.tour-current h3 {
    color: #223654;
    font-size: 32px;
    margin: 0 0 8px;
}

.tour-current span {
    color: #536174;
    font-size: 18px;
}

.why-choose {
    background: #ffffff;
    padding: 110px 8%;
}

.why-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 60px;
}

.why-card {
    background: #f7f3ed;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 40px;
    text-align: center;
    transition: all .3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0,0,0,.15);
}

.why-card h3 {
    color: #223654;
    font-size: 28px;
    margin: 0 0 18px;
}

.why-card img {
    border-radius: 14px;
    display: block;
    height: 260px;
    margin-bottom: 24px;
    object-fit: cover;
    object-position: center 60%;
    width: 100%;
}

.why-card p {
    color: #536174;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.why-icon {
    align-items: center;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    font-size: 32px;
    height: 74px;
    justify-content: center;
    margin: 0 auto 24px;
    width: 74px;
}

.virtual-tour-section {
    background: #ffffff;
    padding: 100px 8%;
}

.virtual-tour-wrapper {
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(12, 24, 40, 0.12);
    height: 620px;
    margin: 50px auto 0;
    max-width: 1200px;
    overflow: hidden;
}

.virtual-tour-wrapper iframe {
    border: 0;
    height: 100%;
    width: 100%;
}

@media (max-width: 900px) {
    .feature-card-offset {
        transform: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    
     html,
    body {
        max-width: 100%;
        overflow-x: hidden;
        width: 100%;
    }

    .amenities,
    .contact-section,
    .features,
    .floorplans,
    .gallery-section,
    .lead-form-section,
    .leasing-office,
    .listing-links {
        padding-left: 24px;
        padding-right: 24px;
    }

    .amenities-list-grid,
    .direction-grid,
    .floorplan-grid,
    .gallery-grid,
    .nearby-grid,
    .office-grid,
    .why-grid {
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
    }

    .amenity-row,
    .amenity-row-reverse {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .amenity-content,
    .amenity-image {
        min-width: 0;
        width: 100%;
    }

    .contact-actions,
    .hero-buttons,
    .listing-buttons {
        align-items: center;
        flex-direction: column;
    }

    .feature-card {
        max-width: 100%;
        padding: 24px;
        width: 100%;
    }

    .feature-card img {
        height: auto;
        max-width: 100%;
        width: 100%;
    }

    .floorplan-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .floorplan-carousel {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .floorplans {
        padding: 80px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-grid a,
    .gallery-grid img {
        display: block;
        max-width: 100%;
        width: 100%;
    }

    .gslide-image img {
        height: auto !important;
        max-height: 85vh !important;
        max-width: 92vw !important;
        min-width: 0 !important;
        width: auto !important;
    }

    .header-button {
    display: none;
}



    .main-nav {
        background: #223654;
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 18px 24px 24px;
        position: absolute;
        right: 0;
        top: 100%;
        width: 100%;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        border-bottom: 1px solid rgba(255,255,255,.15);
        padding: 14px 0;
        text-align: center;
    }
    
    .menu-toggle {
    display: block !important;
    flex-shrink: 0;
    margin-left: auto;
    }
    
   

    .main-nav {
    background: #223654;
    display: none !important;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 18px 24px 24px;
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    }

    .main-nav.open {
    display: flex !important;
    }

    .hero {
        min-height: auto;
        padding: 120px 24px 60px;
    }

    .hero-content {
        max-width: 100%;
        padding: 28px;
        width: 100%;
    }

    .lead-form {
        max-width: 100%;
        width: 100%;
    }

    .site-header {
    gap: 12px;
    padding: 14px 16px;
}

.logo img {
    height: 58px;
    max-width: 120px;
}

.menu-toggle {
    display: block !important;
    flex-shrink: 0;
    margin-left: auto;
}

.site-header > .apply-button {
    display: inline-block;
    flex-shrink: 0;
    font-size: 14px;
    padding: 10px 14px;
}
    
    .site-header .logo {
    order: 1;
}

.site-header .menu-toggle {
    align-items: center;
    display: flex !important;
    flex-shrink: 0;
    height: 44px;
    justify-content: center;
    margin-left: auto;
    opacity: 1;
    order: 2;
    position: relative;
    visibility: visible;
    width: 44px;
    z-index: 1001;
}

.site-header > .apply-button {
    order: 3;
}
    
}

@media (max-width: 1024px) {
    .menu-toggle {
        align-items: center !important;
        background: rgba(255,255,255,.15) !important;
        border: 1px solid rgba(255,255,255,.4) !important;
        border-radius: 8px !important;
        color: #ffffff !important;
        display: flex !important;
        flex-shrink: 0 !important;
        font-size: 30px !important;
        height: 46px !important;
        justify-content: center !important;
        margin: 0 !important;
        opacity: 1 !important;
        padding: 0 !important;
        position: relative !important;
        visibility: visible !important;
        width: 46px !important;
        z-index: 9999 !important;
    }
     .site-header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        padding: 12px 16px;
    }

    .site-header .logo {
        justify-self: start;
    }

    .site-header .menu-toggle {
        display: flex !important;
        justify-self: center;
        margin: 0 !important;
        visibility: visible !important;
    }

    .site-header > .apply-button {
        justify-self: end;
    }
}

