@font-face {
    font-family: "Muller";
    font-style: normal;
    font-weight: 400;
    src:
        local("Muller Regular"),
        url("/fonts/Muller-Regular.woff2") format("woff2"),
        url("/fonts/Muller-Regular.woff") format("woff");
}
@font-face {
    font-family: "Muller";
    font-style: normal;
    font-weight: 500;
    src:
        local("Muller Medium"),
        url("/fonts/Muller-Medium.woff2") format("woff2"),
        url("/fonts/Muller-Medium.woff") format("woff");
}

@font-face {
    font-family: "Muller";
    font-style: normal;
    font-weight: 500;
    src:
        local("Muller Medium"),
        url("/fonts/Muller-Medium.woff2") format("woff2"),
        url("/fonts/Muller-Medium.woff") format("woff");
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 700;
    src:
        local("Unbounded Bold"),
        url("/fonts/Unbounded-Bold.woff2") format("woff2"),
        url("/fonts/Unbounded-Bold.woff") format("woff");
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 800;
    src:
        local("Unbounded ExtraBold"),
        url("/fonts/Unbounded-ExtraBold.woff2") format("woff2"),
        url("/fonts/Unbounded-ExtraBold.woff") format("woff");
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 500;
    src:
        local("Unbounded Medium"),
        url("/fonts/Unbounded-Medium.woff2") format("woff2"),
        url("/fonts/Unbounded-Medium.woff") format("woff");
}

@font-face {
    font-family: "Unbounded";
    font-style: normal;
    font-weight: 600;
    src:
        local("Unbounded SemiBold"),
        url("/fonts/Unbounded-SemiBold.woff2") format("woff2"),
        url("/fonts/Unbounded-SemiBold.woff") format("woff");
}

:root {
    --font-family-main: "Muller";
    --font-family-title: "Unbounded";
    --color-one: #0e0e0e;
    --color-two: #fff;
    --color-three: #f5641a;
    --color-four: #d9d9d9;
    --color-five: #161616;
    --transition: all 0.3s;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    font-size: 1rem;
    color: var(--color-two);
    line-height: 1.25;
    font-family: var(--font-family-main);
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background-color: var(--color-one);
}
body.menu-open,
body.modal-open {
    overflow-y: hidden;
}
input,
button,
textarea {
    font-family: var(--font-family-main);
    font-size: inherit;
}

button {
    font-family: var(--font-family-main);
    cursor: pointer;
    color: inherit;
    background-color: inherit;
}

a {
    font-family: var(--font-family-main);
    line-height: 1;
    color: inherit;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}
a:hover {
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
}
a:link,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.lock body {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
}

.wrapper {
    min-height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wrapper > main {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    overflow-x: hidden;
}
.wrapper > main::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 1600px;
    right: -850px;
    width: 950px;
    height: 950px;
    border-radius: 50%;
    background-color: #2576fc;
    -webkit-filter: blur(400px);
    filter: blur(400px);
}
.wrapper > main::after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 850px;
    left: -850px;
    width: 950px;
    height: 950px;
    border-radius: 50%;
    background-color: #2576fc;
    -webkit-filter: blur(400px);
    filter: blur(400px);
}
.wrapper > * {
    min-width: 0;
}

section {
    padding: 100px 0;
}

[class*="__container"] {
    max-width: 1620px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0 auto;
    padding: 0 100px;
}
@media (max-width: 1920px) {
    [class*="__container"] {
        padding: 0 50px;
    }
}
@media (max-width: 77.49875em) {
    [class*="__container"] {
        padding: 0 30px;
    }
    section {
        padding: 120px 0;
    }
}
@media (max-width: 68.75em) {
    [class*="__container"] {
        padding: 0 20px;
    }
    section {
        padding: 90px 0;
    }
}

@media (max-width: 35.93625em) {
    [class*="__container"] {
        padding: 0 20px;
    }
    section {
        padding: 60px 0;
    }
}

/*  */
.title {
    font-family: var(--font-family-title);
    font-size: 34px;
    font-weight: 600;
    color: var(--color-two);
}
.button {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-two);
    padding: 22px 15px;
    background-color: var(--color-three);
    border-radius: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.button:hover {
    background-color: var(--color-two);
    color: var(--color-three);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/*  */
.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    -webkit-transition:
        background-color 0.3s,
        -webkit-backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        -webkit-backdrop-filter 0.3s;
    -o-transition:
        background-color 0.3s,
        backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
}
.scrolled .header {
    background-color: #4f4f4f14;
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    -webkit-transition:
        background-color 0.3s,
        -webkit-backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        -webkit-backdrop-filter 0.3s;
    -o-transition:
        background-color 0.3s,
        backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
    transition:
        background-color 0.3s,
        backdrop-filter 0.3s,
        -webkit-backdrop-filter 0.3s;
}
.menu-open .header {
    background-color: #000000;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
}
.header__container {
}
.header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__logo-wrap {
    max-height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 145px;
}
.header__logo img {
    -o-object-fit: contain;
    object-fit: contain;
}
.header__menu {
}
/*  */
.burger {
    display: none;
}
.burger__button {
    cursor: pointer;
    display: block;
    position: relative;
    width: 40px;
    height: 26px;
    border: none;
    background: transparent;
    margin: 30px auto;
    z-index: 10;
}

