.contacts-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    margin: 0 auto;
}

.contacts-title{
    display: flex;
    justify-content: center;
    font-family: "Snell Roundhand", sans-serif;
    gap: 5%;
    width: 100%;
    align-items: center;
    margin: 2vmax 0;
    font-size: 1.5vmax;
}

.contacts-info{
    display: flex;
    width: 100%;
    gap: 2vmax;
    border-radius: 20px;
    padding: 2vmax;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 3vmax;
}

.yandex{
    width: 50%;
}

.info{
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
    gap: 2vmax;
    font-size: 1vmax;
}

.img-info{
    display: flex;
    align-items: center;
    gap: 1vmax;
}

.info img{
    width: 1.5vmax;
}

.map-container {
  position: relative;
  width: 100%; /* Контейнер будет растягиваться на всю ширину родителя */
  height: 100%; /* Контейнер будет растягиваться на всю высоту родителя */
}

.map-link {
  color: #eee;
  font-size: 12px;
  position: absolute;
}

.map-address {
  top: 14px;
}

.map-iframe {
  width: 100%; /* Ширина iframe будет равна 100% ширины родителя */
  height: 100%; /* Высота iframe будет равна 100% высоты родителя */
  position: relative;
}

@media (max-width: 992px) {
    .contacts-container{
        width: 80%;
    }

    .contacts-title{
        font-size: 1.7vmax;
    }

    .contacts-info{
        gap: 5vmax;
        flex-direction: column;
    }

    .info{
        width: 100%;
        font-size: 1.4vmax;
        gap: 3vmax;
    }

    .yandex{
        width: 100%;
    }
}