.content .text1 {
    font-size: 24px;
}

.content {
    max-width: unset;
    padding: 0;
}

.map {
    text-align: center;
}

.gmap {
    display: inline-block;
}

.address {
    display: inline-block;
    width: 440px;
    margin-left: 40px;
}

.box {
    position: relative;
    text-align: left;
    float: left;
    height: 200px;
    width: 100%;
    color: #878787;
    padding: 30px;
    cursor: pointer;
}
.box.active {
    background-color: #84caeb;
    color: white;
}
.box.active:after {
    position: absolute;
    left: -19px;
    top: 50%;
    background-color: #84caeb;
    width: 20px;
    height: 30px;
    content: "";
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    -webkit-clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.title {
    font-size: 30px;
    font-weight: bold;
}

.line {
    border-bottom: 1px solid #878787;
    margin: 10px 0;
}
.box.active .line {
    border-color: white;
}

.absolute_vertically_center {
    padding: 30px;
}

.text {
    line-height: 1.5;
}

.mobilemap {
    display: none;
}

@media (max-width:1200px) {
    .address {
        margin-left: 0;
    }

    .gmap {
        display: none;
    }

    .address {
        width: 100%;
        max-width: 440px;
    }

    .mobilemap {
        float: left;
        position: relative;
        width: 100%;
        max-width: 440px;
        padding-bottom: 100%;
        margin: 10px 0;
    }

    .mobilemap.active {
        display: block;
    }

    .box.active:after {
        width: 0;
        height: 0;
    }
}