/*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*/

a {
    transition: .3s;
}

a:hover {
    opacity: .6;
}

body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Philosopher', sans-serif;
    font-style: normal;
    color: #fff;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: #060704;
}

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

img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    text-align: center;
    margin-bottom: 21px;
}

p {
    font-weight: normal;
    font-size: 25px;
    line-height: 28px;
    margin-bottom: 21px;
}

header {
    margin-bottom: 4px;
}

header .content_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #A1A1A1;
}

header .content_wrap .logo_wrap {
    width: 172px;
}

header .content_wrap .logo_wrap .logo {
    width: 172px;
    display: block;
}

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: bold;
    font-size: 25px;
    line-height: 28px;
    margin-right: 58px;
    color: #000;
}

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: #f5efbe;
    transition: .3s;
}

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

main .content_wrap {
    border-top: 1px solid #f5efbe;
}

.colums {
    display: flex;
}

main {
    flex: 1 0 auto;
}

h1 {
    font-size: 45px;
    line-height: 50px;
	color: #f5efbe;
}

h2 {
    font-size: 32px;
    line-height: 36px;
		color: #f5efbe;
}

h3 {
    font-size: 30px;
    line-height: 34px;
		color: #f5efbe;
}

.top_block {
    padding: 20px 0;
    border-bottom: 1px solid #A1A1A1;
    margin-bottom: 4px;
}

.top_block h1 {
    text-align: left;
}

.top_block p {
    font-size: 35px;
    line-height: 39px;
}

.top_block .colums .left_col {
    width: 57%;
    flex-shrink: 0;
    margin-right: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top_block .colums .right_col .img {
    max-width: 700px;
}

.blogs_block {
    border-top: 1px solid #A1A1A1;
    padding: 21px 0;
}

.blogs_block h2 {
    text-align: left;
}

.blogs_block .left_col {
    margin-right: 54px;
    width: 70%;
    flex-shrink: 0;
}

.blogs_block .posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blogs_block .posts .post {
    max-width: 500px;
    display: flex;
    flex-direction: column;
}

.blogs_block .posts .post .img {
    margin: 0 auto 26px;
}

.blogs_block .posts .post a {
    font-weight: bold;
    font-size: 32px;
    line-height: 36px;
    color: #000000;
    text-decoration: none;
    margin-bottom: 21px;
}

.blogs_block .posts_col {
    display: flex;
    flex-direction: column;
}

.blogs_block .posts_col a {
    font-weight: bold;
    font-size: 30px;
    line-height: 34px;
    color: #000000;
    text-decoration: none;
    margin-bottom: 21px;
}

footer {
    flex: 0 0 auto;
}

footer .content_wrap {
    padding: 5px 0;
    background: #f5efbe;
}

footer p {
    font-weight: bold;
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    color: #000000;
    margin-bottom: 0;
}

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

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: disc;
    margin-left: 0;
    padding-left: 25px;
	    font-size: 25px;
    line-height: 28px;
    margin-bottom: 21px;
	
}

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

.top_img {
    max-width: 1000px;
    margin: 20px auto 21px;
}

table {
    box-sizing: border-box;
    border-radius: 2px;
    margin: 0 auto 10px;
    display: block;
    border-collapse: collapse;
    width: 1000px;
}

table tbody {
    display: block;
}

table tr {
    display: flex;
}

table tr td {
    border: 1px solid #000;
    padding: 7px;
    font-weight: normal;
    font-size: 30px;
    line-height: 34px;
    color: #000;
    text-align: center;
}

table tr td:first-child {
    width: 70%;
}

table tr td:last-child {
    width: 30%;
}

p a {
    font-weight: bold;
    font-size: 25px;
    line-height: 28px;
    color: #fff;
}

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

    header .content_wrap {
        padding: 14px;
    }
}

@media (max-width: 1024px) {
    .colums {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .colums.col {
        width: 100%;
    }

    .colums .left_col {
        order: 2;
        border-right: none;
        max-width: 100%;
        width: 100%;
    }

    .colums .right_col {
        width: 100%;
        order: 1;
    }

    header .burger {
        display: inline-block;
    }

    header .burger span {
        display: block;
        width: 50px;
        height: 4px;
        background: #000;
        margin-bottom: 11px;
    }

    header .burger span:last-child {
        margin-bottom: 0;
    }

    header .logo_wrap {
        order: 2;
    }

    header .content_wrap .logo_wrap .logo {
        margin-left: auto;
        margin-right: 0;
    }

    header .menu_wrap nav {
        position: absolute;
        left: 58px;
    }

    header .content_wrap {
        padding: 7px 12px;

    }

    header .content_wrap .menu_wrap nav ul {
        flex-direction: column;
        padding: 13px 28px 28px;
        background: #fff;
    }

    header .content_wrap .menu_wrap nav ul li {
        margin-bottom: 15px;
        font-weight: bold;
        font-size: 25px;
        line-height: 28px;
    }

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

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

    header .content_wrap .menu_wrap nav {
        display: none;
    }

    header .content_wrap .menu_wrap nav.active {
        display: block;
    }

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

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

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

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

    .blog {
        flex-direction: column;
        align-items: center;
    }

    .blog .img {
        margin-right: 0;
        margin-bottom: 10px;
    }

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

    table {
        width: 100%;
    }

    table tr {
        display: flex;
        flex-direction: column;
    }

    table tr td {
        width: 100%;
    }

    table tr td:first-child {
        width: auto;
    }

    table tr td:last-child {
        width: auto;
    }

    .top_block .colums .right_col .img {
        margin: 0 auto 21px;
    }

    .top_block .colums .left_col {
        width: 100%;
        margin-right: 0;
    }

    .colums .left_col {
        margin-right: 0;
    }

    .blogs_block .posts .post {
        max-width: 100%;
    }

    header .content_wrap .logo_wrap {
        width: 113px;
    }

    header .content_wrap .logo_wrap .logo {
        width: 113px;
    }
}
