body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

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

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

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

abbr,
acronym {
    border: 0;
}

input,
textarea {
    outline: none;
}

textarea {
    resize: none;
}

:focus {
    outline: none;
}

html {
    font-size: 62.5%;
}

html,
body {
    height: 100%;
}

body {
    min-width: 360px;
    font-family: 'Arial', sans-serif;
    line-height: 32px;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    background-color: #323646;
}

body.fixed {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

header,
aside,
section,
footer {
    display: block;
}

::-webkit-input-placeholder {
    color: #b5b8c3;
}

::-moz-placeholder {
    color: #b5b8c3;
}

:-moz-placeholder {
    color: #b5b8c3;
}

:-ms-input-placeholder {
    color: #b5b8c3;
}

:focus::-webkit-input-placeholder {
    color: transparent;
}

:focus::-moz-placeholder {
    color: transparent;
}

:focus:-moz-placeholder {
    color: transparent;
}

:focus:-ms-input-placeholder {
    color: transparent;
}

h1,
h2 {
    font-family: 'Raleway', sans-serif;
    line-height: 38px;
    font-size: 32px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1.28px;
}

h1 span,
h2 span {
    color: #51948c;
}

img {
    width: 100%;
    display: block;
}

.wrapper {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.content {
    margin-bottom: auto;
    /* padding-top: 72px; */
    width: 100%;
    background: url(../img/home-banner-bg.png) no-repeat center top;
    background-size: 100% auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.center {
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    max-width: 1536px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header {
    padding: 16px 0;
    width: 100%;
    height: 72px;
    /* position: fixed; */
    /* top: 0; */
    /* left: 0; */
    z-index: 3;
    background-color: #323646;
    border-bottom: 1px solid #494e61;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.header .center {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .logo {
    width: 140px;
}

.header .btn-mob {
    width: 24px;
    height: 24px;
    background: url("../img/btn-menu-close.svg") no-repeat center;
    cursor: pointer;
}

.header .btn-mob.open {
    background: url("../img/btn-menu-open.svg") no-repeat center;
}

.lang {
    margin: 0 auto;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
}

.lang__list {
    padding: 0 16px;
    display: none!important;
    width: 100%;
    max-height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: 0;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    background-color: #323646;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.lang__list.show {
    max-height: calc(100vh - 72px);
    opacity: 1;
    display: flex!important;
}

.lang__list-item {
    padding: 16px 32px 16px 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    position: relative;
    border-bottom: 1px solid #363b4d;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    color: white;
    text-decoration: none;
}

.lang__list-item:last-child {
    margin-bottom: 24px;
}

.lang__list-item img {
    width: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.lang__list-item .lang__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    line-height: 24px;
    font-size: 16px;
}

.lang__list-item .lang__code {
    text-transform: uppercase;
    position: relative;
}

.lang__list-item .lang__code:before {
    content: "";
    margin-top: -1px;
    width: 6px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: calc(100% + 5px);
    background-color: #fff;
}

.lang__list-item .lang__str {
    color: #70768a;
}

.lang__list-item.checked:before {
    content: '';
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 0;
    background: url("../img/icn-checked.svg") no-repeat center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.lang__list-back {
    margin-top: 24px;
    padding: 16px 0;
    line-height: 32px;
    font-size: 24px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #363b4d;
}

.lang__active {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.lang__active .lang__list-item {
    margin: 0;
    padding: 0;
}

.lang__active .lang__list-item:before {
    display: none;
}

.lang__active .lang__list-item img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.lang__active .lang__list-item .lang__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    line-height: 24px;
    font-size: 20px;
}

.lang__active .lang__list-item .lang__code {
    text-transform: capitalize;
}

.lang__active .lang__list-item .lang__code:before {
    display: none;
}

.lang__active .lang__list-item .lang__str {
    display: none;
}

.main-menu {
    padding: 48px 16px;
    width: 100%;
    height: calc(100vh - 72px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    overflow: auto;
    background-color: #323646;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 500ms;
    transition: -webkit-transform 500ms;
    transition: transform 500ms;
    transition: transform 500ms, -webkit-transform 500ms;
}

.main-menu.open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.main-menu__list {
    margin-bottom: 40px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

.main-menu__list-item {
    width: 100%;
    text-align: center;
    white-space: nowrap;
}

.main-menu__list-item.active .main-menu__list-link {
    color: #51948c;
}

.main-menu__list-link {
    color: #b5b8c3;
    text-decoration: none;
    -webkit-transition: color 300ms;
    transition: color 300ms;
}

.main-menu__list-link:hover {
    color: #51948c;
}

.social-list {
    margin-top: auto;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
}

.social-list__item {
    width: 64px;
    height: 64px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.bottom__box {
    margin-top: 40px;
    width: 100%;
}

.bottom__box-mail {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.bottom__box-mail .link {
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
    line-height: 32px;
    font-size: 24px;
    color: #b5b8c3;
    text-decoration: none;
}

.bottom__box-mail .link img {
    width: 24px;
    height: 24px;
}

.btn {
    width: 100%;
    max-width: 328px;
    height: 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    line-height: 32px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    border: 0;
    background-color: #51948c;
    border-radius: 8px;
}

.btn img {
    width: 24px;
    height: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

a.btn {
    color: #fff;
}

.home-banner {
    padding: 48px 0;
    width: 100%;
}

.home-banner .center {
    max-width: 538px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.home-banner .btn {
    margin-top: 16px;
}

.home-banner__content {
    width: 100%;
    max-width: 678px;
}

.home-banner__media {
    width: 100%;
    max-width: 538px;
}

.how-use {
    padding: 48px 0;
    width: 100%;
}

.how-use h2 {
    margin: 0 auto;
    width: 100%;
    max-width: 538px;
}

.how-use__steps {
    margin: 32px auto 0;
    width: 100%;
    max-width: 538px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.how-use__steps-item {
    width: 100%;
}

.how-use__steps-item:last-child {
    display: none;
}

.videobox {
    width: 100%;
    margin-top: 32px;
    overflow: hidden;
}

.videobox__container {
    padding: 48px 0;
    width: 100%;
}

.videobox__container .center {
    max-width: 870px;
}

.videobox__container h2 {
    margin-bottom: 24px;
    text-align: center;
}

.videobox__wrap {
    padding-top: 56.29%;
    height: 0;
    position: relative;
}

.videobox__wrap:hover .videobox__play {
    opacity: 0.7;
}

.videobox__wrap--enabled {
    cursor: pointer;
}

.videobox__wrap--enabled .videobox__play {
    display: block;
}

.videobox__link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.videobox video,
.videobox iframe,
.videobox img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    border: 0;
}

.videobox__play {
    padding: 0;
    width: 70px;
    height: 48px;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 0;
    background: url("../img/icn-play.svg") no-repeat center;
    background-size: cover;
    -webkit-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
    cursor: pointer;
}

.videobox__play:focus {
    opacity: 0.7;
}

.pagination {
    margin: 64px auto 0;
    width: 100%;
    max-width: 952px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0 16px;
}

.pagination__item {
    width: 48px;
    height: 48px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border: 1px solid #70768a;
    border-radius: 4px;
}

.pagination__item.active {
    background-color: #51948c;
    border: 1px solid #51948c;
}

.pagination__item.active .pagination__item-link {
    color: #fff;
}

.pagination__item:hover .pagination__item-link {
    color: #fff;
}

.pagination__item-link {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #70768a;
    text-decoration: none;
    -webkit-transition: color 300ms;
    transition: color 300ms;
}

.pagination__item-next,
.pagination__item-prev {
    background: #51948c url("../img/arrow-white.svg") no-repeat center;
    border: 1px solid #51948c;
}

.pagination__item-next {
    margin-left: 16px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.pagination__item-prev {
    margin-right: 16px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.idea {
    padding: 32px 0 48px;
    width: 100%;
}

.idea .center {
    padding: 0;
    max-width: 992px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.idea h3 {
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
    line-height: 36px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1.12px;
}

.idea__media {
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.numbers {
    padding: 48px 0;
    width: 100%;
}

.numbers .center {
    padding: 0;
    max-width: 992px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.numbers h3 {
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
    line-height: 36px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1.12px;
}

.numbers__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.numbers__list-item {
    padding: 0 16px;
    width: 100%;
    height: 228px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
    background-color: #363b4d;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.numbers__list-title {
    line-height: 44px;
    font-size: 44px;
    color: #51948c;
    font-weight: 900;
    text-align: center;
}

.numbers__list-desc {
    text-align: center;
}

.facts {
    margin: 0 auto;
    padding: 48px 0;
    width: 100%;
    max-width: 992px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.facts h3 {
    margin-bottom: 32px;
    font-family: 'Raleway', sans-serif;
    line-height: 36px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1.12px;
}

.facts__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
}

.facts__list-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
}

.facts__list-title {
    padding: 0 54px 0 16px;
    height: 70px;
    position: relative;
    background-color: #494e61;
    border-radius: 35px;
}

.facts__list-title:before {
    content: "";
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    right: 12px;
    background: url("../img/fast.svg") no-repeat center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.facts__list-title h4 {
    font-family: 'Raleway', sans-serif;
    line-height: 70px;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.168px;
}

.facts__list-text {
    max-width: 830px;
}

.trust {
    padding: 48px 0 0;
    width: 100%;
}

.trust .center {
    padding: 0;
    max-width: 992px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.trust h3 {
    margin-bottom: 16px;
    font-family: 'Raleway', sans-serif;
    line-height: 36px;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1.12px;
}

.trust__media {
    margin: 0 auto;
    width: 100%;
    max-width: 220px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.page-template {
    padding: 48px 0;
    width: 100%;
}

.page-template h1 {
    text-align: center;
}

.page-template__desc {
    margin-top: 16px;
    text-align: center;
}

.page-template__text {
    margin: 32px auto 0;
    width: 100%;
    max-width: 952px;
    line-height: 24px;
    font-size: 16px;
    overflow: hidden;
    border: 1px solid #494e61;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page-template__text h3 {
    padding: 16px 16px 0;
    width: 100%;
    line-height: 28px;
    font-size: 20px;
    border-top: 1px solid #494e61;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page-template__text p {
    padding: 16px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page-template__text ul {
    margin-top: 10px;
    padding: 0 16px 16px;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page-template__text ul li {
    margin-top: 10px;
    padding-left: 30px;
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page-template__text ul li:first-child {
    margin-top: 0;
}

.page-template__text ul li:before {
    content: "";
    width: 14px;
    height: 14px;
    position: absolute;
    top: 5px;
    left: 0;
    background-color: #51948c;
    border-radius: 3px;
}

.page-template__text a {
    color: #51948c;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.page-template__text a:hover {
    opacity: 0.6;
}

.page-template__single {
    margin: 32px auto 0;
    width: 100%;
    max-width: 952px;
    line-height: 24px;
    font-size: 16px;
}

.page-template__single-box {
    margin-bottom: 32px;
}

.page-template__single-box:last-child {
    margin-bottom: 0;
}

.page-template__single-box p {
    margin-bottom: 24px;
}

.page-template__single-box p:last-child {
    margin-bottom: 0;
}

.page-template__single-box img {
    margin-bottom: 24px;
}

.page-template__single-box img:last-child {
    margin-bottom: 0;
}

.faq-list {
    margin: 32px auto 0;
    width: 100%;
    max-width: 952px;
    border: 1px solid #494e61;
    border-radius: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.faq-list__item {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.faq-list__item:last-child .faq-list__item-title p,
.faq-list__item:last-child .faq-list__item-content p {
    border: 0;
}

.faq-list__item.active .faq-list__item-title:before {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.faq-list__item-title {
    padding: 16px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #494e61;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.faq-list__item-title:before {
    content: "";
    margin-top: -12px;
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    right: 16px;
    background: url("../img/arrow-white.svg") no-repeat center;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-list__item-title h3 {
    padding-right: 40px;
    width: 100%;
    line-height: 28px;
    font-size: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.faq-list__item-content {
    width: 100%;
    height: auto;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 300ms;
    transition: max-height 300ms;
}

.faq-list__item-content p {
    padding: 16px;
    width: 100%;
    line-height: 24px;
    font-size: 16px;
    border-bottom: 1px solid #494e61;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.faq-list__item-content a {
    color: #51948c;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.faq-list__item-content a:hover {
    opacity: 0.6;
}

.blog-list {
    margin: 32px auto 0;
    width: 100%;
    max-width: 952px;
    border: 1px solid #494e61;
    border-radius: 24px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.blog-list__item {
    width: 100%;
    border-top: 1px solid #494e61;
}

.blog-list__item:first-child {
    border: 0;
}

.blog-list__item-link {
    padding: 16px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 16px;
    line-height: 24px;
    font-size: 16px;
    color: #d9d9d9;
    text-decoration: none;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.blog-list__item-link:before {
    content: "";
    width: 48px;
    height: 48px;
    display: none;
    position: absolute;
    top: 50%;
    right: 24px;
    background: #51948c url("../img/arrow-white.svg") no-repeat center;
    border-radius: 4px;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.blog-list__item-link h3 {
    margin-bottom: 4px;
    line-height: 32px;
    font-size: 24px;
    -webkit-transition: color 300ms;
    transition: color 300ms;
}

.blog-list__item-img {
    margin-top: 6px;
    width: 48px;
    height: 48px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.help-content {
    margin: 32px auto 0;
    width: 100%;
    max-width: 464px;
}

.help-content .form-area {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.help-content .form-area__line {
    width: 100%;
}

.help-content .form-area__field,
.help-content .form-area__message {
    padding: 20px 22px;
    width: 100%;
    display: block;
    font-family: 'Areal', sans-serif;
    line-height: 24px;
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    background-color: #494e61;
    border-radius: 8px;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.help-content .form-area__field {
    height: 64px;
}

.help-content .form-area__message {
    height: 136px;
}

.help-content .form-area .btn--submit {
    max-width: 100%;
}

.help-content__media {
    margin: 32px auto 0;
    width: 100%;
    max-width: 215px;
}

.not-found {
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
    max-width: 618px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.not-found .btn {
    margin: 32px auto 0;
}

.not-found__media {
    margin: 0 auto;
    width: 100%;
    max-width: 492px;
}

.not-found h1 {
    margin-bottom: 16px;
    color: #70768a;
}

.not-found__content {
    margin-top: 32px;
    width: 100%;
    color: #70768a;
    text-align: center;
}

.footer {
    padding: 32px 0 0;
    width: 100%;
    border-top: 1px solid #494e61;
}

.footer .center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer .logo {
    margin: 0 auto;
    padding-bottom: 24px;
    width: 100%;
    max-width: 328px;
}

.footer .logo img {
    width: 140px;
}

.footer .social-list {
    padding-top: 24px;
}

.footer .bottom__box {
    margin: 0;
    padding: 48px 0 32px;
    position: relative;
}

.footer .copy {
    padding: 24px 0;
    width: 100%;
    line-height: 24px;
    font-size: 16px;
    color: #b5b8c3;
    text-align: center;
    border-top: 1px solid #494e61;
}

.footer-menu {
    padding: 24px 0;
    width: 100%;
    border-top: 1px solid #363b4d;
    border-bottom: 1px solid #363b4d;
}

.footer-menu__list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.footer-menu__list-item {
    width: 100%;
    text-align: center;
    line-height: 32px;
    font-size: 24px;
    color: #b5b8c3;
    white-space: nowrap;
}

.footer-menu__list-item.active .footer-menu__list-link {
    color: #51948c;
}

.footer-menu__list-link {
    color: #b5b8c3;
    text-decoration: none;
    -webkit-transition: color 300ms;
    transition: color 300ms;
}

.footer-menu__list-link:hover {
    color: #51948c;
}

@media (min-width: 650px) {
    .header .btn-mob {
        display: none;
    }

    .lang {
        margin: 0;
    }

    .lang:hover>.lang__active>.lang__list-item{
        border: 0px!important;
    }

    .lang__list {
        padding: 24px 16px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 24px;
        -webkit-box-shadow: 0px 4px 80px 0px rgba(0,0,0,0.2);
        box-shadow: 0px 4px 80px 0px rgba(0,0,0,0.2);
    }

    .lang__list.show {
        height: calc(100vh - 72px);
        max-height: 600px;
    }

    .lang__list-item {
        padding: 16px 32px 16px 16px;
        width: calc((100% - 48px) / 3);
        white-space: nowrap;
        border: 1px solid #363b4d;
        border-radius: 8px;
    }

    .lang__list-item:last-child {
        margin-bottom: 0;
    }

    .lang__list-item.checked {
        border: 1px solid #51948c;
    }

    .lang__list-item.checked:before {
        right: 16px;
    }

    .lang__list-back {
        display: none;
    }

    .lang__active .lang__list-item {
        border: 0;
    }

    .main-menu {
        margin: 0 auto;
        padding: 0;
        width: auto;
        height: auto;
        position: static;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    .main-menu__list {
        margin-bottom: 0;
        width: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .main-menu .social-list,
    .main-menu .bottom__box {
        display: none;
    }

    .numbers__list-item {
        width: calc((100% - 24px) / 2);
    }

    .footer .center {
        gap: 32px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer .logo {
        margin: 0;
        padding: 0;
        max-width: 140px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }

    .footer .social-list {
        margin: 0;
        padding: 0;
        width: auto;
    }

    .footer .bottom__box {
        margin-left: auto;
        padding: 0;
        width: auto;
    }

    .footer-menu {
        margin-left: auto;
        padding: 0;
        width: auto;
        border: 0;
    }

    .footer-menu__list {
        padding: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .home-banner .center {
        max-width: 1536px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .home-banner .btn {
        margin-top: 32px;
    }

    .how-use h2 {
        max-width: 100%;
        text-align: center;
    }

    .how-use__steps {
        max-width: 1536px;
    }

    .how-use__steps-item {
        display: none;
    }

    .how-use__steps-item:last-child {
        display: block;
    }

    .idea .center {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .facts__list {
        gap: 24px;
    }

    .facts__list-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .trust .center {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer .social-list__item {
        width: 56px;
        height: 56px;
    }

    .footer .bottom__box-mail {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px;
    }

    .footer .bottom__box-mail .link {
        margin: 0;
    }
}

@media (min-width: 850px) {
    .footer .social-list__item {
        width: 48px;
        height: 48px;
    }

    .footer .bottom__box {
        margin-top: 24px;
        width: 100%;
    }

    .footer .bottom__box-mail {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .footer .bottom__box-mail .link {
        line-height: 24px;
        font-size: 16px;
        position: absolute;
        right: 0;
        top: calc(100% + 56px);
    }

    .footer .copy {
        text-align: left;
    }

    .footer-menu {
        margin: 0 auto;
    }
}

@media (min-width: 960px) {
    h1,
    h2 {
        line-height: 48px;
        font-size: 38px;
        letter-spacing: 2.16px;
    }

    /* .content { */
    /* padding-top: 112px; */
    /* } */

    .center {
        padding: 0 48px;
    }

    .header {
        height: 112px;
    }

    .lang__list.show {
        height: calc(100vh - 112px);
        top: 112px;
    }

    .numbers .center {
        gap: 64px;
    }

    .page-template__text {
        border-radius: 24px;
    }

    .page-template__text h3 {
        padding: 24px 24px 0;
        line-height: 32px;
        font-size: 24px;
    }

    .page-template__text p {
        padding: 24px;
    }

    .page-template__text ul {
        margin-top: 16px;
        padding: 0 24px 24px;
    }

    .page-template__text ul li {
        margin-top: 16px;
    }

    .page-template__single-box {
        margin-bottom: 64px;
    }

    .page-template__single-box:last-child {
        margin-bottom: 0;
    }

    .faq-list__item-title {
        padding: 24px;
    }

    .faq-list__item-title h3 {
        line-height: 32px;
        font-size: 24px;
    }

    .faq-list__item-content p {
        padding: 24px;
    }

    .blog-list__item-link {
        padding: 24px 88px 24px 24px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .blog-list__item-img {
        margin-top: 0;
        width: 64px;
        height: 64px;
    }

    .help-content {
        margin: 64px auto 0;
    }

    .help-content__media {
        margin: 64px auto 0;
    }

    .not-found .btn {
        margin: 64px auto 0;
        max-width: 228px;
    }

    .not-found__content {
        margin-top: 64px;
    }
}

@media (min-width: 1024px) {
    .header .logo {
        width: 225px;
    }

    .lang__list {
        padding: 24px 32px;
    }

    .lang__list-item {
        width: calc((100% - 72px) / 4);
    }

    .lang__list-item:hover {
        border: 1px solid #494e61;
    }

    .lang__list-item:hover .lang__str {
        color: #fff;
    }

    .pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .blog-list__item-link:before {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }

    .blog-list__item-link:hover:before {
        opacity: 1;
        visibility: visible;
    }

    .blog-list__item-link:hover h3 {
        color: #51948c;
    }

    .footer .logo {
        max-width: 225px;
    }

    .footer .logo img {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    h1,
    h2 {
        line-height: 64px;
        font-size: 54px;
    }

    .lang__list-item {
        width: calc((100% - 96px) / 5);
    }

    .home-banner {
        padding: 76px 0;
    }

    .home-banner .btn {
        margin-top: 40px;
    }

    .how-use {
        padding: 76px 0;
    }

    .how-use__steps {
        margin: 64px auto 0;
    }

    .videobox {
        margin-top: 64px;
    }

    .videobox__container {
        padding: 76px 0;
    }

    .idea {
        padding: 64px 0 78px;
    }

    .idea h3 {
        line-height: 54px;
        font-size: 44px;
        letter-spacing: 1.76px;
    }

    .numbers {
        padding: 78px 0;
    }

    .numbers h3 {
        line-height: 54px;
        font-size: 44px;
        letter-spacing: 1.76px;
    }

    .facts {
        padding: 78px 0;
    }

    .facts h3 {
        margin-bottom: 64px;
        line-height: 54px;
        font-size: 44px;
        letter-spacing: 1.76px;
    }

    .trust {
        padding: 78px 0 0;
    }

    .trust h3 {
        line-height: 54px;
        font-size: 44px;
        letter-spacing: 1.76px;
    }

    .page-template {
        padding: 76px 0;
    }

    .page-template__text {
        margin: 64px auto 0;
    }

    .page-template__single {
        margin: 64px auto 0;
    }

    .faq-list {
        margin: 64px auto 0;
    }

    .blog-list {
        margin: 64px auto 0;
    }
}

@media (min-width: 1440px) {
    .lang__list {
        padding: 24px 64px;
    }

    .lang__list-item {
        width: calc((100% - 120px) / 6);
    }

    .home-banner {
        padding: 104px 0;
    }

    .how-use {
        padding: 104px 0;
    }

    .videobox__container {
        padding: 104px 0;
    }

    .idea {
        padding: 64px 0 104px;
    }

    .numbers {
        padding: 104px 0;
    }

    .facts {
        padding: 104px 0;
    }

    .trust {
        padding: 104px 0 0;
    }

    .page-template {
        padding: 104px 0;
    }
}
