@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500;600;700&display=swap');

:root {
    --index: calc(1vw + 1vh);
    --orangelight: #06618b;
    --orange: #006B60;
    --wheat: #E7D9D9;
    --black: #000;
    --wheatlight: #EEEAF5;
    --white: #fff;
    --textcolor: #F7F8FF;
    --bgcolor: #F8F7F7;
    --color-title: #516700;
}

html,
body {
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--black);
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    background-color: var(--white);
    box-sizing: border-box;
}

.bold {
    font-family: 'Roboto Mono', monospace;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 148%;
}

@media (min-width: 767px) {
    .bold {
        font-size: 25px;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

figure img {
    border-radius: 12px;
    margin: 20px auto;
}

a {
    color: inherit;
    cursor: pointer;
}

ol {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 20px;
    line-height: 148%;
    padding-top: 10px;
    padding-bottom: 10px;
}

ul {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 0;
    line-height: 148%;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 25px;
}

li {
    font-weight: 400;

}

ul li {
    margin-right: calc(var(--index) * 2);
    line-height: 220%;
}

.list-marked__section--column ul {
    flex-direction: column;
}

h2, h3 {
    font-weight: 600;
    line-height: 34px;
    margin: 30px 0;
    text-align: center;
    color: var(--color-title);
}

p {
    padding-top: 10px;
    padding-bottom: 10px;
}

.container {
    max-width: 95%;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

@media (min-width: 767px) {
    .container {
        width: calc(var(--index) * 57);
        margin-top: 40px;
        margin-bottom: 40px;
        max-width: 95%;
    }
}

.visually-hidden:not(:focus):not(:active),
input[type="checkbox"].visually-hidden,
input[type="ratio"].visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    white-space: nowrap;
    clip-path: insert(100%);
    clip: rect(0 0 0 0);
    overflow: hidden;
}

header {
    position: relative;
    height: 90px;
    background: var(--white);
    z-index: 6;

}

.background-header {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 20;
}

.container__header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    margin-top: 0;
    z-index: 10;
}

.logo__wrapper {
    text-align: left;
    padding: 15px 0;
    z-index: 20;
}

@media (min-width: 767px) {
    .logo__wrapper {
        width: 30%;
    }
}

span.logo__text {
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: var(--color-title);
}

.menu__wrapper {
    display: none;
}

.menu__wrapper.active {
    position: absolute;
    top: 84px;
    left: 50%;
    padding-top: 16px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: var(--white);
    background-size: cover;
    background-position-y: bottom;
    background-repeat: no-repeat;
    gap: 16px;
    height: calc(100vh - 84px);
    width: 100vw;
}

.active .menu__item {
    display: flex;
    width: 95%;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 12px;
    background: var(--bgcolor);
    color: var(--black);
}

@media (min-width: 767px) {
    .menu__wrapper {
        display: flex;
        justify-content: flex-end;
        gap: 3rem;
        width: 100%;
        z-index: 20;
        margin-right: 3rem;
    }
}

.menu__wrapper a {
    text-decoration: none;
    color: var(--white);
    cursor: pointer;
    transition: all 200ms ease-in-out;
    font-size: 22px;
    font-weight: 500;
}

@media (min-width: 767px) {
    .menu__wrapper a {
        font-size: 16px;
        font-weight: 400;
        color: var(--black);
    }
}

.menu__wrapper a:hover {
    color: var(--orange);
}

.buttons__wrapper {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    z-index: 20;
}

@media (min-width: 767px) {
    .buttons__wrapper {
        gap: 5px;
        width: 30%;
    }
}

.button {
    display: flex;
    position: relative;
    height: 42px;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #FFF;
    background: var(--orange);
    color: var(--white);
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    cursor: pointer;
    user-select: none;
    transition: all 200ms ease-in-out;
}

.button:hover {
    background: var(--orangelight);
}

.button:active {
    background: var(--orange);
}

.login__btn {
    background: transparent;
    border: 1px solid var(--orange);
    color: var(--black);
}

.menu__btn {
    content: "";
    background: url(img/Menu-black.svg);
    width: 36px;
    height: 36px;
    cursor: pointer;
    transition: background 200ms ease-in-out;
    z-index: 20;
}

.menu__btn.close {
    background: url(img/Menu-black-close.svg);
}

@media (min-width: 767px) {
    .menu__btn {
        display: none;
    }

    .login__btn {
        border: none;
    }
}

.main-screen {
    position: relative;
    background: var(--bgcolor);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    height: calc(60vh - 84px);
    overflow: hidden;
}

.main-screen:after {
    content: "";
    position: absolute;
    width: 492px;
    height: 492px;
    border-radius: 492px;
    background: #CDDC39;
    filter: blur(125px);
    top: -250px;
    left: -350px;
}

.main-screen__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    width: 100%;
}

h1 {
    position: relative;
    text-align: start;
    font-family: 'Roboto Mono', monospace;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 49px;
    color: var(--black);
    z-index: 1;
    margin-bottom: calc(var(--index) * 2);
}

.desktop {
    display: none;
}

.mobile {
    display: block;
}

.main-screen__title {
    width: 95%;
}

