.contacts-block {
    padding: 100px 0 50px;
}
.contacts-block .contacts-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
}
.contacts-holder .left-side {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 540px;
    flex-shrink: 0;
}
.contacts-holder .left-side h2 {
    max-width: 475px;
    font-weight: 700;
    line-height: 100%;
    color: var(--gray-black);
    margin-bottom: 40px;
}
.contacts-holder .left-side .contact-info-holder {
    display: flex;
    flex-direction: column;
    padding: 24px 24px 42px 24px;
    border-radius: 40px;
    border: 1px solid var(--gray-2);
    background-color: var(--white-color);
}
.contact-info-holder .buttons-holder {
    display: flex;
    margin-bottom: 12px;
}
.contact-info-holder .buttons-holder button {
    width: 50%;
    padding: 10px 20px;
    border-radius: 24px;
    background-color: transparent;
    font-size: var(--h6-size);
    line-height: 120%;
    font-weight: 700;
    color: var(--gray-black);
    transition: .15s ease-in-out;
}
.contact-info-holder .buttons-holder button.active {
    color: var(--white-color);
    background-color: var(--main-color);
}
.contact-info-holder .corp-name {
    padding: 30px 18px;
    border-radius: 27px;
    background-color: var(--gray-4);
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--gray-black);
    line-height: 100%;
    font-size: var(--h3-size);
}
.contact-info-holder .contact-info {
    display: none;
    flex-direction: column;
    gap: 16px;
}
.contact-info-holder .contact-info.active {
    display: flex;
}
.contacts-holder .contact-info .contact-title {
    display: flex;
    color: var(--gray-1);
}
.contacts-holder .contact-info > div {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: var(--h4-size);
    font-weight: 700;
    line-height: 100%;
    color: var(--gray-black);
}
.contacts-holder .contact-info .contact-title::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 8px;
}
.contacts-holder .contact-info .contact-addr .contact-title::before {
    background-image: url('img/gps.svg');
}
.contacts-holder .contact-info .contact-mail .contact-title::before {
    background-image: url('img/mail-c.svg');
}
.contacts-holder .contact-info .contact-phone .contact-title::before {
    background-image: url('img/phone-c.svg');
}
.contacts-holder .contact-info .contact-time .contact-title::before {
    background-image: url('img/clock.svg');
}
.contacts-holder .right-side {
    width: 100%;
    max-width: 640px;
}
.contacts-holder .right-side .map {
    display: flex;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}
.contacts-holder .right-side iframe {
    height: 100%;
}
