strong {
    font-weight: 500;
}
.contacts-page-elements .left-wrapp,
.contacts-page-elements .right-wrapp {
    display: flex;
}
.gmap-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.gmap-wrapper p {
    margin: 0;
    display: flex;
    width: 100%;
    height: 100%;
}
.gmap-wrapper p iframe {
    width: 100%;
    height: 100%;
}
.addresses-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    border-radius: 8px;
    background: rgba(65, 159, 217, 0.1);
    padding: 0 20px;
}
.addresses-wrapper p, .addresses-wrapper a {
    font-size: 18px;
    margin: 0;
}
.addresses-wrapper p strong {
    margin-right: 10px;
}



.addresses-wrapper>.address-row>.r-col p {
    display: flex;
    margin-block: 16px;
}
.address-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-block: 20px;
}
.r-col {
    flex: 0 0 60%;
}
.l-col{
    flex: 0 0 40%;
}

@media screen and (max-width:575px) {
    .addresses-wrapper {
        padding: 0 10px;
        border-radius: 0
    }
    .l-col, .r-col {
        flex: auto;
    }
    .left-wrapp .address-row:first-child .l-col,
    .left-wrapp .address-row:first-child .r-col {
        flex: 0 0 100%;
    }
    .addresses-wrapper>.address-row>.r-col p {
        margin-block: 10px;
    }
    .addresses-wrapper p, .addresses-wrapper a {
        font-size: 14px;
        margin: 0;
    }
    .gmap-wrapper p iframe {
        width: 100%;
        height: 250px;
    }
}
@media screen and (min-width:576px) and (max-width:767px) {
    .addresses-wrapper>.address-row>.r-col p:first-child {
        margin-top: 0;
    }
    .addresses-wrapper p, 
    .addresses-wrapper a {
        font-size: 16px;
        margin: 0;
    }
}
@media screen and (min-width:768px) and (max-width:991px) {
    .gmap-wrapper p iframe {
        height: 400px;
    }
    .addresses-wrapper>.address-row>.r-col p:first-child {
        margin-top: 0;
    }
}
@media screen and (min-width:991px) and (max-width:1366px) {
    .addresses-wrapper>.address-row>.r-col p:first-child {
        margin-top: 0;
    }
    .l-col {
        flex: 0 0 30%;
    }
    .r-col {
        flex: 0 0 70%;
        padding-left: 15px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}