.location_map_section {
    & .map_outer {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10rem;
        @media (max-width: 767px) {
            grid-template-columns: 1fr;
            gap: 4rem;
        }
    }
    & .address_outer {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    & .address_inner {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        gap: 1rem;
        & .address_text {
            font-weight: 600;
            font-size: 18px;
            color: #1D1D50;
        }
    }
    & .left_side {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    & .address_text {
        font-size: 1.5rem;
        font-weight: 600;
    }
    & hr {
        border: 1px solid #E0E0E0;
        display: block;
        margin: 4rem 0;
    }
    & .right_side {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
        
        & iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
    }
    a.map_phone {
        display: flex;
        align-items: center;
        text-decoration: none;
        gap: 1rem;
        & span {
            font-weight: 600;
            font-size: 18px;
            color: #1D1D50;
        }
        & .icon {
            width: 44px;
            height: 44px;
        }
    }
    & .title_section {
        h3 {
            font-weight: 600;
            font-size: 40px;
            line-height: 42px;
            color: #1D1D50;
        }
    }
}