/* contact */
.contact__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.contact__item {
    max-width: 570px;
}

.contact__name {
    font-size: 36px;
    color: #00bcc9;
    font-weight: 700;
    margin-bottom: 35px;
}

.contact__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.contact__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #00bcc9;
}

.contact__list li picture {
    width: 44px;
    height: 44px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 1px solid #00bcc9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.contact__list li picture img {
    max-width: 20px;
}

.contact__map {
    max-width: 570px;
    width: 100%;
    max-height: 450px;
}

#map {
    width: 100%;
    height: 100%;
}

@media (max-width: 950px) {
    .contact__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .contact__item {
        max-width: 100%;
    }
    .contact__map {
        height: 400px;
    }
}