.contacts-loop {
    margin-top: 40px;
    margin-bottom: 60px;
    flex-direction: column;
    display: flex;
    gap: 30px;
}
.contacts-item {
    background: #F9F9F9;
    border: 1px solid #EAEAEA;
    box-sizing: border-box;
    padding: 30px 18px;
    width: 100%;
}
.contacts-item hr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 4px;
    margin-bottom: 12px;
    height: 0px;
}
.contacts-map {
    position: relative;
    padding-bottom: 100%;
}
.contacts-map iframe {
    position: absolute;
    height: 100%;
    width: 100%;
}
.contacts-city {
    margin-bottom: 45px;
    font-family: var(--raleway-family);
    font-weight: bold;
    font-size: 18px;
    line-height: 21px;
    text-transform: uppercase;
    color: #222222;
}
.contacts-phone {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    color: #000000;
    display: block;
    margin-bottom: 5px;
}
.contacts-mail {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    opacity: 0.6;
    color: black;
}
.contacts-address {
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    opacity: 0.6;
    color: black;
    margin-bottom: 11px;
}
@media screen and (max-width: 992px) {
    .contacts-loop {
        flex-direction: column;
    }
    .contacts-item {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .col8 {
        width: calc(100% - 28px);
    }
    .col4 {
        width: calc(100% - 28px);
    }
}
@media screen and (max-width: 560px) {
    .contacts-item .col6 {
        width: calc(100% - 28px);
    }
    .contacts-item .wrapper {
        gap: 20px;
    }
}
