:root {
    /* Body, Mobile menu background  */
    --primary-color-1: #4a3349;
    /* Text, table text , footer text,*/
    --primary-color-2: #f0ebeb;
    /* Header link active, links in text, header btn */
    --primary-color-3: #FFC849;
    /* Title, table header title, logo, links header, header btn, burger line */
    --primary-color-4: #fff;
    /* Table text, footer text, */
    --primary-color-5: #F4F4F4;
    /* Table header background, footer background */
    --primary-color-6: #000;
    /* Table odd row,*/
    --primary-color-7: #2F2F2F;
    /* Table even row,*/
    --primary-color-8: #222;
    /* Header btn gradient*/
    --primary-color-9: linear-gradient(145deg, #eccb55 0.01%, #8c331f 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: 'Nunito Sans', 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: #ff8a00;
    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;
    color: var(--primary-color-4);
}

h1 {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    padding: 35px 0;
}

h2 {
    font-size: 40px;
    padding: 30px 0;
    text-align: center;
    font-weight: 600;
}

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;
    width: 100%;
    max-width: 850px;
}

img.main__banner {
    max-width: 100%;
    margin: 0;
}

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: 20px;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.header__logo {
    font-family: 'Montserrat', sans-serif;
    padding: 8px 39px 8px 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    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: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 0px 19px;
    margin-right: 33px;
    color: var(--primary-color-4);
    font-size: 12px;
    font-weight: 600;
    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: linear-gradient(145deg, #eccb55 0.01%, #8c331f 100%);
}

.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: 34px;
    background: #36154a;
}

.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: 38px;
        font-weight: 700;
        padding: 30px 0;
    }

    h2 {
        font-size: 32px;
        font-weight: 600;

    }

    h3 {
        font-size: 28px;
    }

    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 10px;
    }

    .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;
    }
}