@import url(https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700&display=swap);
:root {
    --primary: #ff9000;
    --accent: #001a2d;
    --danger: #f11925;
    --success: #5ed262;
    --black: #000;
    --white: #fff;
    --default: rgba(255, 255, 255, 0.6);
    --transition: 0.25s linear;
    --primary-lighted: #ffd33a;
    --primary-gradient: linear-gradient(90deg, var(--primary) 0%, var(--primary-lighted) 100%);
    --primary-gradient-hover: linear-gradient(90deg, var(--primary-lighted) 0%, var(--primary) 100%);
    --primary-blue: #366dc0;
    --primary-blue-lighted: #4589ef;
    --btn-outline-blue: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-lighted) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:focus {
    outline: none;
}

img {
    display: block;
}

ul li {
    list-style: none;
}

p {
    color: rgba(255, 255, 255, 0.85);
}

select::-ms-expand {
    display: none;
}

input::-ms-clear {
    width: 0;
    height: 0;
    display: none;
}

select,
input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    border-radius: 0;
    border: none;
    font-family: 'Jost', sans-serif;
}

.textarea-describe[contenteditable]:empty::before {
    content: 'Describe please';
    color: var(--default);
}

input::-webkit-input-placeholder {
    color: var(--default);
}

input::-moz-placeholder {
    color: var(--default);
}

input::-ms-input-placeholder {
    color: var(--default);
}

input:-ms-input-placeholder {
    color: var(--default);
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
    min-width: 320px;
    min-height: 320px;
    background: var(--accent);
}

h1,
.h1,
h2,
.h2,
h3 {
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1,
.h1 {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2,
.h2 {
    font-size: 30px;
    line-height: 1.4;
}

h3,
.h3 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

a {
    color: var(--default);
    text-decoration: none;
    transition: var(--transition);
}

p+p {
    margin-top: 10px;
}

.wrapper {
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 100%;
    text-align: center;
}

.center {
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
}

.btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: 1;
    width: 100%;
    height: 50px;
    padding: 0 15px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--primary-lighted);
    background: var(--primary-gradient);
    border-radius: 4px;
}

.btn:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    top: -2px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.6), transparent 70%);
}

.btn:hover {
    background: var(--primary-gradient-hover);
}

.btn-outline {
    border-width: 3px;
    background: transparent;
    border-color: var(--primary-lighted);
}

.btn-outline span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline:hover {
    background: var(--primary-gradient);
}

.btn-outline-blue {
    border-width: 3px;
    background: transparent;
    border-color: var(--primary-blue-lighted);
}

