@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-ExtraBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-ExtraBoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-SemiBoldItalic.woff2') format('woff2');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-ExtraLight.woff2') format('woff2');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-LightItalic.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-ExtraLightItalic.woff2') format('woff2');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-BlackItalic.woff2') format('woff2');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-ThinItalic.woff2') format('woff2');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Raleway';
    src: url('/fonts/raleway/dehinted-Raleway-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root {
    --accent-color: #e94a28;
}

* {
    box-sizing: inherit;
    -webkit-tap-highlight-color: transparent;

    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) transparent;
}

*::selection {
    color: #fff;
    background-color: #000;
}

html {
    box-sizing: border-box;
}

body {
    margin: 0;

    font-family: 'Raleway', sans-serif;
    font-variant: lining-nums;
    line-height: 1.5;

    color: #000;
}

svg,
img {
    display: block;
    max-width: 100%;
}

a {
    outline: none;
    color: inherit;
    text-decoration: inherit;
}

button {
    padding: 0;

    display: block;
    width: fit-content;

    font: inherit;
    text-align: start;

    color: inherit;
    background-color: transparent;

    border: none;
    outline: none;

    cursor: pointer;
    user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    font: inherit;
}

ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
}

.button {
    padding-inline: 24px;

    display: block;
    width: fit-content;

    font-weight: 700;
    line-height: 48px;

    border-radius: 9999px;
    transition: color 250ms, background-color 250ms;

    cursor: pointer;
    user-select: none;
}

.header-top {
    height: 85px;
    background-color: #000;
}

.header-top > .container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top__logotype {
    height: 100%;
}

.header-top-contacts__item {
    color: #fff;
    font-weight: 700;
}

.header-body {
    height: 95px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.header-body > .container {
    height: 100%;

    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.header-body__logotype {
    align-content: center;
}

.header-body-navigation {
    display: flex;
    align-items: stretch;
}

.header-body-navigation__item {
    padding-inline: 15px;
    align-content: center;
    transition: color 150ms ease;
}

.header-body-navigation__item:hover,
.header-body-navigation__item:focus-visible {
    color: var(--accent-color);
}

.header-body-navigation-dropdown {
    position: relative;
}

.header-body-navigation-dropdown-button {
    height: 100%;
    padding-inline: 15px;

    display: flex;
    align-items: center;
    column-gap: 10px;

    transition: color 150ms ease;
}

.header-body-navigation-dropdown-button:hover,
.header-body-navigation-dropdown-button:focus-visible {
    color: var(--accent-color);
}

.header-body-navigation-dropdown-button__icon {
    translate: 0 15%;
}

.header-body-navigation-dropdown--expanded .header-body-navigation-dropdown-button__icon {
    rotate: 180deg;
}

.header-body-navigation-dropdown-button__icon > svg {
    width: 10px;
    height: 10px;
}

.header-body-navigation-dropdown-menu {
    position: absolute;
    bottom: 0;
    right: 50%;

    display: flex;
    width: max-content;
    flex-direction: column;

    background-color: #fff;
    border: 1px solid #000;

    translate: 50% calc(100% - 20px);
}

.header-body-navigation-dropdown:not(.header-body-navigation-dropdown--expanded)
> .header-body-navigation-dropdown-menu {
    visibility: hidden;
}

.header-body-navigation-dropdown-menu__item {
    padding: 15px;
    transition: color 150ms ease;
}

.header-body-navigation-dropdown-menu__item:hover,
.header-body-navigation-dropdown-menu__item:focus-visible {
    color: var(--accent-color);
}

.header-body-navigation-dropdown-menu__item:not(:first-child) {
    border-top: 1px solid #000;
}

.header-body__feedback {
    margin-block: auto;
    padding-inline: 25px;

    font-size: 14px;
    font-weight: 700;
    line-height: 50px;

    color: #fff;
    background-color: var(--accent-color);

    border-radius: 9999px;
    transition: color 250ms, background-color 250ms;
}

.header-body__feedback:hover,
.header-body__feedback:focus-visible {
    color: #fff;
    background-color: #000;
}

.footer {
    height: 85px;

    color: #fff;
    background-color: #000;
}

.footer > .container {
    height: 100%;
    align-content: center;
}

.lead {
    display: flex;
    height: 250px;
    padding-top: 30px;
}

.lead__title {
    align-content: center;

    font-size: 53px;
    font-weight: 800;
}

.lead__image {
    margin-left: auto;
    height: 100%;
}

.brands {
    padding-block: 100px;
    background-size: cover;
    background-position: center;
}

.brands-body {
    padding-block: 50px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 1px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.brands__title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
}

.brands__description {
    margin-top: 10px;

    padding-inline: 20px;
    font-weight: 600;

    text-align: center;
    text-wrap: pretty;
}

.brands-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 30px 60px;
    margin-top: 50px;
}

.brands__item {
    max-width: 150px;
    max-height: 100px;
}

.feedback {
    padding: 40px;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.feedback__title {
    font-size: 36px;
    font-weight: 900;
}

.site-contacts__title {
    font-size: 18px;
    font-weight: 700;
    text-wrap: balance;
}

.site-contacts__divider {
    margin-top: 30px;

    width: 100%;
    height: 1px;

    background-color: currentColor;
}

.site-contacts-body {
    display: flex;
    flex-direction: column;

    row-gap: 10px;
    margin-top: 30px;
}

.site-contacts-body-item {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.site-contacts-body-item__icon {
    flex-shrink: 0;
    color: var(--accent-color);
}

.site-contacts-body-item__icon > svg {
    width: 20px;
    height: 20px;
}

.site-contacts-body-item__text {
    font-weight: 600;
    line-height: 1;
}

.site-contacts__button {
    margin-top: 30px;

    color: #fff;
    background-color: var(--accent-color);
}

.site-contacts__button:hover,
.site-contacts__button:focus-visible {
    color: #fff;
    background-color: #000;
}

@media (min-width: 1280px) {
    .header-body__feedback {
        display: none;
    }
}

@media (max-width: 1279px) {
    .container {
        padding-inline: 20px;
    }

    .header-top {
        display: none;
    }

    .header-body {
        height: 90px;
    }

    .header-body-navigation {
        display: none;
    }
}
