@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,700;0,800;1,600&display=swap');

/* ------------------------------------------------------------- *
 * Global variables
/* ------------------------------------------------------------- */

:root {
    --orange-light: #F18C28;
    --orange-dark: #DF561B;
    --green-light: #76BF4C;
    --green-dark: #055816;
    --color-black: #141414;
    --color-grey: #737373;
    --color-white: #FFFFFF;
}

/* ------------------------------------------------------------- *
 * General
/* ------------------------------------------------------------- */

* {
    box-sizing: border-box;
    text-decoration: none;
    text-transform: none;
    list-style: none;
    border-radius: 0;
}
html, body {
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: normal;
    display: flex;
    flex-direction: column;
    color: #141414;
    margin: 0;
    background: #FFF;
    overflow: hidden auto;
}
body.light-bg {
    background: #F1F1F1;
}
h1, h2 {
    font-weight: 800;
    margin: 0;
}
h3, h4, h5, h6 {
    font-weight: 700;
    margin: 0;
}
b, strong {
    font-weight: bold;
    font-weight: 800;
}
a {
    transition: .4s;
}
a:hover {
    color: var(--orange-dark);
}
button {
    border: none;
    outline: none;
}
section {
    position: relative;
    padding: 50px 0;
}

main {
    padding-top: 65px;
}

.text-center {text-align: center}

/* ------------------------------------------------------------- *
 * Section Title
/* ------------------------------------------------------------- */
.section-title h1 {
    color: #141414;
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 45.6px */
    margin-bottom: 30px;
}
.section-title h2 {
    color: #141414;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 45.6px */
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .section-title h1 {
        font-size: 24px;
    }
    .section-title h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }
}
/* ------------------------------------------------------------- *
 * Container + Rows
/* ------------------------------------------------------------- */
.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 992px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }
}

/* ------------------------------------------------------------- *
 * Buttons
/* ------------------------------------------------------------- */
.btn-main {
    display: inline-block;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.2px;
    border-radius: 25px;
    background: #DF561B;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35);
    padding: 18px 24px;
}
.btn-main:hover {
    color: #FFFF;
}

