:root {
    --accent-orange: #C59A4B;
    --text-black: #151515;
    --text-gray: #777777;
    --background-gray: #F5F5F5;
    --alt-gray: #B7B7B7;
    --border-gray: #CACACA;
    --text-white: #ffffff;
    --footer-gray: #BFBFBF;
}

.sect-contacts{
    margin-top: 65px;
}

.contacts-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 50px;
}

.contacts-item {
    width: 22%;
    padding: 28px 2%;
    background: #F9F9F9;
}

.contacts-item svg {
    margin-bottom: 14px;
}

.contacts-item-title {
    font-weight: 400;
    font-size: 1.1875rem;
    line-height: 1.3;
    color: var(--text-black);
    margin-bottom: 10px;
}

.contacts-item-contact {
    font-weight: 400;
    font-size: 1.1875rem;
    line-height: 1.3;
    color: var(--text-gray);
    transition: all .2s ease-in;
}

.contacts-item-contact:hover {
    color: var(--accent-orange);
}

.contacts-item-contact:active {
    color: var(--dark-orange);
}

#map {
    width: 100%;
    height: 50vh;
}

@media (max-width: 768px) {

    .contacts-list {
        flex-wrap: wrap;
    }

    .contacts-item {
        width: 48%;
        margin-bottom: 25px;
    }
}

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