/* SEKCJA OFERTY */
#contact .section_content {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 64px;
}

.contacts {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

#contact .contact__box p {
    margin: 0;
}

#contact .contact__box {
    height: 100%;
    text-wrap: nowrap;
    padding-right: 64px;
    background: var(--color2);
    color: var(--color3);
    display: inline-flex;
    align-items: center;
}

#contact .contact__id {
    aspect-ratio: 1/1;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B49E84;
    font-size: 36px;
    font-weight: 900;
}

#contact .contacts_right {
    width: 100%;
    display: flex;
    flex-direction: row;
}

#contact .contacts_right .buttons_box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 64px;
    width: 100%;
}

#contact .contacts_right .button {
    justify-content: space-between;
    display: flex;
    background: var(--color1);
    padding: 32px;
    text-transform: uppercase;
    color: var(--color3);
    letter-spacing: 3px;
    font-weight: 900;
    align-items: center;
}

#contact .contacts_right .contacts_image {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contact .contacts_right .contacts_image img {
    max-height: 200px;
}

#contact .contacts_right .button button, #contact .contacts_right .button a {
    display: flex;
    padding: 16px 32px;
    background: var(--color2);
    color: var(--color3);
    gap: 16px;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    border: none;
}