.burger__line {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 10px;
    background: var(--color-two);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.burger__line:nth-child(1) {
    top: 0;
    -webkit-box-shadow: 0 11px 0 var(--color-two);
    box-shadow: 0 11px 0 var(--color-two);
}

.burger__line:nth-child(2) {
    top: 11px;
    opacity: 0;
}

.burger__line:nth-child(3) {
    bottom: 0;
}

body.menu-open .burger__line:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-box-shadow: none;
    box-shadow: none;
}

body.menu-open .burger__line:nth-child(2) {
    opacity: 0;
}

body.menu-open .burger__line:nth-child(3) {
    bottom: 11px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*  */
.header__menu-nav {
}
.header__menu-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 50px;
}
.header__menu-item {
    white-space: nowrap;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header__menu-link {
    font-family: var(--font-family-main);
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 20px;
}
.header__menu-link:hover {
    color: var(--color-three);
}
/*  */
.socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}
.socials__item {
}
.socials__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    aspect-ratio: 1/1;
    background-color: #f5641a;
    width: 35px;
    height: 35px;
    border-radius: 10px;
}
.socials__link img {
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 22px;
}
/*  */
.main {
    background: url("/images/main.gif") center center no-repeat;
    padding: 140px 0 100px 0;
}
.main__container {
}
.main__body {
}
.main__title {
    font-family: var(--font-family-main);
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.main__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 60px;
}
.main__column {
    position: relative;
    width: 100%;
    padding: 20px 30px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #b3b3b33d;
}
.main__column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: #4f4f4f14;
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
}
.main__column--img::after {
    content: "";
    background: url("/images/main.png") center center no-repeat;
    background-size: contain;
    width: 290px;
    height: 290px;
    position: absolute;
    bottom: -40px;
    right: 0;
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
}
.main__column-title {
    font-size: 32px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}
.main__column-desc {
    position: relative;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
}
.main__column-title span {
    color: #f5641a;
}
.main__column--img .main__column-desc {
    margin-right: 230px;
}
.main__column-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
.main__column-item {
    font-size: 20px;
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}
.main__column-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: var(--color-three);
}
.main__column-item span {
    color: var(--color-three);
}
.main__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 30px auto 0 auto;
}
/*  */
.program {
}
.program__container {
}
.program__body {
}
.program__title {
    margin-bottom: 24px;
}
.program__desc {
    font-size: 30px;
    font-weight: 500;
    color: var(--color-four);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.program__desc span {
    margin-left: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.program__desc span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00e03c;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-shadow: 0 0 0 0 rgba(0, 224, 60, 0.5);
    box-shadow: 0 0 0 0 rgba(0, 224, 60, 0.5);
    -webkit-animation: program-pulse 2s infinite;
    animation: program-pulse 2s infinite;
}
@-webkit-keyframes program-pulse {
    0% {
    }
    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(0, 224, 60, 0);
        box-shadow: 0 0 0 10px rgba(0, 224, 60, 0);
    }
    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 224, 60, 0);
        box-shadow: 0 0 0 0 rgba(0, 224, 60, 0);
    }
}
.program__list {
    margin-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}
.program__item {
    padding: 30px;
    border-radius: 30px;
    overflow: hidden;
    background-color: var(--color-five);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 100px;
}
.program__item-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    width: 100%;
}
.program__item-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.program__item-text {
}
.program__item-name {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}
.program__item-job {
    font-size: 20px;
    line-height: 1.5;
}
.program__item-job ul li {
    color: #f5641a;
    list-style: disc;
}
.title_prog_new {
    font-weight: bold;
    font-size: 30px;
    margin: 0 0 10px;
}
.program__item-job ul li span {
    color: #fff !important;
}
.program__item-right {
    font-size: 22px;
    width: 100%;
}
.program__item-right ul,
.program__item-right ol {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    line-height: 1.5;
}
.program__item-right ul {
    margin: 15px 0;
}
.program__item-right ul > li {
    list-style: disc;
    margin: 0 0 0 20px;
}
.program__item-right ol > li {
    list-style: auto;
    margin: 0 0 0 20px;
}
.program__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 80px auto 0 auto;
    padding: 22px 60px;
}
/*  */
.useful-for {
}
.useful-for__container {
}
.useful-for__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}
.useful-for__title {
    margin-right: 20px;
}
.useful-for__elem {
    font-size: 28px;
    padding: 20px 50px;
    border-radius: 20px;
    background-color: var(--color-two);
    color: var(--color-five);
    /* min-width: 380px; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.useful-for__elem:hover {
    background-color: var(--color-three);
    color: var(--color-two);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.useful-for__elem:nth-child(2) {
    margin: 0 0 0 auto;
}
.useful-for__elem:nth-child(4) {
    margin: 0 0 0 auto;
}
.useful-for__elem:nth-child(n + 4) {
    max-width: calc(25% - 10px);
    width: 100%;
}
/*  */
.watch-if {
}
.watch-if__container {
}
.watch-if__body {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 60px auto 60px auto;
    grid-template-columns: repeat(3, auto);
    -ms-grid-rows: auto 40px auto;
    grid-template-rows: repeat(2, auto);
    gap: 40px 60px;
    padding: 60px;
}
.watch-if__body > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
.watch-if__body > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
.watch-if__body > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}
.watch-if__body > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
.watch-if__body > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}
.watch-if__body > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}