.header-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 11px 24px;
    border-radius: 15px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: .4s;
}
.header-btn.btn-solid {
    background: var(--color-grey);
    border: 1px solid var(--color-grey);
}
.header-btn.btn-solid:hover {
    background: #898989;
    border: 1px solid #898989;
    color: var(--color-white);
}
.header-btn.btn-bordered {
    background: transparent;
    color: var(--color-black);
    border: 1px solid var(--color-black);
}
.header-btn.btn-bordered:hover {
    color: var(--orange-dark);
    border: 1px solid var(--orange-dark);
}
@media (max-width: 767px) {
    .header-btn {
        padding: 8px 10px;
        font-size: 11px;
    }
    .header-btn svg {
        width: 15px;
    }
    .btn-main {
        font-size: 18px;
        padding: 18px 20px;
    }
}
/* ------------------------------------------------------------- *
 * Header
/* ------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #FFF;
    padding: 12px 0;
    border-bottom: 1px solid #ECECEC;
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .header-logo {
    display: flex;
    color: var(--color-grey);
    font-size: 27px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.35px;
}
.header .header-logo img {
    width: 200px;
}
.header .header-logo span {
    color: var(--orange-dark);
}
.header .header-pay {
    margin-left: auto;
}
.header .header-phone {
    position: relative;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    margin-right: 15px;
}
.header .header-phone:before {
    content: '';
    position: absolute;
    top: 0;
    right: -15px;
    height: 100%;
    width: 1px;
    background: #b4b4b4;
}
.header .header-phone-no-line:before {
    display: none;
}
.header .header-phone a {
    color: #D63B15;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
    text-decoration-line: none;
}
.header .header-phone span {
    display: inline-block;
    color: #737373;
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.12px;
}
.header .header-login {
    margin-left: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.header .header-btn svg {
    margin-right: 8px;
}
.header .header-burger {
    margin-left: 20px;
}
.header .header-burger:hover{
    cursor: pointer;
}
.header .header-burger .hamburger{}
.header .header-burger .hamburger span{
    width: 25px;
    height: 2px;
    background: #737373;
    border-radius: 2px;
    margin-bottom: 5px;
    display: block;
}
.header .header-burger .hamburger span:last-child{
    margin-bottom: 0;
}

.header .btn-bordered svg,
.header .btn-bordered svg path {
    transition: .4s;
}
.header.header-login .btn-bordered:hover svg path {
    fill: var(--orange-dark);
}
@media (min-width: 1050px) {
    .header .header-burger {
        display: none;
    }
}
@media (max-width: 767px) {
    .header .header-logo {
        font-size: 14px;
    }
    .header .header-logo img {
        width: 130px;
    }
    .header .header-pay {
        display: none;
    }
    .header .header-login {
        margin-left: 12px;
    }
    .header .header-phone:before {
        display: none;
    }
    .header .header-btn svg {
        margin-right: 5px;
    }
    .header .header-burger {
        margin-left: 12px;
    }
    .header .header-phone {
        margin-right: 0;
    }
    .header .header-phone a {
        font-size: 11px;
    }
    .header .header-phone span {
        font-size: 8px;
    }
}
@media (max-width: 400px) {
    .header .header-phone {
        display: none;
    }
    .header .header-login {
        margin-left: auto;
    }
}
/* ------------------------------------------------------------- *
 * Mobile Menu
/* ------------------------------------------------------------- */
.sidebar-background {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 200%;
    background: rgb(0 0 0 / 80%);
}
.sidebar-background.active {
    display: block;
}
.sidebar {
    position: fixed;
    width: 320px;
    right: -100%;
    z-index: 10;
    transition: .3s;
    overflow-y: auto
}
@media screen and (max-width: 600px) {
    .sidebar {
        width:90%
    }
}
.sidebar-active {
    right: 0;
    height: 100%;
    overflow-y: auto;
    top: 0;
    background: #fff;
    z-index: 1001;
    transition: .3s;
    padding-bottom: 20px
}
.sidebar-info {
    padding: 0 20px 80px
}
.sidebar-info span {
    font-size: 16px;
    width: 100%;
    color: var(--color-black);
    margin-bottom: 10px;
    display: block
}
.sidebar-info a {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
    margin-bottom: 2px
}
.sidebar-info p {
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--color-black);
    margin-bottom: 20px
}
.sidebar-info_title {
    line-height: 25px;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 10px
}
.sidebar-info .sidebar-time span {
    margin-top: 0;
    margin-bottom: 0;
    color: #141414;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%
}
.sidebar-info .sidebar-phone i {
    align-self: flex-start
}
.sidebar-info .sidebar-feedback div p,.sidebar-info .sidebar-phone div p,.sidebar-info .sidebar-time div p {
    color: #474747;
    font-size: 12px;
    font-style: normal;
    font-weight: 200;
    line-height: 150%;
    margin-top: 3px;
    margin-bottom: 0
}
.sidebar-info .sidebar-feedback,.sidebar-info .sidebar-phone,.sidebar-info .sidebar-time {
    display: flex;
    margin-bottom: 25px
}
.sidebar-info .sidebar-feedback i,.sidebar-info .sidebar-phone i,.sidebar-info .sidebar-time i {
    position: relative;
    top: 2px
}
.sidebar-info .sidebar-feedback div,.sidebar-info .sidebar-phone div,.sidebar-info .sidebar-time div {
    display: inline-block;
    width: calc(100% - 50px);
    margin-left: 10px
}
.sidebar-info .sidebar-feedback div a,.sidebar-info .sidebar-phone div a,.sidebar-info .sidebar-time div a {
    font-size: 14px;
    font-weight: 700;
    color: #141414;
    line-height: 150%;
    text-decoration: underline;
    cursor: pointer
}
.sidebar-info .sidebar-phone div a.a_call_me,.sidebar-info .sidebar-time div a.a_call_me {
    display: block;
    margin-top: 8px
}
.sidebar-info .sidebar-feedback_center,.sidebar-info .sidebar-phone_center,.sidebar-info .sidebar-time_center {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 30px
}
.sidebar-info .sidebar-feedback_center i,.sidebar-info .sidebar-phone_center i,.sidebar-info .sidebar-time_center i {
    margin-bottom: 12px
}
.sidebar-info .sidebar-feedback_center div a,.sidebar-info .sidebar-phone_center div a,.sidebar-info .sidebar-time_center div a {
    font-size: 14px;
    font-weight: 600;
    color: #346da6;
    line-height: 17px;
    text-decoration: underline;
    cursor: pointer
}
.sidebar-info .sidebar-feedback_center div a.a_call_me,.sidebar-info .sidebar-phone_center div a.a_call_me,.sidebar-info .sidebar-time_center div a.a_call_me {
    display: block;
    margin-top: 8px
}
.sidebar-info .sidebar-feedback_center div p,.sidebar-info .sidebar-phone_center div p,.sidebar-info .sidebar-time_center div p {
    margin-bottom: 0
}
.sidebar-list {
    top: 0;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    padding: 0 20px 8px
}
.sidebar-list:after {
    content: "";
    position: absolute;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    background: #dce2eb;
    bottom: 0
}
.sidebar-list li {
    padding: 0 0 8px
}
.sidebar-list li:last-child {
    margin-bottom: 0
}
.sidebar-list li img {
    height: 13px;
    width: 7px;
    margin-left: auto
}
.sidebar-list a {
    text-decoration: none;
    color: var(--color-black);
    font-size: 13px;
    display: flex;
    align-items: center;
    line-height: 140%
}
.sidebar-list a.active span {
    font-weight: 600
}
.sidebar-list .sidebar__account a {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 140%;
    margin-right: 10px;
    display: flex;
    align-items: center
}
.sidebar-list .sidebar__account img {
    margin-left: 10px;
    transform: rotate(180deg)
}
.sidebar-wrap {
    overflow-x: hidden
}
.sidebar .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    padding: 10px 20px;
    background: none;
    margin-bottom: 10px;
}
.sidebar .mobile-menu-header:last-child {
    margin-bottom: 0
}
.sidebar .mobile-menu-header i {
    margin-right: 0
}
.sidebar .mobile-menu-header span {
    float: left
}
.icon.icon-menu-close {
    background: url('../img/ico-menu-close.svg') no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain
}
.sidebar .mobile-menu-header i.close-menu {
    float: right;
    cursor: pointer;
}
.sidebar .mobile-menu-header.light {
    background: #fff
}

