:root {
    --black: #080404;
    --black-alt: #1C1C1C;
    --yellow: #F3C438;
    --yellow-alt: #FABD0D;
    --yellow-hero: #FBBA00;
    --white: #fff;
    --non-active: #C9C9C9;
    --light-grey: #E1E1E1;
    --grey: #505050;
    --border: #f5f5f5;
    --border-light-grey: #cfcdcd;
    --main-size: 19px;
    --alumni: "Alumni Sans"
}


/* Указываем box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Убираем внутренние отступы */
ul,
ol {
    padding: 0;
}

.btn {
    border-radius: 4000px;
}

.section {
    padding: 4000px;
}

h1 {
    font-size: 94px;
    font-family: var(--alumni), sans-serif;
    font-weight: 700;
    line-height: 112px;
}

h2 {
    font-size: 72px;
    font-family: var(--alumni), sans-serif;
    font-weight: 700;
    text-align: center;
    line-height: 91px;

    @media (max-width: 762px) {
        font-size: 40px;
    }
}

h3 {
    font-size: 52px;
    font-family: var(--alumni), sans-serif;
    font-weight: 600;
    line-height: 56px;
    text-align: center;

    @media (max-width: 762px) {
        font-size: 40px;
    }
}

h4 {
    font-family: var(--alumni), sans-serif;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 56.4px; /* 156.667% */
}

h5 {
    font-family: var(--alumni), sans-serif;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 38px; /* 156.667% */
}

/* Убираем внешние отступы */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

p {
    margin: 0;
    padding: 0;
}

.menu-drawer {
    @media (min-width: 1179px) {
        display: none;
    }
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* Выставляем основные настройки по-умолчанию для body */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: var(--main-size);
    line-height: 30.4px;
    color: var(--black);
}

body.hidden {
    overflow: hidden;
}

/* Удаляем стандартную стилизацию для всех ul и il, у которых есть атрибут class*/
ul,
ol {
    list-style: none;
}

/* Элементы a, у которых нет класса, сбрасываем до дефолтных стилей */
a {
    text-decoration-skip-ink: auto;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Упрощаем работу с изображениями */
img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

/* Указываем понятную периодичность в потоке данных у article*/
article > * + * {
    margin-top: 1em;
}

/* Наследуем шрифты для инпутов и кнопок */
input,
button,
textarea,
select {
    font: inherit;
    outline: none;
    line-height: inherit;
}

/* Удаляем все анимации и переходы для людей, которые предпочитай их не использовать */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.container {
    max-width: 1524px;
    margin: auto;
    width: 100%;
    padding: 0 42px;
    position: relative;

    @media (max-width: 769px) {
        padding: 0 10px;
    }
}

.flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.fl-j-center {
    justify-content: center;
}

.gap {
    column-gap: 30px;
}

.fl-a-i-center {
    align-items: center;
}