.watch-if__body::before {
    content: "";
    background: url("/images/watch-if.svg") center center no-repeat;
    background-size: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.watch-if__title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1 / 1 / 2 / 3;
    position: relative;
    margin-bottom: 60px;
}
.watch-if__elem {
    position: relative;
}
.watch-if__elem:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1 / 3 / 2 / 4;
    padding: 0 0 0 30px;
}
.watch-if__elem:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2 / 1 / 3 / 2;
}
.watch-if__elem:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2 / 2 / 3 / 3;
}
.watch-if__elem:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 2 / 3 / 3 / 4;
    padding: 0 0 0 30px;
}

.watch-if__elem-heading {
    font-size: 60px;
    font-weight: 700;
    color: var(--color-three);
    margin-bottom: 20px;
}
.watch-if__elem-desc {
    font-size: 30px;
}
/*  */
.bonuses {
}
.bonuses__container {
}
.bonuses__body {
}
.bonuses__title {
    max-width: 860px;
    margin-bottom: 60px;
}
.bonuses__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}
.bonuses__item {
    color: var(--color-two);
    padding: 30px 20px;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--color-five);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.bonuses__item:hover {
    background-color: var(--color-three);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.bonuses__item:nth-child(1),
.bonuses__item:nth-child(2),
.bonuses__item:nth-child(3) {
    max-width: calc(33% - 3px);
}

.bonuses__item:nth-child(4) {
    max-width: calc(40% - 3px);
}
.bonuses__item:nth-child(5) {
    max-width: calc(26% - 3px);
}
.bonuses__item:nth-child(6) {
    max-width: calc(33% - 3px);
}

.bonuses__item-img {
    width: 126px;
    height: 126px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.bonuses__item-img img {
    -o-object-fit: contain;
    object-fit: contain;
}
.bonuses__item-text {
    font-size: 30px;
}
/*  */
.signup {
}
.signup__container {
}
.signup__body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    padding: 80px 90px;
    border-radius: 40px;
    background-color: var(--color-five);
}
.signup__title {
    position: relative;
}
.signup__form {
    position: relative;
}
.signup-form {
}

.div1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: 1 / 1 / 2 / 4;
}
.div2 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
    grid-area: 1 / 4 / 2 / 7;
}
.div3 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2 / 1 / 3 / 3;
}
.div4 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: 2 / 3 / 3 / 5;
}
.div5 {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
    grid-area: 2 / 5 / 3 / 7;
}
.signup-form__inputs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-rows: 1fr 20px 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}
.signup-form__inputs > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
.signup-form__inputs > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
.signup-form__inputs > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}
.signup-form__inputs > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
}
.signup-form__inputs > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
}
.signup-form__inputs > *:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 11;
}
.signup-form__inputs > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
.signup-form__inputs > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}
.signup-form__inputs > *:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}
.signup-form__inputs > *:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
}
.signup-form__inputs > *:nth-child(11) {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
}
.signup-form__inputs > *:nth-child(12) {
    -ms-grid-row: 3;
    -ms-grid-column: 11;
}
.signup-form__input-wrap:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: 1 / 1 / 2 / 4;
}
.signup-form__input-wrap:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 4;
    -ms-grid-column-span: 3;
    grid-area: 1 / 4 / 2 / 7;
}
.signup-form__input-wrap:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 2 / 1 / 3 / 3;
}
.signup-form__input-wrap:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: 2 / 3 / 3 / 5;
}
.signup-form__input-wrap:nth-child(5) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
    grid-area: 2 / 5 / 3 / 7;
}
.signup-form__input-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}
.signup-form__label {
}
.signup-form__input {
    padding: 18px 20px;
    border-radius: 15px;
    outline: none !important;
}
.signup-form__bottom {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 80px;
}
.signup-form__bottom-left {
}
.signup-form__bottom-heading {
    font-size: 14px;
    margin-bottom: 12px;
}
.signup-form__bottom-checkbox {
    font-size: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.signup-form__bottom-checkbox:not(:last-child) {
    margin-bottom: 12px;
}
.signup-form__bottom-checkbox input {
    margin-top: 2px;
}
.signup-form__bottom-right {
}
.signup-form__submit-button {
    text-transform: unset;
    padding: 17px 60px;
    border-radius: 14px;
}
/*  */
.contact-options {
}
.contact-options__container {
}
.contact-options__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;
    grid-template-columns: repeat(6, 1fr);
    -ms-grid-rows: 1fr 120px 1fr;
    grid-template-rows: repeat(2, 1fr);
    justify-items: center;
    gap: 120px 60px;
}
.contact-options__body > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
.contact-options__body > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
.contact-options__body > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}
.contact-options__body > *:nth-child(4) {
    -ms-grid-row: 1;
    -ms-grid-column: 7;
}
.contact-options__body > *:nth-child(5) {
    -ms-grid-row: 1;
    -ms-grid-column: 9;
}
.contact-options__body > *:nth-child(6) {
    -ms-grid-row: 1;
    -ms-grid-column: 11;
}
.contact-options__body > *:nth-child(7) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
.contact-options__body > *:nth-child(8) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}
.contact-options__body > *:nth-child(9) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}
.contact-options__body > *:nth-child(10) {
    -ms-grid-row: 3;
    -ms-grid-column: 7;
}
.contact-options__body > *:nth-child(11) {
    -ms-grid-row: 3;
    -ms-grid-column: 9;
}
.contact-options__body > *:nth-child(12) {
    -ms-grid-row: 3;
    -ms-grid-column: 11;
}

