@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700&display=swap');

/*CSS RESET*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*CSS RESET*/

body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Roboto Slab', serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    background: #201e37;
}

.content_wrap {
    max-width: 1140px;
    margin: auto;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

h1, h2, h3, h4, h5, h6 {
    text-align: center;
    margin: 30px 0;
}

header {
    margin-bottom: 30px;
    position: relative;
    background: rgba(83, 81, 100, 0.52);
    z-index: 2;
}

header .content_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 36px;
}

header .content_wrap .logo_wrap {
    width: 100%;
}

header .content_wrap .logo_wrap .logo, header .content_wrap .logo_wrap .logo a {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    text-align: left;
    color: #FBBE03;
    text-decoration: none;
    text-transform: uppercase;
    transition: .3s;
}

header .content_wrap .logo_wrap .logo a:hover {
    opacity: .8;
}

header .content_wrap .menu_wrap {
    width: 100%;
}

header .burger {
    display: none;
}

header .content_wrap .menu_wrap nav ul {
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

header .content_wrap .menu_wrap nav ul li {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #FBBE03;
    margin-right: 60px;
}

header .content_wrap .menu_wrap nav ul li:last-child {
    margin-right: 0;
}

header .content_wrap .menu_wrap nav ul li a {
    text-decoration: none;
    color: #FBBE03;
    transition: .3s;
}

header .content_wrap .menu_wrap nav ul li a:hover {
    opacity: .6;
}

.colums_block {
    display: flex;
    justify-content: space-between;
}

main {
    flex: 1 0 auto;
}

main h1 {
    font-weight: 700;
    font-size: 36px;
    line-height: 54px;
}

main h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 44px;
}

main h3 {
    font-weight: 500;
    font-size: 26px;
    line-height: 36px;
}

main p {
    font-weight: 300;
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 24px;
}

.colums_block {
    margin-bottom: 37px;
}

.colums_block .content_wrap {
    display: flex;
    justify-content: space-between;
}

.colums_block .left_col, .colums_block .right_col {
    width: calc(50% - 25px);
}

.colums_block h2 {
    padding: 12px 37px;
    background: #883CFF;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.colums_block .image {
    margin: auto;
}

.news_block {
    padding: 45px;
    background: #F5C533;
    text-align: center;
    color: #201E37;
    margin-bottom: 37px;
}

.news_block h2 {
    margin-bottom: 24px;
}

.news_block ul {
    margin-bottom: 0;
}

.news_block ul li {
    margin-bottom: 5px;
}

.news_block ul li:before {
    display: none;
}

.news_block ul li a {
    text-decoration: none;
    font-weight: normal;
    font-size: 18px;
    line-height: 21px;
    text-align: center;
    color: #201E37;
    transition: .3s;
}

.news_block ul li a:hover {
    opacity: .8;
}

footer {
    background: rgba(83, 81, 100, 0.52);
    flex: 0 0 auto;
    padding: 18px 0;
}

footer p {
    font-size: 12px;
    line-height: 14px;
    text-align: center;
}

.text_block h1 {
    margin-bottom: 26px;
}

.text_block .image {
    max-width: 700px;
    margin: 0 auto 50px;
}

.text_block blockquote {
    padding: 28px 111px 28px 163px;
    background: rgba(83, 81, 100, 0.52);
    border-radius: 20px;
    position: relative;
    max-width: 900px;
    margin: 0 auto 19px;
    box-sizing: border-box;
}

.text_block blockquote:before {
    content: '';
    display: block;
    width: 70px;
    height: 60px;
    background: url("img/quote_1.png");
    background-size: cover;
    position: absolute;
    top: 50%;
    left: 32px;
    transform: translateY(-50%);
}

main .text_block blockquote p {
    font-style: italic;
    max-width: 626px;
    margin-bottom: 0;
}

main ol, main ul {
    margin-bottom: 19px;
}

