.blocker {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 1;
    padding: 20px;
    box-sizing: border-box;
    background-color: #000;
    background-color: rgba(0, 0, 0, 0.75);
    text-align: center
}

.blocker:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.05em
}

.blocker.behind {
    background-color: transparent
}

.modal {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 500px;
    box-sizing: border-box;
    width: 90%;
    background: #fff;
    padding: 15px 30px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left
}

.modal a.close-modal {
    position: absolute;
    top: -12.5px;
    right: -12.5px;
    display: block;
    width: 30px;
    height: 30px;
    text-indent: -9999px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAAAXNSR0IArs4c6QAAA3hJREFUaAXlm8+K00Acx7MiCIJH/yw+gA9g25O49SL4AO3Bp1jw5NvktC+wF88qevK4BU97EmzxUBCEolK/n5gp3W6TTJPfpNPNF37MNsl85/vN/DaTmU6PknC4K+pniqeKJ3k8UnkvDxXJzzy+q/yaxxeVHxW/FNHjgRSeKt4rFoplzaAuHHDBGR2eS9G54reirsmienDCTRt7xwsp+KAoEmt9nLaGitZxrBbPFNaGfPloGw2t4JVamSt8xYW6Dg1oCYo3Yv+rCGViV160oMkcd8SYKnYV1Nb1aEOjCe6L5ZOiLfF120EjWhuBu3YIZt1NQmujnk5F4MgOpURzLfAwOBSTmzp3fpDxuI/pabxpqOoz2r2HLAb0GMbZKlNV5/Hg9XJypguryA7lPF5KMdTZQzHjqxNPhWhzIuAruOl1eNqKEx1tSh5rfbxdw7mOxCq4qS68ZTjKS1YVvilu559vWvFHhh4rZrdyZ69Vmpgdj8fJbDZLJpNJ0uv1cnr/gjrUhQMuI+ANjyuwftQ0bbL6Erp0mM/ny8Fg4M3LtdRxgMtKl3jwmIHVxYXChFy94/Rmpa/pTbNUhstKV+4Rr8lLQ9KlUvJKLyG8yvQ2s9SBy1Jb7jV5a0yapfF6apaZLjLLcWtd4sNrmJUMHyM+1xibTjH82Zh01TNlhsrOhdKTe00uAzZQmN6+KW+sDa/JD2PSVQ873m29yf+1Q9VDzfEYlHi1G5LKBBWZbtEsHbFwb1oYDwr1ZiF/2bnCSg1OBE/pfr9/bWx26UxJL3ONPISOLKUvQza0LZUxSKyjpdTGa/vDEr25rddbMM0Q3O6Lx3rqFvU+x6UrRKQY7tyrZecmD9FODy8uLizTmilwNj0kraNcAJhOp5aGVwsAGD5VmJBrWWbJSgWT9zrzWepQF47RaGSiKfeGx6Szi3gzmX/HHbihwBser4B9UJYpFBNX4R6vTn3VQnez0SymnrHQMsRYGTr1dSk34ljRqS/EMd2pLQ8YBp3a1PLfcqCpo8gtHkZFHKkTX6fs3MY0blKnth66rKCnU0VRGu37ONrQaA4eZDFtWAu2fXj9zjFkxTBOo8F7t926gTp/83Kyzzcy2kZD6xiqxTYnHLRFm3vHiRSwNSjkz3hoIzo8lCKWUlg/YtGs7tObunDAZfpDLbfEI15zsEIY3U/x/gHHc/G1zltnAgAAAABJRU5ErkJggg==')
}

.modal-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 12px 16px;
    border-radius: 5px;
    background-color: #111;
    height: 20px
}

.modal-spinner>div {
    border-radius: 100px;
    background-color: #fff;
    height: 20px;
    width: 2px;
    margin: 0 1px;
    display: inline-block;
    -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
    animation: sk-stretchdelay 1.2s infinite ease-in-out
}

.modal-spinner .rect2 {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s
}

.modal-spinner .rect3 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s
}

.modal-spinner .rect4 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

