.contact-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 100px;
}

.contact-card {
    width: 100%;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    padding: 50px;
    gap: 34px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-card h4 {
    font-family: "URW Gothic L", sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 32px;
}

.contact-card p {
    color: #8b8f9b;
    font-family: false;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.contact-card .button-yellow {
    display: block;
    padding: 13px 0;
    background-color: var(--primary);
    border-radius: 999px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card .button-yellow:hover {
    color: var(--white);
    background-color: var(--text);
}

.contact-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.contact-main .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 540px;
    gap: 16px;
}

.contact-main .contact-info h3 {
    font-size: 36px;
}

.contact-main .contact-info p {
    font-weight: 400;
    color: #8b8f9b;
    margin-bottom: 30px;
}

.contact-form {
    max-width: 740px;
    width: 100%;
}

.contact-form h3 {
    font-size: 52px;
    margin-bottom: 30px;
}

.contact-form form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.contact-form form input,
.contact-form form textarea {
    display: flex;
    padding: 20px 30px 19px 30px;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #f2f2f2;
    border: none;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

.contact-form form textarea {
    resize: none;
}

.contact-form form .form-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 24px;
}

.contact-form form input::placeholder {
    color: #8a8a8a;
}

/* map */

.addresses-container {
    margin-top: 48px;
    padding: 10px;
    border-radius: 30px;
    background: #f6f3ec;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}
.addresses-list {
    width: 50%;
    padding: 20px 24px;
}
.address {
    position: relative;
    padding: 0 16px;
    transition: 0.3s all;
}

.address:not(:last-of-type) {
    border-bottom: 1px solid #D9D9D9;
}

.address-question {
    padding: 24px 0;
    cursor: pointer;
    transition: 0.3s all;
}
.address-ttl {
    font-size: clamp(16px, 2vw, 20px);
    flex-grow: 1;
}
.address-answer {
    max-height: 0;
    opacity: 0;
    padding: 0 25px 0 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.address-answer.active {
    max-height: 500px;
    font-weight: bold;
    opacity: 1;
    padding: 0 25px 25px 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.address-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.address-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s ease;
}
a.address-detail:hover {
    color: var(--primary);
}
a.address-detail svg path {
    transition: 0.3s ease;
}
a.address-detail:hover svg path {
    fill: var(--primary);
}
.address-answer .help-socials {
    margin-top: 12px;
}
.address-answer .social {
    width: 30px;
    min-width: 30px;
    min-height: 30px;
}
.address-answer .social svg {
    height: 12px;
}
.contact__block {
    width: 50%;
    border-radius: 20px;
}

.card-content p {
    font-family: "URW Gothic L", sans-serif;
}

/* map */
#contact-map {
    width: 100%;
    min-height: 420px;
    border-radius: 20px;
}

/* map */
