.another-theme {
    display: none;
}

.header-main-image {
    display: none;
}

.requisites {
    padding: 48px 20px 200px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.requisites-title {
    font-size: 64px;
    font-weight: 500;
    line-height: 110%;
    text-transform: lowercase;
    color: var(--color-foreground-primary);
    letter-spacing: -0.3px;
}

.requisites-info {
    display: flex;
    gap: 194.5px;
}

.requisites-info-block {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.info-block-1 {
    width: 425px;
    flex-shrink: 0;
}

.info-block-2, .info-block-3 {
    width: 343px;
}

.requisites-info-block-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.requisites-info-block-mini-title {
    font-size: 16px;
    line-height: 100%;
    text-transform: lowercase;
    color: var(--color-foreground-opacity);
}

.requisites-info-block-mini-t {
    font-size: 24px;
    font-weight: 500;
    line-height: 110%;
    color: var(--color-foreground-primary);
    letter-spacing: -0.3px;
}

/* Адаптация на маленькие экраны (< 1920)*/
/* 1440 */
@media screen and (max-width: 1575px) {
    .requisites-info {
        gap: 144.5px;
    }
}

/* 1280 */
@media screen and (max-width: 1280px) {
    .requisites-info {
        gap: 94.5px;
    }
}

/* 768 */
@media screen and (max-width: 1200px) {
    .requisites {
        padding: 48px 20px 72px;
    }

    .requisites-title {
        font-size: 48px;
        line-height: 110%;
    }

    .requisites-info {
        flex-direction: column;
        gap: 32px;
    }

    .requisites-info-block {
        gap: 32px;
    }

    .info-block-1 {
        width: 54.036vw;
    }

    .info-block-2, .info-block-3 {
        width: 100%;
    }
}

/* 375 */
@media screen and (max-width: 725px) {
    .requisites-title {
        font-size: 32px;
    }

    .info-block-1 {
        width: 100%;
    }

    .requisites-info-block-mini-title {
        font-size: 14px;
        line-height: 100%;
    }

    .requisites-info-block-mini-t {
        font-size: 18px;
        line-height: 110%;
    }

}