.btn-outline-blue span {
    background: var(--btn-outline-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-outline-blue:hover {
    background: var(--btn-outline-blue);
}

.btn-outline:hover span,
.btn-outline-blue:hover span {
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.btn-outline:before,
.btn-outline-blue:before {
    height: 3px;
    top: -3px;
}

.btn-flat {
    text-transform: none;
    border-color: transparent;
    background: rgba(255, 255, 255, 0.08);
}

.btn-flat:hover {
    background: rgba(255, 255, 255, 0.18);
}

.btn-flat:before {
    display: none;
}

.page-bg-wrapper {
    display: none;
}

.is-hidden {
    display: none;
}

header.center.sticky {
    background: var(--accent);
}

header.center {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    transition: var(--transition);
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 15px 20px;
    z-index: 1;
}

header .logo {
    position: relative;
    z-index: 2;
}

header .nav-block a,
header .nav-block span {
    display: flex;
    color: inherit;
    cursor: pointer;
}

.nav-text {
    transition: var(--transition);
}

header .nav-text:hover,
header .nav-item.is-active .nav-text {
    color: var(--primary);
}

header .nav-block .nav-item {
    position: relative;
    z-index: 2;
    font-weight: 500;
}

.mobile-btn {
    display: none;
    position: relative;
    cursor: pointer;
    z-index: 2;
}

.mobile-btn .mobile-btn-item {
    width: 18px;
    height: 2px;
    margin: 4px 0 4px auto;
    background: var(--primary-gradient);
    transition: var(--transition);
    z-index: 1;
}

[data-role='dropdown'] span {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-item-dropdown {
    display: none;
    padding: 10px 0 0;
}

.nav-item-dropdown a {
    line-height: 1.4;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    opacity: 0.9;
}

.overlay-block {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

main.slider-page {
    margin: auto;
    max-width: 100%;
    padding: 0;
}

.slider-page .go-to-all-block {
    padding: 20px 10px;
}

.slider {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.slider-view {
    display: flex;
    align-items: center;
    height: 100%;
    transition: all 0.4s ease-out;
}

.slider-item {
    position: relative;
    flex-shrink: 0;
    height: 100%;
    cursor: pointer;
    user-select: none;
    text-align: left;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(185, 143, 126, 0.4);
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.slider-item.is-active {
    -webkit-filter: blur(0);
    filter: blur(0);
}

.slider-content {
    display: grid;
    grid-gap: 10px;
    padding: 10px;
}

.slider-header .h3 {
    margin-bottom: 0;
}

.slider-page .subtitle-item {
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 4px 14px 4px 0;
}

.slider-page .subtitle-item .icon {
    font-size: 14px;
    margin-right: 8px;
    color: var(--primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slider-page .subtitle-item span {
    font-size: 12px;
    color: var(--default);
}

.slider-view img {
    width: 100%;
    user-select: none;
    pointer-events: none;
}

.slider-arrow {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    z-index: 9;
    transition: opacity 0.35s linear 0s;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 4px;
    background: #324655;
    background: rgba(255, 255, 255, 0.08);
}

.btn-flat:hover {
    background: rgba(255, 255, 255, 0.18);
}

.slider-arrow:before {
    content: '';
    width: 14px;
    height: 14px;
    border: 3px solid #fff;
    border-top: none;
}

.slider-arrow.is-hidden {
    display: none;
}

.slider-arrow.arrow-prev {
    left: 20px;
}

.slider-arrow.arrow-prev:before {
    border-right: none;
    transform: rotate(45deg);
    margin-left: 7px;
}

.slider-arrow.arrow-next {
    right: 20px;
}

.slider-arrow.arrow-next:before {
    border-left: none;
    transform: rotate(-45deg);
    margin-right: 7px;
}

.slider-pagination {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.slider-pagination-item {
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    height: 12px;
    width: 12px;
    margin: 0 3px;
    border: 2px solid #999;
    position: relative;
    transition: all 0.2s linear 0s;
}

.slider-pagination-item.is-active {
    background-color: #999;
}

.slider .slider-nav {
    display: none;
}

.section-contacts {
    display: none;
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
    background: var(--accent);
}

.section-contacts .close-form-btn {
    display: none;
}

.section-contacts .form-item:first-child label {
    padding-top: 0;
}

.mobile-nav-visible[data-form='is-open'] .section-contacts {
    display: block;
}

.section-contacts .contacts-info {
    display: none;
}

.section-contacts .contact-info {
    padding-top: 20px;
}

.section-contacts .info-wrapper {
    display: grid;
    grid-gap: 20px;
    max-width: 360px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.section-contacts [data-info='phone'] {
    display: grid;
    grid-template-columns: 20px auto 2px auto;
    grid-gap: 6px;
    align-items: center;
}

.section-contacts .info-wrapper .icon {
    font-size: 24px;
    vertical-align: middle;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-contacts [data-info='phone'] .border {
    height: 100%;
    background: var(--primary-gradient);
}

.section-contacts .info-wrapper a {
    color: inherit;
}

form .form-field {
    position: relative;
}

form .form-field .icon {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0 auto;
    height: 50px;
    width: 44px;
    text-align: center;
    font-size: 26px;
    vertical-align: middle;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

form .form-field .icon img {
    display: inline-block;
    margin-top: 13px;
}

form .form-field .icon::before {
    line-height: 50px;
}

form .form-field .icon:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    margin: auto;
    z-index: -1;
    box-shadow: 0 0 15px 5px var(--primary);
}

.textarea-describe {
    display: block;
    width: 100%;
    overflow-x: hidden;
    min-height: 50px;
    max-height: 146px;
    color: #fff;
    text-align: left;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 1px 0 1px -1px #ffce22, inset 2px 0 0 #ffb41e;
    padding: 13px 10px 13px 40px;
}

.textarea-describe::-webkit-scrollbar {
    width: 5px;
    background: #273d4d;
}

.textarea-describe::-webkit-scrollbar-thumb {
    border-radius: 40px;
    background: linear-gradient(90deg, #ff9000 0%, #ffd33a 100%);
}

.describe-success-message {
    font-size: 12px;
    margin: 10px auto 0;
    max-width: 447px;
    display: none;
    display: none;
    flex-direction: column;
    justify-content: center;
}

.section-contacts.form-success .contacts-info {
    display: none;
}

.form-success .describe-success-message {
    display: flex;
}

.form-success .contact-form {
    display: none;
}

.describe-success-message .icon {
    font-size: 100px;
    display: block;
    color: #ffbc27;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.describe-success-message .h1 div {
    display: block;
    color: #ffbc27;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
}

.describe-success-message .h1 {
    margin-bottom: 10px;
    font-size: 40px;
    color: var(--primary);
}

.describe-success-message .h3 {
    font-size: 18px;
    font-weight: 400;
}

form input,
form select,
form .select-value {
    font-family: inherit;
    font-size: inherit;
    width: 100%;
    height: 50px;
    text-align: left;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 1px 0 1px -1px #ffce22, inset 2px 0 0 #ffb41e;
    padding: 5px 10px 5px 40px;
}

form .select-value {
    position: relative;
}

.select-field:before,
.select-field:after {
    content: '';
    position: absolute;
    top: 23px;
}

.select-field:before {
    width: 0;
    height: 0;
    border: solid transparent;
    border-top-color: var(--primary);
    border-width: 5px;
    right: 10px;
}

.select-field:after {
    width: 1px;
    height: 1px;
    right: 15px;
    z-index: -1;
    border-radius: 50%;
    box-shadow: 0 0 10px 4px var(--primary);
}

.select--focused.select-field:before {
    top: 16px;
    transform: scale(1, -1);
}

form .select-value {
    display: none;
    cursor: pointer;
}

form .select-dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 2;
    display: none;
    max-height: 140px;
    padding: 0 0 0 2px;
    overflow-y: auto;
    text-align: left;
    color: var(--default);
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background: #142c3e;
    box-shadow: inset 1px 0 1px -1px #ffce22, inset 2px 0 0 #ffb41e;
}

.select-dropdown .select-option {
    cursor: pointer;
    padding: 5px 10px;
}

.select-option--selected {
    color: var(--primary);
    background: #17354b;
}

.select-dropdown .select-option:hover {
    background: #17354b;
}

.select-option[value='default'],
select option[value='default'] {
    display: none;
}

.form-field.select--focused .select-dropdown {
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    visibility: visible;
    opacity: 1;
}

select option {
    color: #000;
}

.select-dropdown .select-search {
    display: block;
    margin: 0 auto 10px;
    padding: 5px 25px 5px 20px;
    font-size: 14px;
    box-shadow: none;
}

.select-dropdown .select-search-clear {
    position: absolute;
    top: 16px;
    right: 15px;
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.select-search-clear:before,
.select-search-clear:after {
    content: '';
    position: absolute;
    width: 10px;
    height: 1px;
    background-color: var(--primary);
    left: 50%;
    top: 50%;
    transition: all 0.15s linear;
}

.select-search-clear:before,
.select-search-clear:after {
    width: 13px;
}

.select-search-clear:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.select-search-clear:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.select-search-clear:hover:before,
.select-search-clear:hover:after {
    background: #fff;
}

form .col-2 .form-field {
    max-width: 300px;
}

form .form-item {
    position: relative;
}

form .form-item>label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 25px 0 5px 0;
}

form .form-submit-block {
    margin: 0 auto;
}

form .radio-item {
    display: grid;
    grid-template-columns: 15px auto;
    align-items: center;
    grid-gap: 0 10px;
    margin-bottom: 10px;
    text-align: left;
}

form .radio-item label {
    font-weight: 400;
    color: var(--default);
    padding: 0;
    cursor: pointer;
}

form input[type='radio'] {
    display: none;
}

form .radio-item .icon {
    font-size: 18px;
    order: -1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

form input[type='radio']:checked+.icon:before {
    content: '\e900';
}

.is-invalid .form-error {
    opacity: 1;
    z-index: 1;
}

.is-invalid input,
.is-invalid .select-value {
    box-shadow: inset 2px 0 0 var(--danger);
}

.form-error {
    font-size: 12px;
    color: var(--danger);
    margin-top: 3px;
    width: 100%;
    opacity: 0;
    z-index: -1;
    transition: all 0.15s linear;
}

.form-error span {
    display: block;
}

form .btn {
    margin-top: 10px;
    box-shadow: none;
}

.footer {
    margin-top: auto;
    padding: 80px 0 20px;
    color: var(--default);
    background-color: transparent;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.footer-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-links-title {
    text-align: center;
    text-transform: uppercase;
    background: var(--btn-outline-blue);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.625;
    padding-top: 5px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer .social-links-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer .social-link a {
    font-size: 24px;
    padding: 5px;
    display: flex;
}

.footer .social-link .icon {
    color: rgba(255, 255, 255, 0.3);
}

.footer-links {
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    display: flex;
    padding: 5px 10px;
}

[data-item='footer-dropdown'] {
    position: relative;
    padding: 5px 10px;
}

[data-item='footer-dropdown'] span {
    cursor: pointer;
}

[data-item='footer-dropdown']:hover .footer-links-dropdown {
    visibility: visible;
    transform: 0;
    opacity: 1;
}

.footer-links-dropdown {
    display: grid;
    grid-gap: 10px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 110%;
    left: 50%;
    min-width: 180px;
    max-height: 400px;
    padding: 10px;
    white-space: nowrap;
    transform: translateX(-50%);
    z-index: 3;
    background: linear-gradient(57.38deg, #001b2f 0%, #1f2b34 100%);
    transition: opacity 0.3s ease-in;
}

.footer .languages-nav {
    margin-top: auto;
    margin-bottom: 2.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer .languages-nav li {
    margin-left: 10px;
}

.footer .language-item {
    width: 24px;
    height: 24px;
}

.is-invalid .form-error {
    opacity: 1;
    z-index: 1;
}

.is-invalid .textarea-describe,
.is-invalid input,
.is-invalid select,
.is-invalid .select-value,
.is-invalid .select-dropdown {
    box-shadow: inset 2px 0 0 var(--danger);
}

.is-invalid.select--focused .form-error {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    height: 0;
}

.eye {
    background-image: url(/new/img/landing/show.png);
    height: 25px;
    width: 30px;
    position: absolute;
    top: 13px;
    right: 10px;
    cursor: pointer;
}

.eye.hide {
    background-image: url(/new/img/landing/hide.png);
    top: 11px;
}

.terms a {
    color: var(--primary);
}

.btn.current-page,
.nav-text.current-page {
    color: var(--primary);
}

.terms .item {
    color: var(--primary);
}

.cookies-popup-wrapper {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 16px;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.85);
    background: #001a2d;
    box-shadow: -10px 0 52px rgba(0, 0, 0, 0.25);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    text-align: left;
    z-index: 100;
}

.cookies-popup-wrapper .center {
    max-width: 936px;
}

.cookies-popup-wrapper.is-active {
    animation: showCookiePopup 0.5s 1s both;
}

.cookies-content a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.cookies-content a:hover {
    text-decoration: none;
}

.cookies-btns {
    display: flex;
    margin-top: 20px;
}

.cookies-btns .btn {
    flex: 1;
    font-size: 16px;
}

.btn.cookies-close-btn:before {
    display: none;
}

.btn.cookies-close-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: none;
}

.cookies-btns .btn:first-child {
    margin-right: 20px;
}

@-webkit-keyframes showCookiePopup {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes showCookiePopup {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}

@font-face {
    font-family: 'icomoon';
    src: url(/new/fonts/landing/icomoon.woff) format('woff'), url(/new/fonts/landing/icomoon.svg) format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

[class^='icon-'],
[class*=' icon-'] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon {
    display: inline-block;
}

.icon-radio-selected:before {
    content: '\e900';
}

.icon-radio:before {
    content: '\e901';
}

.icon-smile:before {
    content: '\e902';
}

.icon-heart:before {
    content: '\e903';
}

.icon-graph:before {
    content: '\e904';
}

.icon-geo:before {
    content: '\e905';
}

.icon-gear:before {
    content: '\e906';
}

.icon-fb:before {
    content: '\e907';
}

.icon-calendar:before {
    content: '\e908';
}

.icon-arrow:before {
    content: '\e909';
}

.icon-user-portrait:before {
    content: '\e90a';
}

.icon-user-plate:before {
    content: '\e90b';
}

.icon-user-circle:before {
    content: '\e90c';
}

.icon-user:before {
    content: '\e90d';
}

.icon-twitter:before {
    content: '\e90e';
}

.icon-telegram:before {
    content: '\e90f';
}

.icon-speak:before {
    content: '\e910';
}

.icon-select-arrow:before {
    content: '\e911';
}

.icon-platforms:before {
    content: '\e912';
}

.icon-pin-empty:before {
    content: '\e913';
}

.icon-pin:before {
    content: '\e914';
}

.icon-phone:before {
    content: '\e915';
}

.icon-pen:before {
    content: '\e916';
}

.icon-payment:before {
    content: '\e917';
}

.icon-page-text:before {
    content: '\e918';
}

.icon-page:before {
    content: '\e919';
}

.icon-multi-arrows:before {
    content: '\e91a';
}

.icon-more:before {
    content: '\e91b';
}

.icon-message:before {
    content: '\e91c';
}

.icon-mail:before {
    content: '\e91d';
}

.icon-logout:before {
    content: '\e91e';
}

.icon-ln:before {
    content: '\e91f';
}

.icon-link:before {
    content: '\e920';
}

.icon-hex:before {
    content: '\e921';
}

.promo {
    display: grid;
    grid-gap: 20px;
    max-width: 916px;
    overflow: hidden;
}

.promo .promo-title {
    align-items: center;
    max-width: 290px;
    margin: 0 auto;
}

.promo .promo-title .highlighted {
    display: block;
    color: var(--white);
    text-transform: uppercase;
    -webkit-text-fill-color: initial;
    padding: 10px 2px 10px 2px;
    background: var(--primary-gradient);
    border: 2px solid var(--primary-lighted);
    border-radius: 4px;
    margin: 10px 0;
}

.promo .logo-block img {
    height: 108px;
    display: block;
    margin: 0 auto;
}

.promo .offer-item {
    margin-bottom: 10px;
    padding: 20px 10px 10px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(185, 143, 126, 0.4);
}

.promo .btn {
    margin-top: 20px;
}

.promo .vertical-line {
    margin: 0 2px;
    border-right: 3px solid #fff;
    animation: caret 1s steps(1) infinite;
}

@keyframes caret {
    50% {
        border-color: transparent;
    }
}

.advantages .section-subtitle {
    max-width: 840px;
    margin: 0 auto;
}

.advantages .icon {
    align-self: center;
}

.advantages .icon img {
    margin: 0 auto;
}

.advantages .icon:before {
    font-size: 60px;
    color: var(--primary);
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantages .advantages-block {
    display: grid;
    grid-gap: 10px;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 0 10px;
}

.advantages .advantage-item {
    display: grid;
    grid-template-rows: 80px min-content auto;
    grid-gap: 10px;
    max-width: 480px;
    padding: 20px;
    background: linear-gradient(57.38deg, #001b2f 0%, #1f2b34 100%);
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 0, 0, 0.25);
}

.advantages .item-title {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    background: none;
    -webkit-text-fill-color: initial;
}

.advantages .offers-block {
    display: grid;
    grid-gap: 10px;
}

.advantages .offer-item {
    border: 1px solid rgba(185, 143, 126, 0.4);
}

.advantages .offer-item .btn {
    margin-top: 10px;
}

.advantages [data-offer='smartlink'] h3,
.advantages [data-offer='smartlink'] .icon:before,
.advantages [data-offer='smartlink'] .btn-logout span {
    background: linear-gradient(to left, #366dc0, #4589ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-color: #366dc0;
}

.advantages .btn-logout {
    display: none;
}

.login {
    margin: auto;
}

.faq {
    margin: auto;
}

.faq .faq-inner {
    margin-bottom: 20px;
}

.faq .faq-inner:last-child {
    margin-bottom: 0;
}

.faq .faq-element {
    margin-bottom: 20px;
}

.faq .faq-element:last-child {
    margin-bottom: 0;
}

.faq .faq-title {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.faq .faq-block {
    display: grid;
    grid-gap: 10px;
}

.faq .faq-item {
    display: grid;
    grid-gap: 10px;
    align-items: flex-start;
}

.faq .faq-item a {
    cursor: pointer;
}

.faq .faq-block details {
    position: relative;
    text-align: left;
    background: #1e3241;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 0, 0, 0.25);
}

.faq .faq-block summary {
    display: block;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    color: var(--white);
    border: none;
    padding: 20px 45px 20px 20px;
    background: linear-gradient(57.38deg, #001b2f 0%, #1f2b34 100%);
}

.faq .faq-block summary::-webkit-details-marker {
    display: none;
}

.faq .faq-block summary::after {
    content: '\e91a';
    font-size: 24px;
    position: absolute;
    top: 15px;
    right: 20px;
    font-family: 'icomoon';
    color: rgba(255, 255, 255, 0.85);
    transform: scale(1, 1);
}

.faq .faq-block details[open] summary::after {
    transform: scale(1, -1);
}

.faq .faq-block details>div {
    padding: 20px;
}

.signup .form-step {
    display: none;
}

.signup .form-step.is-visible {
    display: block;
}

.signup .form-step .h1 .icon {
    font-size: 110px;
    margin-bottom: 10px;
}

.signup .step-title {
    color: #fff;
}

.signup .step-title span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.signup .form-submit-block {
    padding: 25px 0 0;
}

.signup [data-step='events'] .step-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    white-space: nowrap;
    margin: 0 0 20px;
}

.signup [data-step='events'] .step-wrapper .btn {
    display: inline-flex;
    width: auto;
    margin: 5px;
}

.signup [data-step='events'] .btn.is-active {
    border: 2px solid var(--primary-lighted);
    background: var(--primary-gradient);
}

.signup [data-step='events'] .btn.is-active:hover {
    background: var(--primary-gradient-hover);
}

.signup [data-step='events'] .radio-wrapper {
    display: none;
}

.signup [data-step='events'] .radio-wrapper.is-active {
    display: flex;
}

.signup [data-step='events'] .radio-item {
    margin: 5px 12px 15px;
}

.signup .radio-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 auto;
}

.signup [data-event='forum'] {
    max-width: 680px;
}

.signup .event-input-block {
    width: 100%;
}

.signup .event-input-block .form-field {
    max-width: 480px;
    margin: 0 auto;
}

.signup .event-input-block label {
    display: block;
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 5px 0;
}

.signup [data-step='events'] .btn-form-next {
    display: none;
}

.signup [data-step='events'].event-selected .btn-form-next {
    display: flex;
}

.signup .btn-form-prev .icon {
    margin: 0 10px 0 -10px;
    font-size: 20px;
}

.signup .terms .form-field {
    display: none;
}

.signup-form .error-step {
    display: none;
}

.signup-form.signup-error .success-step {
    display: none;
}

.signup-form.signup-error .error-step {
    display: block;
}

.signup .form-step.is-visible {
    display: block;
}

.error-step .step-title a {
    color: var(--primary);
}

.signup .event-input-block {
    padding: 0 0 20px;
}

.signup .social-links-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.signup .social-links-block li {
    margin-right: 10px;
}

.signup .terms {
    padding: 0 0 20px;
}

.signup .terms p {
    color: var(--default);
}

.events .slider-header .h3 {
    font-weight: 400;
}

.blog-article .center {
    max-width: 640px;
    text-align: left;
    padding: 0 10px 20px 10px;
}

.blog-article .center h1,
.blog-article .center .h1 {
    text-align: center;
}

.blog-article .center p,
.blog-article .center ul {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
}

.blog-article .center .picture-wrapper {
    margin: 0 -10px;
}

.blog-article .center img {
    width: 100%;
}

.terms-policy {
    padding-bottom: 40px;
}

.terms-policy p,
.terms-policy ul {
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
}

.terms-policy ul {
    margin-top: 10px;
    padding-left: 20px;
}

.terms-policy ul li {
    list-style: disc;
}

.page-404 header {
    justify-content: center;
}

.page-404 main.center {
    max-width: 100%;
    margin: auto;
}

.page-404 main.center h1 {
    margin-bottom: 0;
}

.page-404 main .picture-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.page-404 main .ooops-picture {
    width: 120%;
    margin: 0 -10%;
    object-fit: contain;
    -webkit-filter: drop-shadow(0 0 50px #000);
    filter: drop-shadow(0 0 50px #000);
}

.page-404 main .ooops-info {
    position: relative;
    z-index: 2;
    display: grid;
    grid-gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0 20px;
}

.page-404 main .ooops-info .btn {
    max-width: 230px;
    margin: 0 auto;
}

@media screen and (max-width: 979px) {
    .mobile-nav-visible .wrapper:after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--accent);
    }
    .nav-block {
        display: none;
        position: relative;
        z-index: 1;
        color: var(--white);
        padding: 10px;
        text-align: center;
    }
    .nav-block ul {
        display: grid;
        grid-gap: 10px;
        max-width: 360px;
        margin: 0 auto;
    }
    .nav-block .nav-item {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 8px 0;
        min-height: 40px;
    }
    .nav-block .signup-link {
        display: none;
    }
    .nav-block .signup-item {
        padding: 0;
    }
    .nav-block .nav-item-dropdown {
        width: 100%;
        margin: 0;
    }
    .signup-item .nav-item-dropdown {
        display: block;
        padding: 0;
    }
    .nav-block .nav-item-dropdown a {
        margin: 0 0 10px;
    }
    .nav-block .nav-item .btn {
        width: 100%;
        height: 40px;
    }
    .mobile-nav-visible main,
    .mobile-nav-visible .awards-section,
    .mobile-nav-visible footer {
        display: none;
    }
    .mobile-nav-visible .nav-block {
        display: block;
        width: 100%;
        margin-top: 20px;
        background: var(--accent);
    }
    .mobile-btn {
        display: block;
    }
    .mobile-nav-visible .mobile-btn {
        width: 24px;
        transform: rotate(-270deg);
        right: 2px;
        padding: 0;
        height: 20px;
    }
    .mobile-nav-visible .mobile-btn .icon-line-1 {
        transform: rotate(-45deg);
    }
    .mobile-nav-visible .mobile-btn .icon-line-2 {
        transform: rotate(45deg);
    }
    .mobile-nav-visible .mobile-btn .mobile-btn-item {
        position: absolute;
        width: 24px;
    }
    .is-active .nav-item-dropdown {
        display: block;
    }
    [data-form='is-open'] .nav-block {
        visibility: hidden;
        position: absolute;
        height: 0;
        width: 0;
        overflow: hidden;
    }
    .signup .form-submit-block {
        display: grid;
    }
    .signup .btn-form-prev {
        order: 1;
    }
}

@media screen and (min-width: 980px) {
    .cookies-popup {
        display: flex;
    }
    .cookies-content {
        max-width: 635px;
        width: 100%;
        margin-right: 20px;
    }
    .cookies-btns {
        flex: 1;
        margin-top: 0;
    }
    h1,
    .h1 {
        font-size: 50px;
    }
    form .form-item {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    form select {
        opacity: 0;
    }
    form .select-value {
        display: -webkit-box;
        -webkit-box-align: center;
        align-items: center;
        display: flex;
    }
    .form-item .select-dropdown {
        display: block;
    }
    .login .form-wrapper {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .page-bg-wrapper {
        display: block;
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .page-bg {
        width: 100%;
        height: 100%;
        background-image: url(/new/img/landing/web-bg.jpg);
        background-repeat: no-repeat;
        background-position: center top;
        background-size: 100% 100%;
    }
    .page-bg:before,
    .page-bg:after {
        content: '';
        position: absolute;
        z-index: -2;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
    }
    .page-bg:after {
        background-image: linear-gradient( 150deg, #02111d 2.63%, var(--accent) 2.63%, var(--accent) 50%, #02111d 50%, #02111d 52.63%, var(--accent) 52.63%, var(--accent) 100%);
        background-size: 76px 43.88px;
    }
    .page-bg:before {
        z-index: -1;
        background: -webkit-radial-gradient(center, ellipse cover, transparent 0%, var(--accent) 65%);
        background: radial-gradient(ellipse at center, transparent 0%, var(--accent) 65%);
    }
    header.center {
        padding: 15px 40px;
    }
    .mobile-nav-visible header.center {
        position: sticky;
        height: auto;
    }
    header .nav-block ul {
        display: flex;
        align-items: center;
        text-transform: uppercase;
        font-weight: 700;
    }
    header .nav-block .nav-item {
        margin-left: 30px;
    }
    header .nav-block .signup-item {
        margin-left: 15px;
    }
    [data-role='dropdown']:hover .nav-item-dropdown {
        visibility: visible;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 1;
    }
    .nav-item-dropdown {
        display: grid;
        grid-gap: 10px;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        right: 0;
        min-width: 180px;
        max-height: 400px;
        padding: 10px;
        white-space: nowrap;
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
        border-radius: 4px;
        z-index: 3;
        background: linear-gradient(57.38deg, #001b2f 0%, #1f2b34 100%);
        box-shadow: 0 5px 7px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 0, 0, 0.25);
    }
    .nav-item-dropdown a {
        opacity: 1;
    }
    .nav-item-dropdown .btn-flat {
        margin-bottom: 0;
    }
    .nav-item-dropdown:before {
        content: '';
        position: absolute;
        bottom: 100%;
        right: 0;
        width: 30%;
        height: 10px;
    }
    [data-nav='login'] .nav-item-dropdown,
    [data-nav='news'] .nav-item-dropdown {
        margin-top: 14px;
    }
    [data-nav='login'] .nav-item-dropdown:before,
    [data-nav='news'] .nav-item-dropdown:before {
        height: 28px;
    }
    [data-nav='news'] .nav-item-dropdown {
        right: -70px;
    }
    [data-nav='news'] .nav-item-dropdown:before {
        right: 60px;
        width: 40%;
    }
    .is-active .nav-item-dropdown {
        visibility: visible;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        opacity: 1;
    }
    .promo {
        margin: auto;
        padding: 0;
        grid-gap: 35px;
    }
    .promo .promo-title {
        max-width: 100%;
    }
    .promo .promo-title .highlighted {
        display: inline-block;
        padding: 10px 20px;
    }
    .promo .promo-text {
        padding: 0 45px;
    }
    .promo .logo-block img {
        height: 190px;
    }
    .promo .offers-block {
        display: grid;
        grid-template-columns: 440px 440px;
        grid-gap: 35px;
    }
    .promo .offer-item {
        display: grid;
        grid-template-rows: auto 1fr auto;
        padding: 45px 45px 35px;
        margin: 0;
    }
    .promo .offer-item.is-inactive {
        opacity: 0.7;
    }
    .promo .btn {
        font-size: 22px;
        height: 70px;
        margin-top: 45px;
    }
    .advantages.center {
        max-width: 100%;
        margin: auto;
        padding: 10px 40px;
    }
    .advantages .advantages-block {
        grid-template-columns: repeat(4, minmax(200px, 440px));
        align-items: stretch;
        grid-gap: 20px;
    }
    .advantages .offer-item {
        font-size: 12px;
        grid-template-columns: 60px 1fr 50px;
        align-items: center;
        grid-gap: 0 20px;
        text-align: left;
        background: rgba(255, 255, 255, 0.01);
        border: 1px solid rgba(185, 143, 126, 0.4);
    }
    .advantages .offer-item .offer-title {
        margin-bottom: 0;
    }
    .advantages .offer-item .icon {
        margin: 0;
    }
    .advantages .offer-item .btn {
        display: none;
    }
    .advantages .btn-logout {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        border-radius: 4px;
    }
    .advantages .btn-logout .icon:before {
        font-size: 24px;
    }
    .advantages .btn-logout span {
        display: none;
    }
    .login h1 {
        margin-bottom: 30px;
    }
    .login .form-submit-block {
        padding: 30px 0 0;
    }
    .faq h1 {
        margin-bottom: 40px;
    }
    .faq .faq-wrapper {
        display: grid;
        align-items: flex-start;
        justify-content: center;
        grid-gap: 20px;
        grid-template-columns: 1fr 1fr;
    }
    .faq .faq-element {
        margin-bottom: 30px;
    }
    .faq .faq-title {
        margin-bottom: 20px;
    }
    .faq .faq-item {
        grid-gap: 20px;
    }
    .signup {
        max-width: 100%;
        margin: auto;
    }
    .signup .form-item label {
        text-align: left;
    }
    .signup .form-item-wrapper {
        display: grid;
        grid-template-columns: 300px 300px;
        grid-gap: 40px;
        justify-content: center;
    }
    .signup .form-item-wrapper .form-item {
        width: 100%;
        margin: 0;
    }
    .signup .radio-wrapper {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        width: auto;
        max-width: 100%;
    }
    .signup form .radio-item {
        display: inline-grid;
        margin: 0 12px;
    }
    .signup .radio-wrapper label {
        width: 100%;
        text-align: center;
    }
    .signup .form-submit-block {
        display: flex;
        justify-content: center;
    }
    .signup .form-submit-block .btn {
        width: 230px;
    }
    .signup .form-submit-block .btn+.btn {
        margin-left: 20px;
    }
    .signup [data-step='events'] {
        max-width: 1240px;
        margin: 0 auto;
    }
    .signup [data-step='events'] .step-wrapper {
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap;
        max-width: 640px;
        margin: 0 auto 30px;
    }
    .signup [data-step='events'].event-selected .step-wrapper {
        max-width: 100%;
    }
    .signup .step-wrapper .btn-flat {
        margin: 10px;
    }
    .signup [data-step='events'] .inner-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .signup .event-input-block {
        padding: 20px 0 0;
    }
    .slider {
        padding: 20px 0;
    }
    .slider-page .go-to-all-block .btn {
        width: 184px;
        margin: 0 auto;
        padding: 0;
    }
    .slider .slider-content {
        padding: 20px;
    }
    .slider .slider-content .btn {
        width: 140px;
        margin-left: auto;
        text-transform: uppercase;
    }
    .slider .slider-nav {
        display: block;
    }
    .blog-article .center .picture-wrapper {
        margin: 0;
    }
    .page-404 main .ooops-picture {
        width: 100%;
        margin: 0;
        max-height: 55vh;
    }
    .page-404 main .ooops-info {
        grid-gap: 20px;
    }
    .section-contacts {
        display: block;
        position: fixed;
        padding: 40px;
        top: 0;
        right: 0;
        bottom: 0;
        width: 640px;
        overflow-y: auto;
        transform: translateY(-100%);
        transition: transform var(--transition);
    }
    .section-contacts::-webkit-scrollbar {
        width: 5px;
        background: #273d4d;
    }
    .section-contacts::-webkit-scrollbar-thumb {
        border-radius: 40px;
        background: #000;
    }
    [data-form='is-open'] .section-contacts {
        transform: translateY(0);
    }
    [data-form='is-open'] .overlay-block {
        display: block;
    }
    header,
    main,
    footer,
    .page-bg-wrapper {
        transition: var(--transition);
        will-change: filter;
        -webkit-filter: blur(0);
        filter: blur(0);
    }
    [data-form='is-open'] header,
    [data-form='is-open'] main,
    [data-form='is-open'] footer,
    [data-form='is-open'] .awards-section,
    [data-form='is-open'] .page-bg-wrapper {
        -webkit-filter: blur(10px);
        filter: blur(10px);
        will-change: filter;
    }
    .section-contacts .close-form-btn {
        display: block;
        position: absolute;
        top: 40px;
        right: 40px;
        width: 50px;
        height: 50px;
    }
    .close-form-btn .close-btn-icon:before,
    .close-form-btn .close-btn-icon:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        transform: rotate(45deg);
        background: #b8bfc5;
    }
    .close-form-btn .close-btn-icon:before {
        width: 12px;
        height: 2px;
    }
    .close-form-btn .close-btn-icon:after {
        width: 2px;
        height: 12px;
    }
    .section-contacts .contact-form .btn {
        width: 190px;
        margin: 40px auto 20px;
    }
    .section-contacts .contacts-info {
        display: block;
        margin-bottom: 40px;
    }
    .overlay-block.is-active {
        display: block;
    }
    .footer .social-link a {
        padding: 10px 5px;
    }
    .footer .languages-nav {
        margin-bottom: 5px;
    }
    .describe-success-message .icon {
        font-size: 100px;
    }
    .describe-success-message .h1 {
        margin-bottom: 10px;
    }
    .describe-success-message .h3 {
        font-size: 22px;
        font-weight: 400;
    }
    .describe-success-message {
        min-height: 490px;
    }
}

@media screen and (min-width: 1200px) and (max-height: 920px) {
    h1,
    .h1 {
        font-size: 40px;
        margin-bottom: 2vh;
    }
    body {
        font-size: 14px;
    }
    .section-contacts {
        overflow-y: auto;
    }
    .section-contacts .contacts-info {
        display: block;
        margin-bottom: 40px;
        margin-bottom: 2vh;
    }
    .section-contacts .contact-form .btn {
        margin: 4vh auto 2vh;
    }
    .section-contacts .info-wrapper {
        grid-gap: 1vh;
    }
    .section-contacts .form-item label {
        font-size: 16px;
        padding: 2vh 0 5px;
    }
    form .textarea-describe {
        min-height: 40px;
        padding: 9px 10px 10px 40px;
    }
    form .form-field .icon,
    form input,
    form .select-value,
    form select,
    .btn {
        height: 40px;
    }
    form .form-field .icon img {
        margin-top: 7px;
    }
    form .form-field .icon::before {
        line-height: 40px;
    }
    .select-field:before,
    .select-field:after {
        top: 19px;
    }
    .select--focused.select-field:before {
        top: 16px;
    }
    form .form-field .icon.icon-notice {
        top: 5px;
    }
    .checkbox-item .checkbox-icon {
        top: 3px;
    }
}

@media screen and (min-width: 960px) and (max-width: 1600px) {
    .advantages-block>.advantage-item {
        min-height: 300px;
    }
    .advantages .offer-item {
        grid-template: initial;
        grid-gap: 10px;
        padding: 10px;
    }
    .advantages .btn-logout {
        height: 30px;
    }
    .advantages .btn-logout span {
        display: inline-block;
        margin: 0 10px 0 0;
        font-weight: 700;
    }
    .advantages [data-offer='cpa'] .btn-logout span {
        color: var(--blaprimaryck);
        background: var(--primary-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .advantages .offer-item>.icon {
        display: none;
    }
}

.awards-slider .slider-view {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.awards-slider .slider-item {
    text-align: center;
    background-color: transparent;
    border: 0;
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
    transition: transform 0.25s linear;
    will-change: transform;
}

.awards-slider .slider-item:only-child {
    flex-shrink: initial;
    margin: 0 auto;
    cursor: default;
}

.awards-section .center {
    padding: 0;
}

.slider-image,
.slider-image img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}

.slider-image::after,
.slider-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
    -webkit-animation-name: none;
    animation-name: none;
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    will-change: transform, opacity;
    contain: content;
}

.slider-image::after {
    background-image: url(/new/img/landing/dark-triangle.png);
}

.slider-image::before {
    background-image: url(/new/img/landing/light-triangle.png);
}

.awards-slider .slider-item.is-active .slider-image::after {
    -webkit-animation-name: rotateLeft;
    animation-name: rotateLeft;
}

.awards-slider .slider-item.is-active .slider-image::before {
    -webkit-animation-name: rotateRight;
    animation-name: rotateRight;
}

.awards-slider .slider-item.stop-animation .slider-image::after,
.awards-slider .slider-item.stop-animation .slider-image::before {
    -webkit-animation-name: none;
    animation-name: none;
}

.slider-item.item-2 .slider-image::before {
    display: none;
}

.awards-section {
    padding-top: 35px;
}

.awards-slider .slider-nav {
    display: block;
}

.awards-slider .slider-arrow {
    top: 50%;
    display: flex;
    background-color: transparent;
}

.awards-slider .arrow-next {
    right: 10px;
    justify-content: flex-end;
}

.awards-slider .arrow-prev {
    left: 10px;
    justify-content: flex-start;
}

.awards-slider .slider-arrow::before {
    border-color: var(--primary);
}

.awards-slider .slider-content {
    margin-top: -50px;
}

.slider-item.item-2 .slider-content {
    margin-top: 0;
}

.awards-slider .slider-item:not(.is-active) .slider-title,
.awards-slider .slider-item:not(.is-active) .slider-image::before,
.awards-slider .slider-item:not(.is-active) .slider-image::after {
    opacity: 0;
}

.awards-slider .slider-title {
    display: block;
    max-width: 400px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
    opacity: 1;
}

.awards-slider .slider-title span {
    display: block;
    color: #ff9000;
}

.awards-slider .slider-content {
    padding: 0;
}

.awards-slider .slider-pagination {
    display: none;
}

.slide-sibling.sibling-next {
    -webkit-transform: translate(-57.5%, 5%) scale(0.3);
    transform: translate(-57.5%, 5%) scale(0.3);
}

.slide-sibling.sibling-prev {
    -webkit-transform: translate(57.5%, 5%) scale(0.3);
    transform: translate(57.5%, 5%) scale(0.3);
}

@keyframes rotateLeft {
    from {
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes rotateRight {
    from {
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@media screen and (min-width: 980px) {
    .awards-slider .slider-title {
        font-size: 28px;
    }
    .awards-title br {
        display: none;
    }
    .awards-section .center {
        padding: 0 10px;
    }
    .awards-slider .slider-arrow::before {
        width: 24px;
        height: 24px;
        border-width: 6px;
        border-color: var(--primary);
    }
    .slide-sibling.sibling-next {
        -webkit-transform: translate(-65%, 5%) scale(0.5);
        transform: translate(-65%, 5%) scale(0.5);
    }
    .slide-sibling.sibling-prev {
        -webkit-transform: translate(65%, 5%) scale(0.5);
        transform: translate(65%, 5%) scale(0.5);
    }
    .slider-image,
    .slider-image img {
        max-width: 360px;
    }
}

.presentation .header {
    padding: 15px 0;
    margin-bottom: auto;
}

.presentation .header-logo img {
    width: 60%;
    max-width: 651px;
    height: auto;
    margin: 0 auto;
}

.presentation .section-title {
    text-transform: uppercase;
    margin-bottom: 45px;
    -webkit-text-fill-color: initial;
}

.presentation .section-title span {
    display: block;
    text-transform: none;
}

.presentation-main {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    min-height: 100vh;
    padding-bottom: 60vh;
    margin-bottom: 60px;
}

.presentation-main:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80vh;
    height: 50vh;
    background: url(../../img/conferences/photo-main.png) bottom right / contain no-repeat;
    z-index: 1;
}

.presentation-main:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80vh;
    height: 50vh;
    -webkit-clip-path: polygon(115% 0, 100% 0%, 100% 100%, 6% 100%);
    clip-path: polygon(115% 0, 100% 0%, 100% 100%, 6% 100%);
    background: url(../../img/conferences/bg-money.png) bottom right / 160px auto repeat, linear-gradient(150deg, transparent 0, transparent 55%, #ff9101 55%, #ffcd35 58.84%);
}

.arrow-down {
    position: absolute;
    bottom: 25px;
    left: calc(50% - 15px);
    width: 50px;
    height: 50px;
    background: url(../../img/conferences/down.svg) bottom center / contain no-repeat;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
    cursor: pointer;
    z-index: 2;
}

.presentation .section-subtitle {
    display: block;
    font-size: 18px;
}

.presentation .promo-text p {
    margin: 0;
}

.presentation .features-section {
    margin-bottom: 60px;
}

.presentation .features-list {
    list-style-position: inside;
    padding-left: 20px;
    margin: 40px 0 70px;
}

.presentation .features-list li {
    list-style: disc;
    text-align: left;
    margin-bottom: 10px;
}

.presentation .features-list li:last-child {
    margin-bottom: 0;
}

.presentation .features-list span {
    color: var(--primary);
}

.presentation .features-verticals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.presentation .features-verticals div {
    color: var(--accent);
    font-weight: 700;
    background: linear-gradient(90deg, #ff9000 0%, #ffd33a 100%);
    border-radius: 20px;
    margin: 0 10px 20px;
    padding: 10px 15px;
    min-width: 110px;
}

.presentation .features-verticals div:last-child {
    margin-right: 0;
}

.presentation .features-verticals span {
    position: relative;
    padding-left: 38px;
}

.presentation .features-verticals span:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.presentation .features-label-dating:after {
    background-image: url(../../img/conferences/icon-dating.png);
}

.presentation .features-label-sweepstakes:after {
    background-image: url(../../img/conferences/icon-sweepstakes.png);
}

.presentation .features-label-games:after {
    background-image: url(../../img/conferences/icon-games.png);
}

.presentation .features-label-finance:after {
    background-image: url(../../img/conferences/icon-finance.png);
}

.presentation .features-section {
    margin-bottom: 60px;
}

.presentation .payment-methods-section {
    background-color: #fff;
    padding: 70px 0 50px;
}

.presentation .payment-methods-title {
    font-size: 20px;
    color: #000;
    -webkit-text-fill-color: #000;
    background: transparent;
}

.presentation .payment-methods-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.presentation .payment-methods-items img {
    max-width: 50%;
    height: auto;
    margin: 0 20px 20px;
}

.presentation .offers-section {
    padding: 40px 0 0;
    margin-bottom: 60px;
}

.presentation .offers-items {
    padding: 70px 0 50px;
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 60px;
}

.presentation .offers-items .center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.presentation .offers-items img {
    max-width: 50%;
    height: auto;
    margin: 0 20px 20px;
}

.presentation .offer-item {
    margin-bottom: 20px;
    padding: 20px 10px 10px;
    background: var(--accent);
    border: 1px solid var(--primary);
}

.presentation .offer-item.is-inactive {
    border-color: var(--primary-blue);
    margin-bottom: 0;
}

.presentation .btn {
    margin-top: 20px;
}

.presentation .vertical-line {
    margin: 0 2px;
    border-right: 3px solid #fff;
    animation: caret 1s steps(1) infinite;
}

.presentation .social-links-block {
    margin-top: 40px;
}

.presentation .social-links-block img {
    max-width: 100%;
    height: auto;
}

.presentation .social-link a {
    width: 40px;
    height: 40px;
}

.presentation .footer {
    padding: 20px 0;
}

.presentation .btn-outline:hover span,
.presentation .btn-outline-blue:hover span {
    background: none;
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@media (min-width: 768px) {
    .presentation .page-bg-wrapper {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
    }
    .presentation .page-bg {
        background-image: url(../../img/conferences/bg-main-left.png), url(../../img/conferences/bg-main-right.png);
        background-position: top left, top right;
        background-size: 30% auto;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
    }
    .presentation .page-bg:before,
    .presentation .page-bg:after {
        content: '';
        position: absolute;
        z-index: -2;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
    }
    .presentation .page-bg:after {
        background-image: linear-gradient( 150deg, #02111d 2.63%, var(--accent) 2.63%, var(--accent) 50%, #02111d 50%, #02111d 52.63%, var(--accent) 52.63%, var(--accent) 100%);
        background-size: 76px 43.88px;
    }
    .presentation .page-bg:before {
        z-index: -1;
        background: -webkit-radial-gradient(center, ellipse cover, transparent 0%, var(--accent) 65%);
        background: radial-gradient(ellipse at center, transparent 0%, var(--accent) 65%);
    }
    .presentation .center {
        width: 82%;
        max-width: 1620px;
    }
    .presentation-main {
        padding-bottom: 50vh;
    }
    .presentation-main:after {
        width: 86vh;
        height: 50vh;
    }
    .presentation .section-title {
        font-size: 40px;
    }
    .presentation .section-subtitle {
        font-size: 22px;
    }
    .presentation .promo-block {
        max-width: 75%;
        margin: 0 auto 20px;
    }
    .presentation .promo-text {
        font-size: 24px;
    }
    .presentation .features-list {
        -webkit-column-count: 2;
        column-count: 2;
    }
    .presentation .features-list-wide {
        -webkit-column-count: inherit;
        column-count: inherit;
    }
    .presentation .features-list li {
        max-width: 90%;
        font-size: 20px;
        margin-bottom: 20px;
    }
    .presentation .features-verticals div {
        font-size: 20px;
        padding: 13px 35px;
    }
    .presentation .features-verticals span {
        padding-left: 48px;
    }
    .presentation .features-verticals span:after {
        width: 38px;
        height: 38px;
    }
    .presentation .offers-items {
        padding: 90px 0 10px;
        margin-top: 0;
    }
    .presentation .payment-methods-section {
        padding-bottom: 40px;
    }
    .presentation .payment-methods-items img {
        margin: 0 40px 30px;
    }
    .presentation .offers-items img {
        margin: 0 40px 80px;
    }
    .presentation .offers-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 335px;
        background-image: url(../../img/conferences/bg-offers-left.png), url(../../img/conferences/bg-offers-right.png);
        background-position: bottom left, bottom right;
        background-size: auto 335px;
        background-repeat: no-repeat;
    }
    .presentation .footer .social-links-block {
        max-width: 890px;
        margin: 40px auto 0;
        justify-content: space-around;
    }
    .presentation .footer .social-link a {
        width: 75px;
        height: 75px;
        padding: 0;
    }
}

@media (min-width: 768px) and (min-height: 1080px) {
    .presentation .promo-text {
        font-size: 32px;
    }
}

@media (min-width: 905px) {
    .arrow-down {
        background-image: url(../../img/conferences/down-primary.svg);
    }
}

@media screen and (min-width: 980px) {
    .presentation .section-title {
        font-size: 50px;
        margin-bottom: 115px;
    }
    .presentation .section-subtitle {
        font-size: 32px;
    }
    .presentation .offers-block {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 75px;
        justify-content: center;
    }
    .presentation .offer-item {
        display: grid;
        grid-template-rows: auto 1fr auto;
        padding: 60px;
        margin: 0;
    }
    .presentation .offer-item h2 {
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    .presentation .offer-item p {
        font-size: 20px;
    }
    .presentation .btn {
        font-size: 22px;
        height: 70px;
        margin-top: 20px;
    }
    .presentation .features-list {
        margin: 70px 0;
    }
    .halloween-banner img {
        height: auto;
    }
}

@media (min-width: 1200px) {
    .presentation .header {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
    }
    .presentation .header-logo img {
        max-width: 40%;
    }
    .presentation-main {
        padding-bottom: 0;
    }
    .presentation .offers-inner {
        min-height: 600px;
        background-size: auto 500px;
    }
    .presentation .payment-methods-section .center {
        max-width: 1640px;
    }
}

@media (min-width: 1680px) {
    .presentation .promo-block {
        max-width: 960px;
    }
    .presentation .promo-text {
        font-size: 34px;
    }
    .presentation .section-title {
        font-size: 80px;
    }
    .presentation .section-title span,
    .presentation .section-subtitle {
        font-size: 54px;
    }
    .presentation .payment-methods-title {
        font-size: 40px;
    }
    .presentation .features-list li {
        font-size: 40px;
        margin-bottom: 40px;
    }
    .presentation .offers-inner {
        background-image: url(../../img/conferences/bg-offers-left.png), url(../../img/conferences/bg-offers-right.png), url(../../img/conferences/bg-offers-center.png);
        background-position: bottom left, bottom right, bottom left 30%;
        background-size: contain, contain, auto;
    }
    .presentation .offer-item h2 {
        font-size: 64px;
    }
    .presentation .offer-item p {
        font-size: 40px;
    }
    .presentation .btn {
        font-size: 40px;
        max-width: 320px;
        height: 110px;
        margin: 60px auto 0;
    }
    .presentation .features-verticals div {
        font-size: 36px;
    }
}

@media (min-width: 1920px) and (min-height: 1080px) {
    .presentation-main:after {
        width: 1364px;
        height: 804px;
        background: url(../../img/conferences/photo-main.png) bottom right / 610px auto no-repeat, linear-gradient(150deg, transparent 0, transparent 55%, #ff9101 55%, #ffcd35 58.84%);
    }
}



/*developer styles starts here*/

.benefits-wrapper{
    display: flex;
    justify-content: center; /* Centers the list block */
}

.offer-benefits{
    text-align: left;
    list-style: disc;
    padding-left: 25px;
    margin: 15px 0 30px;
}

.offer-benefits li{
    margin-bottom: 12px;
    line-height: 1.8;
    display: list-item;
}

.offer-benefits {
    list-style-type: disc !important;
    list-style-position: outside;
    padding-left: 25px !important;
    /* margin: 15px 0 30px; */
}

.offer-benefits li {
    display: list-item !important;
    list-style-type: disc !important;
    margin-bottom: 12px;
    line-height: 1.8;
}

