.contacts-section {
    padding-top: 160px;
    padding-bottom: 200px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*grid-template-rows: repeat(2, 1fr);*/
    gap: 0 30px;
    align-items: center;
}

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


.contacts-info__block {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 65px;
}

.contacts-info__title {
    font-family: YouthMedium, sans-serif;
    font-size: 24px;
    letter-spacing: calc(1em / 20);
    color: #292929;
}

.contacts-info__item {
    font-family: JostRegular, sans-serif;
    font-size: 20px;
    letter-spacing: calc(1em / 20);
    line-height: 27.64px;
    display: flex;
    color: #292929;
}

.contacts-info__item img {
    margin-right: 7px;
}

.contacts-map {
    background: #E5E3DF;
    width: 100%;
    border-radius: 20px;
    height: 674px;
    overflow: hidden;
}

@media screen and (max-width: 1200px) {

}

@media screen and (max-width: 900px) {
    .contacts-section {
        gap: 60px;
        grid-template-columns: repeat(1, 1fr);
    }
    .contacts-info .head-text {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    .contacts-section {
        padding-top: 126px;
        padding-bottom: 100px;
        grid-template-columns: repeat(1, 1fr);
    }

    .contacts-info__block {
        margin-top: 40px;
    }

    .contacts-map {
        height: 343px;
    }

}

@media screen and (max-width: 620px) {

}

