@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* -- General -- */

html {
    height: 100%
}

body {
    --black: #282d2d;
    --white: #fff;
    --bg-dark: #f5f5f5;
    --bg-light: #fff;
    --bg-light-subtle: #f9f9f9;
    --bg-field: #E2E2E2;
    --bg-field-inactive: #f5f5f5;
    --bg-field-error: #ffe3e3;
    --accent: #00BB4F;
    --gradient-from: #00ca36;
    --gradient-to: #00ac67;
    --text: #2a2e3f;
    --text-light: #94969f;
    --text-error: #CB7171;
    --border-color: #e8eaf2;
    --border: 1px solid var(--border-color);
    --bg-backdrop: 206, 206, 206;
    --backdrop-opacity: 0.51;
    --shadow-color-dark: #E6E6E6;
    --table-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    --bs-body-line-height: 1.4;
    --bs-body-color: var(--text);
    --bs-body-bg: var(--bg-dark);
    --bs-secondary-bg: var(--bg-field-inactive);
    --bs-link-color: #00a3d3;
    --bs-link-hover-color: rgb(0, 146.7, 189.9);
    --bs-border-color: var(--border-color);
    --bs-border-radius: 8px;
    --bs-border-radius-sm: 5px;
    --bs-border-radius-md: 8px;
    --bs-border-radius-lg: 14px;
    --bs-border-radius-xl: 20px;
    --bs-border-radius-xxl: 30px;
    --bs-box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    --bs-box-shadow-sm: 0 0 25px rgba(0, 0, 0, 0.2);
    --bs-btn-disabled-opacity: 0.5;
    background-color: var(--bs-body-bg);
    color: var(--text);
    font-family: Inter, sans-serif;
    font-size: 13px;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    min-width: 320px;
    overflow-x: hidden;
}

::-moz-selection {
    background-color: rgba(0, 149.6, 63.2, .7);
    color: var(--white)
}

