
.background_section::after, .background_section::before {
    content: none !important;
}
.addition::before {
    bottom: -20px;
}


.bg_bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: var(--max-width);
    width: calc(100% - 40px);
    margin: 0 auto;
    position: absolute;
    bottom: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
.bg_bg div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.bg_bg .image_in_left img {
    height: 150px;
}
.bg_bg .head_in_right {
    font-size: 7vw;
    font-family: var(--poppins);
    color: rgba(255, 255, 255, 0.591);
    text-transform: uppercase;
    font-weight: 900;
    /* text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.282); */
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}



.theMap {
    height: 450px;
    width: 100%;
    min-width: 300px;
    border-radius: 12px;
    border: 3px solid white;
    margin: 0 auto;
}
.theOffice {
    height: 550px;
    width: 100%;
    min-width: 300px;
    border-radius: 12px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}
.theOffice img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 100%;
       object-position: 50% 100%;
}
.theText {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 20px;
    font-family: var(--poppins);
    color: white;
    background: -o-linear-gradient(transparent, black);
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(black));
    background: linear-gradient(transparent, black);
    padding: 15px 25px;
    letter-spacing: 1px;
}
.theText .head {
    font-family: var(--poppins);
    color: white;
    font-size: 30px;
    letter-spacing: 0px;
}

.theOffice, .theMap {
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.423);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.423);
}
.exoticBtnContainer {
    padding-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.exoticBtn {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px;
    text-decoration: none;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}
.exoticBtn img {
    height: inherit;
}
.exoticBtn .text {
    color: white;
    font-size: 30px;
    font-family: var(--poppins);
    font-weight: 600;
}
.exoticBtn::before, .exoticBtn::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -2;
    top: 0;
    left: 0;
}
.exoticBtn::before {
    background: #a5a5a5;
}
.exoticBtn::after {
    z-index: -1;
    -webkit-transition: 1s ease;
    -o-transition: 1s ease;
    transition: 1s ease;
    left: -100%;
}
.exoticBtn.green::after {
    background: var(--wa-color);
}
.exoticBtn.blue::after {
    background: var(--section-blue);
}
.exoticBtn.orange::after {
    background: var(--orange);
}
.exoticBtn:hover::after {
    left: 0;
}



@media (max-width: 800px) {
    .bg_bg .image_in_left img {
        height: 100px;
    }
    .bg_bg .head_in_right {
        font-size: 6vw;
    }
}

@media (max-width: 700px) {
    .exoticBtn {
        height: 80px;
        gap: 5px;
    }
    .exoticBtn img {
        height: 100%;
    }
    .exoticBtn .text {
        font-size: 16px;
    }
    
}


@media (max-width: 500px) {
    .bg_bg {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}