:root {
    --primary-color-1: #251e4f;
    --primary-color-2: #fdfdfd;
    --primary-color-3: #279d39;
    --primary-color-4: #fff;
    --primary-color-5: #F4F4F4;
    --primary-color-6: #000;
    --primary-color-7: #000000;
    --primary-color-8: #27712d;
    --primary-color-9: linear-gradient(145deg, #00ff29 0.01%, #ff5549 100%);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background: var(--primary-color-1) url(../img/bg.png) no-repeat top / contain;
    color: var(--primary-color-2);
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1100px;
    padding: 0px 15px;
    margin: 0 auto;
}

.linkTop {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: #fff;
    font-size: 32px;
    color: #000;
    position: fixed;
    bottom: 50px;
    right: 50px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.linkTop.active {
    opacity: 1;
    visibility: visible;
}

.linkTop img {
    width: 70%;
}

h1,
h2,
h3 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color-4);
}

h1 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    padding: 12px;
}

h2 {
    text-align: center;
    font-size: 36px;
    padding: 10px;
}

h3 {
    font-size: 26px;
}

p,
ul,
ol {
    font-size: 16px;
    font-weight: 400;
    line-height: 148%;
    margin-bottom: 20px;
}

ul,
ol {
    padding-left: 40px;
}

p a {
    color: var(--primary-color-3);
}

p a:hover {
    text-decoration: none;
}

img {
    display: block;
    margin: 15px auto;
    max-width: 100%;
}

img.main__banner {
    max-width: 100%;
    margin: 0 auto;
}

table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}

tr {
    background-color: var(--primary-color-1);
}

tr:nth-child(odd) {
    background-color: var(--primary-color-7);
}

tr:nth-child(even) {
    background-color: var(--primary-color-8);
}

th {
    background: var(--primary-color-6);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    padding: 20px;
    color: var(--primary-color-4);
}

td {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    width: 100%;
    color: var(--primary-color-5);
}

.header {
    padding: 20px 0px;
    margin-bottom: 10px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.header__logo {
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    padding: 8px 10px 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    flex-shrink: 1;
    color: var(--primary-color-4);
}

.header-nav {
    margin-left: auto;
}

.header-nav__link {
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    display: inline-block;
    padding: 0px 19px;
    margin-right: 33px;
    color: var(--primary-color-4);
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    text-decoration: none;
}

.header-nav__link.active {
    color: var(--primary-color-3);
}

.header-nav__link:last-child {
    margin-right: 0;
}

.header-access {
    display: flex;
    align-items: center;
    margin-left: 70px;
    margin-right: 8px;
}

.header-access__btn {
    color: var(--primary-color-4);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    margin-left: 12px;
    text-decoration: none;
    flex-shrink: 0;
    border-radius: 4px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.header-access__login {
    background: var(--primary-color-3);
}

.header-access__reg {
    background: var(--primary-color-9);
}

.header__burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 11;
    width: 36px;
    height: 36px;
    cursor: pointer;
    flex-shrink: 0;
    margin-right: 10px;
}

.header__burger span {
    height: 3px;
    width: 25px;
    transition: all 0.3s;
    background-color: var(--primary-color-4);
    display: inline-block;
    position: relative;
}

.header__burger span:not(:last-child) {
    margin-bottom: 4px;
}

.header__burger.active span:nth-child(1) {
    transform: translate(0px, 50%) rotate(45deg);
    top: 2px;
}

.header__burger.active span:nth-child(2) {
    display: none;
}

.header__burger.active span:nth-child(3) {
    transform: translate(0px, -50%) rotate(-45deg);
    bottom: 2px;
}

.header__burger.active::after,
.header__burger.active::before,
.header__burger.active span {
    background: var(--primary-color-4);
}

.header-mobileMenu {
    min-height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color-1) url(../img/mobileMenu-bg.png) no-repeat bottom right / contain;
    padding: 82px 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.header-mobileMenu.show {
    opacity: 1;
    visibility: visible;
}

.lock {
    overflow: hidden;
}

.banner_mob {
    display: none;
}


.footer {
    padding: 24px 0px;
    margin-top: 40px;
    background: var(--primary-color-8);
}

.footer p {
    color: var(--primary-color-5);
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    opacity: 0.5;
    margin: 0;
}

@media (max-width: 992px) {
    body {
        background-image: unset;
    }
    .header-access {
        margin-left: auto;
    }
    .header-nav {
        margin: 0;
    }
    .header-nav__link {
        margin-right: 10px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0px;
        margin-bottom: 24px;
    }

    .header .container {
        justify-content: flex-start;
    }

    .header-access {
        margin-left: auto;
    }

    .header__burger {
        display: flex;
    }

    .header-nav {
        display: flex;
        flex-direction: column;
    }

    .header-nav__link {
        padding: 16px 10px;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .linkTop {
        bottom: 25px;
        right: 25px;
    }
    h1 {
        font-size: 40px;
        font-weight: 700;
        padding-top: 30px;

    }

    h2 {
        font-size: 34px;
        padding-top: 20px;
        line-height: 43px;
    }

    h3 {
        font-size: 20px;
    }

    p,
    ul,
    ol {
        font-size: 14px;
    }

    th,
    td {
        font-size: 16px;
        padding: 12px;
    }

    td {
        font-size: 14px;
    }
    
    /* .header-access {
        margin-right: 0;
    } */

    .header-access__btn {
        font-size: 13px;
        padding: 10px 16px;
        margin-left: 10px;
    }

    .header-access__reg {
        margin-right: 0;
    }

    .header__logo {
        padding: 8px 25px;
    }

    .banner {
        display: none;
    }

    .banner_mob {
        display: block;
    }
    .footer {
        margin-top: 37px;
    }
}

@media (max-width: 380px) {

    th,
    td {
        font-size: 12px;
        padding: 5px;
    }

    td {
        font-size: 10px;
    }

    .container {
        padding: 0px 10px;
    }

    .header-access__btn {
        padding: 7px 9px;
        font-size: 11px;
    }
}

@media (min-width: 1700px) {
    body {
        background-position: 0px -100px;
    }
}