

/******* PROMO PAGE *******/
.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;
    }
  }
/******* // PROMO PAGE *******/




/******* ADVANTAGES PAGE *******/
.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;
}

/******* // ADVANTAGES PAGE *******/




/******* LOGIN PAGE *******/
.login {
    margin: auto;
}

/******* // LOGIN PAGE *******/






/******* FAQ PAGE *******/
.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: 0px 5px 7px rgba(0, 0, 0, 0.25), 0px 0px 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;
}

/******* // FAQ PAGE *******/







/******* SIGNUP PAGE *******/
.signup .form-step {
    display: none;
}

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

/* final step icon */
.signup .form-step .h1 .icon {
    font-size: 110px;
    margin-bottom: 10px;
}
/* // final step icon */
.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;
}

/* terms */
.signup .terms {
    padding: 0 0 20px;
}
.signup .terms p {
    color: var(--default);
}
/* // terms */
/******* // SIGNUP PAGE *******/




/*******  EVENTS PAGE ********/
.events .slider-header .h3 {
    font-weight: 400;
}
/******* // EVENTS PAGE ********/






/******* BLOG NEWS PAGE ********/
.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%;
}
/******* // BLOG NEWS PAGE ********/





/******* TERMS & PRIVACY PAGES ********/
.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;
}
/******* // TERMS & PRIVACY PAGES ********/



/******* 404 PAGE ********/
.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;
}
/******* // 404 PAGE ********/
