@media (min-width: 1200px) {
    .container-address {
        max-width: 1110px;
    }
    .custom-address {
        width: 48%;
        float: left;
    }
}

@media (min-width: 768px) {
    .custom-address {
        width: 48%;
        float: left;
    }
}

@media (max-width: 576px) {
    .custom-address {
        width: 100%;
    }
}

.container-address {
    background-color: rgba(0, 8, 29, 0.9);
    box-shadow: 0px 8px 15px 0px rgb(0 0 0 / 10%);
}

.custom-address {
    /*background-color: rgba(0, 8, 29, 1.0);*/
    padding: 10px 20px;
    color: white;
}
.custom-address h4 {
    color: white;
    margin: 0;
}
.custom-address h2 {
    font-size: 44px;
    display: block;
    text-align: center;
    color: white;
    margin: 0.5em auto;
}
.custom-address p {
    margin: 0;
    line-height: 28px;
}
.info-row {
    display: block;
}
.info-row-phone, .info-row-mail {
    position: relative;
    padding: 0 0 0 28px;
}

.info-row-phone::before, .info-row-mail::before {
    position: absolute;
    top: 2px;
    left: 0;
    height:24px;
    width:24px;
    vertical-align: middle;
    display: block;
    content: ' ';
    background-repeat: no-repeat;
    background-size: 100%;
}
.info-row-phone::before {
    background-image: url(../images/contact/phone-blue.png);
}
.info-row-mail::before {
    background-image: url(../images/contact/email-blue.png);
}

