.page-template-default.single-contact {
    h3{
        color: #242424;
    }
    #masthead.row.site-header{
        background-color: transparent;
        .main-menu li a {
            color: white ;
        }
    }
    .row.single-contact{
        margin-top: 0 !important;
    
        section.row.row-hero  {
            min-height: auto;
            height: 505px;
            position: relative;
            img{
                width: 100%;
                height: 100%; 
                object-fit: cover; 
                position: absolute; 
                top: 0;
                left: 0;
            }
            h2{
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: white;
                font-size: clamp(1.25rem, 0.3906rem + 3.125vw, 2.8125rem); /* 20px @ 440px | 45px @ 1240px */
                line-height: 1.42;
                z-index: 2;
            }
        }
        section.row.row-hero::after{
            content: "";
            width: 100%;
            position: absolute;
            height: 100%;
            background: transparent linear-gradient(180deg, #000000 0%, #0E0E0EAA 30%, #1C1C1C0D 77%, #54545400 100%) 0% 0% no-repeat padding-box;
        }
        .city-grid {
            grid-template-columns: minmax(250px, 574px) minmax(230px, 325px);
            column-gap: clamp(20px, -35px + 12.5vw, 120px);
        }
        @media (max-width: 800px) {
            .city-grid {
                grid-template-columns: minmax(250px, 574px);
            }
            .city-info-grid {
                display: flex;
                flex-direction: column;
                .location-image__contact-us{
                    margin-top: 16px;
                }
            }
        }
        .city-image{
            width: 100%;
            max-height: 262px;
            max-width: 574px;
            img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 20px;
            }
        }
        .city-info{
            .secondary-text{
                /* font-size: clamp(1.25rem, 0.9063rem + 1.25vw, 1.875rem); 20px @ 440px | 30px @ 1240px */
           font-size: 1.25rem;
            }
        }

        .location-image__contact-us{
            margin-top: auto;
            max-width: 337px;
            max-height: 66px;
            font-size: 1.25rem;
            /* font-size: clamp(1.25rem, 0.9063rem + 1.25vw, 1.875rem); 20px @ 440px | 30px @ 1240px */
            box-sizing: border-box;
            background-color: transparent;
            border: 2px solid #0069B4;
            line-height: 1;
            border-radius: 62px;
            color: #0069B4;
            display: flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            transition: all 0.2s ease-in-out;
        }
        .location-image__contact-us:hover{
            color: white;
            background-color: #0069B4;
            transition: all 0.2s ease-in-out;

        }
    }
}