#contacts-page {

}


/*CONTACTS*/

.contacts {
    margin-top: 18px;
}
.contacts__title {
   text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {


}
/*CONTACTS_END*/

/*SHOWROOMS*/
.showrooms {
    margin-top: 10px;
}
.showrooms__title {
    margin-bottom: 22px;
}
.showrooms__list {
    display: flex;
    flex-direction: column;
    gap: 37px;
}
.showrooms .img-wrapper {
    max-width: 280px;
}
.showrooms__item {
    display: flex;
    justify-content: space-between;
    padding: 0 0 50px 0;
    border-bottom: 1px solid var(--dark-color);
    gap: 15px;
}
.showrooms__rating {
    margin-left: auto;
}
.showrooms__item:last-of-type {
    border: unset;
}
.showrooms__subtitle {
    font-size: 24px;
}

.showrooms__address, .showrooms__time,.showrooms__telephone {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    font-weight: lighter;
}
.showrooms__city, .showrooms__time-title, .showrooms__telephone-title {
    font-weight: 500;
}
.showrooms__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showrooms__images {
    display: flex;
    gap: 20px;
}

@media (max-width: 1024px) {
    .showrooms {
        margin-top: 22px;
    }
    .showrooms__title {
        margin-bottom: 13px;
        font-size: 30px;
    }
    .showrooms__item {
        flex-direction: column;
        gap: 30px;
        padding: 0 0 30px 0;
    }
    .showrooms__rating {
        margin-right: auto;
        margin-left: unset;
    }
    .showrooms .img-wrapper {
        max-width: 328px;
    }
    .showrooms__item:last-of-type .showrooms__subtitle {
        font-size: 24px;
    }
    .showrooms__images {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .showrooms__subtitle {
        font-size: 20px;
    }

}

/*SHOWROOMS_END*/


/*requisites*/
.requisites {
    background-color: var(--pastel-color);
    padding: 40px 0 40px 0;
    margin-top: 85px;
}
.requisites__title {
    margin-bottom: 20px;
}
.requisites__list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.requisites__item {
    display: flex;
    gap: 10px;
}
.requisites__item-key {
    min-width: 185px;
    font-size: 16px;
    color: var(--less-dark-color);
}
@media (max-width: 1024px) {
    .requisites {
        padding: 40px 0 40px 0;
    }
    .requisites__title {
        margin-bottom: 18px;
        font-size: 30px;
        font-weight: 400;
    }
    .requisites__subtitle{
        font-size: 19px;
        font-weight: 400;
    }

    .requisites__list {
        gap: 29px;
        margin-top: 18px;
    }
    .requisites__item {
        flex-wrap: wrap;
        gap: 0 5px;
    }
    .requisites__item-key {
        font-weight: 600;
        min-width: unset;
        color: var(--dark-color);
    }
}

/*requisites__END*/


/*FEEDBACK-FORM*/
.feedback-form {
    margin-top: 136px;
}
.feedback-form__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 515px;
    margin: 0 auto;
}
.feedback-form__title {
    margin-bottom: 0;
}
.feedback-form__input {
    border-bottom: 1px solid var(--dark-color);
    padding: 0 10px 0 0;
    width: 100%;
}
.feedback-form .input__wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.feedback-form__text {
    font-size: 14px;
}
.feedback-form__btn {
    width: 100%;
    max-width: unset;
    padding: 12px 10px 12px 10px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .feedback-form {
        margin-top: 100px;
    }
    .feedback-form__title {
        font-size: 30px;
    }
}
/*PARTNER-FORM_END*/


