/*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, caption, tbody, tfoot, thead, tr,
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;
}

h1, h2, h3 {
    text-align: center;
}

/* 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: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 30px;
    color: #000;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

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

img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

picture img {
    border-radius: 14px;
    margin: 20px auto;
}

/*img {
    max-width: 100%;

    height: auto;
}*/

a {
    transition: .3s;
}

a:hover {
    opacity: .6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    color: #000;
}

header {
    padding: 50px 0;
    background: #e8f0c1;
}

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

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

header .content_wrap .logo_wrap .logo {
    display: block;


}

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

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

header .content_wrap .menu_wrap nav ul li {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    margin-right: 100px;
    position: relative;
}

header .content_wrap .menu_wrap nav ul li span:before {
    content: '';
    display: block;
    width: 23px;
    height: 3px;
    background: #F6762E;
    border-radius: 10px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

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

header .content_wrap .menu_wrap nav ul li a {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    color: #fff;
    transition: .3s;
}

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

header .burger {
    display: none;
}

main {
    flex: 1 0 auto;
}

.hero_section {
    background: #e8f0c1;
    padding: 28px 0 44px;
    margin-bottom: 47px;
}

.hero_section .content_wrap {
    display: flex;
    justify-content: space-around;
}

.hero_section h1 {
    padding-top: 22px;
    font-weight: 600;
    font-size: 56px;
    line-height: 150%;
    color: #203239;
    max-width: 685px;
    flex-shrink: 0;
    text-align: center;
}

.hero_section .img {
    width: 300px;
    height: auto;
    flex-shrink: 0;
}

.image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 39px;
    border-radius: 30px;
}

h1 {
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 21px;
}

h2 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 21px;
    color: #47a500;
}

h3 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 15px;
    color: #47a500;
}

p, ol, ul {
    font-size: var(--normal-font-size);
    margin-bottom: 16px;
    line-height: 28px;
    text-align: start;
}

p {
    font-style: normal;
    font-weight: 300;
}

blockquote {
    position: relative;
    margin-bottom: 21px;
    border-left: 3px solid #FF7527;
    padding: 20px 0 20px 30px;
}

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

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

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

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

/*table {
    box-sizing: border-box;
    margin: 0 auto 60px;
    display: block;
    border-collapse: collapse;
    width: 100%;
}*/

/*table tbody {
    display: block;
}

table tr {
    display: flex;
    border-bottom: 1px solid #FF7527;
}

table tr td {
    font-weight: bold;
    font-size: 18px;
    line-height: 18px;
    color: #000;
    padding: 18px;
    width: 40%;
    text-transform: uppercase;
}*/

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

table tr td:last-child {
    text-align: right;
}

.faq_block {
    margin-bottom: 43px;
}

.faq_block h2 {
    font-size: 36px;
    line-height: 32px;
    color: #FF7527;
    margin-bottom: 64px;
}

.faq_block h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 11px;
}

.faq_block p {
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 46px;
}

.faq_block p:last-child {
    margin-bottom: 0;
}

.main_content .news_block .content_wrap {
    padding-right: 0;
}

.news_block {
    margin-bottom: 68px;
}

.news_block h2 {
    font-size: 24px;
    line-height: 36px;
    color: #FF7527;
    margin-bottom: 43px;
}

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

.news_item {
    width: 330px;
    padding: 20px 33px;
    border: 1px solid #EEEDDE;
    border-radius: 10px;
    box-sizing: border-box;
    position: relative;
}

.news_item:before {
    content: '';
    display: block;
    width: 8px;
    height: 30px;
    background: #FF7527;
    border-radius: 5px;
    position: absolute;
    top: 17px;
    left: 0;
}

.news_item h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 21px;
}

.news_item p {
    margin-bottom: 21px;
}

.news_item a {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #203239;
    text-decoration: none;
    display: block;
    width: 177px;
    position: relative;
}

.news_item a:before {
    content: '';
    display: block;
    width: 40px;
    height: 30px;
    background: #D6D5C7;
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.news_item a:after {
    content: '';
    display: block;
    width: 13px;
    height: 10px;
    background: url("img/arrow.png");
    background-size: contain;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

footer {
    background: #e8f0c1;
    flex: 0 0 auto;
}

footer .content_wrap {
    padding: 31px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer_logo_wrap {
    width: 72px;
    height: 42px;
    display: block;
}

footer .socials {
    display: flex;
}

footer .socials .social_link {
    display: block;
    width: 24px;
    height: 24px;
    margin-right: 64px;
    background-size: contain;
}

footer .socials .social_link:last-child {
    margin-right: 0;
}

.instagram {
    background: url("img/Instagram.png");
}

.facebook {
    background: url("img/Facebook.png");
}

.tumbir {
    background: url("img/Tumblr.png");
}

.linkedin {
    background: url("img/Linkedin.png");
}

.header_menu .logo_wrap {
    display: none;
}

@media (max-width: 1250px) {

    .content_wrap, .main_content .content_wrap, .main_content .news_block .content_wrap {
        padding: 0 22px;
    }

    .hero_section .content_wrap {
        flex-wrap: wrap;
        align-items: center;
    }

    .hero_section h1 {
        max-width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .hero_section .img {
        max-width: 300px;
        width: 100%;
        margin: 0 auto;
    }

    footer .content_wrap {
        padding: 31px 22px;
    }
}

@media (max-width: 1024px) {
    body.active {
        overflow-y: hidden;
    }

    footer .content_wrap {
        padding: 36px 22px;
        flex-direction: column;
    }

    .footer_logo_wrap {
        margin-bottom: 25px;
    }

    .logo_wrap {
        display: none;
    }

    header {
        background: #e8f0c1;
        padding: 24px;
        margin-bottom: 0;
    }

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

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

    header .burger.active span {
        background: #fff;
    }

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

    header .logo_wrap {
        order: 2;
    }

    header .content_wrap .logo_wrap .logo {
        margin-left: 0;
        margin-bottom: 70px;
    }

    header .content_wrap .menu_wrap nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    header .content_wrap .menu_wrap nav ul li {
        margin-bottom: 32px;
        font-weight: bold;
        font-size: 25px;
        line-height: 22px;
        text-align: left;
        color: #fff;
    }

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

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

    header .content_wrap .menu_wrap nav {
        left: -100%;
        height: 100vh;
        transition: .3s;
        top: 0;
        position: absolute;
        padding: 100px 95px 60px 62px;
        background: #727e8a;
    }

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

    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: 15px 0;
    }

    .header_menu.active .logo_wrap {
        display: block;
    }

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

    table {
        width: 800px;
    }

   /* table tr td {
        width: 300px;
    }*/

/*    table tr td:first-child, table tr td:last-child {
        width: 87px;
    }*/

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

    .news_items .news_item {
        width: 100%;
        margin-bottom: 15px;
    }
}
