.sect-contacts .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #D6D6D6;
}

.content-container {
    padding: 20px 6%;
}

.contacts-container {
    width: 38%;
    height: auto;
}

.contacts-list {
    display: flex;
    flex-direction: column;
}

.contacts-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contacts-list-item svg {
    margin-right: 1em;
    width: 30px;
    height: 30px;
}

.contacts-list-item-link {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.4;
    color: #151515;
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid transparent;
    transition: all .2s ease-in;
}

a.contacts-list-item-link:hover {
    color: var(--accent-red);
    border-bottom-color: var(--accent-red);
}

a.contacts-list-item-link:active {
    color: var(--dark-red);
    border-bottom-color: var(--dark-red);
}

.contacts-list-item-link p {
    margin-bottom: 0;
}

iframe {
    display: block;
    width: 60%;
    height: 30em;
    margin: 0 auto;
}

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

    .contacts-container {
        width: 100%;
        margin-bottom: 25px;
    }

    iframe {
        width: 100%;
        height: 35em;
    }
}