.service_map_content_wrapper,
.service_map_content_wrapper .service_content_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service_section h1.title_align_center,
.service_section h2.title_align_center {
    text-align: center;
}
.service_section h1.title_align_left,
.service_section h2.title_align_left {
    text-align: left;
}

.map_btn_area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.map_btn_area .map_btn {    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    min-width: 233px;
    font-size: 19px;
    line-height: 28px;
    text-decoration: none;
    font-family: "Lato", sans-serif;
    font-weight: 800;
    background: #FFFFFF;
    border: 1px solid #2A5CA8;
    border-radius: 47px;
    color: #20407E;    
    transition: all 0.5s ease;
    text-transform: capitalize;
    text-wrap: balance;
    text-align: center;
    height: fit-content;
}
.map_btn_area .map_btn:hover {
    background: #2A5CA8;
    border: 1px solid #2A5CA8;
    color: #FFFFFF;   
}

.popup_layout {
    position: fixed;
    z-index: 9999;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 100%;
    background: #052B5299;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_layout.open {
    right: 0;
}
.popup_inner {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    width: 60%;
    max-width: 100%;
    background: #fff;
    min-height: 500px;
    /*height: 100vh;*/
    overflow-y: scroll;
    margin: auto;
}
#ochd_popup_close {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
}
.popup_layout_wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup_loader {
    display: inline-block;
    width: 3em;
    height: 3em;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
    border: 0.4em dotted #4180BC;
    border-radius: 50%;
    -webkit-animation: 1s popup_loader linear infinite;
    animation: 1s popup_loader linear infinite;
}
.popup_layout_wrap.d-none {
    display: none !important;
}
#popup_content {
    /*padding: 25px;*/
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
}
.acf-map {
    width: 100%;
    height: 500px;
}
.popup_title {
    font-size: 32px;
    line-height: 26px;
    color: /*#132048*/#2A5CA8;
    font-family: "Lato", sans-serif;
    font-weight: 700;
}
.popup_desc {
    font-size: 19px;
    line-height: 25px;
    color: /*#132048*/#20407E;
    font-family: "Lato", sans-serif;
    font-weight: 400;
}


.embed-container iframe {
    width: 100%;
}


@-webkit-keyframes popup_loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
  
@keyframes popup_loader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (max-width: 1200px) {
    .map_btn_area {
        grid-template-columns: repeat(3, 1fr);
    }
    .popup_inner {
        width: 70%;
    }
    .acf-map {
        height: 420px;
    }
}
@media (min-width: 901px) {
    .d-cust-none {
        display: none !important;
    }
}
@media (max-width: 900px) {
    .map_btn_area {
        grid-template-columns: repeat(2, 1fr);
    }
    .popup_inner {
        width: 80%;
    }
    .acf-map {
        height: 350px;
    }
    .map_btn_area .map_btn.map_hide {
        display: none;
    }
    .d-cust-none {
        margin-top: 50px !important;
    }
}

@media (max-width: 600px) {
    .map_btn_area {
        grid-template-columns: 1fr;
    }
    .popup_inner {
        width: 90%;
    }
    .acf-map {
        height: 300px;
    }
}