.contact-options__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    max-width: 290px;
    width: 100%;
}
.contact-options__item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1 / 1 / 2 / 3;
    -webkit-transform: rotate(-16deg);
    -ms-transform: rotate(-16deg);
    transform: rotate(-16deg);
}
.contact-options__item:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: 1 / 3 / 2 / 5;
}
.contact-options__item:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 2;
    grid-area: 1 / 5 / 2 / 7;
    -webkit-transform: rotate(16deg);
    -ms-transform: rotate(16deg);
    transform: rotate(16deg);
}
.contact-options__item:nth-child(4) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
    grid-area: 2 / 3 / 3 / 5;
}
.contact-options__link {
    font-size: 30px;
    font-weight: 500;
    text-align: center;
    background-color: var(--color-three);
    padding: 30px 40px;
    border-radius: 12px;
    width: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.contact-options__link:hover {
    background-color: var(--color-two);
    color: var(--color-three);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.contact-options__desc {
    font-size: 20px;
}
/*  */
.benefits {
    display: block !important;
}
.benefits__container {
}
.benefits__title {
    margin-bottom: 40px;
}
.benefits__body {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 26px;
    padding: 90px 30px;
    width: 100%;
    background-color: var(--color-five);
    border-radius: 20px;
    overflow: hidden;
}
.benefits__item-img {
    width: 66px;
    height: 66px;
}
.benefits__item-img img {
    object-fit: contain;
}
.benefits__text {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
}
/*  */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1000;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    padding: 0;
    overflow-y: scroll;
}
.modal .signup__body {
    overflow: hidden;
}
.modal .signup__body::before {
    content: "";
    position: absolute;
    bottom: -500px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 650px;
    height: 650px;
    background: #2576fc;
    border-radius: 50%;
    -webkit-filter: blur(300px);
    filter: blur(300px);
}
.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.modal--active .modal__overlay {
    opacity: 1;
    pointer-events: auto;
}

.modal--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: fadeIn 0.3s ease forwards;
    animation: fadeIn 0.3s ease forwards;
}

.modal__container {
    position: relative;
    z-index: 2;
    width: 100%;
    -webkit-animation: scaleIn 0.3s ease;
    animation: scaleIn 0.3s ease;
}

.modal__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 3;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes scaleIn {
    from {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

/*  */
.footer {
    padding: 60px 0 46px 0;
    margin-top: 60px;
}
.footer__container {
}
.footer__body {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 20px auto 20px auto;
    grid-template-columns: repeat(3, auto);
    -ms-grid-rows: auto 40px auto;
    grid-template-rows: repeat(2, auto);
    gap: 40px 20px;
}
.footer__body > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}
.footer__body > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
.footer__body > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
}
.footer__body > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
}
.footer__body > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
}
.footer__body > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
}
.footer__logo {
    max-height: 60px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.footer__logo img {
    -o-object-fit: contain;
    object-fit: contain;
}
.footer__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    margin: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.footer__menu-item {
}
.footer__menu-link {
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    padding: 10px 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.footer__menu-link:hover {
    color: var(--color-three);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.footer__button {
    border-radius: 14px;
    white-space: nowrap;
    margin: 0 0 0 auto;
}
.footer__address {
    font-size: 18px;
    line-height: 1.4;
    max-width: 370px;
}
.footer__privacy {
    text-align: center;
    margin: auto 0 0 0;
}
.footer__privacy button {
    color: var(--color-three);
    text-decoration: underline;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 10px auto 0 auto;
}
.footer__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 40px;
}
.footer__contacts-link {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.footer__contacts-link:hover {
    color: var(--color-three);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.footer__contacts-socials {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
/*  */
#modal-3 .modal__body {
    background-color: var(--color-two);
    color: var(--color-one);
    max-width: 95%;
    max-height: 90vh;
    padding: 30px 20px;
    overflow-y: auto;
    border-radius: 20px;
    margin: auto;
}
#modal-3 .modal__body {
    line-height: 1.5;
}
#modal-3 .modal__body h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}
#modal-3 .modal__body h3 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 20px;
}
#modal-3 .modal__body p {
    margin-bottom: 10px;
}
#modal-3 .modal__body ol,
#modal-3 .modal__body ul {
    margin: 15px 0;
}
#modal-3 .modal__body li {
    margin-bottom: 10px;
}
#modal-3 .modal__body ol > li {
    margin-left: 15px;
}
#modal-3 .modal__body ul > li {
    list-style: disc;
    margin-left: 15px;
}
/*  */
#modal-4 iframe {
    position: relative;
    width: 100% !important;
    border-radius: 40px;
}
#modal-4 .signup__body {
    justify-content: center;
}
/*  */
  .cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-two);
    color: #1e1e1e;
    padding: 16px;
    font-size: 14px;
    z-index: 10000;
  }

  .cookie-banner__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }

  .cookie-banner__text {
    flex: 1 1 auto;
  }

  .cookie-banner__button {
    background-color: var(--color-three);
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 8px;
    transition: background-color 0.3s ease;
  }
  /*  */

