﻿/* CONTACTS-PAGE START */

.contacts {
    padding-top: 56px;
}
.contacts__wrapper {
    display: flex;
    gap:24px;
}
.contacts__info {
    width: calc(33% - 12px);
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap:24px;
}
.contacts__info-phone,
.contacts__info-address,
.contacts__info-email {
    padding-left: 46px;
    position: relative;
}
.contacts__info-phone {
    font-size: 36px;
    font-weight: 600;
    line-height: normal;
}
.contacts__info-phone a {
    text-decoration: none;
    color:#292826;
}

.contacts__info-address {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}
.contacts__info-email {
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
}
.contacts__info-email a{
    color:#292826;
    text-decoration: none;
}
.contacts__info-phone::after,
.contacts__info-address::after,
.contacts__info-email::after {
    content: '';
    display: block;

    position: absolute;
    left:0;
    top:5px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contacts__info-phone::after {
    background-image: url('../../img/contacts_call.svg');
    width: 32px;
    height: 32px;
    top:6px;
}
.contacts__info-address::after {
    background-image: url('../../img/map_icon.svg');
    width: 32px;
    height: 32px;
    top:2px;
}
.contacts__info-email::after {
    background-image: url('../../img/email_icon.svg');
    width: 32px;
    height: 28px;
}
.contacts__info-action {
    margin-top: 8px;
}
.btn {
}
.contacts__btn {
    display: block;
    width: 300px;
}
.contacts__social {
}
.header__social-list {
}
.header__social-link {
}
.contacts__map {
    width: calc(67% - 12px);
    border-radius: 16px;
    overflow: hidden;
}


.rekviz {
}
.rekviz__title {
}
.rekviz__wrapper {
    display: flex;
    gap:24px;
}
.rekviz__info {
    width: calc(67% - 12px);
}
.rekviz__list {
    display: flex;
    flex-direction: column;
    gap:16px;
}
.rekviz__item {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.rekviz__item::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    border-bottom: 1px dashed #000;
    align-self: center;
    margin-top: 16px;
    order: 2;
}
.rekviz__item-name,
.rekviz__item-value {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
.rekviz__item-name {
    order:1;
}
.rekviz__item-value {
    order:3;
    text-align: right;
}
.rekviz__manager {
    width: calc(33% - 12px);
}
.rekviz__manager-card {
    background-color: #292826;
    color:#fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap:16px;
    border-radius: 16px;
    overflow: hidden;
    align-items: center;
}
.rekviz__manager-title {
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}
.rekviz__manager-text {
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}
.rekviz__manager-text a {
    color:#fff;
    text-decoration: none;
}
.rekviz__manager-card hr {
    width: 100%;
    height: 1px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.40);
    margin-top: 8px;
    margin-bottom: 8px;
}
.rekviz__manager-action {
    margin-top: 24px;
}
.rekviz__manager-btn {
    display: block;
    width: 100%;
}

/* .rekviz__cards-wrapper {
    padding-top: 48px;
} */
.rekviz__card-list {
    width: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:24px;
}
.rekviz__card-item {
    width: calc(33.33% - 16px);
    border-radius: 16px;
    border: 1px solid #292826;
    padding: 24px;
    display: flex;
    gap:16px;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.rekviz__card-item-image {
    max-width: 200px;
}
.rekviz__card-item-mail {

}
.rekviz__card-item-mail a{
    text-decoration: none;
    color:#292826;
}
.rekviz__card-item-title,
.rekviz__card-item-text {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;    
}
.rekviz__card-item-title {
    font-weight: 600;
    margin-top: 8px;
}
.rekviz__card-item-text {
}
.rekviz__card-item hr {
    width: 100%;
    height: 1px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.40);
    margin-top: 8px;
    margin-bottom: 8px;
}

/* CONTACTS-PAGE END */

