:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/roboto-v30-latin-regular.eot);
    src: url(../fonts/roboto-v30-latin-regular_8b7d8b69c993f3aa.eot) format('embedded-opentype'), url(../fonts/roboto-v30-latin-regular.woff2) format('woff2'), url(../fonts/roboto-v30-latin-regular.woff) format('woff'), url(../fonts/roboto-v30-latin-regular.ttf) format('truetype'), url(../fonts/roboto-v30-latin-regular_26c12a414c33bdbb.svg) format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/roboto-v30-latin-700.eot);
    src: url(../fonts/roboto-v30-latin-700_8b7d8b69c993f3aa.eot) format('embedded-opentype'), url(../fonts/roboto-v30-latin-700.woff2) format('woff2'), url(../fonts/roboto-v30-latin-700.woff) format('woff'), url(../fonts/roboto-v30-latin-700.ttf) format('truetype'), url(../fonts/roboto-v30-latin-700_26c12a414c33bdbb.svg) format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

#wrapper {
    max-width: 1110px;
    margin: 16px auto;
    border: 0 solid #000;
    background: #fff;
}

article {
    padding: 10px 0 0;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

p {
    margin: 0 0 16px;
}

strong {
    font-weight: 700;
}

h1 {
    padding: 20px 15px;
    font-weight: 400;
    font-size: 46px;
    line-height: 54px;
    background: #002d32;
    color: #fff;
}

h2 {
    margin: 0 0 10px;
    font-weight: 400;
    font-size: 25px;
    line-height: 30px;
}

h3 {
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 0 0 40px 25px;
    list-style: none;
}

ul li {
    padding-left: 18px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0f594d;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 8px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.logo {
    padding: 25px 15px;
    background: #23d2af;
}

.left {
    padding: 15px;
    width: 66.25%;
}

.right {
    padding: 15px;
    width: 33.25%;
    box-shadow: -0 0 20px 0 rgba(0, 0, 0, 0.1);
    margin-top: 25px;
}

.center {
    text-align: center;
}

.video_waper {
    margin: 30px 0;
    position: relative;
    padding-bottom: 56.25%;
}

.video_waper iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    border: none;
}

p a img {
    position: relative;
    top: -3px;
    margin-right: 4px;
}

.buttom {
    margin: 40px 0;
}

.buttom a {
    background: #c284f5;
    padding: 12px 191px;
    color: #000;
    display: inline-block;
    border-radius: 5px;
    font-size: 18px;
    line-height: 22px;
}

.right .buttom a {
    padding: 12px 16px;
    display: block;
    text-align: center;
}

.icon {
    margin: -2px 4px 0 0;
    position: relative;
    top: -4px;
}

.box {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 0 7px;
    align-items: center;
    flex-wrap: wrap;
}

.box p {
    margin: 0;
    width: calc(100% - 36px);
}

.box img {
    position: relative;
    top: -2px;
}

footer {
    display: none;
}

@media all and (max-width: 1109px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    .buttom a {
        padding: 12px 30px;
    }
}

@media all and (max-width: 767px) {
    :is(.left, .right) {
        width: 100%;
    }

    h1 {
        font-size: 35px;
        line-height: 43px;
    }

    h2 {
        font-size: 22px;
        line-height: 27px;
    }

    h3 {
        font-size: 20px;
        line-height: 25px;
    }

    ul {
        padding-left: 0;
    }
}