@charset "UTF-8";

.contacts {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-bottom: 34px;
}

@media (max-width:900px) {
    .contacts {
        flex-direction: column;
    }
}

.contacts-text {
    width: calc(50% - 12px);
}

@media (max-width:900px) {
    .contacts-text {
        width: 100%;
    }
}

.contacts-text a[href^="tel:"] {
    position: relative;
    color: #232323;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 600;
    transition: all .2s ease-in-out 0s;
    text-decoration: none;
}

@media (max-width:1660px) {
    .contacts-text a[href^="tel:"] {
        padding-left: 36px;
    }
}

.contacts-text a[href^="tel:"]:hover {
    color: #f9222f;
}

.contacts-text a[href^="tel:"]:before {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    left: -36px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../images/phone-icon.svg);
}

@media (max-width:1660px) {
    .contacts-text a[href^="tel:"]:before {
        left: 0;
    }
}

.contacts-text a[href^="mailto:"] {
    position: relative;
    color: #232323;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 600;
    transition: all .2s ease-in-out 0s;
    text-decoration: none;
}

@media (max-width:1660px) {
    .contacts-text a[href^="mailto:"] {
        padding-left: 36px;
    }
}

.contacts-text a[href^="mailto:"]:hover {
    color: #f9222f;
}

.contacts-text a[href^="mailto:"]:before {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    left: -36px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-image: url(../images/email-icon.svg);
}

@media (max-width:1660px) {
    .contacts-text a[href^="mailto:"]:before {
        left: 0;
    }
}

.contacts-map {
    width: calc(50% - 12px);
}

@media (max-width:900px) {
    .contacts-map {
        width: 100%;
    }
}

.contacts-map iframe {
    display: block;
    width: 100%;
    height: 400px;
}

@media (max-width:900px) {
    .contacts-map iframe {
        height: 300px;
    }
}