::selection {
    background-color: rgba(0, 149.6, 63.2, .7);
    color: var(--white)
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

a:hover {
    color: var(--bs-link-hover-color);
    text-decoration: none;
}

img {
    display: block;
    border: none;
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: bold;
}

.link {
    color: var(--accent);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .link {
        background: linear-gradient(90deg, #00ca36, #00ac67);
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.hidden {
    display: none !important;
}

.clear {
    height: 0;
    clear: both;
    overflow: hidden;
    font-size: 0;
}

.wrap {
    width: 940px;
    margin: 0 auto;
}

/* -- Content -- */

.wrapper {
    margin: 0 auto;
    max-width: 544px;
    padding: 0 16px;
    position: relative;
    width: 100%;
}

.b-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 122px 0 60px;
    min-height: 100vh;
    min-height: 100dvh;
}

@media screen and (max-width: 767.98px) {
    .b-content {
        padding-top: 105px;
    }
}

/* -- Header -- */

.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 4;
    padding: 32px 0;
    transition: padding .25s ease-in-out;
}

.header.scroll {
    padding: 12px 0;
}

.header.no-scroll {
    background-color: transparent;
}

.header.no-scroll.mob-menu-active {
    background-color: #1e232d;
}

.header.no-scroll .b-top-bar-menu {
    background-color: transparent;
}

.header .wrap {
    position: relative;
    width: 100%;
    max-width: 1920px;
    padding: 0 73px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header .wrap::before {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    display: block;
    content: "";
    position: absolute;
    top: -12px;
    left: 60px;
    right: 60px;
    bottom: -12px;
    z-index: -1
}

.header.no-scroll .logo-grey {
    max-width: 215px;
}

.header.no-scroll .logo-white {
    display: none;
}

.header.scroll .logo-grey {
    display: none;
}

.header.scroll .logo-white {
    display: block;
}

.header .hamburger {
    display: none;
}

.navigation {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.lang-switch {
    display: flex;
    margin: 0 10px;
}

.lang-switch li {
    list-style: none;
    padding: 0 8px;
}

.lang-switch li:first-child {
    border-right: 1px solid #b7b7b7;
}

.lang-switch li a {
    text-decoration: none;
}

.lang-switch li a.active {
    opacity: .5;
    cursor: default;
}

.menu {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.menu .main_nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu .main_nav li {
    margin: 0 18px;
}

.menu .main_nav li a {
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #b7b7b7;
}

.menu .main_nav li a.active {
    color: #00a3d3;
}

.menu .main_nav li a:hover,
.main .main_nav li a:active {
    color: #00a3d3;
}

.additional-menu {
    display: none;
}

.additional-menu .main_login {
    display: flex;
    gap: 22px;
}

.log_sign {
    margin: 15px 0 0 20px;
    list-style: none;
}

.log_sign li {
    width: 86px;
    height: 34px;
    margin-bottom: 15px;
}

.log_sign li a {
    display: block;
    height: 100%;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    line-height: 34px;
    border-radius: 4px;
    padding: 0 10px;
}

.log_sign li.login a {
    border: 1px solid #b7b7b7;
    color: #b7b7b7;
}

.log_sign li.login a:hover {
    background-color: #b7b7b7;
    color: #1e232d;
}

.log_sign li.signup a {
    background-color: #64bf1b;
    color: #fff;
}

.log_sign li.signup a:hover {
    background-color: #51a116;
}

.admin_link {
    min-width: 80px;
    top: -14px;
    height: 34px;
    line-height: 34px;
    text-decoration: none;
    color: #b7b7b7;
    font-size: 14px;
    right: 0;
    order: 1;
}

.admin_link.active {
    background-color: transparent;
    color: #00A3D3;
}

.admin_link.active:hover {
    background-color: transparent;
}

.admin_link.active i:before {
    content: "\f106";
}

.admin_link:hover {
    color: #00A3D3;
    background-color: #181C24;
}

.additional-menu.sign .log_sign .pulicity-menu {
    display: none;
    position: absolute;
    padding-top: 10px;
    left: 0;
    text-align: left;
}

.additional-menu.sign .log_sign .pulicity-menu li {
    display: block;
    width: auto;
    margin-bottom: 5px;
}

.additional-menu.sign .log_sign .pulicity-menu li a:hover {
    background-color: #b7b7b7;
    color: #1e232d;
}

.additional-menu.sign .log_sign .signup .pulicity-menu {
    text-align: right;
    left: auto;
    right: 0;
}

.additional-menu.sign .log_sign .signup .pulicity-menu li {
    text-align: right;
}

.additional-menu.sign .log_sign .signup .pulicity-menu li a {
    color: #fff;
}

.additional-menu.sign .log_sign .signup .pulicity-menu li a:hover {
    background-color: #51a116;
}

.header.no-scroll .admin_link:hover,
.header.no-scroll .additional-menu {
    background-color: transparent;
}

.menu .main_nav {
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.menu .main_nav li {
    margin: 0 18px;
}

.menu .main_nav li a,
.lang-switch li a {
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #b7b7b7;
}

.menu .main_nav li a.active,
.lang-switch li a.active {
    color: #00a3d3;
}

.btn {
    border: none;
    border-radius: 14px;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: normal;
    padding: 8px 18px;
    min-height: 40px;
    background-color: var(--accent);
    transition: background-position .25s ease-in-out, color .15s ease-in-out;
    text-decoration: none;
}

.btn.disabled,
.btn[disabled] {
    opacity: var(--bs-btn-disabled-opacity);
    pointer-events: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--gradient-from), var(--gradient-to) 50%, var(--gradient-from) 100%) no-repeat left center;
    background-size: 200% auto;
    transition: background-position .25s ease-in-out, color .15s ease-in-out
}

.btn-primary:hover {
    background-position: right center;
    color: var(--black);
}

.btn-primary.disabled,
.btn-primary[disabled] {
    background-position: left center;
    color: var(--black);
}

.btn-outline-primary {
    box-shadow: inset 0 0 0 1px var(--accent);
    transition: box-shadow .25s ease-in-out, color .25s ease-in-out;
    color: var(--accent);
}

@supports((-webkit-background-clip: text) or (background-clip: text)) {
    .btn-outline-primary {
        background: linear-gradient(90deg, var(--gradient-from), var(--gradient-to));
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text
    }
}

.btn-outline-primary:hover {
    box-shadow: inset 0 0 0 2px var(--accent);
    color: rgb(0, 168.3, 71.1)
}

.btn-outline-primary:hover.disabled,
.btn-outline-primary:hover[disabled] {
    box-shadow: inset 0 0 0 1px var(--accent);
}

.btn-has-icon {
    padding-left: 42px;
    position: relative
}

.btn-has-icon .icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translate(-50%, -50%);
    min-height: 18px;
    min-width: 18px;
    z-index: 1
}

.btn-lg {
    min-height: 54px
}

.btn-sm {
    border-radius: 8px;
    min-height: 28px;
    padding: 2px 10px
}

.btn-sm.btn-has-icon {
    padding-left: 28px
}

.btn-sm.btn-has-icon .icon {
    left: 14px
}

@media screen and (max-width: 767.98px) {
    .btn {
        font-size: 15px;
        min-height: 36px;
        padding-top: 5px;
        padding-bottom: 5px
    }

    .btn-sm {
        min-height: 28px;
        padding-top: 2px;
        padding-bottom: 2px
    }

    .btn-lg {
        min-height: 42px
    }
}

.menu-login {
    display: flex;
    gap: 22px;
}

.menu-login .item {
    flex-shrink: 0;
}

.menu-login .item .btn {
    min-width: 158px;
}

.menu .main_nav li a:hover,
.main .main_nav li a:active {
    color: #00a3d3;
}

@media screen and (max-width: 1599.98px) {
    .header .wrap {
        padding: 0 35px;
    }

    .header .logo {
        max-width: 240px;
    }

    .btn {
        font-size: 15px;
        padding-top: 14px;
        padding-bottom: 13px;
    }
}

@media screen and (max-width: 991.98px) {

    .header,
    .header.scroll {
        padding: 16px 0;
    }

    .header.active-menu::before {
        -webkit-animation: fade-in 0.15s linear both;
        animation: fade-in 0.15s linear both;
        background-color: rgba(var(--bg-backdrop), var(--backdrop-opacity));
        content: "";
        display: block;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        position: fixed;
        z-index: -1;
    }

    .header.no-scroll .mob .additional-menu {
        background-color: #1e232d;
    }

    .header .wrap {
        padding: 0 16px;
    }

    .header .wrap::before {
        top: -8px;
        left: 8px;
        right: 8px;
        bottom: -8px;
        z-index: -1
    }

    .header .logo {
        max-width: 165px;
    }

    .header .hamburger {
        display: block;
        cursor: pointer;
        text-rendering: auto;
        outline: 0;
        z-index: 1;
        background-color: var(--bg-light);
        border: var(--border);
        border-radius: 14px;
        padding: 6px 7px;
        height: 35px;
        width: 36px;
        position: absolute;
        top: -2px;
        left: auto;
        right: 15px;
    }

    .header .hamburger span {
        background-color: var(--accent);
        border-radius: 2px;
        display: block;
        position: absolute;
        height: 3px;
        left: 20%;
        width: 60%;
        transition: transform .25s ease-in-out
    }

    .header .hamburger span:first-child {
        top: 8px;
        width: 60%;
    }

    .header .hamburger span:nth-child(2) {
        top: 15px;
    }

    .header .hamburger span:nth-child(3) {
        top: 22px;
        width: 60%;
    }

    .header.active-menu .hamburger {
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid transparent;
    }

    .header.active-menu .hamburger span:first-child {
        top: 7px;
        transform: rotateZ(-45deg) translate(-6px, 4px);
        width: 70%
    }

    .header.active-menu .hamburger span:nth-child(2) {
        top: 13px;
        transform: rotateY(90deg)
    }

    .header.active-menu .hamburger span:nth-child(3) {
        top: 19px;
        transform: rotateZ(45deg) translate(-5px, -3px);
        width: 70%
    }

    .navigation {
        -webkit-animation: mobnav-slide-in .2s ease-in-out .2s both;
        animation: mobnav-slide-in .2s ease-in-out .2s both;
        background-color: var(--bg-light-subtle);
        border-radius: 14px;
        box-shadow: 0 0 50px rgba(0, 0, 0, .1), 0 0 50px rgba(0, 0, 0, .1);
        max-width: 270px;
        position: fixed;
        top: 12px;
        right: 15px;
        bottom: 15px;
        width: 100%;
        overflow: visible;
        padding: 42px 8px 16px;
        display: none;
    }

    .active-menu .navigation {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .menu-login {
        flex-direction: column;
        gap: 16px;
        margin-top: 50px;
        padding: 0 16px;
        width: 100%;
    }

    .menu-login .item .btn {
        width: 100%;
    }

    .admin_link {
        display: none;
    }

    .menu {
        display: none;
        position: absolute;
        left: 0;
        top: 71px;
        transform: none;
        background-color: #1e232d;
        right: 0;
    }

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

    .menu .main_nav li {
        width: 100%;
        text-align: left;
    }

    .menu .main_nav li a {
        line-height: 38px;
        display: block;
    }

    .additional-menu {
        width: 100%;
    }

    .additional-menu .main_login {
        flex-direction: column;
        gap: 16px;
        margin-top: 50px;
        padding: 0 16px;
        width: 100%;
    }

    .additional-menu .main_login .btn {
        width: 100%;
    }

    .additional-menu.sign .log_sign .pulicity-menu {
        top: 5px;
        left: 120px;
    }

    .additional-menu.sign .log_sign .pulicity-menu li {
        height: 26px;
    }

    .additional-menu.sign .log_sign .pulicity-menu li a {
        font-size: 12px;
        line-height: 26px;
    }

    .additional-menu.sign .log_sign .signup .pulicity-menu {
        left: 120px;
        right: auto;
        bottom: 10px;
        top: auto;
    }
}

@media screen and (max-width: 767.98px) {
    .btn {
        font-size: 13px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media screen and (min-width: 1200px) {
    .additional-menu.sign {
        display: block !important;
        position: relative;
        top: auto;
    }

    .additional-menu.sign .log_sign {
        margin: 0;
    }

    .additional-menu.sign .log_sign li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 0 0 10px;
    }
}



/* -- adsbridge section -- */

.adsbridge {
    position: relative;
    width: 100%;
    min-height: 950px;
    background: #272b34 url(../css/img/imi-homeltd-bg.jpg) center bottom no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
}

@media (pointer:coarse),
(hover:on-demand) {
    .adsbridge {
        background-size: cover;
        background-position: center;
    }

    .adsbridge .video_wrap video {
        display: none !important;
    }
}

.adsbridge .video_wrap {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.adsbridge .video_wrap video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    min-width: 100%;
}

.adsbridge .wrap {
    position: relative;
    z-index: 3;
    margin: auto auto 35px;
}

.adsbridge .content {
    padding-top: 220px;
    padding-bottom: 30px;
    color: #fff;
    text-align: center;
}

.adsbridge .content h1 {
    font: 300 75px/1.2 "Ubuntu", sans-serif;
}

.adsbridge .content h1 strong {
    display: block;
    font-weight: 700;
    color: #00a3d3;
}

.adsbridge .content p.slogan {
    padding: 92px 0 90px;
    font-size: 36px;
    text-transform: uppercase;
}

.btn_type {
    display: block;
    width: 300px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    font-size: 29px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    background-color: rgba(95, 188, 26, 0.7);
    box-shadow: 0 0 5px 4px rgba(95, 188, 26, 0.7);
    transition: all 0.3s ease;
    border-radius: 4px;
    cursor: pointer;
}

.btn_type:hover {
    background-color: rgba(81, 161, 22, 0.7);
    box-shadow: 0 0 5px 4px rgba(81, 161, 22, 0.7);
}

.adsbridge .content a.btn_type {
    margin: 0 auto;
}

.main_back {
    position: relative;
    width: 100%;
    min-height: 950px;
    background-color: #1e232d;
    background-size: cover;
    display: flex;
}

@media screen and (max-width: 1500px) {
    .adsbridge .video_wrap:after {
        background-position: 0 0;
        background-repeat: repeat-y;
        background-size: 100%;
    }
}

@media screen and (max-width: 800px) {
    .adsbridge .video_wrap:after {
        background-position: center center;
        background-repeat: repeat-y;
        background-size: 800px;
    }
}

@media all and (-ms-high-contrast:none) {
    .adsbridge {
        flex-direction: column;
    }

    .adsbridge .wrap {
        flex: 1 1 93vh;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        align-content: flex-end;
    }
}

/* -- optimize section -- */

.main_steps {
    padding: 87px 0 42px;
}

.main_steps h2.main_headings {
    font-weight: 700;
    font-size: 40px;
    text-align: center;
    padding-bottom: 17px;
}

.main_steps h2.main_headings+p.sub_info {
    padding-bottom: 40px;
    font-size: 20px;
    color: #656c71;
    text-align: center;
}

.optimize {
    background: #ffffff;
}

.about_us,
.text-pages,
.footer {
    background: #fff;
}

.contact_us {
    background: #ccc url(../css/img/dark_step_bg.jpg) 0 0 repeat;
    position: relative;
}

.contact_us.main_steps {
    padding: 100px 0 70px;
}

.features.main_steps h2.main_headings+p.sub_info,
.contact_us.main_steps h2.main_headings+p.sub_info {
    padding-bottom: 10px;
}

.optimize.main_steps h2.main_headings+p.sub_info {
    padding-bottom: 30px;
}

.optimize_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    max-width: 890px;
    margin: 0 auto;
    justify-content: space-between;
    padding-top: 50px;
}

.optimize_list .item {
    position: relative;
    max-width: 400px;
    width: 100%;
    padding-left: 100px;
    margin-bottom: 70px;
}

.optimize_list .item:before {
    content: "";
    display: block;
    width: 67px;
    height: 67px;
    position: absolute;
    top: 5px;
    left: 0;
}

.optimize_list .item-1:before {
    background: url(img/how-work-icon-1.png) no-repeat;
}

.optimize_list .item-2:before {
    background: url(img/how-work-icon-2.png) no-repeat;
}

.optimize_list .item-3:before {
    background: url(img/how-work-icon-3.png) no-repeat;
}

.optimize_list .item-4:before {
    background: url(img/how-work-icon-4.png) no-repeat;
}

.optimize_list .item h3 {
    padding-bottom: 12px;
    font-weight: 700;
    font-size: 24px;
}

.optimize_list .item p {
    font-size: 20px;
    line-height: 26px;
}

@media screen and (max-width: 870px) {
    .optimize_list {
        flex-direction: column;
    }

    .optimize_list .item {
        max-width: 100%;
    }
}

@media screen and (max-width: 767.98px) {
    .optimize_list {
        padding-top: 0;
    }

    .optimize_list .item {
        margin-bottom: 30px;
        padding-left: 70px;
    }

    .optimize_list .item:before {
        background-size: cover;
        width: 55px;
        height: 55px;
    }

    .optimize_list .item h3 {
        font-size: 18px;
        padding-bottom: 5px;
    }

    .optimize_list .item p {
        font-size: 15px;
        line-height: 22px;
    }
}

/* -- features section -- */

.features {
    background: url(img/bg-awesome.jpg) no-repeat top center;
    min-height: 526px;
    background-size: cover;
    position: relative;
}

.features .wrap {
    z-index: 2;
}

.features.main_steps h2.main_headings {
    color: #fff;
}

.features.main_steps h2.main_headings+p.sub_info {
    color: #fff;
}

.benefits {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    list-style: none;
    padding-top: 70px;
}

.b-item {
    width: 120px;
    text-align: center;
}

.b-item .icon {
    display: block;
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0 auto;
    border: 2px solid #fff;
    border-radius: 50%;
}

.b-item .icon svg {
    width: 35px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.b-item .icon:after {
    content: "";
    width: 58px;
    height: 2px;
    display: block;
    background-color: #fff;
    position: absolute;
    right: -65px;
    top: 50%;
}

.b-item:last-child .icon:after {
    display: none;
}

.b-item .subtitle {
    position: relative;
    font-size: 20px;
    color: #fff;
    line-height: 24px;
    font-weight: 500;
    padding: 25px 0 10px;
    max-width: 119px;
    margin: 0 auto;
}

.b-item-4 .subtitle {
    max-width: 110px;
}

.b-item .subtitle:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 16px 27px 16px;
    border-width: 0;
    border-color: transparent transparent rgba(255, 255, 255, 0.3) transparent;
    display: block;
    position: absolute;
    bottom: -34px;
    left: 41px;
    opacity: 0;
    transition: all 0.5s ease-out;
}

.b-item.active .subtitle:after {
    opacity: 1;
    border-width: 0 16px 27px 16px;
}

.b-item.active .icon {
    background: #fff;
    box-shadow: 0px 0px 0px 5px #fff;
    transition: all 0.3s ease-out;
}

.b-item.active .icon svg {
    color: #47a7bb;
    width: 45px;
    transition: all 0.5s ease-out;
}

.b-item .desc {
    position: absolute;
    top: 255px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    opacity: 0;
    height: 0;
    transition: all 0.5s ease-out;
}

.b-item .desc p {
    font-size: 0;
    color: #fff;
    white-space: nowrap;
    padding: 0;
    transition: all 0.5s ease-out;
}

.b-item.active .desc {
    opacity: 1;
    height: auto;
}

.b-item.active .desc p {
    font-size: 17px;
    padding: 42px 40px;
}

.b-item.active .desc-1,
.b-item.active .desc-2,
.b-item.active .desc-3 {
    left: 0;
}

.b-item.active .desc-4 {
    left: 215px;
}

.b-item.active .desc-6,
.b-item.active .desc-7 {
    right: 0;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-nav button .fa {
    font-size: 40px;
    color: #fff;
}

.owl-nav .owl-prev {
    left: 0;
}

.owl-nav .owl-next {
    right: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background-color: transparent;
}

.owl-theme .owl-dots .owl-dot span {
    background-color: #fff;
    opacity: 0.4;
}

.owl-theme .owl-dots .owl-dot.active span {
    opacity: 1;
    background: #fff;
}

@media screen and (max-width: 1500px) {
    .features:before {
        background-position: 0 0;
        background-repeat: repeat-y;
        background-size: 100%;
    }
}

@media screen and (max-width: 991.98px) {
    .b-item .subtitle {
        font-size: 17px;
        max-width: 100px;
    }

    .b-item-4 .subtitle {
        max-width: 90px;
    }

    .b-item .icon:after {
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .features:before {
        background-position: center center;
        background-repeat: repeat-y;
        background-size: 900px;
    }
}

@media screen and (max-width: 767.98px) {
    .benefits {
        flex-direction: column;
        padding-top: 30px;
    }

    .b-item {
        width: 100%;
        padding-bottom: 30px;
    }

    .b-item .subtitle {
        max-width: 100%;
        padding-top: 10px;
    }

    .b-item .subtitle:after {
        display: none;
    }

    .b-item .desc {
        position: relative;
        opacity: 1;
        height: auto;
        top: auto;
    }

    .b-item.active .desc {
        left: auto;
        right: auto;
    }

    .b-item.active .desc p {
        padding: 20px;
        font-size: 15px;
    }

    .b-item .desc p {
        padding: 20px;
        font-size: 15px;
        white-space: normal;
    }
}

@media screen and (max-width: 600px) {
    .features {
        min-height: auto;
    }

    .b-item {
        padding: 0 30px;
        box-sizing: border-box;
    }
}

/* -- about_us section -- */

.about_us .wrap {
    width: 1040px;
}

.about_us .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.about_us .content .pic_block {
    flex-shrink: 0;
    padding-right: 20px;
    margin-top: 55px;
}

.about_us .content .info p {
    font-size: 17px;
    line-height: 26px;
    padding-bottom: 25px;
    text-align: justify;
}

.about_us .content .info p:last-child {
    padding-bottom: 0;
}

@media screen and (max-width: 1100px) {
    .about_us .wrap {
        width: 100%;
    }

    .about_us .content .info {
        padding-right: 20px;
    }

    .about_us .content .pic_block img {
        max-width: 400px;
    }
}

@media screen and (max-width: 767.98px) {
    .about_us .content {
        flex-direction: column;
        padding-top: 0;
    }

    .about_us .content .pic_block {
        margin-top: 0;
        padding-right: 0;
    }

    .about_us .content .info {
        padding-right: 0;
    }

    .about_us .content .info p {
        text-align: left;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .about_us .content .pic_block img {
        width: 100%;
    }
}

/* -- about_us-partner section -- */

.about_us-partner {
    padding: 30px 0;
    overflow: hidden;
    background-color: #f3f9fe;
    position: relative;
}

.animation-line {
    display: table;
    -webkit-animation: 40s runningLine infinite linear;
    animation: 40s runningLine infinite linear;
    list-style: none;
}

.animation-line .brand-logo {
    padding: 0 45px;
    display: table-cell;
    vertical-align: middle;
}

.animation-line .brand-logo img {
    transform: translate3d(0, 0, 0);
    max-width: none;
}

@-webkit-keyframes runningLine {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes runningLine {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* -- affiliate section -- */

.affiliate {
    padding-bottom: 95px;
}

.affiliate .wrap {
    width: 1060px;
}

.affiliate .content {
    padding-top: 25px;
}

.affiliate .btn_type {
    margin: 0 auto;
}

@media screen and (max-width: 767.98px) {
    .affiliate .content {
        padding-top: 0;
    }
}

/* -- Form -- */

.contacts {
    background: url(img/bg-contacts.jpg) no-repeat;
    padding: 60px 0 55px;
    background-size: cover;
}

.contacts .wrap {
    z-index: 2;
    width: 800px;
    position: relative;
}

.contacts .content {
    position: relative;
}

.form-container {
    background-color: var(--bg-light);
    border: var(--border);
    border-radius: var(--bs-border-radius-xxl);
    margin: 0 auto;
}

.form-header {
    padding: 42px 70px 15px;
    text-align: center;
}

.form-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
}

.contacts.main_steps h2.main_headings+p.sub_info {
    padding-bottom: 18px;
}

.form-header .note {
    display: block;
    margin-bottom: 20px;
}

.form-body {
    padding: 15px 70px 45px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.form-row_recaptcha {
    padding-top: 25px;
    justify-content: space-between;
    align-items: center;
}

.form-sub-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.form_field-icon {
    flex: 0 0 45px;
    margin-right: 25px;
    padding-top: 2px;
    position: relative;
}

.form_field-icon .icon {
    border: 2px solid #dfdfdf;
    border-radius: 50%;
    width: 53px;
    height: 53px;
    display: block;
    font-size: 16px;
    line-height: 49px;
    font-weight: 700;
    text-align: center;
    color: #46b89a;
    transition: font-size 0.3s ease;
}

.form_field-icon .icon span {
    font-size: 24px;
    font-weight: 700;
}

.form_field-icon svg {
    position: absolute;
    top: 2px;
    left: 0;
}

.form-field {
    flex: 1 1 auto;
    text-align: left;
    position: relative;
}

.required {
    color: #00a2d2;
}

.alert-message {
    display: none;
    font-size: 10px;
    color: var(--text-error);
}

.form-control {
    display: block;
    width: 100%;
    padding: 8px 16px;
    line-height: normal;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    background-color: var(--bg-field);
    border: var(--border);
    font-size: 16px;
    min-height: 40px;
    outline: 0;
}

.form-control:focus {
    background-color: var(--bg-field);
    border-color: var(--bs-border-color);
    box-shadow: none
}

.form-control.disabled,
.form-control[disabled] {
    background-color: var(--bg-field-inactive);
    color: var(--text-light);
    cursor: default
}

.form-control.disabled~.input-group-text,
.form-control[disabled]~.input-group-text {
    background-color: var(--bg-field-inactive)
}

.form-control[readonly] {
    background-color: var(--bg-field-inactive);
    cursor: default
}

.form-control[readonly]~.input-group-text {
    background-color: var(--bg-field-inactive)
}

.form-control:-webkit-autofill,
.form-control:-webkit-autofill:active,
.form-control:-webkit-autofill:focus,
.form-control:-webkit-autofill:hover {
    box-shadow: 0 0 0 1000px var(--bg-field) inset !important;
    -webkit-text-fill-color: var(--text) !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s
}

.form-control::-webkit-input-placeholder {
    color: var(--text-light)
}

.form-control::-moz-placeholder {
    color: var(--text-light)
}

.form-control:-ms-input-placeholder {
    color: var(--text-light)
}

.form-control::-ms-input-placeholder {
    color: var(--text-light)
}

.form-control::placeholder {
    color: var(--text-light)
}

@media screen and (max-width: 767.98px) {
    .form-container {
        border-radius: var(--bs-border-radius-lg);
        font-size: 15px;
    }

    .form-control {
        font-size: 15px;
        min-height: 36px;
    }
}

.form .form-field_long-label label {
    top: 2px;
}

.form input:focus~label,
.form textarea:focus~label,
.form input.not-empty~label,
.form textarea.not-empty~label,
.form .select-block~label {
    /* color: #c1c1c1;
    font-size: 14px;
    top: 0px; */
}

.invalid .form_field-icon .icon,
.valid .form_field-icon .icon {
    font-size: 0;
}

.invalid .alert-message {
    display: block;
}

.form .invalid .form-control,
.form .invalid .row-checkbox input[type="checkbox"]~label::before,
.form .invalid .select2-container .select2-choice {
    background-color: var(--bg-field-error);
}

.invalid .row-checkbox input[type="checkbox"] {
    border: 1px solid var(--text-error);
}

.success-message {
    height: 0;
    opacity: 0;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s ease;
    color: #83898f;
}

.success-message img {
    margin: 20px auto 30px;
}

.success-message .success-title {
    font-size: 30px;
}

.success-message p {
    font-size: 18px;
    line-height: 24px;
    margin: 20px auto 25px;
}

.success-message .button-holder .btn_type {
    width: 240px;
    height: 60px;
    line-height: 60px;
    margin: 0 auto 7px;
}

@media screen and (max-width: 1500px) {
    .contacts:before {
        background-position: 0 0;
        background-repeat: repeat-y;
        background-size: 100%;
    }
}

@media screen and (max-width: 860px) {
    .form-row_recaptcha {
        flex-direction: column;
        padding-top: 0;
    }

    .recaptcha-container {
        margin-bottom: 20px;
    }

    .contacts:before {
        background-position: center center;
        background-repeat: repeat-y;
        background-size: 900px;
    }
}

@media screen and (max-width: 767.98px) {
    .form-container {
        border-radius: var(--bs-border-radius-lg);
    }

    .form-header {
        padding: 67px 25px 15px;
    }

    .form-title {
        font-size: 26px;
    }

    .form-header .note {
        font-size: 15px;
        margin-top: 25px;
        margin-bottom: 0;
    }

    .form-body {
        padding: 15px 20px 40px;
    }

    .form_field-icon {
        flex: 0 0 30px;
        margin-right: 15px;
        padding-top: 2px;
        position: relative;
    }

    .form_field-icon .icon {
        border: 1px solid #dfdfdf;
        width: 40px;
        height: 40px;
        display: block;
        line-height: 38px;
    }

    .form_field-icon .icon span {
        font-size: 18px;
    }

    .form_field-icon svg {
        width: 30px;
        height: 30px;
    }

    .form input:focus~label,
    .form textarea:focus~label,
    .form input.not-empty~label,
    .form textarea.not-empty~label,
    .form .select-block~label {
        /* font-size: 12px; */
    }
}

/* -- Footer -- */

.footer {
    position: relative;
    padding: 39px 0 32px;
    font-size: 14px;
}

.footer .wrap {
    max-width: 1700px;
    width: 100%;
    padding: 0 15px;
}

.copyright {
    margin-left: 40%;
    color: #8a8f95;
    white-space: nowrap;
}

.footer_logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.footer_nav_container {
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
}

.footer_nav {
    display: inline-block;
    float: none;
    margin-left: 0;
}

.footer_nav li {
    position: relative;
    float: left;
    margin-left: 36px;
    list-style: none;
}

.footer_nav li:after {
    content: ".";
    position: absolute;
    left: -18px;
    top: -3px;
    color: #00a3d3;
}

.footer_nav li:first-child {
    margin-left: 0;
}

.footer_nav li:first-child:after {
    display: none;
}

.footer_nav li a {
    color: #00a3d3;
    font-size: 14px;
    text-decoration: none;
}

.footer_nav li a:hover {
    text-decoration: underline;
}

.footer_socials {
    float: right;
    z-index: 100;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer_socials span {
    color: #8a8f95;
    font-size: 14px;
    margin-right: 15px;
}

.footer_socials ul li {
    float: left;
    width: 27px;
    height: 27px;
    margin-left: 8px;
    list-style: none;
}

.footer_socials ul li:first-child {
    margin-left: 0;
}

.footer_socials ul li a {
    display: block;
    height: 100%;
    text-indent: -9999px;
    background: url(../css/img/social_sprite.png) center 0 no-repeat;
}

.footer_socials ul li a:hover {
    transition: none;
}

.footer_socials ul li.twitter a {
    background-position: center -64px;
}

.footer_socials ul li.linkedin a {
    background-position: center -128px;
}

.footer_socials ul li.instagram a {
    background-position: center -192px;
}

.footer_socials ul li.facebook a:hover,
.footer_socials ul li.facebook a:active {
    background-position: center -32px;
}

.footer_socials ul li.twitter a:hover,
.footer_socials ul li.twitter a:active {
    background-position: center -96px;
}

.footer_socials ul li.linkedin a:hover,
.footer_socials ul li.linkedin a:active {
    background-position: center -160px;
}

.footer_socials ul li.instagram a:hover,
.footer_socials ul li.instagram a:active {
    background-position: center -224px;
}

@media screen and (max-width: 1400px) {
    .footer_logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .copyright {
        margin: 10px 0 0;
    }
}

@media screen and (max-width: 900px) {
    .footer_logo {
        position: relative;
        top: auto;
        transform: none;
        align-items: center;
    }

    .footer_nav_container {
        position: relative;
        padding: 10px 0;
    }

    .footer_socials {
        float: none;
        width: 220px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 420px) {
    .footer_nav li {
        float: none;
        margin: 0 0 10px 0;
    }

    .footer_nav li:after {
        content: "";
    }
}

/* -- Policy - Affiliate -- */

.text-pages h1 {
    font-size: 40px;
    padding: 57px 0 21px 0;
    font-weight: 700;
}

.text-pages h2.main_headings {
    text-align: left;
    padding: 57px 0 21px 0;
}

.text-pages .wrap>h3 {
    padding: 30px 0 2px;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
}

.text-pages .wrap h4 {
    padding: 30px 0 30px;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
}

.text-pages p a {
    color: #00a3d3;
    font-size: 14px;
    text-decoration: none;
}

.text-pages .lists p {
    padding-bottom: 20px;
}

.text-pages .wrap b {
    font-weight: bold;
}

.adsbridge .video_wrap .bg {
    width: 100%;
    height: 100%;
}

.adsbridge .video_wrap .bg:after {
    display: block;
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../css/img/bg_overlay_dotted.png) repeat;
}

.recaptcha-container {
    float: left;
}

.recaptcha-container .alert-message.error {
    float: left;
}


/* -- MEDIA -- */

@media screen and (max-width: 991.98px) {
    .main_steps .wrap {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .main_steps {
        padding: 37px 15px 39px;
    }

    /* .optimize section */
    .main_steps h2.main_headings,
    .main_steps h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 767.98px) {
    .wow {
        -webkit-animation-name: none !important;
        animation-name: none !important;
        visibility: visible !important;
    }
}

@media screen and (max-width: 680px) {
    .submit_field {
        text-align: center;
    }

    .recaptcha-container {
        float: none;
        display: block;
        width: 304px;
        margin: 0 auto 34px;
    }

    .contact_form .btn_type {
        display: block;
        float: none;
        margin: 0 auto;
    }
}

@media screen and (max-width: 480px) {
    .main_steps {
        padding: 28px 15px 28px;
    }

    .btn_type {
        width: 270px;
        height: 70px;
        line-height: 70px;
        font-size: 26px;
    }

    /* .features section */
    .main_steps h2.main_headings,
    .main_steps h1 {
        font-size: 29px;
        font-size: 26px;
    }

    .main_steps h2.main_headings+p.sub_info {
        font-size: 18px;
    }

    /* .contacts section */
    form.contact_form {
        padding-top: 0;
    }

    .inputs_wrap .form_item {
        width: 100%;
        margin-left: 0;
    }
}

/* -- Error page -- */

.section-error {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.section-error .form-title {
    font-size: 36px;
}

.section-error .form-body {
    font-size: 16px;
    text-align: center;
}

.section-error .error-img-block {
    margin: 0 auto 30px;
}

.section-error .error-img-block img {
    color: var(--accent);
    font-size: 58px;
    font-weight: 700;
    margin: 0 auto;
}

.section-error .text-content {
    line-height: 1.5;
    margin-bottom: 30px;
}

@media screen and (max-width: 767.98px) {
    .section-error .form-body {
        font-size: 15px;
    }

    .section-error .form-title {
        font-size: 28px;
    }
}

/* -- Start -- */

.start {
    padding: 360px 0 40px;
    text-align: center;
    color: #fff;
    background: #2c303b url(../images/main/rewards/bg1.jpg) center 0 no-repeat;
    background-size: cover;
}

.start .wrap {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.start .title {
    font-size: 80px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
}

.start h1 {
    font-size: 55px;
    line-height: 1.2;
    color: #46b89a;
    font-weight: bold;
    margin-bottom: 10px;
}

.start .description {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.start p {
    font-size: 18px;
    line-height: 1.4;
}

.start .p1 {
    margin-bottom: 10px;
}

.start .p2 {
    margin-bottom: 150px;
}

.start .p3 {
    font-size: 22px;
}

.btn-start {
    display: inline-block;
    font-size: 29px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 25px 60px;
    background-color: #64bf1b;
    border-radius: 4px;
    font-weight: 400;
    margin-bottom: 40px;
    transition: .4s;
}

.btn-start:hover {
    background-color: #509815;
}

/* -- Blocks -- */

.block {
    font-size: 0;
}

.block .left,
.block .right {
    display: inline-block;
    width: 50%;
    vertical-align: top;
    font-size: 30px;
    font-weight: bold;
    position: relative;
}

.block .img {
    display: inline-block;
    position: relative;
}

.block .name {
    position: absolute;
    z-index: 2;
    display: inline-block;
    left: 35px;
    bottom: 35px;
    max-width: calc(100% - 60px);
    color: #fff;
    font-size: 38px;
    line-height: 1;
    background-color: rgba(70, 184, 154, .8);
    padding: 2px 10px 6px;
}

/* -- royalSlider -- */

.royalSlider {
    width: 100%;
    background: none;
    max-width: 1920px;
    margin: 0 auto;
}

.rsDefault .rsArrow {
    height: 100%;
    width: 61px;
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 3;
}

.rsDefault .rsArrowLeft {
    left: 0;
    top: 0;
}

.rsDefault .rsArrowRight {
    right: 0;
    top: 0;
}

.rsDefault .rsArrowIcn {
    width: 23px;
    height: 61px;
    top: 50%;
    left: 50%;
    margin-top: -30.5px;
    margin-left: -11.5px;
    position: absolute;
    cursor: pointer;
    width: 23px;
    height: 61px;
    background: url(../images/main/rewards/arrow.png) 0 0 no-repeat;
}

.rsDefault .rsArrowRight {
    transform: rotate(180deg);
}

.rsArrow:hover .rsArrowIcn {
    background: url(../images/main/rewards/arrow-active.png) 0 0 no-repeat;
}

.rsTabs {
    float: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-around;
    vertical-align: middle;
}

.rsTab {
    flex-grow: 1;
    text-align: center;
    padding: 30px 4px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    font-weight: bold;
    color: #fff;
    background-color: #1e232d;
    border: 1px solid #4b4f58;
    border-bottom: 4px solid #1e232d;
    transition: .4s;
}

.rsTab.rsNavSelected {
    border-bottom: 4px solid #46b89a;
    color: #46b89a;
}

/* -- keep-growing -- */

.keep-growing {
    padding: 80px 0 70px;
    background: url(../images/main/rewards/bg2.jpg) 0 0 repeat;
    text-align: center;
    color: #fff;
}

.keep-growing .wrap {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.keep-growing .h3 {
    font-size: 50px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
}

.keep-growing .h4 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
}

.keep-growing .p4 {
    font-size: 20px;
}

.keep-growing .h5 {
    font-size: 29px;
    font-weight: bold;
    line-height: 1.4;
    color: #46b89a;
    text-transform: uppercase;
}

/* -- Animations -- */

@-webkit-keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes mobnav-slide-in {
    0% {
        transform: translateX(10px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

@keyframes mobnav-slide-in {
    0% {
        transform: translateX(10px);
        opacity: 0
    }

    100% {
        transform: translateX(0);
        opacity: 1
    }
}

/* -- Dark Theme -- */

.dark-theme {
    --bg-dark: #303636;
    --bg-light: #373D3D;
    --bg-light-subtle: #373D3D;
    --bg-lighter: #454C4C;
    --bg-field: #282B2B;
    --bg-field-inactive: #303636;
    --bg-field-error: #705656;
    --text: #fff;
    --text-light: #9A9D9D;
    --border-color: #414647;
    --btn-light: #414647;
    --bg-backdrop: 48, 54, 54;
    --backdrop-opacity: 0.75;
    --shadow-color-dark: #282d2d;
}

.dark-theme .logo-light-theme {
    display: none
}

.dark-theme .logo-dark-theme {
    display: block !important
}