/* no-scroll */

.no-scroll {
    height: 100%;

    overflow: hidden;
}

/* container */

.container {
    margin-left: auto;
    margin-right: auto;

    max-width: 1728px;
    width: 100%;
}

/* page */

.page {
    padding-top: 1rem;
}

/* main */

.main {
    margin-top: var(--header__height);
    margin-bottom: 32px;

    display: flex;
    flex-direction: column;
    row-gap: 6.25rem;
}

.main__box-1 {
    display: flex;
    flex-direction: column;

    row-gap: 1.5em;
}

.main__box-11 {
    display: flex;
    flex-direction: column;

    row-gap: 50px;
}

.hidden {
    visibility: hidden;
    opacity: 0;
}

/* user */
/* basket */

.user,
.basket {
    width: 3rem;
    height: 3rem;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--background-color);
    box-shadow: var(--box-shadow);

    border-radius: var(--border-radius_s);
    transition: box-shadow 0.5s ease-in-out;
}

.user:hover,
.basket:hover {
    box-shadow: var(--box-shadow_active);
}

/* .user:hover .user__icon,
.basket:hover .basket__icon {
    fill: rgba(0, 0, 0, .5);
} */

/* .user__icon,
.basket__icon {
    transition: fill .5s ease-in-out;
} */

/* where-are-we */

.where-are-we {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;

    font-weight: 500;

    color: var(--accent-color);
}

.where-are-we span {
    white-space: nowrap;

    transition: color 0.5s ease-in-out;
}

.where-are-we:hover span {
    color: rgba(10, 78, 183, 0.75);
}

.where-are-we:hover .where-are-we__icon {
    fill: rgba(10, 78, 183, 0.75);
}

.where-are-we__icon {
    fill: var(--accent-color);

    transition: fill 0.5s ease-in-out;
}

/* where-are-we menu-content */

.menu-content .where-are-we {
    color: #fff;
}

.menu-content .where-are-we__icon {
    fill: #fff;
}

/* phone-number */

.phone-number {
    font-weight: 600;

    white-space: nowrap;

    transition: opacity 0.5s ease-in-out;
}

.phone-number:hover {
    opacity: 0.75;
}

/* phone-number menu-content */

.menu-content .phone-number {
    color: #fff;
}

/* icon */

.icon.icon_xs {
    min-width: 1rem;
    width: 1rem;
    min-height: 1rem;
    height: 1rem;
}

.icon.icon_s {
    min-width: 1.25rem;
    width: 1.25rem;
    min-height: 1.25rem;
    height: 1.25rem;
}

.icon.icon_m {
    min-width: calc(20px + (24 - 20) * (100vw - 320px) / (1920 - 320));
    width: calc(20px + (24 - 20) * (100vw - 320px) / (1920 - 320));
    min-height: calc(20px + (24 - 20) * (100vw - 320px) / (1920 - 320));
    height: calc(20px + (24 - 20) * (100vw - 320px) / (1920 - 320));
    /* min-width: 1.5rem;
    width: 1.5rem;
    min-height: 1.5rem;
    height: 1.5rem; */
}

.icon.icon_l {
    min-width: 2rem;
    width: 2rem;
    min-height: 2rem;
    height: 2rem;
}

.icon.icon_xl {
    min-width: 4rem;
    width: 4rem;
    min-height: 4rem;
    height: 4rem;
}

/* title */

.title {
    font-weight: 600;

    text-transform: uppercase;
}

/* h */

h2 {
    /* font-size: var(--h2_font-size); */
    font-size: calc(24px + (36 - 24) * (100vw - 320px) / (1920 - 320));
}

div {
    transition: color 0.25s ease-in-out;
}

.img {
    width: 128px;
    height: 128px;
}

.brand-catalog__banner-img {
    width: 100%;
    height: 256px;

    border-radius: 12px;
}