@media (min-width: 767px) {
    .main-screen__title {
        width: 80vw;
    }

    .desktop {
        display: block;
    }

    .mobile {
        display: none;
    }

    h1 {
        font-size: 44px;
        font-weight: 600;
        text-align: center;
        line-height: 54px;
        text-transform: uppercase;
        margin-bottom: calc(var(--index) * 2);
        color: var(--color-title);
    }
}

.main-screen__transition {
    position: absolute;
    top: calc(100vh - 84px);
    transform: translateY(-50%);
    z-index: 1;
}

@media (min-width: 767px) {
    .main-screen__transition {
        display: none;
    }
}

.main-screen__transition img {
    width: 100vw;
    height: 130px;
    object-fit: cover;
}

.banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    z-index: 2;
    width: 100%;
    max-width: 900px;
}

.banner img {
    position: relative;
    width: 100%;
    max-width: 95%;
    height: 200px;
    object-fit: cover;
    border-radius: 200px;
    box-shadow: 0.50546px -12.13115px 14.15301px -5.56011px rgba(252, 98, 28, 0.48);
}

.banner:after {
    content: "";
    position: absolute;
    width: 95%;
    height: 165px;
    border-radius: 192.387px;
    border: 1.5px solid #FFF;
    top: -0;
    left: -10px;
    z-index: 50;
}

@media (min-width: 767px) {
    .banner:after {
        content: "";
        position: absolute;
        width: 95%;
        height: 309px;
        border-radius: 192.387px;
        border: 2px solid #FFF;
        top: -15px;
        left: 20px;
        z-index: 50;
    }

    .banner img {
        width: 900px;
    }
}

.list-marked__section {
    margin: 0;
}

.blocks__section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-direction: column;
}

@media (min-width: 767px) {
    .blocks__section {
        flex-direction: row;
    }
}

.block__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    border-radius: 12px;
    padding: 23px 29px;
    height: 220px;
}

.block__number {
    color: var(--orange);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 148%;
}

.block__text {
    color: var(--black);
    text-align: center;
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 148%;
}

@media (min-width: 767px) {
    .block__text {
        font-size: 16px;
    }
}

.text-border__section {
    border-radius: 10px;
    border: 1px solid var(--orange);
    padding: 28px 12px;
}

@media (min-width: 767px) {
    .text-border__section {
        border-radius: 20px;
        border: 1px solid var(--orange);
        padding: 41px 33px;
    }
}

.text__title {
    color: inherit;
    font-family: 'Roboto Mono', monospace;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    text-align: inherit;
}

.text__section p {
    line-height: 30px;
}

@media (min-width: 767px) {
    .narrow {
        max-width: 70%;
    }

    .text__title {
        font-size: calc(var(--index) * 2.3);
        margin-bottom: 24px;
    }
}

.text__section {
    font-size: 16px;
}

.text25 {
    font-size: 20px;
    font-weight: 400;
}

.text__section--table {
    border-radius: 10px;
    border: 1px solid var(--white);
    padding: 28px 12px;
}

@media (min-width: 767px) {
    .text__section--table {
        border-radius: 0;
        border: none;
        padding: 0;
    }
}

.text__section--color {
    position: relative;
    background: var(--orange);
    color: var(--white);
    padding-bottom: 20px;
    padding-top: 40px;
    overflow: hidden;
}

@media (min-width: 767px) {
    .text__section--white {
        padding-top: 10px;
    }
}

.center {
    text-align: inherit;
}

.center__mobile {
    text-align: center;
}

@media (min-width: 767px) {
    .center {
        text-align: center;
    }

    .center__mobile {
        text-align: inherit;
    }
}

.middle__banner {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 95%;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;

}

.middle__banner img {
    width: 100vw;
    height: 200px;
    object-fit: cover;
    object-position: right;
    border-radius: 40px;
    will-change: transform;
}

@media (min-width: 767px) {
    .middle__banner {
        width: 500px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .middle__banner img {
        object-position: center;
    }
}

.table {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: var(--black);
}

@media (min-width: 767px) {
    .table {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.table th {
    height: 80px;
    padding: 12px 8px;
    text-align: start;
    background: var(--white);
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    color: var(--black);
    border-radius: 5px;
}

@media (min-width: 767px) {
    .table th {
        height: 80px;
        padding: 12px 20px;
        font-size: 16px;
        color: var(--white);
        background: var(--black);
    }
}

.table tr td {
    background: var(--white);
    height: 80px;
    padding: 12px 20px 12px 12px;
    color: var(--black);
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    font-weight: 400;
    border-radius: 5px;
}

@media (min-width: 767px) {
    .table tr td {
        height: 80px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

table tr td.bg-black {
    color: var(--white);
    background: var(--orange);
}

.footer {
    color: var(--black);
    font-family: 'Roboto Mono', monospace;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155.556%;
    margin: 28px auto;
    text-align: center;
    opacity: 0.5;
    width: 90%;
}

.button__up {
    display: block;
    opacity: 0;
    visibility: hidden;
    user-select: none;
    background-color: var(--white);
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    border: 1px solid var(--black);
    transition: all 200ms ease-in-out;
}

@media (min-width: 767px) {
    .button__up {
        width: 60px;
        height: 60px;
    }
}

.button__up--active {
    opacity: 1;
    visibility: visible;
    user-select: auto;
}