@-webkit-keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
        -webkit-transform: scaleY(0.5)
    }
    20% {
        -webkit-transform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {
    0%,
    40%,
    100% {
        transform: scaleY(0.5);
        -webkit-transform: scaleY(0.5)
    }
    20% {
        transform: scaleY(1.0);
        -webkit-transform: scaleY(1.0)
    }
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    display: table;
    content: ''
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-loading .slick-list {
    background: #fff url(../images/ajax-loader.gif) center center no-repeat
}

@font-face {
    font-family: slick;
    font-weight: 400;
    font-style: normal;
    src: url(../fonts/slick.eot);
    src: url(../fonts/slick.eot?#iefix) format('embedded-opentype'), url(../fonts/slick.woff) format('woff'), url(../fonts/slick.ttf) format('truetype'), url(../fonts/slick.svg#slick) format('svg')
}

.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: 0;
    background: 0 0
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
    color: transparent;
    outline: 0;
    background: 0 0
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    opacity: .75;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    right: -25px;
    left: auto
}

.slick-prev:before {
    content: '←'
}

[dir=rtl] .slick-prev:before {
    content: '→'
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    right: auto;
    left: -25px
}

.slick-next:before {
    content: '→'
}

[dir=rtl] .slick-next:before {
    content: '←'
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: 0;
    background: 0 0
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: 0
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:before {
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #000
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.eot');
    src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Regular.woff') format('woff'), url('../fonts/OpenSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Italic.eot');
    src: url('../fonts/OpenSans-Italic.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Italic.woff') format('woff'), url('../fonts/OpenSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBold.eot');
    src: url('../fonts/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-SemiBold.woff') format('woff'), url('../fonts/OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-ExtraBold.eot');
    src: url('../fonts/OpenSans-ExtraBold.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-ExtraBold.woff') format('woff'), url('../fonts/OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

:root {
    --header_bg_color: #0042A4;
    --header_color: #fff;
}

* {
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

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

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

a,
button,
input {
    transition: .2s all ease;
}

button {
    cursor: pointer;
}

body {
    font-family: 'Open Sans', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #222;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
}


/* burger button */

.menu-btn {
    position: relative;
    width: 70px;
    height: 70px;
    padding: 0;
    border: none;
    background-color: var(--header_bg_color);
}

.menu-btn:active,
.menu-btn:focus {
    outline: none;
}

.menu-btn__icon {
    position: relative;
    width: 30px;
    height: 20px;
    margin: 0 auto;
    cursor: pointer;
}

.icon {
    position: absolute;
    top: 0;
    left: 0;
}

.icon--menu span {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--header_color);
    transition: all 0.18s;
    transition-timing-function: cubic-bezier(0.17, 0.67, 0.42, 1.36);
    transition-delay: 0.05s;
}

.icon--menu span:not(last-child) {
    margin-bottom: 6px;
}

.icon--close {
    transform: scale(0);
    transform-origin: center center;
    transition: all 0.18s;
    transition-delay: 0.08s;
    transition-timing-function: cubic-bezier(0.17, 0.67, 0.42, 1.36);
    opacity: 0;
}

.icon--close span {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
    background: var(--header_color);
}

.icon--close span:nth-of-type(1) {
    top: 9px;
    transform: rotate(45deg);
    transform-origin: top
}

.icon--close span:nth-of-type(2) {
    top: 7px;
    transform: rotate(-45deg);
    transform-origin: top
}

.is--active .icon--menu span {
    width: 0;
}

.is--active .icon--close {
    transform: scale(1);
    opacity: 1;
}

.is--clicked:after {
    animation: btnClick 0.35s;
    animation-timing-function: cubic-bezier(0.17, 0.67, 0.42, 1.36);
}

@keyframes btnClick {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 0.35;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}


/* burger button */

.containerl {
    display: flex;
    margin: 0 auto;
    width: 100%;
    max-width: 1150px;
}

.containerl--column {
    flex-direction: column;
    align-items: flex-start;
}

.top {
    background: url('../images/top-bg.jpg') no-repeat top center;
    background-size: cover;
    height: 679px;
}


/* menu */

.menu {
    position: absolute;
    top: 71px;
    padding-bottom: 100px;
    left: 0;
    z-index: 100;
    background: var(--header_bg_color);
    width: 100vw;
    display: none;
}

.menu__inner {
    max-width: 1000px;
    margin: 65px auto 0;
}

.menu ul {
    max-width: 670px;
    margin-bottom: 110px;
}

.menu ul li {}

.menu ul li a {
    text-transform: uppercase;
    color: var(--header_color);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    display: block;
    line-height: 1.3;
    padding: 15px 0;
}

.menu ul li:last-child,
.menu ul li:last-child a {
    border: 0;
}

.menu__bottom {
    display: flex;
    max-width: 670px;
}

.presentation {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--header_color);
    margin-right: auto;
}

.presentation:hover,
.menu__bottom span:hover {
    text-decoration-color: transparent;
}

.presentation img {
    margin-right: 15px;
}

.menu__bottom .question {
    font-size: 14px;
    color: var(--header_color);
    text-decoration: underline;
    cursor: pointer;
    transition: .2s all ease;
}


/* menu end */


/* modal */

.jquery-modal {
    z-index: 1000;
}

.modal {
    padding: 0;
    border-radius: 0;
    max-width: 415px;
}

.modal__inner {
    border: 1px solid #e4e5e7;
    border-top: 0;
}

.support-content {
    padding: 50px;
}

.support-content .btn {
    margin-top: 17px;
}

.modal a.close-modal {
    background: url(../images/cancel.svg) no-repeat;
    width: 30px;
    height: 30px;
    background-size: cover;
    border-radius: 100%;
}

.tabs-lit {
    display: flex;
    justify-content: center;
    background: #f1f4f6;
}

.tabs-lit li {
    width: 35%;
    text-align: center;
}

.tabs-lit li a {
    height: 65px;
    display: block;
    line-height: 65px;
    position: relative;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabs-lit li a::after {
    position: absolute;
    bottom: 0;
    height: 3px;
    width: 90px;
    background: #3f638b;
    opacity: 1;
    transition: .2s all ease;
    content: '';
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scale(0);
}

.tabs-lit li.active a {
    color: #222;
}

.tabs-lit li.active a::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.tabs-content {
    padding: 50px 65px 0;
    border-top: 0;
}

.modal-form .input-group {
    margin-bottom: 13px;
}

.login-form-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0 35px;
}

.forgot-password {
    font-size: 12px;
    color: #0042a4;
    cursor: pointer;
}

.modal-form .btn {
    width: 100%;
}

.modal .language {
    justify-content: center;
    display: flex;
    padding: 23px 0 45px;
    margin: 33px auto 0;
    border-top: 1px solid #e4e5e7;
    max-width: 283px;
}

.header .language {
    position: relative;
}

.select_head {
    color: var(--header_color);
    display: block;
    padding: 5px 30px 5px 8px;
    cursor: pointer;
    border: solid 1px rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.select_head:before,
.select_head:after {
    content: '';
    position: absolute;
    background-color: #fff;
    width: 8px;
    height: 2px;
    display: block;
    top: 16px;
}

.select_head:before {
    right: 15px;
    transform: rotate(45deg);
}

.select_head:after {
    right: 10px;
    transform: rotate(-45deg);
}

.select {
    position: absolute;
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-radius: 4px;
    width: 100%;
    padding: 5px 0;
    z-index: 200;
}

.language_active {
    display: flex;
}

.language a {
    color: #000;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.language select option {
    color: #000;
}

#reg-form .checkbox {
    margin: 12px 0 20px;
}

.sponsor {
    border-bottom: 1px solid #e4e5e7;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.sponsor span {
    color: #222;
    font-weight: 600;
}

.have-account {
    padding-top: 30px;
    font-size: 12px;
}

.have-account span {
    color: #0042a4;
    cursor: pointer;
    margin-left: 5px;
}

.modal h4 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.forgot-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.forgot-form__footer span {
    font-size: 13px;
    color: #0042a4;
    cursor: pointer;
}

.forgot-form__footer .btn {
    width: 210px;
    padding-left: 0;
    padding-right: 0;
}

.modal .btn {
    background: #0042a4;
}

.modal .btn:hover,
.modal .btn:focus {
    background: #003481;
}


/* modal end */


/*header*/

.header {
    transition: .2s all ease;
}

.header.active {
    background: var(--header_bg_color);
}

.header .containerl {
    max-width: 1300px;
    align-items: center;
}

.header__left .logo {
    margin: 0 15px;
    width: 99px;
}

.header__left,
.header__right {
    display: flex;
    align-items: center;
}

.header__left {
    /*border-right: 1px solid rgba(255, 255, 255, .2);*/
    border-right: 1px solid rgba(0, 0, 0, .2);
    margin-right: 23px;
}

.header__right {
    margin-left: auto;
}

.language button {
    border: 0;
    background: none;
    padding: 0;
    /*color: #b2bfd8;*/
    margin-right: 12px;
    font-size: 14px;
}

.language button.active {
    /*color: #fff;*/
}

.header__right .text {
    margin-right: 30px;
    text-align: right;
    color: var(--header_color);
}

.header__right .text span,
.header__right .text a {
    display: block;
}

.header__right .text span a {
    font-size: 12px;
    text-decoration: none;
}

.header__right .text a {
    text-decoration: underline;
    color: var(--header_color);
    font-size: 16px;
}

.header__right .text a:hover {
    text-decoration-color: transparent
}

.sign-in-btn {
    padding: 0;
    width: 200px;
    height: 70px;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--header_color);
    text-decoration: none;
    background-color: var(--header_bg_color);
}

.sign-in-btn:hover,
.sign-in-btn:focus {
    background: #003481;
}

.sign-in-btn img {
    margin-right: 16px;
}


/*header end*/

.top-content {
    max-width: 1300px;
    padding: 150px 70px 0 150px;
    color: #fff;
    height: calc(100% - 70px);
    position: relative;
}

@media (max-width: 1440px) {
    .top-content {
        padding: 100px 70px 0 100px;
    }
}

.top-content h1 {
    font-size: 40px;
    max-width: 700px;
    font-weight: 800;
    line-height: inherit;
    color: white;
}

.top-content p {
    margin: 25px 0 40px;
    font-size: 16px;
    max-width: 430px;
}

.video {
    display: flex;
    align-items: center;
    font-weight: 600;
    cursor: pointer;
}

.video-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #ff5151;
    width: 45px;
    height: 45px;
    position: relative;
    border: 0;
    padding: 0;
    z-index: 1;
    margin: 7px 0 0 7px;
    margin-right: 40px;
}

.video-btn:hover,
.video-btn:focus {
    background: #ff2929;
}

.video-btn::after {
    content: '';
    width: 59px;
    height: 59px;
    background: #ff515150;
    z-index: -1;
    top: -7px;
    left: -7px;
    border-radius: 100%;
    position: absolute;
    transition: .2s all ease;
}

.video-btn:hover:;
after,
.video-btn:focus:;
after {
    background: #ff515180;
}

.share-btn {
    position: absolute;
    right: 70px;
    bottom: 50px;
    border-radius: 100%;
    padding: 0;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover,
.share-btn:focus {
    border-color: #fff;
}

.text-section {
    padding: 20px 0 65px;
}

@media (max-width: 1440px) {
    .text-section {
        padding-top: 35px;
    }
}

.article {
    padding-left: 20px!important;
    border-left: 1px solid #2776d6;
    max-width: 650px!important;
}

.text-section article {
    background: #f4f5f7;
    padding: 50px 65px;
    max-width: 850px;
    margin-left: auto;
    display: flex;
    font-style: italic;
    font-size: 16px;
}

.text-section article i {
    color: #ff5151;
    font-weight: 800;
    font-size: 20px;
    margin-right: 10px;
}

.why-profit-wrap {
    padding-bottom: 85px;
}

.profit {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.profit__item {
    padding: 0 15px;
    width: 33%;
    margin-top: 50px;
    position: relative;
}

.profit__item span {
    display: block;
    padding-left: 25px;
}

.profit__item::after {
    content: '';
    position: absolute;
    left: 15px;
    width: 7px;
    height: 7px;
    background: #3476d8;
    top: 7px;
}

.section h2 {
    font-size: 24px;
    font-weight: 800;
    line-height: inherit;
}

.section h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: inherit;
}

.under-title {
    position: relative;
}

.section h2.under-title {
    padding-bottom: 25px;
}

.section h3.under-title {
    padding-bottom: 25px;
}

.under-title:before {
    content: '';
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 37px;
    background: #2776d6;
}

.slick-arrow {
    z-index: 2;
    opacity: 1;
    background: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid #d9dce1;
    border-radius: 4px;
}

.slick-arrow:before {
    content: url('../images/slider-arr-l.png');
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1!important;
}

.slick-arrow:hover,
.slick-arrow:focus {
    background: #f5f5f5;
}

.slick-prev {
    left: -25px;
}

.slick-next {
    right: -25px;
}

.slick-next:before {
    transform: translate(-50%, -50%) rotate(180deg);
}

.slides {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #ff5151;
    width: 70px;
    height: 70px;
    position: absolute;
    right: 0;
    z-index: 10;
    right: 50px;
    top: -45px;
}

.objects-wrap {
    background: #f4f5f7;
    padding: 70px 0 60px;
}

.objects {
    max-width: 1150px;
    margin: auto;
}

.slider-wrapper {
    max-width: 1060px;
    margin: 50px auto 0;
    position: relative;
}

.objects-slider .slick-arrow {
    transform: none;
    top: 150px;
}

.object {
    max-width: 510px;
    margin: auto;
}

.object__image {
    height: 330px;
}

.object__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.object__content {
    display: flex;
    background: #fff;
    padding: 25px 0 25px 30px;
    min-height: 92px;
}

.object__content h4 {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
}

.object__content h4 span {
    color: #3476d8;
    margin-right: 15px;
}

.variants-wrap {
    background: url('../images/variants-bg.png') no-repeat 90% 0;
    padding: 70px 0 100px;
}

.variants {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.variant {
    max-width: 270px;
    margin-right: 85px;
    margin-top: 50px;
}

.variant__image {
    width: 250px;
    height: 155px;
}

.variant__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.variant h6 {
    font-weight: 600;
    margin: 25px 0 20px;
    min-height: 44px;
}

.variant p {
    margin-bottom: 0;
    font-size: 14px;
}

.variant a {
    margin-top: auto;
}

.link-arrow {
    color: #243469;
    font-size: 14px;
    font-weight: 600;
}

.link-arrow img {
    margin-left: 5px;
}

.link-arrow:hover {
    text-decoration-color: transparent;
}

.profit-wrap {
    background: url('../images/bg-1.jpg') no-repeat top center;
    background-size: cover;
    color: #fff;
    padding: 95px 0 85px;
}

.profit-wrap .containerl {
    flex-wrap: wrap;
    justify-content: space-between;
}

.profit-wrap h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: normal;
    color: white;
}

.profit-content__text {
    width: 47%;
}

.profit-content__tokens {
    width: 47%;
}

.token {
    display: flex;
    align-items: center;
}

.token:first-of-type {
    margin-bottom: 45px;
}

.token img {
    margin-right: 30px;
}

.advantage-connect {
    padding-top: 150px;
}

.section .btn {
    display: inline-block;
    padding: 20px 30px;
    border: 0;
    text-decoration: none;
    line-height: 1.1;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
}

.btn img {
    margin-left: 10px;
}

.btn-blue {
    background: #3476d8;
    color: #fff;
}

.btn-blue:hover,
.btn-blue:focus {
    background: #2361bc;
}

.profitable-wrap {
    padding: 70px 0 90px;
}

.profitable-wrap .containerl {
    flex-wrap: wrap;
}

.profitable-wrap h2 {
    margin-bottom: 50px;
}

.card {
    border: 1px solid #d2d5dc;
    padding: 50px 30px;
}

.card h4 {
    position: relative;
    font-weight: 600;
    margin-bottom: 35px;
    padding-left: 23px;
}

.card h4::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #ff5151;
    border-radius: 100%;
    position: absolute;
    top: 6px;
    left: 0;
}

.profitable-wrap .card {
    width: 33.3333%;
    height: auto;
    border-radius: 0;
}

.how-work {
    padding: 60px 0;
    background: #175dc0;
    color: #fff;
}

.how-work img {
    display: block;
    margin: 60px auto 40px;
    max-width: 100%;
}

.how-work__title {
    text-align: center;
    width: 100%;
    font-size: 21px;
    font-weight: 800;
    line-height: inherit;
    color: white;
}

.how-work h2 {
    color: white;
}

.platform-wrap {
    padding: 110px 0 95px;
}

.platform {
    display: flex;
    align-items: center;
}

.platform__image {
    min-width: 500px;
    height: 380px;
    position: relative;
    z-index: 1;
}

.platform__image::after {
    position: absolute;
    content: '';
    width: 440px;
    height: 500px;
    background: #f4f5f7;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    left: -100px;
}

.platform__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform__text {
    padding-left: 65px;
}

.platform__text h3 {
    padding-bottom: 30px;
    margin-bottom: 35px;
    font-size: 24px;
    line-height: 1.3;
}

.platform__text p {
    margin-bottom: 45px;
}

.cards {
    flex-wrap: wrap;
    margin-top: 130px;
    position: relative;
    z-index: 1;
}

.cards--second {
    margin-top: 50px;
}

.cards::after {
    position: absolute;
    z-index: -1;
    background: url('../images/cards-bg.png') no-repeat;
    width: 217px;
    height: 247px;
    top: -75px;
    right: -75px;
    content: ''
}

.card-wrap {
    width: 33.33333%;
    padding: 0 14px;
    margin-bottom: 28px;
}

.card-wrap .card {
    height: 100%;
    background: #fff;
}

.card-wrap .card h6 {
    padding-left: 0;
}

.card-wrap .card h6::after {
    left: -34px;
}

.platform-wrap article {
    max-width: 100%;
    margin: 32px 14px 0;
}

.about-wrap .containerl {
    max-width: 1200px;
}

.about {
    position: relative;
    display: flex;
    width: 100%;
}

.about__image {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.about__content {
    max-width: 860px;
    margin-left: auto;
    padding: 110px 100px 90px 220px;
    background: #f4f5f7;
    width: 100%;
}

.about__content h3 {
    font-size: 24px;
    padding-bottom: 25px;
    margin-bottom: 30px;
    font-weight: 800;
    line-height: inherit;
}

.about__content p {
    margin-bottom: 30px;
}

.team-wrap {
    padding: 75px 0;
}

.team {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.team .section__title {
    width: 100%;
}

.team-item {
    margin-top: 45px;
    border: 1px solid #e7e7e7;
}

.team-item__image {
    width: 100%;
    height: 170px;
}

.team-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-item__content {
    padding: 20px 15px;
}

.team-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-item p {
    font-size: 13px;
    margin-bottom: 20px;
}

.team-item ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: auto;
}

.team-item ul li {
    padding: 0 10px;
}

.team-item ul li img {
    margin-bottom: 0;
}

.acc {
    width: 100%;
    margin-top: 60px;
    margin-bottom: 85px;
}

.acc__title {
    position: relative;
    padding: 10px 15px 10px 0;
    border-bottom: 1px solid #d9dce1;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: 600;
}

.acc__title::after,
.acc__title::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: url('../images/accordion-chevron.png');
    transition: .2s all ease;
}

.acc__title::before {
    content: url('../images/accordion-chevron-blue.png');
    opacity: 0;
}

.acc__title.active::after {
    opacity: 0;
}

.acc__title.active::before {
    opacity: 1;
}

.acc__panel {
    display: none;
    border: 1px solid #d9dce1;
    padding: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

.news-wrap {
    background: #f4f5f7;
    padding: 70px 0;
}

.news-wrap h2 {
    margin-bottom: 20px;
}

.news {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.news-item-wrap {
    padding: 0 15px;
    width: 25%;
    margin-top: 30px;
}

.news-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    background: #fff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    padding: 25px 5px 25px 25px;
}

.news-item:hover {
    box-shadow: none;
}

.news-item p {
    margin: 15px 0 20px;
    font-weight: 600;
    font-size: 13px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item span {
    color: #999;
    font-size: 12px;
    display: block;
}


/* form */

.input-group label {
    display: block;
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1;
}

.input-group label sup {
    color: #ff456a;
    margin-left: 4px;
}

.input-group input,
.input-group textarea {
    display: block;
    width: 100%;
    border: 1px solid #cfcfcf;
    padding: 0 15px;
    height: 50px;
}

.input-group textarea {
    resize: none;
    min-height: 100px;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #3476d8;
}

.checkbox {
    display: table;
}

[type="checkbox"] {
    display: none;
}

[type="checkbox"]+label {
    position: relative;
    padding-left: 30px;
    line-height: 17px;
    cursor: pointer;
    font-size: 12px;
    display: table-cell;
}

[type="checkbox"]+label a {
    text-decoration-color: transparent;
    color: #0042a4;
}

[type="checkbox"]+label a:hover {
    text-decoration-color: inherit;
}

[type="checkbox"]+label::after {
    width: 17px;
    height: 17px;
    background: #3476d8;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
}

[type="checkbox"]+label::before {
    background: url('../images/checkbox.png') no-repeat center;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    top: 0;
    z-index: 5;
    content: '';
    opacity: 0;
    transform: scale(0);
    transition: .2s all ease;
}

[type="checkbox"]:checked+label::before {
    opacity: 1;
    transform: scale(1);
}


/* form */

.be-first-wrap {
    background: url('../images/bg-2.jpg') no-repeat top center;
    background-size: cover;
    padding: 75px 0;
}

.be-first-wrap .containerl {
    align-items: center
}

.be-first-text {
    width: 440px;
    color: #fff;
    margin-right: auto;
    font-size: 16px;
}

.be-first-text h2 {
    margin-bottom: 35px;
    font-size: 32px;
    font-weight: 800;
    line-height: inherit;
    color: white;
}

.be-first-form {
    background: #fff;
    width: 100%;
    max-width: 540px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.be-first-form .input-group {
    width: 200px;
    margin-bottom: 13px;
}

.be-first-form .btn {
    width: 100%;
    margin-top: 10px;
}


/*
.footer{
    background: #173963 url('../images/footer-bg.png') no-repeat 80% 50%;
    background-size: cover;
    color: #a8b7cc;
    padding-top: 70px;
}
.footer .containerl{
    justify-content: space-between;
}
.footer-logo{
    margin-bottom: 35px;
}
.footer h6{
    color: #fff;
    padding-bottom: 25px;
    margin-bottom: 35px;
}
.footer .containerl:first-of-type{
    padding-bottom: 80px;
    border-bottom: 1px solid #0f315b;
}
.footer__col{
    margin-bottom: 30px;
}
.footer__col p{
    max-width: 270px;
    font-size: 13px;
}
.footer-menu li{
    margin-bottom: 8px;
}
.footer-menu li a{
    color: #a8b7cc;
    text-decoration: none;
    line-height: 1;
    font-size: 14px;
}
.footer-menu li a:hover{
    color: #fff;
}
*/

.social {
    display: flex;
    flex-wrap: wrap;
    max-width: 166px;
}

.social li a {
    border: 1px solid #486688;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
}

.contacts li {
    margin-bottom: 10px;
}

.contacts li a {
    display: flex;
    align-items: center;
    color: #bfd6ef;
    text-decoration: none;
    line-height: 1;
}

.contacts li:first-child a {
    text-decoration: underline;
}

.contacts li a:hover {
    color: #fff;
}

.contacts__icon {
    min-width: 40px;
}

.containerl.copyright {
    text-align: center;
    justify-content: center;
    padding: 20px 0;
    border-top: 1px solid #2c4e78;
    font-size: 14px;
}

@media (max-width: 1300px) {
    .cards::after {
        right: 0;
    }
}

@media (max-width: 1200px) {
    .header .containerl {
        max-width: 100%!important;
        padding-left: 0;
        padding-right: 0;
    }
    .containerl {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 960px!important;
    }
    .about__image {
        width: 400px;
        height: 300px;
    }
    .about__image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
    }
    .about__content {
        padding: 60px 60px 60px 120px;
        max-width: 600px;
    }
    .platform__image {
        min-width: 450px;
    }
    .platform__image::after {
        display: none;
    }
    .objects {
        max-width: 960px;
        margin: 0 auto;
    }
    .objects-slider .slick-prev {
        left: -5px;
    }
    .objects-slider .slick-next {
        right: -5px;
    }
    .object {
        max-width: 460px;
    }
    .menu__inner {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .menu ul {
        max-width: 100%;
        margin-bottom: 50px;
    }
    .menu {
        padding-bottom: 65px;
    }
}

@media (max-width: 992px) {
    .containerl {
        max-width: 730px!important;
    }
    .team-wrap h2 {
        margin-bottom: 45px;
    }
    .profit-content__text {
        width: 100%;
        margin-bottom: 30px;
    }
    .profit-content__tokens {
        width: 100%;
    }
    .profit__item {
        width: 50%;
    }
    .team {
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 30px;
    }
    .team-item {
        margin-top: 0;
    }
    .objects,
    .object {
        max-width: 730px;
    }
    .slides {
        display: none;
    }
    .profitable-wrap .card {
        width: 50%;
        padding: 30px;
    }
    .variant {
        width: 33.333%;
        padding-right: 15px;
        margin-right: 0;
    }
    .variant__image {
        width: 100%;
    }
    .platform {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .platform__image {
        min-width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
    .platform__text {
        padding-left: 0;
    }
    .card-wrap {
        width: 50%;
    }
    .card-wrap .card {
        padding: 30px;
    }
    .about {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .about__image {
        position: static;
        width: 100%;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .about__content {
        max-width: 100%;
        padding: 60px;
    }
    .be-first-wrap .containerl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .be-first-text {
        width: 100%;
    }
    .be-first-form .input-group {
        width: 50%;
        padding: 0 15px;
    }
    .be-first-form .btn {
        margin: 10px 15px 0;
    }
    .news-item-wrap {
        width: 50%;
    }
    .footer .containerl {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer__col {
        width: 50%;
    }
    .be-first-form {
        max-width: 100%;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .containerl {
        max-width: 100%!important;
    }
    .variants {
        justify-content: space-between;
    }
    .variant {
        width: 48%;
        max-width: 48%;
        padding-right: 0;
    }
    .header__left .logo {
        margin: 0 15px;
        width: 102px;
    }
    .language button {
        font-size: 12px;
    }
    .header__right .text a {
        font-size: 14px;
    }
    .header__right .text {
        font-size: 10px;
    }
    .sign-in-btn {
        width: 70px;
    }
    .sign-in-btn img {
        margin: 0;
    }
    .sign-in-btn span {
        display: none;
    }
    .top {
        height: auto;
    }
    .top-content {
        height: auto;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .top-content h1 {
        font-size: 32px;
    }
    .share-btn {
        right: 15px;
        bottom: 60px;
    }
    .text-section {
        padding: 50px 0;
    }
    .text-section h5 {
        margin-bottom: 30px;
    }
    .text-section p {
        margin-bottom: 15px;
    }
    .text-section article {
        padding: 30px;
        font-size: 15px;
    }
    .objects-wrap {
        padding: 50px 15px;
    }
    .objects article,
    .platform-wrap article {
        margin-top: 50px;
    }
    .variants-wrap,
    .profitable-wrap {
        padding: 50px 0;
    }
    .how-work h5 {
        font-size: 16px;
    }
    .acc {
        margin: 50px 0;
    }
    .be-first-wrap {
        padding: 50px 0;
    }
    .be-first-form {
        padding: 30px 15px;
    }
    .menu__inner {
        margin-top: 40px;
    }
    .menu ul li a {
        padding: 10px 0;
        font-size: 13px;
    }
    .menu ul {
        margin-bottom: 40px;
    }
}

@media (max-width: 570px) {
    .modal {
        width: 100%;
        max-width: 300px;
    }
    .team-item {
        width: 100%;
    }
    .tabs-lit li {
        width: 50%;
    }
    .tabs-content {
        padding: 40px 15px;
    }
    .modal .language {
        margin: 0 15px;
        padding: 20px 15px;
    }
    .forgot-form__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .forgot-form__footer .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .forgot-form__footer span {
        margin-right: auto;
    }
    .header__right .text {
        display: none;
    }
    .top-content h1 {
        font-size: 26px;
    }
    .object__image {
        height: 250px;
    }
    .object__content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .object__content p:first-of-type {
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .variants {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .variant {
        width: 100%;
        max-width: 100%;
    }
    .profitable-wrap .card {
        width: 100%;
    }
    .cards {
        margin-top: 60px;
    }
    .card-wrap {
        width: 100%;
        padding: 0;
    }
    .platform-wrap article {
        margin-top: 0;
    }
    .about__content {
        padding: 30px;
    }
    .footer__col {
        width: 100%;
    }
    .footer .containerl:first-of-type {
        padding-bottom: 40px;
    }
    .news-item-wrap {
        width: 100%;
    }
    .be-first-form .input-group {
        width: 100%;
    }
    .about .btn {
        width: 100%;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .be-first-form .btn,
    .about .btn {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 360px) {
    .header__left .logo {
        margin: 0 10px;
        width: 100px;
    }
    .header__left {
        margin-right: 10px;
    }
}