main ol li, main ul li {
    margin-left: 25px;
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 26px;
    position: relative;
}

main ul li {
    list-style-type: none;
    margin-left: 0;
    padding-left: 25px;
}

main ul li:before {
    content: '';
    display: block;
    background: #fff;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 12px;
}

table {
    box-sizing: border-box;
    margin: 0 auto 19px;
    display: block;
    border-collapse: collapse;
    width: 800px;
}

table tr td {
    border-bottom: 1px solid #883CFF;
    padding: 20px;
    color: #883CFF;
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
}

table tr td:first-child, table tr td:last-child {
    width: 10%;
}

table tr td:nth-child(2), table tr td:nth-child(3) {
    width: 40%;
}

table tr:last-child td {
    border-bottom: none;
}

.reg_btn {
    display: block;
    background: #883CFF;
    border-radius: 20px;
    padding: 35px 133px;
    color: white;
    max-width: 550px;
    margin: 0 auto 50px;
    font-weight: bold;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: .3s;
}

.reg_btn:hover {
    opacity: .8;
}

@media (max-width: 1400px) {
    .content_wrap {
        padding: 0 14px;
    }
}

@media (max-width: 1024px) {

    .colums_block .content_wrap {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .colums_block h2 {
        text-align: center;
    }

    .colums_block .image {
        max-width: 768px;
    }

    .colums_block .left_col {
        width: 100%;
    }

    .colums_block .right_col {
        width: 100%;
        margin-bottom: 19px;
    }

    body.active {
        height: 100vh;
        overflow: hidden;
    }

    header {
        margin-bottom: 17px;
        background: #201E37;
    }

    header .burger {
        display: inline-block;
        z-index: 2;
    }

    header .burger span {
        display: block;
        width: 30px;
        height: 3px;
        background: #FBBE03;
        margin-bottom: 3px;
    }

    header .logo_wrap .logo p, header .logo_wrap .logo a {
        color: #FBBE03;
        font-weight: bold;
        font-size: 20px;
        line-height: 27px;
    }

    header .content_wrap .menu_wrap nav {
        position: absolute;
        width: 100%;
        height: 100vh;
        background: #201E37;
        top: 0;
        left: 100vw;
        transition: .3s;
    }

    header .content_wrap {
        padding: 7px 12px;

    }

    header .content_wrap .menu_wrap {
        display: flex;
        justify-content: end;
    }

    header .content_wrap .menu_wrap nav ul {
        flex-direction: column;
        padding: 75px 75px 25px 20px;
    }

    header .content_wrap .menu_wrap nav ul li {
        margin-bottom: 20px;
        margin-right: 0;
        padding-bottom: 11px;
        font-weight: 500;
        font-size: 24px;
        line-height: 28px;
        color: #FBBE03;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        overflow: hidden;
    }

    header .content_wrap .menu_wrap nav ul li a {
        font-size: 24px;
        line-height: 28px;
        color: #FBBE03;
    }

    header .content_wrap .menu_wrap nav ul li:last-child {
        margin-bottom: 0;
    }

    header .content_wrap .menu_wrap nav.active {
        left: 0;
    }

    .burger.active span {
        height: 5px;
    }

    header .burger span {
        transition: transform 0.25s;
        transform-origin: center;
    }

    header .burger.active span:nth-of-type(1) {
        transform: rotate(45deg);
        transform-origin: 9px 6px;
    }

    header .burger.active span:nth-of-type(2) {
        display: none;
    }

    header .burger.active span:nth-of-type(3) {
        transform: rotate(-45deg);
        transform-origin: 13px 0px;
    }

    footer {
        background: #201E37;
        padding: 8px 0;
    }

    .text_block blockquote {
        padding: 20px;
        margin-bottom: 19px;
    }

    .table_wrap {
        width: 100%;
        overflow-x: scroll;
    }

    .reg_btn {
        padding: 15px 0;
        color: white;
        max-width: 90%;
    }
}