.sidebar-info .messengers-wrap {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding-bottom: 15px;
    border-bottom: 1px solid #dce2eb;
    margin-bottom: 15px;
}
.sidebar-info .messengers-wrap .messengers-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    padding: 10px 0;
    background: none;
    margin-bottom: 10px;
}
.sidebar-info .messengers-wrap .messengers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.sidebar-info .messengers-wrap .messengers a {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-black);
    text-decoration: none;
    margin-bottom: 2px;
    width: 32%;
    border-radius: 5px;
    background: #efefef;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px 4px;
    text-decoration: none;
}
.sidebar-info .messengers-wrap .messengers a span {
    color: var(--color-black);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    margin-top: 5px;
    text-decoration: none;
    margin-bottom: 0;
    width: auto;
}
.sidebar-info .messengers-wrap .messengers a .icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-telegram {
    background-image: url(../img/telegram.svg)
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-messenger {
    background-image: url(../img/messenger.svg)
}
.sidebar-info .messengers-wrap .messengers a .icon.icon-viber {
    background-image: url(../img/viber.svg);
}

.sidebar-info .sidebar-contact .icon {
    width: 15px;
    height: 15px;
    background-size: 100%;
}
.sidebar-info .sidebar-contact .icon.icon-phone {
    background-image: url('../img/ico-phone.svg')
}
.sidebar-info .sidebar-contact .icon.icon-email {
    background-image: url('../img/ico-envelope.svg')
}
.sidebar-info .sidebar-contact .icon.icon-clock {
    background-image: url('../img/ico-clock.svg')
}
.sidebar-info .sidebar-contact .icon.icon-time {
    background-image: url('../img/ico-time.svg')
}

/* ------------------------------------------------------------- *
 * Main Intro Banner
/* ------------------------------------------------------------- */
.mainIntro {
    padding: 30px 0;
}
.mainIntro .mainIntro-inner {
    display: flex;
    justify-content: space-between;
    padding: 30px 15px;
    border-radius: 10px;
    background: -webkit-linear-gradient(112deg, #FFB931 15.32%, #D53A14 63.53%);
    background: linear-gradient(112deg, #FFB931 15.32%, #D53A14 63.53%);
}
.mainIntro .mainIntro-banner {
    width: 100%;
    max-width: 560px;
}
.mainIntro .mainIntro-banner .mainIntro-info {
    display: inline-block;
    color: var(--orange-light);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding: 8px 15px;
    background: var(--color-white);
    margin-bottom: 20px;
}
.mainIntro .mainIntro-banner .mainIntro-title {
    color: #FFF;
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 45.6px */
}
.mainIntro .mainIntro-banner .mainIntro-subtitle {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: 350px;
}
.mainIntro .mainIntro-banner .mainIntro-image {
    max-width: 250px;
    margin-left: auto;
}
.mainIntro .mainIntro-banner .mainIntro-image img {
    width: 100%;
}
.mainIntro .mainIntro-banner .mainIntro-image .image-mobile {
    display: none;
}
.mainIntro .mainIntro-banner .mainIntro-menu {
    margin-bottom: 50px;
}
.mainIntro .mainIntro-banner .mainIntro-menu ul {
    display: flex;
    padding: 0;
    margin: 0;
}
.mainIntro .mainIntro-banner .mainIntro-menu ul li {
    padding-right: 25px;
}
.mainIntro .mainIntro-banner .mainIntro-menu ul li:last-child {
    padding-right: 0;
}
.mainIntro .mainIntro-banner .mainIntro-menu ul li a {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.16px;
}
.mainIntro .mainIntro-banner .mainIntro-menu ul li a:hover {
    text-decoration: underline;
}
.mainIntro .mainIntro-calculator {
    width: 350px;
    max-width: 350px;
    border-radius: 10px;
    background: #FFF;
}
.mainIntro .calculator-inner {
    padding: 30px 35px;
}
.mainIntro .calculator-inner .calculator-item {
    margin-bottom: 20px;
}
.mainIntro .calculator-inner .calculator-title {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141414;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.25px;
    margin-bottom: 15px;
}
.mainIntro .calculator-inner .calculator-title span {
    display: flex;
}
.mainIntro .calculator-inner .calculator-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #5C5B5B;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.12px;
    margin-top: 15px;
}
.mainIntro .calculator-inner .calculator-labels .left-label {
    text-align: left;
}
.mainIntro .calculator-inner .calculator-labels .left-label {
    text-align: right;
}
.mainIntro .calculator-inner .btn-main {
    width: 100%;
}
.mainIntro .calculator-inner .calculator-item input {
    border: 0;
    margin: 0;
    padding: 0;
    outline: none;
    user-select: none;
    text-align: center;
    font-size: 24px;
    background: 0 0;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.mainIntro .calculator-inner .calculator-item.summ input {
    width: 80px;
}
.mainIntro .calculator-inner .calculator-item.days input {
    width: 25px;
}
/*@media (max-width: 767px) {
    .mainIntro .calculator-inner .calculator-item.summ input {
        width: 102px!important;
    }
    .mainIntro .calculator-inner .calculator-item.days input {
        width: 50px!important;
    }
}*/

/* Calculator Slider-Range Styles Update */
.mainIntro .calculator-inner .irs--round {
    height: 25px;
}
.mainIntro .calculator-inner .irs--round .irs-line{
    height: 6px;
    background: #D8E4E3;
    border-radius: 2px;
    top: 10px;
}
.mainIntro .calculator-inner .irs--round .irs-single{
    display: none;
}
.mainIntro .calculator-inner .irs--round .irs-bar{
    height: 6px;
    background: var(--orange-dark);
    top: 10px;
}
.mainIntro .calculator-inner .irs--round .irs-bar--single{
    border-radius: 2px;
}
.mainIntro .calculator-inner .irs--round .irs-handle{
    background: var(--orange-dark);
    filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.15));
    box-shadow: none;
    border: 6px solid #D8E4E3;
    top: 0px;
    width: 25px;
    height: 25px;
}

/* Calculator Info */
.mainIntro .calculator-info {
    margin-top: 40px;
}
.mainIntro .calculator-info .calculator-info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.mainIntro .calculator-info .calculator-info-item:last-child {
    margin-bottom: 0;
}
.mainIntro .calculator-info .calculator-info-item .title {
    color: #141414;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: left;
}
.mainIntro .calculator-info .calculator-info-item .result {
    color: #141414;
    text-align: right;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
@media (max-width: 1200px) {
    .mainIntro .mainIntro-banner {
        max-width: 480px;
    }
}
@media (max-width: 1050px) {
    .mainIntro .mainIntro-banner .mainIntro-menu {
        display: none;
    }
    .mainIntro .mainIntro-banner .mainIntro-title {
        max-width: 580px;
    }
    .mainIntro .mainIntro-inner {
        flex-direction: column;
        padding: 30px;
    }
    .mainIntro .mainIntro-calculator {
        width: 100%;
        max-width: 100%;
    }
    .mainIntro .mainIntro-banner {
        width: 100%;
        max-width: 100%;
    }
    .mainIntro .mainIntro-banner .mainIntro-image {
        max-width: 220px;
        margin-left: auto;
        margin-top: -80px;
    }

}
@media (max-width: 767px) {
    .mainIntro {
        padding: 12px 0;
    }
    .mainIntro .mainIntro-inner {
        padding: 0;
        background: transparent;
    }
    .mainIntro .mainIntro-banner {
        min-height: 162px;
        padding: 15px 120px 15px 15px;
        border-radius: 10px;
        position: relative;
        background: -webkit-linear-gradient(112deg, #FFB931 15.32%, #D53A14 63.53%);
        background: linear-gradient(112deg, #FFB931 15.32%, #D53A14 63.53%);
    }
    .mainIntro .mainIntro-banner .mainIntro-info {
        font-size: 12px;
        margin-bottom: 10px;
        padding: 5px 12px;
    }
    .mainIntro .mainIntro-banner .mainIntro-title {
        font-size: 18px;
    }
    .mainIntro .mainIntro-banner .mainIntro-subtitle {
        font-size: 10px;
        margin: 5px 0;
    }
    .mainIntro .mainIntro-banner .mainIntro-image {
        position: absolute;
        right: 10px;
        bottom: 7px;
        max-width: 115px;
    }
    .mainIntro .mainIntro-banner .mainIntro-image .image-desktop {
        display: none;
    }
    .mainIntro .mainIntro-banner .mainIntro-image .image-mobile {
        display: block;
    }
    .mainIntro .calculator-inner {
        padding: 25px 0px;
        padding-bottom: 0;
    }
    .mainIntro .calculator-inner .calculator-title {
        font-size: 24px;
    }
}
@media (max-width: 350px) {
    .mainIntro .mainIntro-banner .mainIntro-info {
        font-size: 9px;
    }
    .mainIntro .mainIntro-banner .mainIntro-title {
        font-size: 14px;
    }
    .mainIntro .mainIntro-banner .mainIntro-subtitle {
        font-size: 8px;
    }
    .mainIntro .mainIntro-banner .mainIntro-image {
        font-size: 100px;
    }
}
/* ------------------------------------------------------------- *
 * Main Features
/* ------------------------------------------------------------- */
.mainFeatures .mainFeatures-item {
    width: calc(33.3% - 10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 30px 45px;
    border-radius: 10px;
    background: -webkit-linear-gradient(180deg, #FFBA32 0%, #D63B15 100%);
    background: linear-gradient(180deg, #FFBA32 0%, #D63B15 100%);
}
.mainFeatures .mainFeatures-item img {
    width: 145px;
    margin: 0 auto;
    margin-bottom: 25px;
}
.mainFeatures .mainFeatures-item h3 {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}
.mainFeatures .mainFeatures-item p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}
@media (max-width: 1200px) {
    .mainFeatures .mainFeatures-item {
        padding: 30px 45px;
    }
}
@media (max-width: 992px) {
    .mainFeatures .mainFeatures-item {
        width: 100%;
        margin-bottom: 25px;
    }
    .mainFeatures .mainFeatures-item:last-child {
        margin-bottom: 0;
    }
}
@media (max-width: 767px) {
    .mainFeatures {
        background: #f0f0f0;
        padding: 25px 0 50px 0;
        margin-top: 25px;
    }
}
/* ------------------------------------------------------------- *
 * Main Messages
/* ------------------------------------------------------------- */
.mainMessages .mainMessages-item {
    width: calc(33.3% - 15px);
    text-align: center;
}
.mainMessages .mainMessages-item:nth-child(2) {
/*    margin-top: 30px;*/
}
.mainMessages .mainMessages-item:nth-child(3) {
/*    margin-top: 60px;*/
}
.mainMessages .mainMessages-item img {
    width: 100%;
}
@media (max-width: 767px) {
    .mainMessages .mainMessages-item {
        width: 100%;
        margin-top: 20px!important;
    }
}
/* ------------------------------------------------------------- *
 * Main Channels
/* ------------------------------------------------------------- */
.mainChannels {
    padding-top: 100px;
}
.mainChannels .mainChannels-inner {
    background: rgba(255, 187, 163, 0.50);
}
.mainChannels .row {
    align-items: center;
}
.mainChannels .mainChannels-image {
    display: flex;
    width: 200px;
    margin-top: -50px;
}
.mainChannels .mainChannels-image img {
    width: 100%;
}
.mainChannels .mainChannels-text {
    max-width: 575px;
}
.mainChannels .mainChannels-text h2 {
    color: #141414;
    font-size: 38px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 45.6px */
}
.mainChannels .mainChannels-text p {
    margin: 20px 0 0 0;
}
.mainChannels .mainChannels-buttons {

}
.mainChannels .mainChannels-buttons .channel-btn {
    display: flex;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    background: #7360F2;
    padding: 5px 7px;
    border-radius: 6px;
}
.mainChannels .mainChannels-buttons .channel-btn.telegram {
    background: #fff;
    color: #289FD9;
    margin-top: 15px;
}
.mainChannels .mainChannels-buttons .channel-btn.viber:hover {
    background: #7a6bdc;
    text-decoration: underline;
}
.mainChannels .mainChannels-buttons .channel-btn.telegram:hover {
    text-decoration: underline;
}
.mainChannels .mainChannels-buttons .channel-btn img {
    width: 32px;
    margin-right: 5px;
}
@media (max-width: 1200px) {
    .mainChannels .mainChannels-text h2 {
        font-size: 26px;
    }
    .mainChannels .mainChannels-text {
        max-width: 475px;
    }
}
@media (max-width: 1050px) {
    .mainChannels {
        padding-top: 50px;
    }
    .mainChannels .mainChannels-text {
        max-width: 440px;
    }
    .mainChannels .mainChannels-image {
        display: none;
    }
    .mainChannels .mainChannels-inner {
        padding: 50px 0;
    }
}
@media (max-width: 767px) {
    .mainChannels {
        padding: 0;
    }
    .mainChannels .mainChannels-text {
        text-align: center;
    }
    .mainChannels .mainChannels-text h2 {
        font-size: 24px;
    }
    .mainChannels .mainChannels-text p {
        font-size: 14px;
    }
    .mainChannels .mainChannels-buttons {
        margin: 20px auto 0;
    }
}
/* ------------------------------------------------------------- *
 * Main FAQ
/* ------------------------------------------------------------- */
.mainFaq {
    padding-top: 0;
}
.mainFaq .row {
    align-items: center;
}
.mainFaq .mainFaq-accordion {
    width: calc(60% - 10px);
}
.mainFaq .mainFaq-banner {
    width: calc(40% - 10px);
    display: flex;
    justify-content: flex-end;
}
.mainFaq .mainFaq-banner img {
    width: 100%;
    max-width: 326px;
}
.accordion {
    width: 100%;
    margin-bottom: 30px;
}
.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 4px 4px 13px 0px rgba(0, 0, 0, 0.15);
}
.accordion-header {
    background-color: #FFF;
    padding: 15px 15px 15px 20px;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}
.accordion-header .accordion-title {
    width: 70%;
    color: var(--color-black);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 106.3%;
}
.accordion-header .accordion-title span {
    font-weight: 600;
}
.accordion-header .arrow-accord {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    transition: .3s ease-in;
}
.accordion-item.active .arrow-accord {
    transform: translateY(-50%) rotate(180deg);
}
.accordion-item.active .arrow-accord img {
    width: 100%;
}
.accordion-content {
    display: none;
    padding: 10px 80px 15px 20px;
    background: #FFF;
}
.accordion-content p {
    color: var(--color-black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 106.3%;
    margin: 0;
}
@media (max-width: 767px) {
    .mainFaq {
        padding-bottom: 0;
    }
    .mainFaq .mainFaq-accordion {
        width: 100%;
    }
    .accordion-header {
        padding: 15px;
    }
    .accordion-header .accordion-title {
        font-size: 16px;
    }
    .accordion-content {
        padding: 15px;
    }
    .accordion-content p {
        font-size: 14px;
    }
    .mainFaq .mainFaq-banner {
        display: none;
    }
}
/* ------------------------------------------------------------- *
 * Main Keywords
/* ------------------------------------------------------------- */
.mainKeywords .row {
    justify-content: flex-start;
}
.mainKeywords .mainKeywords-item {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    padding: 25px 15px;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #141414;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    margin-right: 10px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .mainKeywords .mainKeywords-item {
        padding: 15px;
        margin-bottom: 10px;
    }
}
/* ------------------------------------------------------------- *
 * Main SEO
/* ------------------------------------------------------------- */
.mainSeo .section-title h1 {
    margin-bottom: 20px;
    font-size: 30px;
}
.mainSeo p {
    font-size: 14px;
}
.mainSeo ul {
    padding-left: 25px;
    font-size: 14px;
}
.mainSeo ul li {
    list-style: circle;
    margin-bottom: 10px;
}
.mainSeo ul li:last-child {
    margin-bottom: 0;
}
@media (max-width: 1200px) {
    .mainSeo .section-title h1 {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .mainSeo .section-title h1 {
        font-size: 24px;
    }
    .mainSeo .section-title h1 br {
        display: none;
    }
}
/* ------------------------------------------------------------- *
 * Main CTA
/* ------------------------------------------------------------- */
.mainCta {
    background: -webkit-linear-gradient(112deg, #FFB931 15.32%, #D53A14 63.53%);
    background: linear-gradient(112deg, #FFB931 15.32%, #D53A14 63.53%);
}
.mainCta .row {
    align-items: center;
}
.mainCta .left-block {
    width: calc(50% - 10px);
}
.mainCta .left-block h1 {
    color: #fff;
}
.mainCta .left-block p {
    color: #fff;
    margin-bottom: 0;
}
.mainCta .right-block {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}
.mainCta .right-block .mainCta-summ {
    width: 350px;
    margin: 0 auto;
    background: #fff;
    padding: 15px 10px;
    border-radius: 25px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mainCta .right-block .mainCta-summ .button {
    background: none;
    font-size: 35px;
    line-height: 100%;
    cursor: pointer;
    user-select: none;
    width: 35px;
    height: 35px;
    background: var(--orange-dark);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mainCta .right-block .mainCta-summ .button.decrement span {
    margin-top: -3px;
}
.mainCta .right-block .mainCta-summ span.number {
    font-size: 30px;
    font-weight: 600;
}
.mainCta .right-block .btn-main {
    width: 350px;
    text-transform: uppercase;
    background: var(--orange-light);
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .mainCta .right-block .btn-main,
    .mainCta .right-block .mainCta-summ {
        width: 320px;
    }
}
@media (max-width: 767px) {
    .mainCta .left-block,
    .mainCta .right-block {
        width: 100%;
        text-align: center;
    }
    .mainCta .left-block h1 {
        text-align: center;
        font-size: 24px;
    }
    .mainCta .left-block p {
        margin: 10px 0 20px 0;
    }
}

.footer {
    background: #D8E4E3;
    padding: 50px 0;
}
.footer .row {
    justify-content: space-between
}
.footer .footer-left {
    width: calc(40% - 10px);
}
.footer .footer-right {
    width: calc(55% - 10px);
}

.footer .footer-left .footer-contact {
    display: flex;
    flex-wrap: wrap;
}
.footer .footer-left .footer-contact .footer-contact-item {
    width: calc(50% - 7px);
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    margin-bottom: 40px;
}
.footer .footer-left .footer-contact .footer-contact-ico {
    display: flex;
    width: 16px;
    margin-right: 12px;
} 
.footer .footer-left .footer-contact .footer-contact-ico img {
    max-width: 16px;
}
.footer .footer-left .footer-contact .footer-contact-text {
    display: flex;
    flex-direction: column;
}
.footer .footer-left .footer-contact .footer-contact-text a {
    font-size: 14px;
    font-weight: 500;
    color: #141414;
    text-decoration: underline;
    margin-bottom: 5px;
}
.footer .footer-left .footer-contact .footer-contact-text p {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: #141414;
}
.footer .footer-left .footer-contact .footer-contact-text a:hover {
    text-decoration: none;
}
.footer .footer-left .footer-contact .footer-contact-text span {
    font-size: 12px;
    font-weight: 200;
    color: #474747;
}


.footer .footer-left .footer-support-title {
    font-size: 14px;
    font-weight: 700;
    color: #141414;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}
.footer .footer-left .footer-support-title i {
    margin-right: 10px;
    flex: 0 0 20px;
}
.icon.icon_message {
    background: url('../img/ico-message.svg') no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain
}
.icon.icon_user_2 {
    background: url('../img/ico-user-2.svg') no-repeat;
    width: 18px;
    height: 18px;
    background-size: contain
}


.footer .footer-left .footer-support-item.active .footer-support-title span.arrow {
    transform: rotate(180deg)
}
.footer .footer-left .footer-support-title span {
    margin-right: 30px;
}
.footer .footer-left .footer-support-title span.arrow {
    width: 11px;
    height: 16px;
    background-size: 100%;
    background-image: url('../img/arrow_toggle.svg');
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
}

.footer .footer-left .footer-support-header {
    background: #fff;
    padding: 10px;
}
.footer .footer-left .footer-support-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.footer .footer-left .footer-support-item:last-child {
    margin-bottom: 0;
}
.footer .footer-left .footer-support-content {
    background: #fff;
    display: none;
}
.footer .footer-left .footer-support-item.active .footer-support-content {
    display: block;
}
.footer .footer-left .footer-support-content ul {
    display: flex;
    justify-content: center;
    padding: 0;
}
.footer .footer-left .footer-support-content ul li {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 33%;
}
.footer .footer-left .footer-support-content ul li a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 7px;
    border-radius: 5px;
    max-width: 150px;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #141414;
}
.footer .footer-left .footer-support-content ul li a i {
    margin: 0;
    flex: 0 0 auto;
}
.footer .footer-left .footer-support-content ul li a span {
    display: inline-block;
    margin-top: 5px;
}
.footer .footer-left .footer-support-content ul li a .icon {
    width: 25px;
    height: 25px;
    background-size: 100%;
    margin: 0 auto;
}
.footer .footer-left .footer-support-content ul li a .icon.icon-telegram {
    width: 25px;
    height: 25px;
    background-size: 100%;
    background-image: url(../img/telegram.svg)
}
.footer .footer-left .footer-support-content ul li a .icon.icon-messenger {
    width: 25px;
    height: 25px;
    background-size: 100%;
    background-image: url(../img/messenger.svg)
}
.footer .footer-left .footer-support-content ul li a .icon.icon-viber {
    background-image: url(../img/viber.svg);
}


.footer .footer-right {
    flex-direction: row;
}
.footer .footer-right .left-block {
    width: calc(55% - 10px);
}
.footer .footer-right .right-block {
    width: calc(45% - 10px);
}
.footer .footer-right .footer-app {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 5px;
    padding: 15px;
    display: block;
}
.footer .footer-right .footer-app p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 0;
    color: #141414;
    margin-bottom: 15px;
}
.footer .footer-right .footer-buttons {
    display: flex;
    flex-direction: row;
}
.footer .footer-right .footer-buttons .footer-app-btn {
    min-width: 140px;
    max-width: 150px;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 8px;
    background: #141414;
    border-radius: 5px;
    max-width: 150px;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #fff;
    margin-right: 5px;
}
.footer .footer-right .footer-buttons .footer-app-btn i {
    margin: 0;
    flex: 0 0 auto;
    width: 88px;
    height: 21px;
    background-size: 100%;
    background-repeat: no-repeat;
    display: inline-flex;
}
.footer .footer-right .footer-buttons .footer-app-btn i.icon-google-app {
    background-image: url('../img/google_app.svg');
}
.footer .footer-right .footer-buttons .footer-app-btn i.icon-apple-app {
    background-image: url('../img/apple_app.svg');
}
.footer .footer-right .footer-menu ul {
    display: flex;
    padding: 0;
}
.footer .footer-right .footer-menu ul li {
    margin-right: 10px;
}
.footer .footer-right .footer-menu ul li:last-child {
    margin-right: 0;
}
.footer .footer-right .footer-menu ul li a {
    font-size: 14px;
    color: #141414;
}
.footer .footer-right .footer-menu ul li a:hover {
    text-decoration: underline;
}

.footer .footer-widget {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 11px;
}
.footer .footer-widget p {
    font-weight: 600;
    font-size: 14px;
    margin-top: 0;
    color: var(--color-black);
}
.footer .footer-widget .footer-socials {
    display: flex;
    flex-direction: row;
}
.footer .footer-widget .footer-socials .social-item {
    padding: 7px;
    border-radius: 5px;
    width: 45px;
    height: 45px;
    background: #FFF;
    margin-left: 20px;
}
.footer .footer-widget .footer-socials .social-item img {
    width: 100%;
}
.footer .footer-widget .footer-email {
    background: #f18c27;
    border-radius: 5px;
    width: 110px;
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    padding: 12px 8px;
}

.footer .footer-copyright {
    border-top: 1px solid #1c4073;
    padding-top: 30px;
    margin-top: 30px;
}
.footer .footer-copyright {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.footer .footer-copyright .copyright-inner {
    width: 50%;
}
.footer .footer-copyright .copyright-inner p {
    font-size: 12px;
    color: var(--color-black);
    opacity: .7;
    margin: 0;
}
@media (max-width: 1260px) {
    .footer .footer-right {
        width: calc(59% - 10px);
    }
    .footer .footer-right .footer-buttons .footer-app-btn {
        min-width: 122px;
    }
}
@media (max-width: 1050px) {
    .footer .footer-left,
    .footer .footer-right {
        width: 100%;
    }
    .footer .footer-left .footer-contact .footer-contact-item {
        margin-bottom: 25px;
    }
    .footer .footer-left .footer-support {
        margin: 5px 0 25px 0;
    }
}
@media (max-width: 767px) {
    .footer .footer-left .footer-contact {
        flex-direction: column;
    }
    .footer .footer-left .footer-contact .footer-contact-item {
        width: 100%;
    }
    .footer .footer-right .left-block,
    .footer .footer-right .right-block {
        width: 100%;
    }
    .footer .footer-right .footer-buttons {
        justify-content: space-between;
    }
    .footer .footer-right .footer-app {
        margin-bottom: 25px;
    }
    .footer .footer-right .footer-menu ul {
        flex-wrap: wrap;
    }
    .footer .footer-right .footer-menu ul li {
        margin-bottom: 5px;
    }
    .footer .footer-right .footer-menu ul li:last-child {
        margin-bottom: 0;
    }
}

/* ------------------------------------------------------------- *
 * Form Wrapper
/* ------------------------------------------------------------- */
.formWrapper {
    padding: 50px 0 150px 0;
}
.formWrapper .row {
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.formWrapper .formProgress {
    width: 100%;
    max-width: 470px;
    min-width: 470px;
}
.formWrapper .formProgress-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 10px 40px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 10px;
}
.formWrapper .formProgress-inner p {
    margin: 0;
    font-size: 14px;
    color: #737373;
}
.formWrapper .formProgress-inner .check {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 100%;
    border-radius: 0 9px 9px 0;
    right: 0;
    background: var(--green-light);
}
.formWrapper .formProgress-inner .check.iswaiting {
    background: #8c8c8c;
}
.formWrapper .formProgress-inner .icon {
    width: 18px;
    height: 18px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.formWrapper .formProgress-inner .icon-check {
    background-image: url('../img/ico-check.svg');
}
.formWrapper .formProgress-inner .icon-uncheck {
    background-image: url('../img/ico-attention.svg');
}
.formWrapper .formStep {
    max-width: 470px;
    min-width: 470px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}
.formWrapper .formStep .formTitle {
    color: #141414;
    text-align: center;
    font-size: 22px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.26px;
    margin-bottom: 45px;
}
.formWrapper .formStep .formTitle span {
    color: var(--orange-dark);
}
.formWrapper .formStep form label.label,
.formWrapper .formStep .label-text {
    display: inline-block;
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.469px;
    margin-bottom: 12px;
}
.formWrapper .formStep .label-text {
    margin-top: 0;
    margin-bottom: 10px;
}
.formWrapper .formStep form label.label span,
.formWrapper .formStep .label-text span {
    font-weight: 600;
}
.formWrapper .formStep .label-text span {
    display: inline-block;
}
.formWrapper .formStep .label-code {
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
}
.formWrapper .formStep form .input {
    background: #EEE;
    padding: 16px 15px;
    text-align: left;
    color: #141414;
    border: 0;
    outline: none;
    width: 100%;
    margin-bottom: 15px;
}
.formWrapper .formStep form .input::placeholder {
    color: #767676;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.formWrapper .formStep form .btn-submit {
    width: 100%;
    text-transform: uppercase;
}
.formWrapper .formStep .form-link {
    text-align: center;
    margin-top: 35px;
}
.formWrapper .formStep .form-link p {
    color: #767676;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.469px;
    margin: 0 0 3px 0;
}
.formWrapper .formStep .form-link a {
    display: inline-block;
    color: #F07B49;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.469px;
    text-decoration-line: underline;
}
/* ------------------------------------------------------------- *
 * Form Confirmation
/* ------------------------------------------------------------- */
.formConfirmation .formStep form.digit-group input {
    width: 40px;
    height: 50px;
    border: 1px solid #737373;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: #141414;
    margin: 0 10px;
}
.formConfirmation .formStep form.digit-group .input-holder {
    display: flex;
    justify-content: center;
    margin-top: 12px;
}
.formConfirmation .formStep form.digit-group .btn-submit {
    margin-top: 30px;
}

/* ------------------------------------------------------------- *
 * Form Registration
/* ------------------------------------------------------------- */
.formRegistration .formStep form.registration-form .input {
    margin-bottom: 20px;
}
.formRegistration .formStep form.registration-form .btn-submit {
    margin-top: 15px;
}
.formRegistration .formStep form.registration-form .input-holder .label-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.formRegistration .formStep form.registration-form .input-holder .label-wrap p {
    display: flex;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    align-items: center;
    color: #737373;
    user-select: none;
    margin-top: 0;
    margin-bottom: 7px;
}
.formRegistration .formStep form.registration-form .input-holder .label-wrap p.bold {
    font-weight: 600;
    color: var(--color-black);
}
.formRegistration .formStep form.registration-form .input-holder .label-wrap p.info {
    cursor: pointer;
}
.icon.icon-info {
    background: url('../img/ico-info.svg') no-repeat;
    width: 15px;
    height: 15px;
    background-size: contain;
    margin-left: 5px;
}
.formRegistration .formStep form.registration-form .tooltip-info {
    position: absolute;
    display: none;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    background: var(--orange-dark);
    color: #fff;
    padding: 11px 10px;
    bottom: 38px;
    left: 0;
    z-index: 20;
    user-select: none;
}
.formRegistration .formStep form.registration-form .tooltip-info:before {
    content: '';
    position: absolute;
    border-bottom: 10px solid var(--orange-dark);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    transform: rotate(45deg);
    right: 6px;
    bottom: -4px;
}
/* ------------------------------------------------------------- *
 * Form Application
/* ------------------------------------------------------------- */
.formApplication .formStep .formTitle {
    margin-bottom: 20px;
}
.formApplication .formStep {
    padding-top: 75px;
    padding-bottom: 75px;
}
.formApplication .progress-wrap {
    margin-top: 50px;
}
.formApplication .progress-heading {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}
.formApplication .progress-list {
    margin: 0;
    padding: 0;
    width: 80%;
    margin: 0 auto;
}
.formApplication .progress-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #c5c5c5;
}
.formApplication .progress-list li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}
.formApplication .progress-list li span {
    font-size: 13px;
    font-weight: 400;
}
.formApplication .progress-list li span.credit-text {
    font-size: 15px;
    font-weight: 500;
}
#progress-container {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    background: #f1f1f1;
}
#progress-bar {
    width: 0;
    height: 20px;
    background-color: var(--green-light);
    transition: width 1s;
}
@media (max-width: 767px) {
    .formWrapper {
        padding: 0 0 150px 0;
    }
    .formWrapper .formProgress {
        min-width: 300px;
    }
    .formWrapper .formProgress-inner {
        padding: 10px 0 10px 15px;
    }
    .formWrapper .formStep {
        min-width: 300px;
        padding: 30px 15px;
    }
    .formLogin {
        padding-top: 15px;
    }
}
@media (max-width: 350px) {
    .formWrapper .formStep {
        min-width: 100%;
    }
}

.offersWrapper .row {
    justify-content: center;
}
.offersInner {
    position: relative;
    max-width: 450px;
}
.offersInner .offersTitle {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}
.offersInner .offersTitle span {
    color: var(--orange-dark);
}
.offersInner .offer {
    background: #FFFFFF;
    box-shadow: 0px 4px 25px rgba(0,0,0,0.15);
    border-radius: 20px;
    padding: 30px 25px;
    position: relative;
    margin-bottom: 10px;
}
.offersInner .offer .offer-bg{
    width: 186px;
    height: 80px;
    margin: 0 auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.offersInner .offer .text-data-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.offersInner .offer .text-data-wrapper .text-data {
    width: 48%;
    padding: 15px 12px;
    text-align: left;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 15px;
}
.offersInner .offer .text-data-wrapper .text-data span {
    display: block;
}
.offersInner .offer .text-data-wrapper .text-data span.bold {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 5px;
}
.offersInner .offer .text-data-wrapper .text-data span.light {
    font-weight: 400;
    font-size: 12px;
    color: #8C8C8C;
}
.offersInner .offer .button-wrapper{}
.offersInner .offer .button-wrapper .btn-main {
    width: 100%;
    margin-top: 25px;
}

.offersWrapper .button-wrapper.showmore {
    margin: 40px auto 0;
    text-align: center;
}
.offersWrapper .button-wrapper.showmore .btn-showmore {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    color: var(--orange-light);
    font-size: 18px;
    font-weight: 500;
    background: none;
    border: 0;
    outline: 0;
}
.offersWrapper .button-wrapper.showmore .btn-showmore span.arrow {
    width: 11px;
    height: 16px;
    background-size: 100%;
    background-image: url('../img/arrow_toggle_orange.svg');
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5px;
}
@media only screen and (min-width: 767px) {
    .offersInner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .offersInner .offer {
        width: calc(50% - 5px);
        padding: 15px;
    }
    .offersInner .offer .offer-bg {
        width: 150px;
        height: 50px;
    }
    .offersInner .offer .button-wrapper .btn-main {
        font-size: 13px;
        padding: 15px 0;
    }
    .offersInner .offer .text-data-wrapper .text-data {
        padding: 8px;
    }
    .offersInner .offer .text-data-wrapper .text-data span.bold {
        font-size: 12px;
    }
    .offersInner .offer .text-data-wrapper .text-data span.light {
        font-size: 7px;
    }
}
@media only screen and (max-width: 375px) {
    .offersInner .offer {
        padding: 30px 15px;
    }
    .offersInner .offer .offer-bg{
        background-size: contain;
    }
    .offersInner .offer .text-data-wrapper .text-data span.bold {
        font-size: 16px;
    }
}
/* ------------------------------------------------------------- *
 * Survey / Scoring Page
/* ------------------------------------------------------------- */
.surveyWrapper .surveyInner {
    margin-top: 20px;
}
.surveyWrapper input{
    background: #fff;
    border-radius: 5px;
    border: none;
    height: 38px;
    width: 100%;
    padding-left: 19px;
    padding-right: 19px;
}
.surveyWrapper input:focus{
    outline: none;
}
.surveyWrapper input::placeholder{
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #BBBBBB;
}
.surveyWrapper .surveyStep {
    text-align: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f1f1f1;
}
.surveyWrapper .surveyStep .buttons-holder {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.surveyWrapper .surveyStep .buttons-holder .btn-main {
    padding: 15px;
    font-size: 16px;
    width: calc(50% - 7px);
    background: transparent;
    border: 1px solid var(--orange-dark);
    color: var(--orange-dark);
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.15);
}
.surveyWrapper .surveyStep .buttons-holder .btn-main.active {
    background-color: var(--orange-dark);
    color: var(--color-white);
}
.surveyWrapper .surveyBanks,
.surveyWrapper .surveyCards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.surveyWrapper .btn-submit {
    margin-top: 30px;
}
.surveyWrapper .checkbox-container {
    display: flex;
    position: relative;
    margin: 0 5px;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: #FFF;
    box-shadow: 1px 1px 5px rgba(0,0,0,.2);
    width: calc(33.3% - 10px);
    min-height: 100px;
    transition: all .2s ease-in-out;
    border: 1px solid transparent;
}
.surveyWrapper .checkbox-container input[type="checkbox"] {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}
.surveyWrapper .checkbox-container img {
    max-width: 100px;
    max-height: 100px;
    width: 100%;
    margin: 0 auto;
    transition: .2s ease-in-out;
}
.surveyWrapper .checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    pointer-events: none;
}
.surveyWrapper .checkbox-container input[type="checkbox"]:checked ~ .checkmark {
    opacity: 1;
    transition: all 200ms ease-in-out;
    transform: translate(-50%,-50%) scale(1.35);
    z-index: 10;
}
.surveyWrapper .checkbox-container.checked {
    background: var(--green-light);
    border: 1px solid var(--green-light);
}
.surveyWrapper .checkbox-container.checked img {
    opacity: .2;
}
@media (max-width: 350px) {
    .surveyWrapper .checkbox-container {
        width: calc(50% - 10px);
    }
}


.promotionsWrapper .row {
    justify-content: center;
}
.promotionsInner {
    position: relative;
    max-width: 450px;
}
.promotionsInner .promotionBanner img {
    width: 100%;
    border-radius: 20px 20px 0 0;
}
.promotionsInner .promotionsTitle {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}
.promotionsInner .promotionsTitle span {
    color: var(--orange-dark);
}
.promotionsInner .promotion {
    background: #FFFFFF;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    border-radius: 20px;
    position: relative;
    margin-bottom: 25px;
}
.promotionsInner .promotion .promotionInfo {
    padding: 15px 15px 20px 15px;
}
.promotionsInner .promotion .promotionInfo .promotionHeading {
    font-weight: 600;
    font-size: 16px;
}
.promotionsInner .promotion .promotionInfo p {
    font-size: 12px;
}
.promotionsInner .promotion .promotionInfo .btn-main {
    width: 100%;
    font-size: 14px;
    border-radius: 20px;
    margin-top: 15px;
    padding: 18px 15px;
}
@media only screen and (min-width: 767px) {
    .promotionsInner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 900px;
    }
    .promotionsInner .promotion {
        width: calc(50% - 5px);
    }
}
.btn-submit:disabled{
    opacity: .7;
    cursor: not-allowed;
}
@media only screen and (max-width: 767px) {
    .promotionsInner {
        max-width: 100%;
    }
}
@media only screen and (max-width: 375px) {
    
}
.timer{
    max-width: 300px;
    padding: 10px 0;
    box-shadow: -5px 5px 15px 2px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background-color: #ffffff;
    margin: 0 auto;
    /*margin-top: 30px;*/
}
.timer_title{
    font-size: 20px;
    font-weight: 600;
    color: #DF561B;
    text-align: center;
}
.formTitle{
    margin-top: 20px;
}
.timer_number{
    font-size: 50px;
    color: #DF561B;
    margin-top: 5px;
    text-align: center;
}
.timer_descr{
    color: #DF561B;
    font-size: 13px;
    opacity: .5;
}
.timer_descr_wrapper .timer_descr:nth-child(2){
    margin-left: 50px;
}
.timer_descr_wrapper{
    display: flex;
    justify-content: center;
}


