#contacts {
    padding-bottom: 30px;
}

#contacts .contacts__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

#contacts .contacts__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contacts .contacts__item {
    border-radius: 15px;
    padding: 40px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contacts .contacts__item:first-child {
    background-color: var(--primary);
}

#contacts .contacts__item:first-child .title {
    color: var(--white);
}

#contacts .contacts__item:first-child .email {
    color: var(--white);
}

#contacts .contacts__item:first-child .email:hover {
    color: var(--green);
}

#contacts .contacts__item:not(:first-child) {
    background-color: var(--white);
    border: 1px solid var(--stroke);
}

#contacts .values__holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contacts .contacts__info a:hover{
    color: var(--green);
}

#contacts .addresses__holder p:nth-child(2) {
    font-weight: 400;
    /* font-size: 20px; */
    font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
    line-height: 140%;
    color: #393932;
    max-width: 490px;
}

#contacts .map__holder {
    border-radius: 15px;
    overflow: hidden;
    min-height: 400px;
    z-index: 1;
}

@media(max-width: 1000px) {
    #contacts .contacts__wrapper {
        grid-template-columns: 1fr;
    }

    #contacts .contacts__item {
        min-height: unset;
    }
}

@media(max-width: 600px)  {
    #contacts .contacts__item {
        padding: 20px;
    }

    #contacts .map__holder {
        min-height: 300px;
    }

    /* #header.solid .logo__holder {
        max-width: 100px;
    } */
}