@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');
@font-face {
    font-family: 'Russia';
    src: url('/fonts/russia.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Russia';
    src: url('/fonts/russia_bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Russia';
    src: url('/fonts/russia_black.otf') format('opentype');
    font-weight: 900;
}

:root {
    --color-1: #3e54f6;
    --color-2: #4054b2;
    --color-3: #000645;
    --color-4: #61ce70;
    --color-5: #888;
    --color-6: #666a8f;
    --color-7: #34314B;
    --color-8: #f9fafc;
    --color-9: #f2f4f9;

    --color-wh: #075e54;
    --color-vk: #45668e;
    --color-ig: #5851db;
    --color-tg: #0088cc;
    --color-yt: #ff0000;
    --color-ok: #ed812b;

    --font-1: 'Russia', sans-serif;
    --font-2: 'Russo One', sans-serif;;
}

/* body
----------------------------------------------------------------------------------------------------------------------*/
html,
body {
    width: auto;
    margin: 0;
    padding: 0;
    /*background: #fff;*/
    font-family: var(--font-1);
    font-size: 14px;
    font-weight: 400;
}
body {
    width: 100%;
    /*height: 100%;*/
    min-height: 100vh;
}
.wrap {
    width: auto;
    height: auto;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: relative;
}
.wrap .toast-container {
    z-index: 10;
}
body.modal-open .wrap .toast-container {
    right: 17px !important;
}
div {
    outline: none !important;
}
img {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    outline: none !important;
}
a {
    outline: none !important;
}
button {
    outline: none !important;
}
.bg-white {
    background: #fff;
}
ol {
    counter-reset: item;
}
ol > li {
    display: block;
}
ol > li:before {
    width: 60px;
    margin-left: -60px;
    padding-right: 5px;
    content: counters(item, '.') '. ';
    counter-increment: item;
    display: inline-block;
    font-weight: 600;
    text-align: right;
}
.app-badges {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.app-badges > *:not(:last-child) {
    margin-right: .5rem;
}
.app-badges > * img {
    height: 50px;
}
.highslide > img {
    transition: border-color .15s;
}
.fade {
    opacity: 1;
}

/* modal
----------------------------------------------------------------------------------------------------------------------*/
.modal .modal-dialog .modal-body .veil {
    position: relative;
}
.modal .modal-dialog .modal-body .veil:after {
    content: 'Временно недоступно';
    width: calc(100% + 2rem);
    height: calc(100% + 2rem);
    left: -1rem;
    top: -1rem;
    padding-top: 2rem;
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    font-weight: 700;
    font-size: 20px;
    position: absolute;
}
.modal .modal-dialog .modal-body .veil.on:after {
    display: flex;
}

/* slider
----------------------------------------------------------------------------------------------------------------------*/

/* prime-button
----------------------------------------------------------------------------------------------------------------------*/
.pb {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-left: 3rem;
    padding-right: 3rem;
    transition: background .15s;
    font-family: var(--font-2);
    font-weight: 400;
}
.pb.btn-lg {
    padding-top: .8rem;
    padding-bottom: .6rem;
    font-size: 24px;
}
.pb.btn-xl {
    padding-top: .8rem;
    padding-bottom: .6rem;
    font-size: 30px;
}
.pb.btn-xxl {
    padding-top: .8rem;
    padding-bottom: .6rem;
    font-size: 36px;
}
.pb.btn-darkblue {
    background: var(--color-3);
    color: #fff !important;
}
.pb.btn-green {
    background: var(--color-4);
    color: #fff !important;
}
.pb.btn-darkblue:hover,
.pb.btn-green:hover {
    background: var(--color-1);
}
.pb.btn-to-darkblue:hover {
    background: var(--color-3);
}
.pb span {
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pb i:first-child {
    margin-right: .5rem;
}
.pb i:last-child {
    margin-left: .5rem;
}

.pb > .spinner-border {
    width: 1.25rem;
    height: 1.25rem;
}
.pb > i,
.pb > .spinner-border {
    margin-right: .5rem;
}
.pb > i:not(.show),
.pb > .spinner-border:not(.show) {
    margin-right: .5rem;
    display: none;
}

@media (max-width: 576px) {
    .pb {
        font-size: 1rem !important;
    }
}

/* form-group
----------------------------------------------------------------------------------------------------------------------*/
.form-group {
    margin: 0;
}
.form-group.form-check {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.form-group label {
    margin-bottom: .5rem;
    font-weight: 600;
}
.form-group.form-check label {
    margin: 2px 0 0 10px;
    user-select: none;
    cursor: pointer;
}
.form-group.required label:before {
    content: '*';
    margin-right: 3px;
    color: var(--bs-danger);
}
.form-group.form-check input[type='checkbox'] {
    cursor: pointer;
}
.form-group.form-check input[type='radio'] {
    cursor: pointer;
}
.form-group.has-success input[type='text'] {
    border-color: var(--bs-success);
}
.form-group.has-success input[type='text']:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
}
.form-group.has-error input[type='text'] {
    border-color: var(--bs-danger);
}
.form-group.has-error input[type='text']:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}
.form-group.has-success input[type='tel'] {
    border-color: var(--bs-success);
}
.form-group.has-success input[type='tel']:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
}
.form-group.has-error input[type='tel'] {
    border-color: var(--bs-danger);
}
.form-group.has-error input[type='tel']:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}
.form-group.has-success input[type='number'] {
    border-color: var(--bs-success);
}
.form-group.has-success input[type='number']:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
}
.form-group.has-error input[type='number'] {
    border-color: var(--bs-danger);
}
.form-group.has-error input[type='number']:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}
.form-group.has-success input[type='password'] {
    border-color: var(--bs-success);
}
.form-group.has-success input[type='password']:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
}
.form-group.has-error input[type='password'] {
    border-color: var(--bs-danger);
}
.form-group.has-error input[type='password']:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}
.form-group.has-success input[type='email'] {
    border-color: var(--bs-success);
}
.form-group.has-success input[type='email']:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
}
.form-group.has-error input[type='email'] {
    border-color: var(--bs-danger);
}
.form-group.has-error input[type='email']:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}
.form-group.has-success select {
    border-color: var(--bs-success);
}
.form-group.has-success select:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
}
.form-group.has-error select {
    border-color: var(--bs-danger);
}
.form-group.has-error select:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}
.form-group .select2-container--krajee.select2-container--open .select2-selection,
.form-group .select2-container--krajee .select2-selection:focus {
}
.form-group textarea {
    height: 100px;
    resize: vertical;
}
.form-group.has-success textarea {
    border-color: var(--bs-success);
}
.form-group.has-success textarea:focus {
    box-shadow: 0 0 0 .25rem rgba(25, 135, 84, .25);
}
.form-group.has-error textarea {
    border-color: var(--bs-danger);
}
.form-group.has-error textarea:focus {
    box-shadow: 0 0 0 .25rem rgba(220, 53, 69, .25);
}
.form-group .verifyWrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.form-group .verifyWrap .img {
    width: auto;
    height: 40px;
    margin-right: 1rem;
    padding: 3px;
    flex-shrink: 0;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.form-group .verifyWrap .img img {
    width: auto;
    height: 100%;
}
.form-group .verifyWrap .input {
    width: 100%;
    flex-shrink: 2;
}
.form-group .help-block {
    margin: 5px 0 0;
    font-size: 13px;
}
.form-group.has-success .help-block {
    color: var(--bs-success);
}
.form-group.has-error .help-block {
    color: var(--bs-danger);
}

/* header
----------------------------------------------------------------------------------------------------------------------*/
header {
    width: 100%;
    /*top: 0;*/
    /*background: rgba(255, 255, 255, .5);*/
    /*backdrop-filter: blur(10px);*/
    /*position: sticky;*/
    z-index: 99;
}
header .navbar {
}
header .navbar .navbar-content {
    width: 100%;
}
header .navbar .navbar-content .navbar-body {
    --header-havbar-padding: 1.25rem;
    width: auto;
    margin-left: calc(-1 * var(--header-havbar-padding));
    margin-right: calc(-1 * var(--header-havbar-padding));
    padding: 1.5rem 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
header .navbar .navbar-content .navbar-body > * {
    margin-left: var(--header-havbar-padding);
    margin-right: var(--header-havbar-padding);
}
header .navbar .navbar-content .navbar-body button.side-menu-show {
    width: auto;
    height: auto;
    padding: 0;
    display: flex;
    background: none;
    justify-content: center;
    align-items: center;
    border: none;
}
header .navbar .navbar-content .navbar-body button.side-menu-show i {
    font-size: 30px;
    color: var(--color-3);
}
header .navbar .navbar-content .navbar-body a.logo {
    padding: 0;
    font-weight: 700;
    font-size: 30px;
    color: var(--color-3);
    text-decoration: none;
}
header .navbar .navbar-content .navbar-body a.logo span {
    color: var(--color-4);
}
header .navbar .navbar-content .navbar-body a.logo img {
}

@media (min-width: 992px) {
    header .navbar .navbar-content .navbar-body .side-menu {
        margin-left: auto;
    }
    header .navbar .navbar-content .navbar-body .side-menu .offcanvas-body ul.navbar-nav {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
    header .navbar .navbar-content .navbar-body .side-menu .offcanvas-body ul.navbar-nav li.nav-item {
    }
    header .navbar .navbar-content .navbar-body .side-menu .offcanvas-body ul.navbar-nav li.nav-item:not(:first-child) {
        margin-left: 2rem;
    }
    header .navbar .navbar-content .navbar-body .side-menu .offcanvas-body ul.navbar-nav li.nav-item a.nav-link {
        padding: 0;
        font-weight: 400;
        font-family: var(--font-2);
        font-size: 24px;
        color: #fff;
        text-transform: uppercase;
        transition: color .15s;
    }
    header .navbar .navbar-content .navbar-body .side-menu .offcanvas-body ul.navbar-nav li.nav-item a.nav-link:hover,
    header .navbar .navbar-content .navbar-body .side-menu .offcanvas-body ul.navbar-nav li.nav-item a.nav-link.active {
        color: var(--color-1);
    }
}

@media (max-width: 992px) {
    header {
        top: 0;
        background: rgba(255, 255, 255, .5);
        backdrop-filter: blur(10px);
        position: sticky;
    }
    header .navbar .navbar-content .navbar-body .side-menu {
        height: 100vh;
    }
    header .navbar .navbar-content .navbar-body {
        --header-havbar-padding: .625rem;
    }
    header .navbar .navbar-content .navbar-body .side-menu {
        margin: 0;
    }
    header .navbar .navbar-content .navbar-body a.logo img {
        height: 46px;
    }
}
@media (max-width: 576px) {
    header .navbar .navbar-content .navbar-body {
        --header-havbar-padding: .5rem;
    }
    header .navbar .navbar-content .navbar-body a.logo {
        font-size: 24px;
    }
    header .navbar .navbar-content .navbar-body a.logo img {
        height: 36px;
    }
}

/* main
----------------------------------------------------------------------------------------------------------------------*/
main {
    width: 100%;
}
main section {
    width: auto;
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: #fff;
}
main section .section-body {
}
main section .section-body h2.section-title {
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 58px;
    color: var(--color-3);
    line-height: 1.1;
    letter-spacing: 1px;
}
main section .section-body p.section-subtitle {
    font-weight: 400;
    font-size: 50px;
    color: var(--color-6);
    line-height: 1.1;
}

@media (max-width: 992px) {
    main section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    main section .section-body h2.section-title {
        font-size: 36px;
    }
    main section .section-body p.section-subtitle {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    main section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    main section .section-body h2.section-title {
        font-size: 26px;
        text-align: center;
    }
    main section .section-body p.section-subtitle {
        font-size: 14px;
        text-align: center;
    }
}

/* main section.top-block
----------------------------------------------------------------------------------------------------------------------*/
main section.top-block {
    position: relative;
    background: linear-gradient(94.5deg, #e9f8ff 0%, #f7eefe 72.86%);
}
main section.top-block .top-block--background {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
}
main section.top-block .top-block--background .side {
    width: 50%;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--color-4);
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
main section.top-block .top-block--background .side img {
    width: auto;
    max-width: 100%;
    height: 100%;
}
main section.top-block .container-xl {
    position: relative;
}
main section.top-block .section-body {
    padding-top: 6em;
    padding-bottom: 6rem;
    position: relative;
}
main section.top-block .section-body .top-block-content {
    position: relative;
    z-index: 2;
}
main section.top-block .section-body .top-block-content h1.title {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    font-family: var(--font-2);
    font-weight: 400;
    font-size: 75px;
    color: var(--color-3);
}
main section.top-block .section-body .top-block-content h1.title > span.pill {
    padding: .2rem 2.5rem;
    background: var(--color-3);
    font-weight: 400;
    font-size: 63px;
    color: #fff;
    z-index: 2;
}
main section.top-block .section-body .top-block-content h1.title > span.pill.pill-first {
    margin-top: 1rem;
}
main section.top-block .section-body .top-block-content h1.title > span.pill.pill-second {
    margin-left: 11.5rem;
    z-index: 1;
    transform: translateY(-1rem);
}
main section.top-block .section-body .top-block-content h1.title > span.time {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
}
main section.top-block .section-body .top-block-content h1.title > span.time span {
    margin: 0 1rem;
    font-size: 135px;
    color: var(--color-4);
}
main section.top-block .section-body .top-block-content button {
}
main section.top-block .section-body .top-block-content ul {
    padding-left: 0;
    list-style: none;
}
main section.top-block .section-body .top-block-content ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
main section.top-block .section-body .top-block-content ul li:not(:first-child) {
    margin-top: .3rem;
}
main section.top-block .section-body .top-block-content ul li i {
    margin-right: .7rem;
    font-size: 24px;
    color: var(--color-4);
}
main section.top-block .section-body .top-block-content ul li span {
    font-size: 24px;
    color: var(--color-6);
}
main section.top-block .section-body .top-block-image {
    height: 100%;
    top: 0;
    right: 0;
    position: absolute;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
main section.top-block .section-body .top-block-image img {
    height: 90%;
}

@media (min-width: 992px) {
    main section.top-block {
        padding-top: 99px;
        margin-top: -99px;
        /*transform: translateY(-99px);*/
    }
}

@media (max-width: 1400px) {
    main section.top-block .section-body {
        padding-top: 4rem;
        padding-bottom: 4rem;
        position: relative;
    }
    main section.top-block .section-body .top-block-content h1.title {
        font-size: 60px;
    }
}
@media (max-width: 1200px) {
    main section.top-block .section-body .top-block-content h1.title {
        font-size: 50px;
    }
    main section.top-block .section-body .top-block-content h1.title > span.pill {
        font-size: 50px;
    }
    main section.top-block .section-body .top-block-image img {
        height: 82%;
    }
}
@media (max-width: 992px) {
    main section.top-block .top-block--background {
    }
    main section.top-block .top-block--background .side {
        width: 100%;
    }
    main section.top-block .section-body {
        padding-top: 0;
        padding-bottom: 0;
    }
    main section.top-block .section-body .top-block-content {
        text-align: center;
    }
    main section.top-block .section-body .top-block-content h1.title {
        align-items: center;
    }
    main section.top-block .section-body .top-block-content h1.title > span.time span {
        font-size: 135px;
        color: #fff;
    }
    main section.top-block .section-body .top-block-content button {
        background: #fff;
    }
    main section.top-block .section-body .top-block-content button span {
        color: var(--color-3);
    }
    main section.top-block .section-body .top-block-content ul {
        padding-left: 0;
    }
    main section.top-block .section-body .top-block-content ul li {
        justify-content: center;
    }
    main section.top-block .section-body .top-block-content ul li i {
        color: var(--color-1);
    }
    main section.top-block .section-body .top-block-content ul li span {
        color: #fff;
    }
    main section.top-block .section-body .top-block-image {
        display: none;
    }
}
@media (max-width: 576px) {
    main section.top-block .section-body .top-block-content {
        text-align: center;
    }
    main section.top-block .section-body .top-block-content h1.title {
        font-size: 36px;
    }
    main section.top-block .section-body .top-block-content h1.title > span.pill {
        font-size: 36px;
    }
    main section.top-block .section-body .top-block-content ul li i {
        font-size: 20px;
    }
    main section.top-block .section-body .top-block-content ul li span {
        font-size: 20px;
    }
    main section.top-block .section-body .top-block-image {
        display: none;
    }
}

/* main section.steps
----------------------------------------------------------------------------------------------------------------------*/
main section.steps {
    padding-top: 8rem;
    background: linear-gradient(94.5deg, #e9f8ff 0%, #f7eefe 72.86%);
}
main section.steps .section-body {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
main section.steps .section-body h2.section-title {
    text-transform: uppercase;
    text-align: center;
}
main section.steps .section-body p.section-subtitle {
    text-transform: lowercase;
    text-align: center;
}
main section.steps .section-body .img-container {
    width: auto;
    margin-left: -200px;
    flex-shrink: 0;
}
main section.steps .section-body .steps-content {
    flex-shrink: 2;
}
main section.steps .section-body .steps-content .steps {
    max-width: 1000px;
}
main section.steps .section-body .steps-content .steps > .box {
    width: 100%;
    height: auto;
}
main section.steps .section-body .steps-content .steps article.step {
    width: 100%;
    height: 100%;
    background: var(--color-4);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    transition: border-color .15s, box-shadow .15s;
    overflow: hidden;
    z-index: 2;
    border: none;
}
main section.steps .section-body .steps-content .steps > .box:not(:first-child) article.step {
    margin-top: 1.5rem;
}
main section.steps .section-body .steps-content .steps article.step .num {
    --step-num-margin: 50px;
    width: auto;
    margin-right: calc(-1 * var(--step-num-margin));
    background: var(--color-2);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
main section.steps .section-body .steps-content .steps article.step .num .num-wrap {
    width: 110px;
    text-align: center;
}
main section.steps .section-body .steps-content .steps article.step .num .num-wrap span {
    font-size: 120px;
    color: #fff;
    line-height: 1.1;
}
main section.steps .section-body .steps-content .steps article.step .num:after {
    content: ' ';
    width: var(--step-num-margin);
    height: 100%;
    display: block;
}
main section.steps .section-body .steps-content .steps article.step .name {
    width: 100%;
    background: var(--color-4);
    flex-shrink: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}
main section.steps .section-body .steps-content .steps article.step .name:before {
    content: ' ';
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--color-2);
    border-radius: var(--bs-border-radius-2xl);
    display: block;
    position: absolute;
    transition: width .3s;
}
main section.steps .section-body .steps-content .steps article.step:hover .name:before {
    width: 100%;
}
main section.steps .section-body .steps-content .steps article.step .name h3 {
    font-family: var(--font-2);
    font-size: 36px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    line-height: 1;
}
main section.steps .section-body .steps-content .steps article.step .name p {
    font-size: 24px;
    color: #fff;
    position: relative;
    line-height: 1;
}
main section.steps .section-body .steps-content .description {
    font-size: 26px;
    text-align: center;
    line-height: 1;
}

@media (max-width: 1200px) {
    main section.steps .section-body .img-container {
        display: none;
    }
}
@media (max-width: 992px) {
}
@media (max-width: 576px) {
    main section.steps .section-body .steps-content .steps article.step .num {
        --step-num-margin: 50px;
    }
    main section.steps .section-body .steps-content .steps article.step .num .num-wrap {
        width: 70px;
    }
    main section.steps .section-body .steps-content .steps article.step .num .num-wrap span {
        font-size: 70px;
    }
    main section.steps .section-body .steps-content .steps article.step .name {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    main section.steps .section-body .steps-content .steps article.step .name h3 {
        font-size: 16px;
    }
    main section.steps .section-body .steps-content .steps article.step .name p {
        font-size: 14px;
    }
}

/* main section.text-and-button
----------------------------------------------------------------------------------------------------------------------*/
main section.text-and-button {
    background: var(--color-2);
}
main section.text-and-button.bg-3 {
    background: var(--color-3);
}
main section.text-and-button .section-body {
    text-align: center;
}
main section.text-and-button .section-body h2.section-title {
    color: #fff;
}
main section.text-and-button .section-body p.section-subtitle {
    color: #fff;
}

/* main section.plans
----------------------------------------------------------------------------------------------------------------------*/
main section.plans {
}
main section.plans .section-body h2.section-title {
    text-align: center;
}
main section.plans .section-body .plans-content {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}
main section.plans .section-body .plans-content > .box {
    width: 25%;
}
main section.plans .section-body .plans-content article.plan {
    height: 100%;
    background: var(--color-8);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
    transition: background-color .15s, box-shadow .15s, z-index .15s;
    border: none;
    cursor: pointer;
    z-index: 1;
}
main section.plans .section-body .plans-content article.plan:hover {
    background: #fff;
    box-shadow: 0 5px 32px 0 rgba(44, 75, 184, .2);
    z-index: 2;
}
main section.plans .section-body .plans-content article.plan > * {
    width: 100%;
}
main section.plans .section-body .plans-content article.plan .card-header {
    padding: 2rem;
    background: var(--color-9);
    border: none;
    transition: background-color .15s, transform .15s;
}
main section.plans .section-body .plans-content article.plan:hover .card-header {
    background: #fff;
    transform: translateY(20px);
}
main section.plans .section-body .plans-content article.plan .card-header h2 {
    margin: 0;
    text-align: center;
    color: var(--color-3);
}
main section.plans .section-body .plans-content article.plan .card-body {
    padding: 2rem;
}
main section.plans .section-body .plans-content article.plan .card-body ul {
    list-style: none;
}
main section.plans .section-body .plans-content article.plan .card-body ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
main section.plans .section-body .plans-content article.plan .card-body ul li:not(:first-child) {
    margin-top: .5rem;
}
main section.plans .section-body .plans-content article.plan .card-body ul li i {
    margin-right: .75rem;
    font-size: 20px;
    color: var(--color-4);
}
main section.plans .section-body .plans-content article.plan .card-body ul li span {
    font-size: 16px;
    color: var(--color-6);
}
main section.plans .section-body .plans-content article.plan .card-footer {
    min-height: 137px;
    padding: 2rem;
    background: var(--color-1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    border: none;
    transition: background-color .15s, color .15s, transform .15s;
}
main section.plans .section-body .plans-content article.plan.plan-2 .card-footer {
    background: var(--color-4);
}
main section.plans .section-body .plans-content article.plan:hover .card-footer {
    background: #fff;
    color: var(--color-3);
    transform: translateY(-20px);
}
main section.plans .section-body .plans-content article.plan .card-footer p {
    margin: 0;
    text-align: center;
    line-height: 1;
}
main section.plans .section-body .plans-content article.plan .card-footer p.monthly {
    font-size: 22px;
}
main section.plans .section-body .plans-content article.plan .card-footer p.monthly span {
    font-weight: 700;
    font-size: 48px;
}
main section.plans .section-body .plans-content article.plan .card-footer p.annually {
    font-size: 18px;
}
main section.plans .section-body .plans-content article.plan .card-footer p.annually span {
    font-weight: 500;
    font-size: 26px;
}

@media (min-width: 1200px) {
    main section.plans .section-body .plans-content > .box:not(:first-child):not(:last-child) article.plan {
        border-left: none !important;
        border-right: none !important;
        border-radius: 0 !important;
    }
    main section.plans .section-body .plans-content > .box:not(:first-child):not(:last-child) article.plan .card-footer {
        border-radius: 0 !important;
    }
    main section.plans .section-body .plans-content > .box:first-child article.plan {
        border-right: none !important;
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    main section.plans .section-body .plans-content > .box:first-child article.plan .card-footer {
        border-top-right-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    main section.plans .section-body .plans-content > .box:last-child article.plan {
        border-left: none !important;
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
    main section.plans .section-body .plans-content > .box:last-child article.plan .card-footer {
        border-top-left-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
    }
}

@media (max-width: 1200px) {
    main section.plans .section-body .plans-content {
        margin-top: -1.5rem;
        margin-bottom: -1.5rem;
    }
    main section.plans .section-body .plans-content {
        flex-direction: column;
    }
    main section.plans .section-body .plans-content > .box {
        width: 100%;
        padding: 1.5rem;
    }
    main section.plans .section-body .plans-content article.plan .card-footer {
        min-height: auto;
    }
}
@media (max-width: 576px) {
    main section.plans .section-body .plans-content {
        margin-top: -1rem;
        margin-bottom: -1rem;
    }
    main section.plans .section-body .plans-content > .box {
        padding: 1rem;
    }
    main section.plans .section-body .plans-content article.plan .card-body ul li span {
        font-size: 14px;
    }
    main section.plans .section-body .plans-content article.plan .card-footer p.monthly {
        font-size: 18px;
    }
    main section.plans .section-body .plans-content article.plan .card-footer p.monthly span {
        font-size: 36px;
    }
    main section.plans .section-body .plans-content article.plan .card-footer p.annually {
        font-size: 14px;
    }
    main section.plans .section-body .plans-content article.plan .card-footer p.annually span {
        font-size: 20px;
    }
}

/* main section.faq
----------------------------------------------------------------------------------------------------------------------*/
main section.faq {
}
main section.faq .section-body .accordion .accordion-item {
    background: none;
}
main section.faq .section-body .accordion .accordion-item .accordion-header .accordion-button {
    background: none;
    box-shadow: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row-reverse;
}
main section.faq .section-body .accordion .accordion-item .accordion-header .accordion-button span {
    font-weight: 500;
    font-size: 22px;
    color: var(--color-3);
}
main section.faq .section-body .accordion .accordion-item .accordion-header .accordion-button:after {
    margin-left: 0;
    margin-right: 1rem;
}
main section.faq .section-body .accordion .accordion-item .accordion-collapse .accordion-body {
    font-size: 18px;
    color: var(--color-6);
}

@media (max-width: 576px) {
    main section.faq .section-body .accordion .accordion-item .accordion-header .accordion-button span {
        font-size: 18px;
    }
    main section.faq .section-body .accordion .accordion-item .accordion-collapse .accordion-body {
        font-size: 14px;
    }
}

/* main section.slides
----------------------------------------------------------------------------------------------------------------------*/
main section.slides {
    position: relative;
}
main section.slides .section-body h2.section-title {
    text-align: center;
}
main section.slides .section-body h2.section-title span {
    color: var(--color-4);
}
main section.slides .section-body .slides-content {
}
main section.slides .section-body .slides-content .slide {
    margin: 7rem 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    border: none;
    /*box-shadow: 0 15px 64px 0 rgba(44, 75, 184, .2);*/
    box-shadow: 0 0 14px 5px rgba(64, 84, 178, .4);
}
main section.slides .section-body .slides-content .slide:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
main section.slides .section-body .slides-content .slide .info {
    width: auto;
    min-width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-shrink: 2;
}
main section.slides .section-body .slides-content .slide .info > * {
    width: 100%;
}
main section.slides .section-body .slides-content .slide .info h2 {
    font-family: var(--font-2);
    font-size: 30px;
    color: var(--color-4);
}
main section.slides .section-body .slides-content .slide .info p {
    font-size: 18px;
    color: var(--color-3);
}
main section.slides .section-body .slides-content .slide .info p b {
    font-family: var(--font-2);
}
main section.slides .section-body .slides-content .slide .img {
    width: 45%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
main section.slides .section-body .slides-content .slide .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    main section.slides .section-body .slides-content .slide {
        margin: 3rem 0;
        box-shadow: 0 5px 32px 0 rgba(44, 75, 184, .2);
    }
    main section.slides .section-body .slides-content .slide .info h2 {
        font-size: 30px;
    }
    main section.slides .section-body .slides-content .slide .info p {
        font-size: 16px;
    }
}
@media (max-width: 576px) {
    main section.slides .section-body .slides-content .slide {
        margin: 2rem 0;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    main section.slides .section-body .slides-content .slide > * {
        width: 100% !important;
    }
    main section.slides .section-body .slides-content .slide .info {
        padding: 2rem;
        text-align: center;
    }
    main section.slides .section-body .slides-content .slide .info h2 {
        font-size: 20px;
    }
    main section.slides .section-body .slides-content .slide .info p {
        font-size: 14px;
    }
}

/* main section.app
----------------------------------------------------------------------------------------------------------------------*/
main section.app {
    background: linear-gradient(94.5deg, #e9f8ff 0%, #f7eefe 72.86%);
}
main section.app .section-body {
    display: flex;
    justify-content: center;
    align-items: center;
}
main section.app .section-body h2.section-title {
    font-size: 30px;
}
main section.app .section-body p.section-subtitle {
    text-align: left;
    font-size: 22px;
}
main section.app .section-body .img-container {
    width: 40%;
    flex-shrink: 0;
}
main section.app .section-body .img-container .img {
    position: relative;
}
main section.app .section-body .img-container .img img {
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    z-index: 1;
}
main section.app .section-body .img-container .img img:first-child {
    position: relative;
    z-index: 2;
}
main section.app .section-body .description {
    width: 100%;
    padding-left: 3rem;
    flex-shrink: 2;
}

@media (min-width: 992px) {
    main section.app .section-body {
        padding: 0 7rem;
    }
}

@media (max-width: 576px) {
    main section.app .section-body h2.section-title {
        margin-bottom: .5rem !important;
        text-align: left;
        font-size: 22px;
    }
    main section.app .section-body p.section-subtitle {
        text-align: left;
        font-size: 14px;
    }
    main section.app .section-body .img-container {
        width: 30%;
    }
    main section.app .section-body .description {
        padding-left: 1.5rem;
    }
}

/* main section.form-and-text
----------------------------------------------------------------------------------------------------------------------*/
main section.form-and-text {
    background: none;
}
main section.form-and-text .video {
    min-width: 100%;
    position: fixed;
    top: 0;
    z-index: -999;
}
main section.form-and-text .section-body {
    display: flex;
    justify-content: center;
    align-items: center;
}
main section.form-and-text .section-body h2.section-title {
    font-size: 40px;
}
main section.form-and-text .section-body p.section-subtitle {
    font-size: 20px;
}
main section.form-and-text .section-body .description {
    width: 100%;
    padding-right: 3rem;
    flex-shrink: 2;
}
main section.form-and-text .section-body .form-container {
    width: 50%;
    padding: 3rem;
    background: rgba(255, 255, 255, .3);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

@media (min-width: 992px) {
    main section.form-and-text .section-body h2.section-title {
        color: #fff;
    }
    main section.form-and-text .section-body p.section-subtitle {
        color: #fff;
    }
}

@media (max-width: 1400px) {
    main section.form-and-text .section-body h2.section-title {
        font-size: 36px;
    }
    main section.form-and-text .section-body p.section-subtitle {
        font-size: 18px;
    }
}
@media (max-width: 1200px) {
    main section.form-and-text .section-body h2.section-title {
        font-size: 30px;
    }
    main section.form-and-text .section-body p.section-subtitle {
        font-size: 16px;
    }
}
@media (max-width: 992px) {
    main section.form-and-text {
        background: linear-gradient(94.5deg, #e9f8ff 0%, #f7eefe 72.86%);
    }
    main section.form-and-text .video {
        display: none;
    }
    main section.form-and-text .section-body {
        flex-direction: column;
    }
    main section.form-and-text .section-body h2.section-title {
        font-size: 36px;
        text-align: center;
    }
    main section.form-and-text .section-body p.section-subtitle {
        margin-bottom: 2rem !important;
        font-size: 16px;
        text-align: center;
    }
    main section.form-and-text .section-body .description {
        padding-right: 0;
    }
}
@media (max-width: 576px) {
    main section.form-and-text .section-body .form-container {
        width: 100%;
    }
    main section.form-and-text .section-body h2.section-title {
        font-size: 26px;
    }
    main section.form-and-text .section-body p.section-subtitle {
        font-size: 14px;
    }
}

/* footer
----------------------------------------------------------------------------------------------------------------------*/
footer {
    width: 100%;
    margin-top: auto;
    padding: 3rem 0;
    background: #000;
}
footer .footer-content {
}
footer .footer-content a.logo {
    padding: 0;
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    text-decoration: none;
}
footer .footer-content a.logo span {
    color: var(--color-4);
}
footer .footer-content a.logo img {
}
footer .footer-content .end-line {
    margin-top: 1rem;
}
footer .footer-content .end-line p {
    color: var(--color-5);
}
footer .footer-content .end-line p span {
    color: #fff;
}

@media (max-width: 992px) {
}
@media (max-width: 576px) {
    footer .footer-content {
        text-align: center;
    }
}