.contacts .contact {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.contacts .contact h4,
.contacts .contact h6 {
    margin: 0;
}

.contacts .contact .img-cont {
    margin-bottom: 15px;
}

.contacts .contact .img-cont img {
    display: block;
    width: 100%;
}

.contacts .contact .contact-info {
    margin: 15px 0;
}

.contacts .contact .contact-info span {
    font-weight: bold;
    color: #58595b;
}

@media (min-width: 40em) {
    .contacts .contact {
        flex-direction: row;
    }

    .contacts .contact.has-image .img-cont {
        margin-bottom: 0;
        flex-basis: 25%
    }

    .contacts .contact.has-image .content-section {
        padding: 0 30px;
        flex-basis: 75%;
    }

    .contacts .contact .email-cont,
    .contacts .contact .phone-cont,
    .contacts .contact .fax-cont {
        margin-bottom: 5px;
    }
}

.contacts .contact .link-cont {
    margin-top: 5px;
}
.contacts .contact .link-cont a {
    /* border: 2px solid #fff; */
    border-radius: 20px;
    padding: 3px 16px;
    font-family: 'Mundo Sans W01 Medium';
    font-size: 14px;
    line-height: 1;
    color: #fff;
    background-color: #2e4e5e;
    transition: color .2s ease, background-color .35s ease, padding .35s ease;
}

.contacts .contact .link-cont .arrow {
    font-family:'sunrise_internationalregular';
    margin-left: 5px;
    font-size: 20px;
    position: relative;
    top: 2px;
    color: #fff;
    transition: color .2s ease, background-color .35s ease, padding .35s ease;
}
.contacts .contact .link-cont a:hover {
    background-color: #32bbab;
    color: #1d4357;
    text-decoration: none;
}
.contacts .contact .link-cont a:hover .arrow {
    color: #1d4357;
}
@media(min-width: 1025px) {
    .contacts .contact .link-cont a:hover {
        padding-right: 39px;
        padding-left: 39px;

    }
}