@media (max-width: 1600px) {
    .header__menu-list {
        gap: 0px;
    }
    /*  */
    .useful-for__title {
        font-size: 38px;
    }
    .useful-for__elem {
        font-size: 24px;
    }
    /*  */
    .watch-if__body {
        padding: 40px;
    }
    .watch-if__body::before {
        background: url("/images/watch-if2.svg") center center no-repeat;
        background-size: contain;
    }
    .watch-if__title {
        font-size: 40px;
    }
    .watch-if__elem-desc {
        font-size: 26px;
    }
    /*  */
    .footer__menu {
        gap: 30px;
    }
    .footer__address {
        font-size: 15px;
    }
    .footer__button {
        font-size: 16px;
    }
}
@media (max-width: 1440px) {
    .header__menu-link {
        font-size: 16px;
    }
    /*  */
    .useful-for__title {
        font-size: 32px;
    }
    .useful-for__elem {
        font-size: 22px;
        min-width: unset;
    }
    .useful-for__title,
    .useful-for__elem {
        max-width: calc(25% - 5px);
    }
    /*  */
    .watch-if__body {
        gap: 40px;
    }
    .watch-if__title {
        font-size: 32px;
    }
    .watch-if__elem-desc {
        font-size: 24px;
    }
    /*  */
    .bonuses__item {
        gap: 10px;
    }
    .bonuses__item-text {
        font-size: 26px;
    }
    /*  */
    .signup-form__bottom {
        gap: 30px;
    }
    /*  */
    .benefits__item {
        padding: 90px 20px;
    }
    .benefits__text {
        font-size: 20px;
    }
    /*  */

    .footer__body {
        grid-template-columns: repeat(4, auto);
        grid-template-rows: repeat(3, auto);
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(7) {
        -ms-grid-row: 2;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(8) {
        -ms-grid-row: 2;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(11) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(12) {
        -ms-grid-row: 3;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(7) {
        -ms-grid-row: 2;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(8) {
        -ms-grid-row: 2;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(11) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(12) {
        -ms-grid-row: 3;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(7) {
        -ms-grid-row: 2;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(8) {
        -ms-grid-row: 2;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(11) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(12) {
        -ms-grid-row: 3;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(7) {
        -ms-grid-row: 2;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(8) {
        -ms-grid-row: 2;
        -ms-grid-column: 4;
    }
    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
    .footer__body > *:nth-child(11) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(12) {
        -ms-grid-row: 3;
        -ms-grid-column: 4;
    }

    .footer__logo {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 1 / 1 / 2 / 2;
    }
    .footer__menu {
        gap: 20px;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 2;
        grid-area: 1 / 2 / 2 / 4;
    }
    .footer__button {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 4;
        -ms-grid-column-span: 1;
        grid-area: 1 / 4 / 2 / 5;
    }
    .footer__address {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: 2 / 1 / 3 / 3;
    }
    .footer__contacts {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 2;
        grid-area: 2 / 3 / 3 / 5;
    }
    .footer__privacy {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-area: 3 / 1 / 4 / 5;
    }
    .footer__menu-link {
        font-size: 16px;
    }
}
@media (max-width: 1200px) {
    .header__body {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: auto 30px auto 30px auto;
        grid-template-columns: repeat(3, auto);
        -ms-grid-rows: auto 30px auto;
        grid-template-rows: repeat(2, auto);
        gap: 30px;
    }
    .header__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .header__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .header__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .header__body > *:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .header__body > *:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .header__body > *:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 5;
    }

    .header__logo-wrap {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 1 / 1 / 2 / 2;
    }
    .header__menu {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-area: 2 / 1 / 3 / 4;
    }
    .header__socials {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        grid-area: 1 / 3 / 2 / 4;
    }
    /*  */
    .main {
        padding: 240px 0 180px 0;
    }
    .main__columns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }
    .main__column--img {
        padding: 30px 300px 100px 30px;
    }
    .main__column-title {
        font-size: 36px;
    }

    .main__column--img .main__column-desc {
        margin-right: 0;
    }
    /*  */
    .program__item {
        gap: 100px;
    }
    /*  */
    .useful-for__title {
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }
    .useful-for__elem {
        width: 100%;
        margin: 0 !important;
    }
    .useful-for__elem:nth-child(2) {
        max-width: calc(50% - 5px);
    }
    .useful-for__elem:nth-child(3) {
        max-width: calc(50% - 5px);
    }
    .useful-for__elem:nth-child(4) {
        max-width: calc(33% - 4px);
    }
    .useful-for__elem:nth-child(5) {
        max-width: calc(33% - 4px);
    }
    .useful-for__elem:nth-child(6) {
        max-width: calc(33% - 4px);
    }

    /*  */
    .watch-if__body {
        grid-template-columns: repeat(2, auto);
        grid-template-rows: repeat(3, auto);
    }
    .watch-if__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(4) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(4) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(4) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(4) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }
    .watch-if__body > *:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .watch-if__body > *:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }
    .watch-if__body::before {
        background: unset;
        border: 1px solid var(--color-two);
        border-radius: 30px;
        top: unset;
        bottom: 0;
        height: calc(100% - 170px);
    }
    .watch-if__elem {
        padding: 0 !important;
    }
    .watch-if__title {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: 1 / 1 / 2 / 3;
        text-align: center;
        margin-bottom: 40px;
    }
    .watch-if__elem:nth-child(2) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 2 / 1 / 3 / 2;
    }
    .watch-if__elem:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-area: 2 / 2 / 3 / 3;
    }
    .watch-if__elem:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 3 / 1 / 4 / 2;
    }
    .watch-if__elem:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-area: 3 / 2 / 4 / 3;
    }
    /*  */
    .bonuses__item:nth-child(1),
    .bonuses__item:nth-child(2),
    .bonuses__item:nth-child(3) {
        max-width: calc(33% - 4px);
    }

    .bonuses__item:nth-child(4) {
        max-width: 100%;
    }
    .bonuses__item:nth-child(5),
    .bonuses__item:nth-child(6) {
        max-width: calc(50% - 5px);
    }
    /*  */
    .signup__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    /*  */
    .benefits__body {
        grid-template-columns: repeat(2, 1fr);
    }
    /*  */
    .footer__body {
        -ms-grid-columns: auto 20px auto 20px auto 20px auto 20px auto;
        grid-template-columns: repeat(5, auto);
        -ms-grid-rows: auto 50px auto 50px auto;
        grid-template-rows: repeat(3, auto);
        gap: 50px 20px;
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 7;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 1;
        -ms-grid-column: 9;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(7) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(8) {
        -ms-grid-row: 3;
        -ms-grid-column: 5;
    }
    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 7;
    }
    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 9;
    }
    .footer__body > *:nth-child(11) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(12) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(13) {
        -ms-grid-row: 5;
        -ms-grid-column: 5;
    }
    .footer__body > *:nth-child(14) {
        -ms-grid-row: 5;
        -ms-grid-column: 7;
    }
    .footer__body > *:nth-child(15) {
        -ms-grid-row: 5;
        -ms-grid-column: 9;
    }
    .footer__logo {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 1 / 1 / 2 / 2;
    }
    .footer__menu {
        margin: auto 0 auto auto;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 4;
        grid-area: 1 / 2 / 2 / 6;
    }
    .footer__address {
        font-size: 16px;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: 2 / 1 / 3 / 3;
    }
    .footer__button {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        margin: auto;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        grid-area: 2 / 3 / 3 / 4;
    }
    .footer__contacts {
        gap: 30px;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 4;
        -ms-grid-column-span: 2;
        grid-area: 2 / 4 / 3 / 6;
    }
    .footer__privacy {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 5;
        grid-area: 3 / 1 / 4 / 6;
    }
}
@media (max-width: 992px) {
    .title {
        font-size: 38px;
    }
    /*  */
    .header {
        padding: 10px 0;
    }
    .header__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-grid-columns: unset;
        grid-template-columns: unset;
        -ms-grid-rows: unset;
        grid-template-rows: unset;
        gap: 30px;
    }
    .header__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .header__menu {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .header__socials {
        margin: 0 0 0 auto;
    }

    .burger {
        display: block;
    }
    .header__menu-nav {
        position: absolute;
        top: -200vh;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #4f4f4f14;
        -webkit-backdrop-filter: blur(80px);
        backdrop-filter: blur(80px);
        -webkit-transition: top 0.3s;
        -o-transition: top 0.3s;
        transition: top 0.3s;
    }
    .menu-open .header__menu-nav {
        top: 0;
        -webkit-transition: top 0.3s;
        -o-transition: top 0.3s;
        transition: top 0.3s;
    }
    .header__menu-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        height: 100%;
        gap: 50px;
    }
    .header__menu-link {
        font-size: 30px;
    }
    /*  */
    .main {
        padding: 170px 0 180px 0;
    }
    .main__columns {
        gap: 20px;
    }
    .main__column-title {
        font-size: 30px;
    }
    .main__column-desc {
        font-size: 26px;
    }
    /*  */
    .program__desc {
        font-size: 26px;
    }
    .program__item {
        padding: 30px 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }

    .program__item-left {
        gap: 20px;
    }
    .program__item-img {
        width: 100px;
        height: 100px;
    }
    .program__item-name {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .program__item-right {
        font-size: 20px;
    }
    /*  */
    .useful-for__elem:nth-child(2) {
        max-width: calc(50% - 5px);
    }
    .useful-for__elem:nth-child(3) {
        max-width: calc(50% - 5px);
    }
    .useful-for__elem:nth-child(4) {
        max-width: calc(50% - 5px);
    }
    .useful-for__elem:nth-child(5) {
        max-width: calc(50% - 5px);
    }
    .useful-for__elem:nth-child(6) {
        max-width: 100%;
    }
    .useful-for__elem:nth-child(7) {
        max-width: 100%;
    }
    /*  */
    .watch-if__elem-heading {
        font-size: 50px;
        margin-bottom: 10px;
    }
    /*  */
    .bonuses__item:nth-child(1),
    .bonuses__item:nth-child(2) {
        max-width: calc(50% - 5px);
    }

    .bonuses__item:nth-child(3) {
        max-width: 100%;
    }
    .bonuses__item:nth-child(4) {
        max-width: 100%;
    }
    .bonuses__item:nth-child(5),
    .bonuses__item:nth-child(6) {
        max-width: calc(50% - 5px);
    }
    /*  */
    .signup__body {
        padding: 60px 40px;
        gap: 15px;
    }
    /*  */
    .contact-options__body {
        gap: 80px 60px;
    }
    .contact-options__link {
        font-size: 24px;
        padding: 20px;
    }
    /*  */
    .benefits__item {
        padding: 50px 20px;
    }
    /*  */

    .footer__body {
        grid-template-columns: repeat(4, auto);
        grid-template-rows: repeat(5, auto);
    }

    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(5) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(6) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(7) {
        -ms-grid-row: 2;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(8) {
        -ms-grid-row: 2;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(11) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(12) {
        -ms-grid-row: 3;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(13) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(14) {
        -ms-grid-row: 4;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(15) {
        -ms-grid-row: 4;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(16) {
        -ms-grid-row: 4;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(17) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(18) {
        -ms-grid-row: 5;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(19) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(20) {
        -ms-grid-row: 5;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(5) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(6) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(7) {
        -ms-grid-row: 2;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(8) {
        -ms-grid-row: 2;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(11) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(12) {
        -ms-grid-row: 3;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(13) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(14) {
        -ms-grid-row: 4;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(15) {
        -ms-grid-row: 4;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(16) {
        -ms-grid-row: 4;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(17) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(18) {
        -ms-grid-row: 5;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(19) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(20) {
        -ms-grid-row: 5;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(5) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(6) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(7) {
        -ms-grid-row: 2;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(8) {
        -ms-grid-row: 2;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(11) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(12) {
        -ms-grid-row: 3;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(13) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(14) {
        -ms-grid-row: 4;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(15) {
        -ms-grid-row: 4;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(16) {
        -ms-grid-row: 4;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(17) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(18) {
        -ms-grid-row: 5;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(19) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(20) {
        -ms-grid-row: 5;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(5) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(6) {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(7) {
        -ms-grid-row: 2;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(8) {
        -ms-grid-row: 2;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(9) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(10) {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(11) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(12) {
        -ms-grid-row: 3;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(13) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(14) {
        -ms-grid-row: 4;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(15) {
        -ms-grid-row: 4;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(16) {
        -ms-grid-row: 4;
        -ms-grid-column: 4;
    }

    .footer__body > *:nth-child(17) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }

    .footer__body > *:nth-child(18) {
        -ms-grid-row: 5;
        -ms-grid-column: 2;
    }

    .footer__body > *:nth-child(19) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }

    .footer__body > *:nth-child(20) {
        -ms-grid-row: 5;
        -ms-grid-column: 4;
    }

    .footer__logo {
        margin: auto;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-area: 1 / 1 / 2 / 5;
    }
    .footer__menu {
        margin: auto;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-area: 2 / 1 / 3 / 5;
    }
    .footer__button {
        margin: auto auto auto 0;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: 3 / 1 / 4 / 3;
    }
    .footer__contacts {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 2;
        grid-area: 3 / 3 / 4 / 5;
    }
    .footer__address {
        max-width: 700px;
        margin: auto;
        text-align: center;
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-area: 4 / 1 / 5 / 5;
    }
    .footer__privacy {
        -ms-grid-row: 5;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-area: 5 / 1 / 6 / 5;
    }
}
@media (max-width: 768px) {
    .title {
        font-size: 32px;
    }
    .button {
        font-size: 18px;
    }
    /*  */
    .main {
        padding: 160px 0 80px 0;
    }
    .main__column--img {
        padding: 30px 30px 160px 30px;
    }
    .main__column--img::after {
        width: 200px;
        height: 200px;
    }
    /*  */
    .program__desc {
        font-size: 18px;
    }
    .program__list {
        gap: 10px;
    }

    .program__button {
        margin: 30px auto 0 auto;
    }
    /*  */
    .useful-for__elem {
        font-size: 20px;
        text-align: center;
        max-width: 100% !important;
        padding: 20px 15px;
    }
    /*  */
    .watch-if__body {
        padding: 0 20px 20px 20px;
        gap: 20px;
        -ms-grid-columns: 1fr;
        grid-template-columns: repeat(1, 1fr);
    }
    .watch-if__body::before {
        height: calc(100% - 120px);
    }
    .watch-if__title {
        font-size: 28px;
        grid-area: unset;
    }
    .watch-if__elem {
        grid-area: unset !important;
    }
    .watch-if__elem-heading {
        font-size: 40px;
    }
    .watch-if__elem-desc {
        font-size: 18px;
    }
    /*  */
    .bonuses__item {
        max-width: 100% !important;
    }
    .bonuses__item-img {
        width: 80px;
        height: 80px;
    }
    /*  */
    .signup-form__inputs {
        grid-template-rows: repeat(3, 1fr);
    }
    .signup-form__bottom-checkbox {
        font-size: 11px;
        gap: 6px;
    }
    .signup-form__bottom,
    .signup-form__inputs {
        gap: 15px;
    }
    .signup-form__input {
        padding: 15px 20px;
    }
    .signup-form__input-wrap:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-area: 1 / 1 / 2 / 4;
        gap: 6px;
    }
    .signup-form__input-wrap:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 4;
        -ms-grid-column-span: 3;
        grid-area: 1 / 4 / 2 / 7;
    }
    .signup-form__input-wrap:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 6;
        grid-area: 2 / 1 / 3 / 7;
    }
    .signup-form__input-wrap:nth-child(4) {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-area: 3 / 1 / 4 / 4;
    }
    .signup-form__input-wrap:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 4;
        -ms-grid-column-span: 3;
        grid-area: 3 / 4 / 4 / 7;
    }
    .signup-form__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .signup-form__bottom-right {
        margin: 0 auto;
    }
    /*  */
    .contact-options__body {
        -ms-grid-columns: auto 60px auto 60px auto 60px auto;
        grid-template-columns: repeat(4, auto);
        -ms-grid-rows: auto 60px auto 60px auto;
        grid-template-rows: repeat(2, auto);
        gap: 60px;
    }
    .contact-options__item {
        -webkit-transform: unset !important;
        -ms-transform: unset !important;
        transform: unset !important;
    }
    .contact-options__item:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: 1 / 1 / 2 / 3;
    }
    .contact-options__item:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 2;
        grid-area: 1 / 3 / 2 / 5;
    }

    .contact-options__item:nth-child(3) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: 2 / 1 / 3 / 3;
    }
    .contact-options__item:nth-child(4) {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 2;
        grid-area: 2 / 3 / 3 / 5;
    }
    /*  */
    .footer__body {
        -ms-grid-columns: auto 40px auto 40px auto 40px auto;
        grid-template-columns: repeat(4, auto);
        -ms-grid-rows: auto 40px auto 40px auto 40px auto;
        grid-template-rows: repeat(4, auto);
        gap: 40px;
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 1;
        -ms-grid-column: 7;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 3;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(7) {
        -ms-grid-row: 3;
        -ms-grid-column: 5;
    }
    .footer__body > *:nth-child(8) {
        -ms-grid-row: 3;
        -ms-grid-column: 7;
    }
    .footer__body > *:nth-child(9) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(10) {
        -ms-grid-row: 5;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(11) {
        -ms-grid-row: 5;
        -ms-grid-column: 5;
    }
    .footer__body > *:nth-child(12) {
        -ms-grid-row: 5;
        -ms-grid-column: 7;
    }
    .footer__body > *:nth-child(13) {
        -ms-grid-row: 7;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(14) {
        -ms-grid-row: 7;
        -ms-grid-column: 3;
    }
    .footer__body > *:nth-child(15) {
        -ms-grid-row: 7;
        -ms-grid-column: 5;
    }
    .footer__body > *:nth-child(16) {
        -ms-grid-row: 7;
        -ms-grid-column: 7;
    }
    .footer__menu {
        margin: auto auto auto 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 3;
        grid-area: 1 / 1 / 2 / 4;
    }
    .footer__logo {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 4;
        -ms-grid-column-span: 1;
        grid-area: 1 / 4 / 2 / 5;
    }
    .footer__button {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 2;
        grid-area: 2 / 3 / 3 / 5;
        margin: auto 0 auto auto;
    }
    .footer__contacts {
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 2;
        grid-area: 2 / 1 / 3 / 3;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .footer__address {
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-area: 3 / 1 / 4 / 5;
    }
    .footer__privacy {
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 4;
        grid-area: 4 / 1 / 5 / 5;
    }
    .footer__menu-link {
        padding: 10px 0;
    }
    /*  */
    #modal-3 .modal__body h2 {
        font-size: 21px;
    }
    #modal-3 .modal__body h3 {
        font-size: 18px;
    }
    /* */
        .cookie-banner {
        padding: 14px 0;
        font-size: 12px;
    }
    .cookie-banner__container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
@media (max-width: 550px) {
    .header__logo {
        max-width: 80px;
    }
    .title {
        font-size: 24px;
    }
    .header__body {
        gap: 10px;
    }
    /*  */
    .header__logo-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        max-height: unset;
        gap: 10px;
    }
    /*  */
    .main {
        padding: 200px 0 80px 0;
    }
    .main__title {
        font-size: 25px;
        margin-bottom: 30px;
    }

    .main__column-title {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.5;
    }
    .main__column-desc {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .main__column-item {
        font-size: 14px;
    }
    /*  */
    .program__list {
        margin-top: 40px;
    }
    .program__item-img {
        width: 80px;
        height: 80px;
    }
    .program__item-name {
        margin-bottom: 16px;
    }
    .program__item-job {
        font-size: 12px;
    }
    .program__item-right {
        font-size: 14px;
    }
    /*  */
    .watch-if__title {
        font-size: 22px;
    }
    /*  */
    .bonuses__item {
        padding: 20px 10px;
    }
    .bonuses__item-text {
        font-size: 22px;
    }
    /*  */
    .signup__body {
        padding: 30px 20px;
        border-radius: 20px;
    }
    .signup-form__inputs {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: unset;
    }
    .signup-form__inputs > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .signup-form__inputs > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .signup-form__inputs > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .signup-form__inputs > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .signup-form__input-wrap {
        grid-area: unset !important;
    }
    /*  */
    .contact-options__body {
        -ms-grid-columns: auto;
        grid-template-columns: repeat(1, auto);
        -ms-grid-rows: unset;
        grid-template-rows: unset;
        gap: 60px;
    }
    .contact-options__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .contact-options__body {
        gap: 20px 40px;
    }
    .contact-options__item {
        max-width: 200px;
        grid-area: unset !important;
    }
    .contact-options__link {
        font-size: 20px;
        padding: 20px 10px;
    }
    .contact-options__desc {
        font-size: 18px;
    }
    /*  */
    .benefits__body {
        grid-template-columns: repeat(1, 1fr);
    }
    /*  */

    .footer {
        padding: 40px 0 20px 0;
    }
    .footer__body {
        grid-template-columns: repeat(1, auto);

        grid-template-rows: repeat(6, auto);
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 6;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 6;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 6;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(2) {
        -ms-grid-row: 2;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(3) {
        -ms-grid-row: 3;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(4) {
        -ms-grid-row: 4;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(5) {
        -ms-grid-row: 5;
        -ms-grid-column: 1;
    }
    .footer__body > *:nth-child(6) {
        -ms-grid-row: 6;
        -ms-grid-column: 1;
    }
    .footer__logo {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 1 / 1 / 2 / 2;
    }
    .footer__menu {
        text-align: center;
        margin: auto;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 2 / 1 / 3 / 2;
    }
    .footer__contacts {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: auto;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        -ms-grid-row: 3;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 3 / 1 / 4 / 2;
    }
    .footer__button {
        -ms-grid-row: 4;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 4 / 1 / 5 / 2;
        margin: auto;
        font-size: 14px;
        padding: 16px;
    }
    .footer__address {
        -ms-grid-row: 5;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 5 / 1 / 6 / 2;
    }
    .footer__privacy {
        -ms-grid-row: 6;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 6 / 1 / 7 / 2;
    }
    .footer__menu-link {
        font-size: 18px;
    }
}