/*
Theme Name: Billdu
Theme URI: https://billdu.com
Author: Billdu
Author URI: https://billdu.com
Description: Billdu landing page theme
Version: 2.20.5
*/

/* Web fonts */
@font-face {
    font-family: "Inter Regular";
    src: url("./fonts/webfonts/Inter/Inter-Regular.woff2") format("woff2"), url("./fonts/webfonts/Inter/Inter-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter SemiBold";
    src: url("./fonts/webfonts/Inter/Inter-SemiBold.woff2") format("woff2"), url("./fonts/webfonts/Inter/Inter-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Bold";
    src: url("./fonts/webfonts/Inter/Inter-Bold.woff2") format("woff2"), url("./fonts/webfonts/Inter/Inter-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sonda Bold";
    src: url("./fonts/webfonts/Sonda/Sonda-Bold.woff2") format("woff2"), url("./fonts/webfonts/Sonda/Sonda-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Sonda Heavy";
    src: url("./fonts/webfonts/Sonda/Sonda-Heavy.woff2") format("woff2"), url("./fonts/webfonts/Sonda/Sonda-Heavy.woff") format("woff");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* GRID switcher */
.grid-switcher {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #363636;
    border-radius: 50%;
    bottom: 10px;
    color: #fff;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 10px;
    position: fixed;
    width: 40px;
    height: 40px;
    text-transform: uppercase;
    -webkit-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
    z-index: 99999999;
    font-family: "Inter Regular", Arial, sans-serif;
}

.grid-switcher.is-active, .grid-switcher:focus, .grid-switcher:hover {
    color: #000000;
    background-color: #ffe5e5;
}

.grid-container {
    font-size: 0;
    pointer-events: none;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: 9999999;
    opacity: 0;
    overflow: hidden;
    -webkit-transition: opacity 600ms ease;
    -o-transition: opacity 600ms ease;
    transition: opacity 600ms ease;
}

.grid-container.is-active {
    opacity: 1;
    overflow: visible;
    -webkit-transition: opacity 600ms ease;
    -o-transition: opacity 600ms ease;
    transition: opacity 600ms ease;
}

.grid-column-item {
    width: 100%;
    min-width: 1px;
    min-height: 0;
    width: calc(100% / 6);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% / 6);
    flex: 0 0 calc(100% / 6);
    max-width: calc(100% / 6);
}

@media (min-width: 771px) {
    .grid-column-item {
        width: calc(100% / 12);
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 12);
        flex: 0 0 calc(100% / 12);
        max-width: calc(100% / 12);
    }
}

.grid-column {
    background-color: rgba(255, 0, 0, 0.1);
    height: 100vh;
}

/* Animate helpers */
@-webkit-keyframes spinner-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loading-spinner {
    display: inline-block;
    width: 80px;
    height: 80px;
    -webkit-animation-name: spinner-rotate;
    animation-name: spinner-rotate;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    border: 10px solid #002bf2;
    border-right-color: transparent;
    border-radius: 50%;
}

.loading-spinner--orange {
    width: 50px;
    height: 50px;
    border: 6px solid #ff7846;
    border-right-color: transparent;
}

.donut-spinner {
    display: inline-block;
    border: 10px solid #e6edff;
    border-left-color: #002bf2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: donut-spin 1.2s linear infinite;
    animation: donut-spin 1.2s linear infinite;
}

@-webkit-keyframes donut-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes donut-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.bouncing-loader > div,
.bouncing-loader:before,
.bouncing-loader:after {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: #002bf2;
    margin-bottom: -5px;
    border-radius: 50%;
    -webkit-animation: bouncing-loader 0.6s infinite alternate;
    animation: bouncing-loader 0.6s infinite alternate;
}

.bouncing-loader > div,
.bouncing-loader:before,
.bouncing-loader:after {
    content: '';
}

.bouncing-loader > div {
    margin: 0 5px;
}

.bouncing-loader > div {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.bouncing-loader:after {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

@-webkit-keyframes bouncing-loader {
    to {
        opacity: 0.1;
        -webkit-transform: translate3d(0, -16px, 0);
        transform: translate3d(0, -16px, 0);
    }
}

@keyframes bouncing-loader {
    to {
        opacity: 0.1;
        -webkit-transform: translate3d(0, -16px, 0);
        transform: translate3d(0, -16px, 0);
    }
}

/* Typography */
.typography p,
.typography li,
.typography td,
.typography th {
    line-height: 1.5em;
}

.typography p,
.typography ul,
.typography ol,
.typography h1,
.typography h2,
.typography h3,
.typography h4,
.typography h5,
.typography h6,
.typography table,
.typography fieldset,
.typography blockquote,
.typography iframe {
    margin-bottom: 1rem;
}

.typography h1 {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    color: #002bf2;
    font-size: 26px;
    font-size: 1.625rem;
}

@media (min-width: 771px) {
    .typography h1 {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

.typography h2 {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    color: #002bf2;
    font-size: 24px;
    font-size: 1.5rem;
}

@media (min-width: 771px) {
    .typography h2 {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

.typography h3 {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    color: #002bf2;
    font-size: 22px;
    font-size: 1.375rem;
}

@media (min-width: 771px) {
    .typography h3 {
        font-size: 24px;
        font-size: 1.5rem;
    }
}

.typography h4 {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    color: #002bf2;
    font-size: 20px;
    font-size: 1.25rem;
}

@media (min-width: 771px) {
    .typography h4 {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.typography h5 {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    color: #002bf2;
    font-size: 18px;
    font-size: 1.125rem;
}

@media (min-width: 771px) {
    .typography h5 {
        font-size: 20px;
        font-size: 1.25rem;
    }
}

.typography h6 {
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    color: #002bf2;
    font-size: 18px;
    font-size: 1.125rem;
}

@media (min-width: 771px) {
    .typography h6 {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.typography a {
    text-decoration: underline;
    color: #002bf2;
}

.typography a:focus, .typography a:hover {
    color: #ff7846;
    text-decoration: underline;
}

.typography p {
    display: block;
    margin-top: 0;
    margin-bottom: 2.5rem;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #002bf2;
    font-size: 16px;
    font-size: 1rem;
}

.typography strong {
    font-weight: 700;
    color: #002bf2;
}

.typography img {
    max-width: 100%;
    margin-bottom: 2rem;
}

.typography ul,
.typography ol {
    margin-bottom: 2.5rem;
    padding-left: 0;
    list-style: none;
}

.typography ul li,
.typography ol li {
    position: relative;
    margin-bottom: 0.3rem;
    padding-left: 1.8rem;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #002bf2;
    font-size: 16px;
    font-size: 1rem;
}

.typography ul li:before {
    position: absolute;
    top: 9px;
    left: 3px;
    display: block;
    width: 6px;
    height: 6px;
    content: '';
    color: #002bf2;
    border-radius: 100%;
    background-color: #002bf2;
}

.typography ol {
    list-style-position: inside;
    counter-reset: item;
}

.typography ol li:before {
    position: absolute;
    top: 1px;
    left: 0;
    display: inline-block;
    line-height: 1.4;
    content: counter(item) ".";
    counter-increment: item;
    color: #002bf2;
    font-size: 16px;
    font-size: 1rem;
}

.typography figure {
    margin: 0;
    margin-bottom: 2rem;
}

.typography figure img {
    margin: 0;
}

.typography figcaption {
    margin-top: 0.6rem;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    color: #002bf2;
    font-size: 12px;
    font-size: 0.75rem;
}

/* .checkbox.checkbox--radiobox
	input#checkbox_payment_1.checkbox__input-hidden(type='radio', name="payment" required='')
	label.checkbox__label(for='checkbox_payment_1')
		span.checkbox__box
		span.checkbox__text Platba kartou */
/* Checkbox helpers */
.checkbox {
    margin-bottom: 2rem;
}

.input-hidden,
.checkbox__input-hidden {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.checkbox__label {
    margin: 0;
    padding-left: 0;
    min-height: inherit;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    padding-top: 0;
    cursor: pointer;
    text-transform: none;
}

.checkbox__box {
    position: relative;
    max-width: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #000000;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0;
}

.checkbox__text {
    max-width: calc(100% - 20px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 20px);
    flex: 0 0 calc(100% - 20px);
    width: calc(100% - 20px);
    display: block;
    position: relative;
    cursor: pointer;
    text-align: left;
    color: #000000;
    font-size: 16px;
    font-size: 1rem;
    padding-left: 1rem;
    line-height: 1.4;
}

.checkbox__slider {
    position: absolute;
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    border-radius: 50% !important;
    background-color: #ffffff;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (min-width: 576px) {
    .checkbox__slider {
        height: 26px;
        width: 26px;
    }
}

.checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 5px;
    width: 7px;
    height: 13px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.checkbox--switcher {
    position: relative;
    display: inline-block;
    margin-left: 1.2rem;
    margin-right: 1.2rem;
    margin-bottom: 0;
    width: 55px;
    height: 35px;
}

@media (min-width: 576px) {
    .checkbox--switcher {
        width: 70px;
        height: 40px;
    }
}

.checkbox--switcher .checkbox__label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid #ffffff;
    border-radius: 35px;
    background-color: transparent;
}

.checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label {
    border-color: #ffffff;
}

.checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label:after {
    display: none;
}

.checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label .checkbox__slider {
    background-color: #ffffff;
    left: calc(100% - 25px);
}

@media (min-width: 576px) {
    .checkbox--switcher .checkbox__input-hidden:checked + .checkbox__label .checkbox__slider {
        left: calc(100% - 30px);
    }
}

.checkbox--radiobox {
    margin-bottom: 2rem;
}

.checkbox--radiobox .checkbox__box {
    top: 0;
    max-width: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    border: 2px solid #000000;
    border-radius: 100%;
}

.checkbox--radiobox .checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 100%;
    margin-top: -5px;
    margin-left: -5px;
    width: 10px;
    height: 10px;
    background-color: #000000;
}

/* Buttons helper */
.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0.75em 1.2rem;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none !important;
    text-transform: uppercase;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    border: 0;
    outline: none !important;
    background: #000000;
    text-align: center;
    -webkit-transition: background-color 250ms ease-out, border-color 250ms ease-out;
    -o-transition: background-color 250ms ease-out, border-color 250ms ease-out;
    transition: background-color 250ms ease-out, border-color 250ms ease-out;
    border-radius: 60px;
    font-size: 17px;
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    -webkit-appearance: none;
}

.btn, .btn:visited, .btn:active, .btn:focus {
    color: white;
}

.btn:hover {
    -webkit-transition: background-color 250ms ease-out, border-color 250ms ease-out;
    -o-transition: background-color 250ms ease-out, border-color 250ms ease-out;
    transition: background-color 250ms ease-out, border-color 250ms ease-out;
}

@media (min-width: 992px) {
    .btn:hover {
        cursor: pointer;
        text-decoration: none;
        color: white;
    }
}

.btn:hover .btn__icon {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
}

.btn__icon {
    -webkit-transition: -webkit-transform 250ms ease-out;
    transition: -webkit-transform 250ms ease-out;
    -o-transition: transform 250ms ease-out;
    transition: transform 250ms ease-out;
    transition: transform 250ms ease-out, -webkit-transform 250ms ease-out;
}

.btn--responsive {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    text-align: center;
}

.btn--font-size-xsmall {
    font-size: 12px;
    font-size: 0.75rem;
}

.btn--font-size-small {
    font-size: 14px;
    font-size: 0.875rem;
}

.btn--font-size-medium {
    font-size: 16px;
    font-size: 1rem;
}

.btn--font-size-big {
    padding: 0.65em 1.2rem;
    font-size: 22px;
    font-size: 1.375rem;
}

@media (min-width: 771px) {
    .btn--font-size-big {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

.btn--font-size-large {
    padding: 0.5em 1.2rem;
    font-size: 22px;
    font-size: 1.375rem;
}

.btn--font-size-large .h-30 {
    height: 26px;
}

@media (min-width: 771px) {
    .btn--font-size-large {
        font-size: 26px;
        font-size: 1.625rem;
    }

    .btn--font-size-large .h-30 {
        height: 24px;
    }
}

@media (min-width: 992px) {
    .btn--font-size-large {
        font-size: 30px;
        font-size: 1.875rem;
    }

    .btn--font-size-large .h-30 {
        height: 30px;
    }
}

.btn--size-small {
    padding: 0.75em 1.2rem;
}

.btn--size-wide {
    padding: 0.75em 2rem;
}

.btn--size-medium {
    padding: 1.2em 1.5rem;
}

.btn--size-big {
    padding: 2.2em 2rem;
}

.btn--min-width-xsmall {
    min-width: 120px;
}

.btn--min-width-small {
    min-width: 150px;
}

.btn--min-width-small-ext {
    min-width: 200px;
}

.btn--min-width-small-ext-1 {
    min-width: 170px;
}

.btn--min-width-medium {
    min-width: 260px;
}

.btn--min-width-big {
    min-width: 300px;
}

.btn--min-width-large {
    min-width: 280px;
}

@media (min-width: 992px) {
    .btn--min-width-large {
        min-width: 360px;
    }
}

.btn-black-fill {
    color: #ffffff;
    border: 2px solid transparent;
    background-color: #000000;
}

.btn-black-fill, .btn-black-fill:visited, .btn-black-fill:active, .btn-black-fill:focus {
    color: #ffffff;
}

.btn-black-fill:hover {
    color: #000000;
    background-color: #ffffff;
}

.btn--orange-fill {
    color: #ffffff;
    border: 3px solid #ff7846;
    background-color: #ff7846;
}

.btn--orange-fill, .btn--orange-fill:visited, .btn--orange-fill:active, .btn--orange-fill:focus {
    color: #ffffff;
}

.btn--orange-fill:hover {
    color: #ff7846;
    border-color: #ff7846;
    background-color: transparent;
}

.btn--orange-outline {
    color: #ff7846;
    border: 3px solid #ff7846;
    background-color: transparent;
}

.btn--orange-outline, .btn--orange-outline:visited, .btn--orange-outline:active, .btn--orange-outline:focus {
    color: #ff7846;
}

.btn--orange-outline:hover {
    color: #ffffff;
    border: 3px solid #ff7846;
    background-color: #ff7846;
}

.btn--orange-outline:hover svg {
    fill: #ffffff;
}

.btn--orange-outline svg {
    fill: #ff7846;
}

.btn--blue-outline {
    color: #002bf2;
    border: 3px solid #002bf2;
    background-color: transparent;
}

.btn--blue-outline, .btn--blue-outline:visited, .btn--blue-outline:active, .btn--blue-outline:focus {
    color: #002bf2;
}

.btn--blue-outline:hover {
    color: #ffffff;
    border: 3px solid #002bf2;
    background-color: #002bf2;
}

.btn--blue-outline:hover svg {
    fill: #ffffff;
}

.btn--blue-outline svg {
    fill: #ff7846;
}

/*blue filled*/
.btn--blue-fill {
    color: #ffffff !important;
    border: 3px solid #002bf2 !important;
    background-color: #002bf2 !important;
}

.btn--blue-fill, .btn--blue-fill:visited, .btn--blue-fill:active, .btn--blue-fill:focus {
    color: #ffffff !important;
}

.btn--blue-fill:hover {
    color: #002bf2 !important;
    border-color: #002bf2 !important;
    background-color: transparent !important;
}

/* Color helpers */
.bg-black {
    background-color: #000000;
}

.bg-blue {
    background-color: #002bf2;
}

.bg-gray-light {
    background-color: #f7f7f7;
}

.txt-white {
    color: #ffffff;
}

.txt-black {
    color: #000000;
}

.h--white h1,
.h--white .alfa,
.h--white h2,
.h--white .beta,
.h--white h3,
.h--white .gamma,
.h--white h4,
.h--white .delta,
.h--white h5,
.h--white .epsilon,
.h--white h6,
.h--white .zeta {
    color: #ffffff;
}

.h--orange h1,
.h--orange .alfa,
.h--orange h2,
.h--orange .beta,
.h--orange h3,
.h--orange .gamma,
.h--orange h4,
.h--orange .delta,
.h--orange h5,
.h--orange .epsilon,
.h--orange h6,
.h--orange .zeta {
    color: #ff7846;
}

.p--white p {
    color: #ffffff;
}

.p--black p {
    color: #000000;
}

.p--purple p {
    color: #002bf2;
}

ul.list-style.ul--white li,
.ul--white li {
    color: #ffffff;
}

ul.list-style.ul--white li:before,
.ul--white li:before {
    background-color: #ffffff;
}

ol.list-style.ol-white li,
.ol-white li {
    color: #ffffff;
}

ol.list-style.ol-white li:before,
.ol-white li:before {
    color: #ffffff;
}

/* Gutter helpers */
.no-gutter {
    margin: 0;
}

.no-gutter > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.gutter-4.row {
    margin-right: -2px;
    margin-left: -2px;
}

.gutter-4 > [class*="col-"],
.gutter-4 > [class*=" col-"] {
    padding-right: 2px;
    padding-left: 2px;
}

.gutter-6.row {
    margin-right: -3px;
    margin-left: -3px;
}

.gutter-6 > [class*="col-"],
.gutter-6 > [class*=" col-"] {
    padding-right: 3px;
    padding-left: 3px;
}

.gutter-10.row {
    margin-right: -5px;
    margin-left: -5px;
}

.gutter-10 > [class*="col-"],
.gutter-10 > [class*=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

.gutter-20.row {
    margin-right: -10px;
    margin-left: -10px;
}

.gutter-20 > [class*="col-"],
.gutter-20 > [class*=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
}

.gutter-30.row {
    margin-right: -15px;
    margin-left: -15px;
}

.gutter-30 > [class*="col-"],
.gutter-30 > [class*=" col-"] {
    padding-right: 15px;
    padding-left: 15px;
}

.gutter-40.row {
    margin-right: -20px;
    margin-left: -20px;
}

.gutter-40 > [class*="col-"],
.gutter-40 > [class*=" col-"] {
    padding-right: 20px;
    padding-left: 20px;
}

.gutter-50.row {
    margin-right: -25px;
    margin-left: -25px;
}

.gutter-50 > [class*="col-"],
.gutter-50 > [class*=" col-"] {
    padding-right: 25px;
    padding-left: 25px;
}

.gutter-60.row {
    margin-right: -30px;
    margin-left: -30px;
}

.gutter-60 > [class*="col-"],
.gutter-60 > [class*=" col-"] {
    padding-right: 30px;
    padding-left: 30px;
}

.gutter-sm-80.row {
    margin-right: -40px;
    margin-left: -40px;
}

.gutter-sm-80 > [class*="col-"],
.gutter-sm-80 > [class*=" col-"] {
    padding-right: 40px;
    padding-left: 40px;
}

.gutter-sm-100.row {
    margin-right: -50px;
    margin-left: -50px;
}

.gutter-sm-100 > [class*="col-"],
.gutter-sm-100 > [class*=" col-"] {
    padding-right: 50px;
    padding-left: 50px;
}

@media (min-width: 576px) {
    .gutter-xs-10.row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .gutter-xs-10 > [class*="col-"],
    .gutter-xs-10 > [class*=" col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gutter-xs-20.row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .gutter-xs-20 > [class*="col-"],
    .gutter-xs-20 > [class*=" col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }

    .gutter-xs-30.row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .gutter-xs-30 > [class*="col-"],
    .gutter-xs-30 > [class*=" col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .gutter-xs-40.row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .gutter-xs-40 > [class*="col-"],
    .gutter-xs-40 > [class*=" col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }

    .gutter-xs-50.row {
        margin-right: -25px;
        margin-left: -25px;
    }

    .gutter-xs-50 > [class*="col-"],
    .gutter-xs-50 > [class*=" col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }

    .gutter-xs-60.row {
        margin-right: -30px;
        margin-left: -30px;
    }

    .gutter-xs-60 > [class*="col-"],
    .gutter-xs-60 > [class*=" col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .gutter-xs-100.row {
        margin-right: -50px;
        margin-left: -50px;
    }

    .gutter-xs-100 > [class*="col-"],
    .gutter-xs-100 > [class*=" col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width: 771px) {
    .gutter-sm-10.row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .gutter-sm-10 > [class*="col-"],
    .gutter-sm-10 > [class*=" col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gutter-sm-20.row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .gutter-sm-20 > [class*="col-"],
    .gutter-sm-20 > [class*=" col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }

    .gutter-sm-30.row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .gutter-sm-30 > [class*="col-"],
    .gutter-sm-30 > [class*=" col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .gutter-sm-40.row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .gutter-sm-40 > [class*="col-"],
    .gutter-sm-40 > [class*=" col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }

    .gutter-sm-50.row {
        margin-right: -25px;
        margin-left: -25px;
    }

    .gutter-sm-50 > [class*="col-"],
    .gutter-sm-50 > [class*=" col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }

    .gutter-sm-60.row {
        margin-right: -30px;
        margin-left: -30px;
    }

    .gutter-sm-60 > [class*="col-"],
    .gutter-sm-60 > [class*=" col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .gutter-sm-100.row {
        margin-right: -50px;
        margin-left: -50px;
    }

    .gutter-sm-100 > [class*="col-"],
    .gutter-sm-100 > [class*=" col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width: 992px) {
    .no-md-gutter {
        margin: 0;
    }

    .no-md-gutter > [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

    .gutter-md-10.row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .gutter-md-10 > [class*="col-"],
    .gutter-md-10 > [class*=" col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gutter-md-20.row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .gutter-md-20 > [class*="col-"],
    .gutter-md-20 > [class*=" col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }

    .gutter-md-30.row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .gutter-md-30 > [class*="col-"],
    .gutter-md-30 > [class*=" col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .gutter-md-40.row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .gutter-md-40 > [class*="col-"],
    .gutter-md-40 > [class*=" col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }

    .gutter-md-50.row {
        margin-right: -25px;
        margin-left: -25px;
    }

    .gutter-md-50 > [class*="col-"],
    .gutter-md-50 > [class*=" col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }

    .gutter-md-60.row {
        margin-right: -30px;
        margin-left: -30px;
    }

    .gutter-md-60 > [class*="col-"],
    .gutter-md-60 > [class*=" col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .gutter-md-100.row {
        margin-right: -50px;
        margin-left: -50px;
    }

    .gutter-md-100 > [class*="col-"],
    .gutter-md-100 > [class*=" col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width: 1200px) {
    .gutter-lg-10.row {
        margin-right: -5px;
        margin-left: -5px;
    }

    .gutter-lg-10 > [class*="col-"],
    .gutter-lg-10 > [class*=" col-"] {
        padding-right: 5px;
        padding-left: 5px;
    }

    .gutter-lg-20.row {
        margin-right: -10px;
        margin-left: -10px;
    }

    .gutter-lg-20 > [class*="col-"],
    .gutter-lg-20 > [class*=" col-"] {
        padding-right: 10px;
        padding-left: 10px;
    }

    .gutter-lg-30.row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .gutter-lg-30 > [class*="col-"],
    .gutter-lg-30 > [class*=" col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .gutter-lg-40.row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .gutter-lg-40 > [class*="col-"],
    .gutter-lg-40 > [class*=" col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }

    .gutter-lg-50.row {
        margin-right: -25px;
        margin-left: -25px;
    }

    .gutter-lg-50 > [class*="col-"],
    .gutter-lg-50 > [class*=" col-"] {
        padding-right: 25px;
        padding-left: 25px;
    }

    .gutter-lg-60.row {
        margin-right: -30px;
        margin-left: -30px;
    }

    .gutter-lg-60 > [class*="col-"],
    .gutter-lg-60 > [class*=" col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .gutter-lg-80.row {
        margin-right: -40px;
        margin-left: -40px;
    }

    .gutter-lg-80 > [class*="col-"],
    .gutter-lg-80 > [class*=" col-"] {
        padding-right: 40px;
        padding-left: 40px;
    }

    .gutter-lg-100.row {
        margin-right: -50px;
        margin-left: -50px;
    }

    .gutter-lg-100 > [class*="col-"],
    .gutter-lg-100 > [class*=" col-"] {
        padding-right: 50px;
        padding-left: 50px;
    }
}

@media (min-width: 1440px) {
    .gutter-xl-30.row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .gutter-xl-30 > [class*="col-"],
    .gutter-xl-30 > [class*=" col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .gutter-xl-40.row {
        margin-right: -20px;
        margin-left: -20px;
    }

    .gutter-xl-40 > [class*="col-"],
    .gutter-xl-40 > [class*=" col-"] {
        padding-right: 20px;
        padding-left: 20px;
    }

    .gutter-xl-60.row {
        margin-right: -30px;
        margin-left: -30px;
    }

    .gutter-xl-60 > [class*="col-"],
    .gutter-xl-60 > [class*=" col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .gutter-xl-80.row {
        margin-right: -40px;
        margin-left: -40px;
    }

    .gutter-xl-80 > [class*="col-"],
    .gutter-xl-80 > [class*=" col-"] {
        padding-right: 40px;
        padding-left: 40px;
    }

    .gutter-xl-120.row {
        margin-right: -60px;
        margin-left: -60px;
    }

    .gutter-xl-120 > [class*="col-"],
    .gutter-xl-120 > [class*=" col-"] {
        padding-right: 60px;
        padding-left: 60px;
    }
}

@media (min-width: 1600px) {
    .gutter-xxl-30.row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .gutter-xxl-30 > [class*="col-"],
    .gutter-xxl-30 > [class*=" col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .gutter-xxl-60.row {
        margin-right: -30px;
        margin-left: -30px;
    }

    .gutter-xxl-60 > [class*="col-"],
    .gutter-xxl-60 > [class*=" col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }

    .gutter-xxl-120.row {
        margin-right: -60px;
        margin-left: -60px;
    }

    .gutter-xxl-120 > [class*="col-"],
    .gutter-xxl-120 > [class*=" col-"] {
        padding-right: 60px;
        padding-left: 60px;
    }

    .gutter-xxl-180.row {
        margin-right: -90px;
        margin-left: -90px;
    }

    .gutter-xxl-180 > [class*="col-"],
    .gutter-xxl-180 > [class*=" col-"] {
        padding-right: 90px;
        padding-left: 90px;
    }
}

@media (min-width: 1800px) {
    .gutter-xxxl-30.row {
        margin-right: -15px;
        margin-left: -15px;
    }

    .gutter-xxxl-30 > [class*="col-"],
    .gutter-xxxl-30 > [class*=" col-"] {
        padding-right: 15px;
        padding-left: 15px;
    }

    .gutter-xxxl-60.row {
        margin-right: -30px;
        margin-left: -30px;
    }

    .gutter-xxxl-60 > [class*="col-"],
    .gutter-xxxl-60 > [class*=" col-"] {
        padding-right: 30px;
        padding-left: 30px;
    }
}

/* Hidden content */
.hidden-content {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

.hidden-content.is-active {
    width: auto;
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease;
    -o-transition: opacity 250ms ease;
    transition: opacity 250ms ease;
}

@media (max-width: 575px) {
    .hidden-xs-content {
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        -webkit-transition: opacity 250ms ease;
        -o-transition: opacity 250ms ease;
        transition: opacity 250ms ease;
    }

    .hidden-xs-content.is-active {
        height: auto;
        opacity: 1;
        overflow: visible;
        visibility: visible;
        -webkit-transition: opacity 250ms ease;
        -o-transition: opacity 250ms ease;
        transition: opacity 250ms ease;
    }
}

@media (max-width: 770px) {
    .hidden-sm-content {
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        -webkit-transition: opacity 250ms ease;
        -o-transition: opacity 250ms ease;
        transition: opacity 250ms ease;
    }

    .hidden-sm-content.is-active {
        height: auto;
        opacity: 1;
        overflow: visible;
        visibility: visible;
        -webkit-transition: opacity 250ms ease;
        -o-transition: opacity 250ms ease;
        transition: opacity 250ms ease;
    }
}

@media (min-width: 992px) {
    .hidden-md-content {
        display: none;
    }
}

@media (max-width: 991px) {
    .hidden-md-content {
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        -webkit-transition: opacity 250ms ease;
        -o-transition: opacity 250ms ease;
        transition: opacity 250ms ease;
    }

    .hidden-md-content.is-active {
        height: auto;
        opacity: 1;
        overflow: visible;
        visibility: visible;
        -webkit-transition: opacity 250ms ease;
        -o-transition: opacity 250ms ease;
        transition: opacity 250ms ease;
    }
}

@media (max-width: 1199px) {
    .hidden-lg-content {
        height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        -webkit-transition: opacity 250ms ease;
        -o-transition: opacity 250ms ease;
        transition: opacity 250ms ease;
    }

    .hidden-lg-content.is-active {
        height: auto;
        opacity: 1;
        overflow: visible;
        visibility: visible;
        -webkit-transition: opacity 250ms ease;
        -o-transition: opacity 250ms ease;
        transition: opacity 250ms ease;
    }
}

/* Hidden class */
.invisible {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.hide {
    display: none;
}

.show {
    display: block;
}

.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.overflow-visible {
    overflow: visible;
}

/* HR helper */
.hr-line {
    margin: 30px 0;
    height: 1px;
    background-color: #f7f7f7;
}

.hr-line-1 {
    margin: 1rem 0;
}

.hr-line-1-3 {
    margin: 1rem 3rem;
}

.hr-line-2 {
    margin: 2rem 0;
}

.hr-line-3 {
    margin: 3rem 0;
}

.hr-line--width-100 {
    width: 100px;
}

.hr-line--width-200 {
    width: 200px;
}

.hr-line--width-300 {
    width: 300px;
}

.hr-line--center {
    margin: 0 auto;
}

.hr-line--black {
    background-color: #000000;
}

.hr-line--gray {
    background-color: #f7f7f7;
}

/* Icon helpers */
.icon-svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    -webkit-transition: fill 0.15s;
    -o-transition: fill 0.15s;
    transition: fill 0.15s;
}

.icon--size-12 svg {
    font-size: 12px;
    font-size: 0.75rem;
}

.icon--size-14 svg {
    font-size: 14px;
    font-size: 0.875rem;
}

.icon--size-16 svg {
    font-size: 16px;
    font-size: 1rem;
}

.icon--size-18 svg {
    font-size: 18px;
    font-size: 1.125rem;
}

.icon--size-20 svg {
    font-size: 20px;
    font-size: 1.25rem;
}

.icon--size-22 svg {
    font-size: 22px;
    font-size: 1.375rem;
}

.icon--size-24 svg {
    font-size: 24px;
    font-size: 1.5rem;
}

.icon--size-26 svg {
    font-size: 26px;
    font-size: 1.625rem;
}

.icon--size-28 svg {
    font-size: 28px;
    font-size: 1.75rem;
}

.icon--size-30 svg {
    font-size: 30px;
    font-size: 1.875rem;
}

.icon--size-60 svg {
    font-size: 60px;
    font-size: 3.75rem;
}

.icon---white svg {
    fill: #ffffff;
}

.icon---black svg {
    fill: #000000;
}

.icon---orange svg {
    fill: #ff7846;
}

.icon---blue svg {
    fill: #002bf2;
}

/* Image helpers */
.img {
    display: block;
}

.img--full {
    width: 100%;
}

.img--responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img--cover {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.img--contain {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.bg-image-hover,
.img-hover {
    display: block;
    overflow: hidden;
}

.bg-image-hover:focus > img, .bg-image-hover:hover > img,
.img-hover:focus > img,
.img-hover:hover > img {
    -webkit-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.bg-image-hover img,
.img-hover img {
    -webkit-transition: -webkit-transform 400ms ease-out;
    transition: -webkit-transform 400ms ease-out;
    -o-transition: transform 400ms ease-out;
    transition: transform 400ms ease-out;
    transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
    will-change: transform;
}

.img-flex-contain,
.img-flex-cover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.img-flex-contain img,
.img-flex-cover img {
    display: block;
    width: 100%;
    height: 100%;
}

.img-flex-cover img {
    -o-object-fit: cover;
    object-fit: cover;
}

.img-flex-contain img {
    -o-object-fit: contain;
    object-fit: contain;
}

.bg-image,
.bg-wave,
.bg-rectangle {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-wave,
.bg-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg-image-footer {
    background-size: auto;
    background-position: bottom;
}

.bg-wave-footer {
    top: -299px;
    height: 300px;
}

@media (max-width: 770px) {
    .get-started__content {
        margin-bottom: -60px;
    }
}

.bg-wave-footer-bottom {
    top: auto;
    bottom: -199px;
    height: 200px;
}

.img--bobor {
    z-index: 3;
    position: relative;
    margin-top: -320px !important;
    pointer-events: none;
}

@media (min-width: 771px) {
    .img--bobor {
        margin-top: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60vw;
        height: 750px;
        -o-object-fit: contain;
        object-fit: contain;
        -o-object-position: bottom;
        object-position: bottom;
    }
}

@media (min-width: 992px) {
    .img--bobor {
        height: 750px;
    }
}

@media (min-width: 1200px) {
    .img--bobor {
        height: 795px;
    }
}

.img--hand {
    position: absolute;
    top: 38%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 180px;
}

@media (min-width: 771px) {
    .img--hand {
        top: 40%;
        width: 400px;
    }
}

@media (max-width: 770px) {
    .img--bobor-hero {
        margin: 0 auto;
        max-width: 200px;
    }
}

@media (max-width: 991px) {
    .img--bobor-rocket {
        width: 315px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .img--bobor-rocket {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@media (min-width: 1440px) {
    .img--bobor-rocket {
        -webkit-transform: translate(-50%, -60%);
        -ms-transform: translate(-50%, -60%);
        transform: translate(-50%, -60%);
        max-width: none;
        width: 771px;
        height: 770px;
    }
}

.bg-wave-about {
    height: auto;
    z-index: -1;
    width: 100%;
    top: 0;
    width: 140%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 771px) {
    .bg-wave-about {
        top: -170px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .bg-wave-about {
        width: 120%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 0;
    }
}

@media (min-width: 1200px) {
    .bg-wave-about {
        width: 120%;
    }
}

@media (min-width: 1440px) {
    .bg-wave-about {
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        top: -170px;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .img-bobor-invoice-content {
        position: relative;
        width: 460px;
        margin: 0 auto;
    }
}

@media (max-width: 770px) {
    .img-bobor-invoice-content {
        width: 230px;
    }
}

@media (min-width: 992px) {
    .img--bobor-invoice {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-40%, -50%);
        -ms-transform: translate(-40%, -50%);
        transform: translate(-40%, -50%);
    }
}

@media (min-width: 1440px) {
    .img--bobor-invoice {
        -webkit-transform: translate(-40%, -55%);
        -ms-transform: translate(-40%, -55%);
        transform: translate(-40%, -55%);
        max-width: none;
        width: 570px;
        height: 545px;
    }
}

@media (min-width: 992px) {
    .bg-wave-invoice-bottom {
        top: auto;
        bottom: -225px;
        height: 226px;
    }
}

@media (max-width: 991px) {
    .bg-wave-invoice-bottom {
        top: auto;
        bottom: -54px;
        height: 55px;
    }
}

@media (min-width: 992px) {
    .bg-wave-invoice-top {
        top: auto;
        top: -235px;
        height: 240px;
    }
}

@media (max-width: 991px) {
    .bg-wave-invoice-top {
        top: auto;
        top: -54px;
        height: 55px;
    }
}

@media (min-width: 992px) {
    .bg-wave-invoice-top-ext {
        top: -205px;
        height: 208px;
    }
}

.bg-screen-logo {
    position: absolute;
    top: 42%;
    right: 40%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 713px;
    height: 357px;
    z-index: -3;
}

@media (min-width: 576px) {
    .bg-screen-logo {
        right: 45%;
    }
}

@media (min-width: 771px) {
    .bg-screen-logo {
        position: absolute;
        top: 42%;
        right: 60%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 1869px;
        height: 837px;
    }
}

.bg-screen-logo--right {
    left: 40%;
}

@media (min-width: 576px) {
    .bg-screen-logo--right {
        left: 45%;
    }
}

@media (min-width: 771px) {
    .bg-screen-logo--right {
        left: 65%;
        top: 40%;
    }
}

.bg-rectangle-about {
    position: absolute;
    top: 130px;
    background-color: #ff7846;
    height: 120px;
}

.section-v2 .bg-rectangle-about {
    background-color: #0029F2;
}

.section-v2 p, .section-v2 h2 {
    color: #fff;
}

.section-v2 .bg-rectangle-about {
    height: 700px;
}

@media (min-width: 771px) {
    .bg-rectangle-about {
        top: -50px;
        height: 200px;
    }
}

@media (min-width: 992px) {
    .bg-rectangle-about {
        height: 270px;
        top: 150px;
    }
}

@media (min-width: 992px) {
    .bg-wave-about-bottom {
        top: auto;
        bottom: -355px;
        height: 360px;
    }
}

@media (max-width: 991px) {
    .bg-wave-about-bottom {
        top: auto;
        bottom: -85px;
        height: 87px;
    }
}


@media (min-width: 992px) {
    .bg-wave-about-top {
        top: auto;
        top: -305px;
        height: 307px;
    }
}

@media (max-width: 991px) {
    .bg-wave-about-top {
        top: auto;
        top: -115px;
        height: 122px;
    }
}
@media (min-width: 1440px) {
    .bg-wave-about-bottom {
        top: auto;
        bottom: -655px;
        height: 660px;
    }

    .bg-wave-about-top {
        top: auto;
        top: -605px;
        height: 707px;
    }
}
@media (min-width: 1440px) {
    .bg-wave-about-bottom {
        top: auto;
        bottom: -455px;
        height: 460px;
    }

    .bg-wave-about-top {
        top: auto;
        top: -405px;
        height: 407px;
    }
}

@media (min-width: 1840px) {
    .bg-wave-about-bottom {
        top: auto;
        bottom: -655px;
        height: 660px;
    }

    .bg-wave-about-top {
        top: auto;
        top: -505px;
        height: 507px;
    }
}
.bg-about-dots {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    height: auto;
}

@media (min-width: 576px) {
    .bg-about-dots {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
}

@media (min-width: 771px) {
    .bg-about-dots {
        width: 80%;
    }
}

/* Aspect ratio */
[class*='aspect-ratio-'] {
    display: block;
    position: relative;
}

[class*='aspect-ratio-'] > img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.aspect-ratio-16-9 {
    padding-top: 56.25%;
}

.aspect-ratio-3-2 {
    padding-top: 66.66%;
}

.aspect-ratio-4-3 {
    padding-top: 75%;
}

.aspect-ratio-8-5 {
    padding-top: 62.5%;
}

.aspect-ratio-1-1 {
    padding-top: 100%;
}

/* Margin helpers */
.margin-0 {
    margin: 0 !important;
}

@media (min-width: 576px) {
    .margin-xs-0 {
        margin: 0 !important;
    }
}

@media (min-width: 771px) {
    .margin-sm-0 {
        margin: 0 !important;
    }
}

@media (min-width: 992px) {
    .margin-md-0 {
        margin: 0 !important;
    }
}

@media (min-width: 1200px) {
    .margin-lg-0 {
        margin: 0 !important;
    }
}

@media (min-width: 1440px) {
    .margin-xl-0 {
        margin: 0 !important;
    }
}

.margin-bottom-01 {
    margin-bottom: 0.1rem;
}

.margin-bottom-02 {
    margin-bottom: 0.2rem;
}

.margin-bottom-03 {
    margin-bottom: 0.3rem;
}

.margin-bottom-04 {
    margin-bottom: 0.4rem;
}

.margin-bottom-05 {
    margin-bottom: 0.5rem;
}

.margin-bottom-06 {
    margin-bottom: 0.6rem;
}

.margin-bottom-07 {
    margin-bottom: 0.7rem;
}

.margin-bottom-08 {
    margin-bottom: 0.8rem;
}

.margin-bottom-09 {
    margin-bottom: 0.9rem;
}

.margin-bottom-1 {
    margin-bottom: 1rem;
}

.margin-bottom-1-2 {
    margin-bottom: 1.2rem;
}

.margin-bottom-1-5 {
    margin-bottom: 1.5rem;
}

.margin-bottom-2 {
    margin-bottom: 2rem;
}

.margin-bottom-2-5 {
    margin-bottom: 2.5rem;
}

.margin-bottom-3 {
    margin-bottom: 3rem;
}

.margin-bottom-3-5 {
    margin-bottom: 3.5rem;
}

.margin-bottom-4 {
    margin-bottom: 4rem;
}

.margin-bottom-5 {
    margin-bottom: 5rem;
}

.margin-bottom-6 {
    margin-bottom: 6rem;
}

.margin-bottom-7 {
    margin-bottom: 7rem;
}

.margin-bottom-8 {
    margin-bottom: 8rem;
}

.margin-bottom-9 {
    margin-bottom: 9rem;
}

.margin-bottom-10 {
    margin-bottom: 10rem;
}

@media (min-width: 576px) {
    .margin-bottom-xs-1 {
        margin-bottom: 1rem;
    }

    .margin-bottom-xs-2 {
        margin-bottom: 2rem;
    }

    .margin-bottom-xs-3 {
        margin-bottom: 3rem;
    }

    .margin-bottom-xs-4 {
        margin-bottom: 4rem;
    }

    .margin-bottom-xs-5 {
        margin-bottom: 5rem;
    }

    .margin-bottom-xs-6 {
        margin-bottom: 6rem;
    }
}

@media (min-width: 771px) {
    .margin-bottom-sm-1 {
        margin-bottom: 1rem;
    }

    .margin-bottom-sm-2 {
        margin-bottom: 2rem;
    }

    .margin-bottom-sm-2-5 {
        margin-bottom: 2.5rem;
    }

    .margin-bottom-sm-3 {
        margin-bottom: 3rem;
    }

    .margin-bottom-sm-4 {
        margin-bottom: 4rem;
    }

    .margin-bottom-sm-5 {
        margin-bottom: 5rem;
    }

    .margin-bottom-sm-6 {
        margin-bottom: 6rem;
    }
}

@media (min-width: 992px) {
    .margin-bottom-md-1 {
        margin-bottom: 1rem;
    }

    .margin-bottom-md-2 {
        margin-bottom: 2rem;
    }

    .margin-bottom-md-3 {
        margin-bottom: 3rem;
    }

    .margin-bottom-md-4 {
        margin-bottom: 4rem;
    }

    .margin-bottom-md-5 {
        margin-bottom: 5rem;
    }

    .margin-bottom-md-6 {
        margin-bottom: 6rem;
    }

    .margin-bottom-md-12 {
        margin-bottom: 12rem;
    }
}

@media (min-width: 1200px) {
    .margin-bottom-lg-1 {
        margin-bottom: 1rem;
    }

    .margin-bottom-lg-2 {
        margin-bottom: 2rem;
    }

    .margin-bottom-lg-3 {
        margin-bottom: 3rem;
    }

    .margin-bottom-lg-4 {
        margin-bottom: 4rem;
    }

    .margin-bottom-lg-5 {
        margin-bottom: 5rem;
    }

    .margin-bottom-lg-6 {
        margin-bottom: 6rem;
    }
}

@media (min-width: 1440px) {
    .margin-bottom-xl-1 {
        margin-bottom: 1rem;
    }

    .margin-bottom-xl-2 {
        margin-bottom: 2rem;
    }

    .margin-bottom-xl-3 {
        margin-bottom: 3rem;
    }

    .margin-bottom-xl-4 {
        margin-bottom: 4rem;
    }

    .margin-bottom-xl-5 {
        margin-bottom: 5rem;
    }

    .margin-bottom-xl-6 {
        margin-bottom: 6rem;
    }
}

.margin-top-01 {
    margin-top: 0.1rem;
}

.margin-top-02 {
    margin-top: 0.2rem;
}

.margin-top-03 {
    margin-top: 0.3rem;
}

.margin-top-04 {
    margin-top: 0.4rem;
}

.margin-top-05 {
    margin-top: 0.5rem;
}

.margin-top-06 {
    margin-top: 0.6rem;
}

.margin-top-07 {
    margin-top: 0.7rem;
}

.margin-top-08 {
    margin-top: 0.8rem;
}

.margin-top-09 {
    margin-top: 0.9rem;
}

.margin-top-1 {
    margin-top: 1rem;
}

.margin-top-1-5 {
    margin-top: 1.5rem;
}

.margin-top-2 {
    margin-top: 2rem;
}

.margin-top-2-5 {
    margin-top: 2.5rem;
}

.margin-top-3 {
    margin-top: 3rem;
}

.margin-top-3-5 {
    margin-top: 3.5rem;
}

.margin-top-4 {
    margin-top: 4rem;
}

.margin-top-5 {
    margin-top: 5rem;
}

.margin-top-6 {
    margin-top: 6rem;
}

.margin-top-7 {
    margin-top: 7rem;
}

.margin-top-8 {
    margin-top: 8rem;
}

.margin-top-9 {
    margin-top: 9rem;
}

.margin-top-10 {
    margin-top: 10rem;
}

@media (max-width: 770px) {
    .margin-top-xs-1 {
        margin-top: 1rem;
    }

    .margin-top-xs-2 {
        margin-top: 2rem;
    }

    .margin-top-xs-3 {
        margin-top: 3rem;
    }

    .margin-top-xs-4 {
        margin-top: 4rem;
    }

    .margin-top-xs-5 {
        margin-top: 5rem;
    }

    .margin-top-xs-6 {
        margin-top: 6rem;
    }
}

@media (min-width: 771px) {
    .margin-top-sm-1 {
        margin-top: 1rem;
    }

    .margin-top-sm-2 {
        margin-top: 2rem;
    }

    .margin-top-sm-2-5 {
        margin-top: 2.5rem;
    }

    .margin-top-sm-3 {
        margin-top: 3rem;
    }

    .margin-top-sm-4 {
        margin-top: 4rem;
    }

    .margin-top-sm-5 {
        margin-top: 5rem;
    }

    .margin-top-sm-6 {
        margin-top: 6rem;
    }
}

@media (min-width: 992px) {
    .margin-top-md-1 {
        margin-top: 1rem;
    }

    .margin-top-md-2 {
        margin-top: 2rem;
    }

    .margin-top-md-3 {
        margin-top: 3rem;
    }

    .margin-top-md-4 {
        margin-top: 4rem;
    }

    .margin-top-md-5 {
        margin-top: 5rem;
    }

    .margin-top-md-6 {
        margin-top: 6rem;
    }
}

@media (min-width: 1200px) {
    .margin-top-lg-1 {
        margin-top: 1rem;
    }

    .margin-top-lg-2 {
        margin-top: 2rem;
    }

    .margin-top-lg-3 {
        margin-top: 3rem;
    }

    .margin-top-lg-4 {
        margin-top: 4rem;
    }

    .margin-top-lg-5 {
        margin-top: 5rem;
    }

    .margin-top-lg-6 {
        margin-top: 6rem;
    }
}

@media (min-width: 1440px) {
    .margin-top-xl-1 {
        margin-top: 1rem;
    }

    .margin-top-xl-2 {
        margin-top: 2rem;
    }

    .margin-top-xl-3 {
        margin-top: 3rem;
    }

    .margin-top-xl-4 {
        margin-top: 4rem;
    }

    .margin-top-xl-5 {
        margin-top: 5rem;
    }

    .margin-top-xl-6 {
        margin-top: 6rem;
    }
}

.margin-left-01 {
    margin-left: 0.1rem;
}

.margin-left-02 {
    margin-left: 0.2rem;
}

.margin-left-03 {
    margin-left: 0.3rem;
}

.margin-left-04 {
    margin-left: 0.4rem;
}

.margin-left-05 {
    margin-left: 0.5rem;
}

.margin-left-08 {
    margin-left: 0.8rem;
}

.margin-left-1 {
    margin-left: 1rem;
}

.margin-left-1-5 {
    margin-left: 1.5rem;
}

.margin-left-2 {
    margin-left: 2rem;
}

.margin-left-3 {
    margin-left: 3rem;
}

.margin-left-4 {
    margin-left: 4rem;
}

.margin-left-5 {
    margin-left: 5rem;
}

.margin-left-6 {
    margin-left: 6rem;
}

.margin-left-7 {
    margin-left: 7rem;
}

.margin-left-8 {
    margin-left: 8rem;
}

.margin-left-9 {
    margin-left: 9rem;
}

.margin-left-10 {
    margin-left: 10rem;
}

@media (min-width: 576px) {
    .margin-left-xs-1 {
        margin-left: 1rem;
    }

    .margin-left-xs-2 {
        margin-left: 2rem;
    }

    .margin-left-xs-3 {
        margin-left: 3rem;
    }

    .margin-left-xs-4 {
        margin-left: 4rem;
    }

    .margin-left-xs-5 {
        margin-left: 5rem;
    }

    .margin-left-xs-6 {
        margin-left: 6rem;
    }
}

@media (min-width: 771px) {
    .margin-left-sm-1 {
        margin-left: 1rem;
    }

    .margin-left-sm-2 {
        margin-left: 2rem;
    }

    .margin-left-sm-3 {
        margin-left: 3rem;
    }

    .margin-left-sm-4 {
        margin-left: 4rem;
    }

    .margin-left-sm-5 {
        margin-left: 5rem;
    }

    .margin-left-sm-6 {
        margin-left: 6rem;
    }
}

@media (min-width: 992px) {
    .margin-left-md-1 {
        margin-left: 1rem;
    }

    .margin-left-md-2 {
        margin-left: 2rem;
    }

    .margin-left-md-3 {
        margin-left: 3rem;
    }

    .margin-left-md-4 {
        margin-left: 4rem;
    }

    .margin-left-md-5 {
        margin-left: 5rem;
    }

    .margin-left-md-6 {
        margin-left: 6rem;
    }
}

@media (min-width: 1200px) {
    .margin-left-lg-1 {
        margin-left: 1rem;
    }

    .margin-left-lg-2 {
        margin-left: 2rem;
    }

    .margin-left-lg-3 {
        margin-left: 3rem;
    }

    .margin-left-lg-4 {
        margin-left: 4rem;
    }

    .margin-left-lg-5 {
        margin-left: 5rem;
    }

    .margin-left-lg-6 {
        margin-left: 6rem;
    }
}

@media (min-width: 1440px) {
    .margin-left-xl-1 {
        margin-left: 1rem;
    }

    .margin-left-xl-2 {
        margin-left: 2rem;
    }

    .margin-left-xl-3 {
        margin-left: 3rem;
    }

    .margin-left-xl-4 {
        margin-left: 4rem;
    }

    .margin-left-xl-5 {
        margin-left: 5rem;
    }

    .margin-left-xl-6 {
        margin-left: 6rem;
    }
}

.margin-right-01 {
    margin-right: 0.1rem;
}

.margin-right-02 {
    margin-right: 0.2rem;
}

.margin-right-03 {
    margin-right: 0.3rem;
}

.margin-right-04 {
    margin-right: 0.4rem;
}

.margin-right-05 {
    margin-right: 0.5rem;
}

.margin-right-08 {
    margin-right: 0.8rem;
}

.margin-right-1 {
    margin-right: 1rem;
}

.margin-right-1-5 {
    margin-right: 1.5rem;
}

.margin-right-2 {
    margin-right: 2rem;
}

.margin-right-3 {
    margin-right: 3rem;
}

.margin-right-4 {
    margin-right: 4rem;
}

.margin-right-5 {
    margin-right: 5rem;
}

.margin-right-6 {
    margin-right: 6rem;
}

.margin-right-7 {
    margin-right: 7rem;
}

.margin-right-8 {
    margin-right: 8rem;
}

.margin-right-9 {
    margin-right: 9rem;
}

.margin-right-10 {
    margin-right: 10rem;
}

@media (min-width: 576px) {
    .margin-right-xs-1 {
        margin-right: 1rem;
    }

    .margin-right-xs-2 {
        margin-right: 2rem;
    }

    .margin-right-xs-3 {
        margin-right: 3rem;
    }

    .margin-right-xs-4 {
        margin-right: 4rem;
    }

    .margin-right-xs-5 {
        margin-right: 5rem;
    }

    .margin-right-xs-6 {
        margin-right: 6rem;
    }
}

@media (min-width: 771px) {
    .margin-right-sm-1 {
        margin-right: 1rem;
    }

    .margin-right-sm-2 {
        margin-right: 2rem;
    }

    .margin-right-sm-3 {
        margin-right: 3rem;
    }

    .margin-right-sm-4 {
        margin-right: 4rem;
    }

    .margin-right-sm-5 {
        margin-right: 5rem;
    }

    .margin-right-sm-6 {
        margin-right: 6rem;
    }
}

@media (min-width: 992px) {
    .margin-right-md-1 {
        margin-right: 1rem;
    }

    .margin-right-md-2 {
        margin-right: 2rem;
    }

    .margin-right-md-3 {
        margin-right: 3rem;
    }

    .margin-right-md-4 {
        margin-right: 4rem;
    }

    .margin-right-md-5 {
        margin-right: 5rem;
    }

    .margin-right-md-6 {
        margin-right: 6rem;
    }
}

@media (min-width: 1200px) {
    .margin-right-lg-1 {
        margin-right: 1rem;
    }

    .margin-right-lg-2 {
        margin-right: 2rem;
    }

    .margin-right-lg-3 {
        margin-right: 3rem;
    }

    .margin-right-lg-4 {
        margin-right: 4rem;
    }

    .margin-right-lg-5 {
        margin-right: 5rem;
    }

    .margin-right-lg-6 {
        margin-right: 6rem;
    }
}

@media (min-width: 1440px) {
    .margin-right-xl-1 {
        margin-right: 1rem;
    }

    .margin-right-xl-2 {
        margin-right: 2rem;
    }

    .margin-right-xl-3 {
        margin-right: 3rem;
    }

    .margin-right-xl-4 {
        margin-right: 4rem;
    }

    .margin-right-xl-5 {
        margin-right: 5rem;
    }

    .margin-right-xl-6 {
        margin-right: 6rem;
    }
}

.margin-center {
    margin: 0 auto;
}

.margin-left-auto {
    margin-left: auto;
}

.margin-right-auto {
    margin-right: auto;
}

@media (min-width: 576px) {
    .margin-xs-center {
        margin: 0 auto;
    }

    .margin-xs-left-auto {
        margin-left: auto;
    }

    .margin-xs-right-auto {
        margin-right: auto;
    }
}

@media (min-width: 771px) {
    .margin-sm-center {
        margin: 0 auto;
    }

    .margin-sm-left-auto {
        margin-left: auto;
    }

    .margin-sm-right-auto {
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .margin-md-center {
        margin: 0 auto;
    }

    .margin-md-left-auto {
        margin-left: auto;
    }

    .margin-md-right-auto {
        margin-right: auto;
    }
}

@media (min-width: 1200px) {
    .margin-lg-center {
        margin: 0 auto;
    }

    .margin-lg-left-auto {
        margin-left: auto;
    }

    .margin-lg-right-auto {
        margin-right: auto;
    }
}

.margin-top-0 {
    margin-top: 0 !important;
}

@media (min-width: 576px) {
    .margin-top-xs-0 {
        margin-top: 0 !important;
    }
}

@media (min-width: 771px) {
    .margin-top-sm-0 {
        margin-top: 0 !important;
    }
}

@media (min-width: 992px) {
    .margin-top-md-0 {
        margin-top: 0 !important;
    }
}

@media (min-width: 1200px) {
    .margin-top-lg-0 {
        margin-top: 0 !important;
    }
}

@media (max-width: 1199px) {
    .margin-bp-top-lg-0 {
        margin-top: 0 !important;
    }
}

@media (max-width: 991px) {
    .margin-bp-top-md-0 {
        margin-top: 0 !important;
    }
}

@media (max-width: 770px) {
    .margin-bp-top-sm-0 {
        margin-top: 0 !important;
    }
}

@media (max-width: 575px) {
    .margin-bp-top-xs-0 {
        margin-top: 0 !important;
    }
}

.margin-right-0 {
    margin-right: 0 !important;
}

@media (min-width: 576px) {
    .margin-right-xs-0 {
        margin-right: 0 !important;
    }
}

@media (min-width: 771px) {
    .margin-right-sm-0 {
        margin-right: 0 !important;
    }
}

@media (min-width: 992px) {
    .margin-right-md-0 {
        margin-right: 0 !important;
    }
}

@media (min-width: 1200px) {
    .margin-right-lg-0 {
        margin-right: 0 !important;
    }
}

@media (max-width: 1199px) {
    .margin-bp-right-lg-0 {
        margin-right: 0 !important;
    }
}

@media (max-width: 991px) {
    .margin-bp-right-md-0 {
        margin-right: 0 !important;
    }
}

@media (max-width: 770px) {
    .margin-bp-right-sm-0 {
        margin-right: 0 !important;
    }
}

@media (max-width: 575px) {
    .margin-bp-right-xs-0 {
        margin-right: 0 !important;
    }
}

.margin-bottom-0 {
    margin-bottom: 0 !important;
}

@media (min-width: 576px) {
    .margin-bottom-xs-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 771px) {
    .margin-bottom-sm-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .margin-bottom-md-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 1200px) {
    .margin-bottom-lg-0 {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 1199px) {
    .margin-bp-bottom-lg-0 {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 991px) {
    .margin-bp-bottom-md-0 {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 770px) {
    .margin-bp-bottom-sm-0 {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 575px) {
    .margin-bp-bottom-xs-0 {
        margin-bottom: 0 !important;
    }
}

.margin-left-0 {
    margin-left: 0 !important;
}

@media (min-width: 576px) {
    .margin-left-xs-0 {
        margin-left: 0 !important;
    }
}

@media (min-width: 771px) {
    .margin-left-sm-0 {
        margin-left: 0 !important;
    }
}

@media (min-width: 992px) {
    .margin-left-md-0 {
        margin-left: 0 !important;
    }
}

@media (min-width: 1200px) {
    .margin-left-lg-0 {
        margin-left: 0 !important;
    }
}

@media (max-width: 1199px) {
    .margin-bp-left-lg-0 {
        margin-left: 0 !important;
    }
}

@media (max-width: 991px) {
    .margin-bp-left-md-0 {
        margin-left: 0 !important;
    }
}

@media (max-width: 770px) {
    .margin-bp-left-sm-0 {
        margin-left: 0 !important;
    }
}

@media (max-width: 575px) {
    .margin-bp-left-xs-0 {
        margin-left: 0 !important;
    }
}

/* Padding block */
.padding-0 {
    padding: 0 !important;
}

@media (min-width: 576px) {
    .padding-xs-0 {
        padding: 0 !important;
    }
}

@media (min-width: 771px) {
    .padding-sm-0 {
        padding: 0 !important;
    }
}

@media (min-width: 992px) {
    .padding-md-0 {
        padding: 0 !important;
    }
}

@media (min-width: 1200px) {
    .padding-lg-0 {
        padding: 0 !important;
    }
}

@media (min-width: 1440px) {
    .padding-xl-0 {
        padding: 0 !important;
    }
}

.padding-top-0 {
    padding-top: 0 !important;
}

.padding-top-xs-0 {
    padding-top: 0 !important;
}

@media (min-width: 771px) {
    .padding-top-sm-0 {
        padding-top: 0 !important;
    }
}

@media (min-width: 992px) {
    .padding-top-md-0 {
        padding-top: 0 !important;
    }
}

@media (min-width: 1200px) {
    .padding-top-lg-0 {
        padding-top: 0 !important;
    }
}

@media (max-width: 1199px) {
    .padding-bp-top-lg-0 {
        padding-top: 0 !important;
    }
}

@media (max-width: 991px) {
    .padding-bp-top-md-0 {
        padding-top: 0 !important;
    }
}

@media (max-width: 770px) {
    .padding-bp-top-sm-0 {
        padding-top: 0 !important;
    }
}

@media (max-width: 575px) {
    .padding-bp-top-xs-0 {
        padding-top: 0 !important;
    }
}

.padding-right-0 {
    padding-right: 0 !important;
}

.padding-right-xs-0 {
    padding-right: 0 !important;
}

@media (min-width: 771px) {
    .padding-right-sm-0 {
        padding-right: 0 !important;
    }
}

@media (min-width: 992px) {
    .padding-right-md-0 {
        padding-right: 0 !important;
    }
}

@media (min-width: 1200px) {
    .padding-right-lg-0 {
        padding-right: 0 !important;
    }
}

@media (max-width: 1199px) {
    .padding-bp-right-lg-0 {
        padding-right: 0 !important;
    }
}

@media (max-width: 991px) {
    .padding-bp-right-md-0 {
        padding-right: 0 !important;
    }
}

@media (max-width: 770px) {
    .padding-bp-right-sm-0 {
        padding-right: 0 !important;
    }
}

@media (max-width: 575px) {
    .padding-bp-right-xs-0 {
        padding-right: 0 !important;
    }
}

.padding-bottom-0 {
    padding-bottom: 0 !important;
}

.padding-bottom-xs-0 {
    padding-bottom: 0 !important;
}

@media (min-width: 771px) {
    .padding-bottom-sm-0 {
        padding-bottom: 0 !important;
    }
}

@media (min-width: 992px) {
    .padding-bottom-md-0 {
        padding-bottom: 0 !important;
    }
}

@media (min-width: 1200px) {
    .padding-bottom-lg-0 {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 1199px) {
    .padding-bp-bottom-lg-0 {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 991px) {
    .padding-bp-bottom-md-0 {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 770px) {
    .padding-bp-bottom-sm-0 {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 575px) {
    .padding-bp-bottom-xs-0 {
        padding-bottom: 0 !important;
    }
}

.padding-left-0 {
    padding-left: 0 !important;
}

.padding-left-xs-0 {
    padding-left: 0 !important;
}

@media (min-width: 771px) {
    .padding-left-sm-0 {
        padding-left: 0 !important;
    }
}

@media (min-width: 992px) {
    .padding-left-md-0 {
        padding-left: 0 !important;
    }
}

@media (min-width: 1200px) {
    .padding-left-lg-0 {
        padding-left: 0 !important;
    }
}

@media (max-width: 1199px) {
    .padding-bp-left-lg-0 {
        padding-left: 0 !important;
    }
}

@media (max-width: 991px) {
    .padding-bp-left-md-0 {
        padding-left: 0 !important;
    }
}

@media (max-width: 770px) {
    .padding-bp-left-sm-0 {
        padding-left: 0 !important;
    }
}

@media (max-width: 575px) {
    .padding-bp-left-xs-0 {
        padding-left: 0 !important;
    }
}

/* Position helpers */
.pos-r {
    position: relative;
}

.pos-f {
    position: fixed;
}

.pos-s {
    position: static;
}

.pos-sticky {
    position: -webkit-sticky;
    position: sticky;
}

.pos-a {
    position: absolute;
}

.pos-auto {
    position: inherit;
}

/* Size helpers */
.w-100 {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}

.h-vh-100 {
    height: 100vh;
}

.h-100 {
    height: 100%;
}

.h-50 {
    height: 50%;
}

.h-25 {
    height: 25%;
}

.h-16 {
    height: 16px;
}

.h-18 {
    height: 18px;
}

.h-20 {
    height: 20px;
}

.h-26 {
    height: 26px;
}

.h-30 {
    height: 30px;
}

/* Text helpers */
.txt-r {
    text-align: right;
}

.txt-c {
    text-align: center;
}

.txt-l {
    text-align: left;
}

@media (min-width: 576px) {
    .txt-xs-c {
        text-align: center;
    }

    .txt-xs-l {
        text-align: left;
    }

    .txt-xs-r {
        text-align: right;
    }
}

@media (min-width: 771px) {
    .txt-sm-l {
        text-align: left;
    }

    .txt-sm-r {
        text-align: right;
    }

    .txt-sm-c {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .txt-md-l {
        text-align: left;
    }

    .txt-md-r {
        text-align: right;
    }

    .txt-md-c {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .txt-lg-r {
        text-align: right;
    }

    .txt-lg-l {
        text-align: left;
    }

    .txt-lg-c {
        text-align: center;
    }
}

.txt-upper {
    text-transform: uppercase;
}

.txt-lower {
    text-transform: lowercase;
}

.txt-italic {
    font-style: italic;
}

.txt-300 {
    font-weight: 300;
}

.txt-400 {
    font-weight: 400;
}

.txt-700 {
    font-weight: 700;
}

.txt-line {
    text-decoration: line-through;
}

.txt-underline {
    text-decoration: underline;
}

/* Z-index helpers */
.z-index--1 {
    z-index: -1;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.z-index-3 {
    z-index: 3;
}

.z-index-4 {
    z-index: 4;
}

.z-index-5 {
    z-index: 5;
}

.z-index-6 {
    z-index: 6;
}

.z-index-7 {
    z-index: 7;
}

.z-index-8 {
    z-index: 8;
}

.z-index-9 {
    z-index: 9;
}

.z-index-10 {
    z-index: 10;
}

.z-index-100 {
    z-index: 100;
}

.z-index-1000 {
    z-index: 1000;
}

.z-index-10000 {
    z-index: 10000;
}

.z-index-100000 {
    z-index: 100000;
}

/* Opacity helpers */
.opacity-0 {
    opacity: 0;
}

.opacity-01 {
    opacity: 0.1;
}

.opacity-02 {
    opacity: 0.2;
}

.opacity-03 {
    opacity: 0.3;
}

.opacity-04 {
    opacity: 0.4;
}

.opacity-05 {
    opacity: 0.5;
}

.opacity-06 {
    opacity: 0.6;
}

.opacity-07 {
    opacity: 0.7;
}

.opacity-08 {
    opacity: 0.8;
}

.opacity-09 {
    opacity: 0.9;
}

.opacity-1 {
    opacity: 1;
}

/* Dots helpers */
.clip-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.clip-text--2 {
    -webkit-line-clamp: 2;
}

.clip-text--3 {
    -webkit-line-clamp: 3;
}

.clip-text--4 {
    -webkit-line-clamp: 4;
}

.dots {
    overflow: hidden;
}

/* IE fallback */
.no-object-fit .img-flex-cover img {
    height: auto;
    width: auto;
    vertical-align: middle;
    margin: 0 auto;
}

.no-object-fit .img-flex-contain {
    display: block;
    height: auto;
}

.no-object-fit .img-flex-contain img {
    height: 100%;
    width: auto;
    vertical-align: middle;
    margin: 0 auto;
}

/* Base settings */
*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    -webkit-transition: color 0.15s, background 0.15s, border 0.15s, opacity 0.15s;
    -o-transition: color 0.15s, background 0.15s, border 0.15s, opacity 0.15s;
    transition: color 0.15s, background 0.15s, border 0.15s, opacity 0.15s;
}

*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
}

::-moz-selection {
    color: #fff;
    background-color: #002bf2;
}

::selection {
    color: #fff;
    background-color: #002bf2;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    border-radius: 0;
    background: #f7f7f7;
}

::-webkit-scrollbar-thumb {
    border-radius: 0;
    background: #002bf2;
}

::-webkit-scrollbar-thumb:hover {
    background: #0026d9;
}

@-ms-viewport {
    width: device-width;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 100%;
    margin-top: 0 !important;
}

@media (max-width: 770px) {
    html {
        position: relative;
        height: 100%;
    }
}

body {
    position: relative;
    margin: 0;
    color: #000;
    background-color: #ffffff;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    min-width: 310px;
}

em,
i,
.italic {
    font-style: italic;
}

strong,
.strong {
    font-weight: 700;
}

small,
.small {
    font-size: 12px;
    font-size: 0.75rem;
}

h1,
.alfa,
h2,
.beta,
h3,
.gamma,
h4,
.delta,
h5,
.epsilon,
h6,
.zeta {
    margin: 0;
    margin-bottom: 1.5rem;
    color: #002bf2;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    -webkit-transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
    -o-transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
    transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
}

h1 a,
.alfa a,
h2 a,
.beta a,
h3 a,
.gamma a,
h4 a,
.delta a,
h5 a,
.epsilon a,
h6 a,
.zeta a {
    color: inherit;
}

h1,
.alfa {
    font-size: 34px;
    font-size: 2.125rem;
}

@media (min-width: 576px) {
    h1,
    .alfa {
        font-size: 42px;
        font-size: 2.625rem;
    }
}

@media (min-width: 771px) {
    h1,
    .alfa {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

@media (min-width: 992px) {
    h1,
    .alfa {
        font-size: 60px;
        font-size: 3.75rem;
    }
}

@media (min-width: 1200px) {
    h1,
    .alfa {
        font-size: 70px;
        font-size: 4.375rem;
    }
}

@media (min-width: 992px) and (max-height: 800px) {
    h1,
    .alfa {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

.alfa-big {
    font-size: 110px;
    font-size: 6.875rem;
}

@media (min-width: 771px) {
    .alfa-big {
        font-size: 250px;
        font-size: 15.625rem;
    }
}

@media (min-width: 1200px) {
    .alfa-big {
        font-size: 250px;
        font-size: 15.625rem;
    }
}

@media (min-width: 992px) and (max-height: 800px) {
    .alfa-big {
        font-size: 200px;
        font-size: 12.5rem;
    }
}

h2,
.beta {
    font-size: 28px;
    font-size: 1.75rem;
}

@media (min-width: 576px) {
    h2,
    .beta {
        font-size: 36px;
        font-size: 2.25rem;
    }
}

@media (min-width: 771px) {
    h2,
    .beta {
        font-size: 42px;
        font-size: 2.625rem;
    }
}

@media (min-width: 992px) {
    h2,
    .beta {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

@media (min-width: 992px) and (max-height: 800px) {
    h2,
    .beta {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

h3,
.gamma {
    font-size: 22px;
    font-size: 1.375rem;
}

@media (min-width: 576px) {
    h3,
    .gamma {
        font-size: 28px;
        font-size: 1.75rem;
    }
}

@media (min-width: 771px) {
    h3,
    .gamma {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

h4,
.delta {
    font-size: 18px;
    font-size: 1.125rem;
}

@media (min-width: 576px) {
    h4,
    .delta {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

@media (min-width: 771px) {
    h4,
    .delta {
        font-size: 24px;
        font-size: 1.5rem;
    }
}

h5,
.epsilon {
    font-size: 24px;
    font-size: 1.5rem;
}

@media (min-width: 576px) {
    h5,
    .epsilon {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

@media (min-width: 771px) {
    h5,
    .epsilon {
        font-size: 28px;
        font-size: 1.75rem;
    }
}

h6,
.zeta {
    font-size: 22px;
    font-size: 1.375rem;
}

@media (min-width: 576px) {
    h6,
    .zeta {
        font-size: 24px;
        font-size: 1.5rem;
    }
}

@media (min-width: 771px) {
    h6,
    .zeta {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

.h--font-light h1,
.h--font-light .alfa,
.h--font-light h2,
.h--font-light .beta,
.h--font-light h3,
.h--font-light .gamma,
.h--font-light h4,
.h--font-light .delta,
.h--font-light h5,
.h--font-light .epsilon,
.h--font-light h6,
.h--font-light .zeta {
    font-weight: 300;
}

.h--font-regular h1,
.h--font-regular .alfa,
.h--font-regular h2,
.h--font-regular .beta,
.h--font-regular h3,
.h--font-regular .gamma,
.h--font-regular h4,
.h--font-regular .delta,
.h--font-regular h5,
.h--font-regular .epsilon,
.h--font-regular h6,
.h--font-regular .zeta {
    font-weight: 400;
}

.h--font-semibold h1,
.h--font-semibold .alfa,
.h--font-semibold h2,
.h--font-semibold .beta,
.h--font-semibold h3,
.h--font-semibold .gamma,
.h--font-semibold h4,
.h--font-semibold .delta,
.h--font-semibold h5,
.h--font-semibold .epsilon,
.h--font-semibold h6,
.h--font-semibold .zeta {
    font-weight: 600;
}

.h--font-bold h1,
.h--font-bold .alfa,
.h--font-bold h2,
.h--font-bold .beta,
.h--font-bold h3,
.h--font-bold .gamma,
.h--font-bold h4,
.h--font-bold .delta,
.h--font-bold h5,
.h--font-bold .epsilon,
.h--font-bold h6,
.h--font-bold .zeta {
    font-weight: 700;
}

.h--font-black h1,
.h--font-black .alfa,
.h--font-black h2,
.h--font-black .beta,
.h--font-black h3,
.h--font-black .gamma,
.h--font-black h4,
.h--font-black .delta,
.h--font-black h5,
.h--font-black .epsilon,
.h--font-black h6,
.h--font-black .zeta {
    font-weight: 900;
}

.h--font-primary h1,
.h--font-primary .alfa,
.h--font-primary h2,
.h--font-primary .beta,
.h--font-primary h3,
.h--font-primary .gamma,
.h--font-primary h4,
.h--font-primary .delta,
.h--font-primary h5,
.h--font-primary .epsilon,
.h--font-primary h6,
.h--font-primary .zeta {
    font-family: "Inter Regular", Arial, sans-serif;
}

.h--font-secondary h1,
.h--font-secondary .alfa,
.h--font-secondary h2,
.h--font-secondary .beta,
.h--font-secondary h3,
.h--font-secondary .gamma,
.h--font-secondary h4,
.h--font-secondary .delta,
.h--font-secondary h5,
.h--font-secondary .epsilon,
.h--font-secondary h6,
.h--font-secondary .zeta {
    font-family: "Sonda Bold", Arial, sans-serif;
    font-weight: 700;
}

.h--text-upper h1,
.h--text-upper .alfa,
.h--text-upper h2,
.h--text-upper .beta,
.h--text-upper h3,
.h--text-upper .gamma,
.h--text-upper h4,
.h--text-upper .delta,
.h--text-upper h5,
.h--text-upper .epsilon,
.h--text-upper h6,
.h--text-upper .zeta {
    text-transform: uppercase;
}

.h--line-08 h1,
.h--line-08 .alfa,
.h--line-08 h2,
.h--line-08 .beta,
.h--line-08 h3,
.h--line-08 .gamma,
.h--line-08 h4,
.h--line-08 .delta,
.h--line-08 h5,
.h--line-08 .epsilon,
.h--line-08 h6,
.h--line-08 .zeta {
    line-height: 0.8;
}

.h--line-1 h1,
.h--line-1 .alfa,
.h--line-1 h2,
.h--line-1 .beta,
.h--line-1 h3,
.h--line-1 .gamma,
.h--line-1 h4,
.h--line-1 .delta,
.h--line-1 h5,
.h--line-1 .epsilon,
.h--line-1 h6,
.h--line-1 .zeta {
    line-height: 1;
}

.h--line-1-2 h1,
.h--line-1-2 .alfa,
.h--line-1-2 h2,
.h--line-1-2 .beta,
.h--line-1-2 h3,
.h--line-1-2 .gamma,
.h--line-1-2 h4,
.h--line-1-2 .delta,
.h--line-1-2 h5,
.h--line-1-2 .epsilon,
.h--line-1-2 h6,
.h--line-1-2 .zeta {
    line-height: 1.2;
}

.h--line-1-4 h1,
.h--line-1-4 .alfa,
.h--line-1-4 h2,
.h--line-1-4 .beta,
.h--line-1-4 h3,
.h--line-1-4 .gamma,
.h--line-1-4 h4,
.h--line-1-4 .delta,
.h--line-1-4 h5,
.h--line-1-4 .epsilon,
.h--line-1-4 h6,
.h--line-1-4 .zeta {
    line-height: 1.4;
}

.h--line-1-5 h1,
.h--line-1-5 .alfa,
.h--line-1-5 h2,
.h--line-1-5 .beta,
.h--line-1-5 h3,
.h--line-1-5 .gamma,
.h--line-1-5 h4,
.h--line-1-5 .delta,
.h--line-1-5 h5,
.h--line-1-5 .epsilon,
.h--line-1-5 h6,
.h--line-1-5 .zeta {
    line-height: 1.5;
}

.h--line-1-6 h1,
.h--line-1-6 .alfa,
.h--line-1-6 h2,
.h--line-1-6 .beta,
.h--line-1-6 h3,
.h--line-1-6 .gamma,
.h--line-1-6 h4,
.h--line-1-6 .delta,
.h--line-1-6 h5,
.h--line-1-6 .epsilon,
.h--line-1-6 h6,
.h--line-1-6 .zeta {
    line-height: 1.6;
}

.h--line-1-8 h1,
.h--line-1-8 .alfa,
.h--line-1-8 h2,
.h--line-1-8 .beta,
.h--line-1-8 h3,
.h--line-1-8 .gamma,
.h--line-1-8 h4,
.h--line-1-8 .delta,
.h--line-1-8 h5,
.h--line-1-8 .epsilon,
.h--line-1-8 h6,
.h--line-1-8 .zeta {
    line-height: 1.8;
}

.h--line-2 h1,
.h--line-2 .alfa,
.h--line-2 h2,
.h--line-2 .beta,
.h--line-2 h3,
.h--line-2 .gamma,
.h--line-2 h4,
.h--line-2 .delta,
.h--line-2 h5,
.h--line-2 .epsilon,
.h--line-2 h6,
.h--line-2 .zeta {
    line-height: 2;
}

.h--line-2-2 h1,
.h--line-2-2 .alfa,
.h--line-2-2 h2,
.h--line-2-2 .beta,
.h--line-2-2 h3,
.h--line-2-2 .gamma,
.h--line-2-2 h4,
.h--line-2-2 .delta,
.h--line-2-2 h5,
.h--line-2-2 .epsilon,
.h--line-2-2 h6,
.h--line-2-2 .zeta {
    line-height: 2.2;
}

.h--line-2-5 h1,
.h--line-2-5 .alfa,
.h--line-2-5 h2,
.h--line-2-5 .beta,
.h--line-2-5 h3,
.h--line-2-5 .gamma,
.h--line-2-5 h4,
.h--line-2-5 .delta,
.h--line-2-5 h5,
.h--line-2-5 .epsilon,
.h--line-2-5 h6,
.h--line-2-5 .zeta {
    line-height: 2.5;
}

@media (min-width: 576px) {
    .h--line-xs-1 h1,
    .h--line-xs-1 .alfa,
    .h--line-xs-1 h2,
    .h--line-xs-1 .beta,
    .h--line-xs-1 h3,
    .h--line-xs-1 .gamma,
    .h--line-xs-1 h4,
    .h--line-xs-1 .delta,
    .h--line-xs-1 h5,
    .h--line-xs-1 .epsilon,
    .h--line-xs-1 h6,
    .h--line-xs-1 .zeta {
        line-height: 1;
    }

    .h--line-xs-1-2 h1,
    .h--line-xs-1-2 .alfa,
    .h--line-xs-1-2 h2,
    .h--line-xs-1-2 .beta,
    .h--line-xs-1-2 h3,
    .h--line-xs-1-2 .gamma,
    .h--line-xs-1-2 h4,
    .h--line-xs-1-2 .delta,
    .h--line-xs-1-2 h5,
    .h--line-xs-1-2 .epsilon,
    .h--line-xs-1-2 h6,
    .h--line-xs-1-2 .zeta {
        line-height: 1.2;
    }

    .h--line-xs-1-4 h1,
    .h--line-xs-1-4 .alfa,
    .h--line-xs-1-4 h2,
    .h--line-xs-1-4 .beta,
    .h--line-xs-1-4 h3,
    .h--line-xs-1-4 .gamma,
    .h--line-xs-1-4 h4,
    .h--line-xs-1-4 .delta,
    .h--line-xs-1-4 h5,
    .h--line-xs-1-4 .epsilon,
    .h--line-xs-1-4 h6,
    .h--line-xs-1-4 .zeta {
        line-height: 1.4;
    }

    .h--line-xs-1-6 h1,
    .h--line-xs-1-6 .alfa,
    .h--line-xs-1-6 h2,
    .h--line-xs-1-6 .beta,
    .h--line-xs-1-6 h3,
    .h--line-xs-1-6 .gamma,
    .h--line-xs-1-6 h4,
    .h--line-xs-1-6 .delta,
    .h--line-xs-1-6 h5,
    .h--line-xs-1-6 .epsilon,
    .h--line-xs-1-6 h6,
    .h--line-xs-1-6 .zeta {
        line-height: 1.6;
    }
}

@media (min-width: 771px) {
    .h--line-sm-1 h1,
    .h--line-sm-1 .alfa,
    .h--line-sm-1 h2,
    .h--line-sm-1 .beta,
    .h--line-sm-1 h3,
    .h--line-sm-1 .gamma,
    .h--line-sm-1 h4,
    .h--line-sm-1 .delta,
    .h--line-sm-1 h5,
    .h--line-sm-1 .epsilon,
    .h--line-sm-1 h6,
    .h--line-sm-1 .zeta {
        line-height: 1;
    }

    .h--line-sm-1-2 h1,
    .h--line-sm-1-2 .alfa,
    .h--line-sm-1-2 h2,
    .h--line-sm-1-2 .beta,
    .h--line-sm-1-2 h3,
    .h--line-sm-1-2 .gamma,
    .h--line-sm-1-2 h4,
    .h--line-sm-1-2 .delta,
    .h--line-sm-1-2 h5,
    .h--line-sm-1-2 .epsilon,
    .h--line-sm-1-2 h6,
    .h--line-sm-1-2 .zeta {
        line-height: 1.2;
    }

    .h--line-sm-1-4 h1,
    .h--line-sm-1-4 .alfa,
    .h--line-sm-1-4 h2,
    .h--line-sm-1-4 .beta,
    .h--line-sm-1-4 h3,
    .h--line-sm-1-4 .gamma,
    .h--line-sm-1-4 h4,
    .h--line-sm-1-4 .delta,
    .h--line-sm-1-4 h5,
    .h--line-sm-1-4 .epsilon,
    .h--line-sm-1-4 h6,
    .h--line-sm-1-4 .zeta {
        line-height: 1.4;
    }

    .h--line-sm-1-6 h1,
    .h--line-sm-1-6 .alfa,
    .h--line-sm-1-6 h2,
    .h--line-sm-1-6 .beta,
    .h--line-sm-1-6 h3,
    .h--line-sm-1-6 .gamma,
    .h--line-sm-1-6 h4,
    .h--line-sm-1-6 .delta,
    .h--line-sm-1-6 h5,
    .h--line-sm-1-6 .epsilon,
    .h--line-sm-1-6 h6,
    .h--line-sm-1-6 .zeta {
        line-height: 1.6;
    }
}

@media (min-width: 992px) {
    .h--line-md-1 h1,
    .h--line-md-1 .alfa,
    .h--line-md-1 h2,
    .h--line-md-1 .beta,
    .h--line-md-1 h3,
    .h--line-md-1 .gamma,
    .h--line-md-1 h4,
    .h--line-md-1 .delta,
    .h--line-md-1 h5,
    .h--line-md-1 .epsilon,
    .h--line-md-1 h6,
    .h--line-md-1 .zeta {
        line-height: 1;
    }

    .h--line-md-1-2 h1,
    .h--line-md-1-2 .alfa,
    .h--line-md-1-2 h2,
    .h--line-md-1-2 .beta,
    .h--line-md-1-2 h3,
    .h--line-md-1-2 .gamma,
    .h--line-md-1-2 h4,
    .h--line-md-1-2 .delta,
    .h--line-md-1-2 h5,
    .h--line-md-1-2 .epsilon,
    .h--line-md-1-2 h6,
    .h--line-md-1-2 .zeta {
        line-height: 1.2;
    }

    .h--line-md-1-4 h1,
    .h--line-md-1-4 .alfa,
    .h--line-md-1-4 h2,
    .h--line-md-1-4 .beta,
    .h--line-md-1-4 h3,
    .h--line-md-1-4 .gamma,
    .h--line-md-1-4 h4,
    .h--line-md-1-4 .delta,
    .h--line-md-1-4 h5,
    .h--line-md-1-4 .epsilon,
    .h--line-md-1-4 h6,
    .h--line-md-1-4 .zeta {
        line-height: 1.4;
    }

    .h--line-md-1-6 h1,
    .h--line-md-1-6 .alfa,
    .h--line-md-1-6 h2,
    .h--line-md-1-6 .beta,
    .h--line-md-1-6 h3,
    .h--line-md-1-6 .gamma,
    .h--line-md-1-6 h4,
    .h--line-md-1-6 .delta,
    .h--line-md-1-6 h5,
    .h--line-md-1-6 .epsilon,
    .h--line-md-1-6 h6,
    .h--line-md-1-6 .zeta {
        line-height: 1.6;
    }
}

.h--margin-0 .alfa,
.h--margin-0 .beta,
.h--margin-0 .gamma,
.h--margin-0 .delta,
.h--margin-0 .epsilon,
.h--margin-0 .zeta,
.h--margin-0 h1,
.h--margin-0 h2,
.h--margin-0 h3,
.h--margin-0 h4,
.h--margin-0 h5,
.h--margin-0 h6 {
    margin-bottom: 0;
}

.h--margin-01 .alfa,
.h--margin-01 .beta,
.h--margin-01 .gamma,
.h--margin-01 .delta,
.h--margin-01 .epsilon,
.h--margin-01 .zeta,
.h--margin-01 h1,
.h--margin-01 h2,
.h--margin-01 h3,
.h--margin-01 h4,
.h--margin-01 h5,
.h--margin-01 h6 {
    margin-bottom: 0.1rem;
}

.h--margin-02 .alfa,
.h--margin-02 .beta,
.h--margin-02 .gamma,
.h--margin-02 .delta,
.h--margin-02 .epsilon,
.h--margin-02 .zeta,
.h--margin-02 h1,
.h--margin-02 h2,
.h--margin-02 h3,
.h--margin-02 h4,
.h--margin-02 h5,
.h--margin-02 h6 {
    margin-bottom: 0.2rem;
}

.h--margin-03 .alfa,
.h--margin-03 .beta,
.h--margin-03 .gamma,
.h--margin-03 .delta,
.h--margin-03 .epsilon,
.h--margin-03 .zeta,
.h--margin-03 h1,
.h--margin-03 h2,
.h--margin-03 h3,
.h--margin-03 h4,
.h--margin-03 h5,
.h--margin-03 h6 {
    margin-bottom: 0.3rem;
}

.h--margin-04 .alfa,
.h--margin-04 .beta,
.h--margin-04 .gamma,
.h--margin-04 .delta,
.h--margin-04 .epsilon,
.h--margin-04 .zeta,
.h--margin-04 h1,
.h--margin-04 h2,
.h--margin-04 h3,
.h--margin-04 h4,
.h--margin-04 h5,
.h--margin-04 h6 {
    margin-bottom: 0.4rem;
}

.h--margin-05 .alfa,
.h--margin-05 .beta,
.h--margin-05 .gamma,
.h--margin-05 .delta,
.h--margin-05 .epsilon,
.h--margin-05 .zeta,
.h--margin-05 h1,
.h--margin-05 h2,
.h--margin-05 h3,
.h--margin-05 h4,
.h--margin-05 h5,
.h--margin-05 h6 {
    margin-bottom: 0.5rem;
}

.h--margin-06 .alfa,
.h--margin-06 .beta,
.h--margin-06 .gamma,
.h--margin-06 .delta,
.h--margin-06 .epsilon,
.h--margin-06 .zeta,
.h--margin-06 h1,
.h--margin-06 h2,
.h--margin-06 h3,
.h--margin-06 h4,
.h--margin-06 h5,
.h--margin-06 h6 {
    margin-bottom: 0.6rem;
}

.h--margin-07 .alfa,
.h--margin-07 .beta,
.h--margin-07 .gamma,
.h--margin-07 .delta,
.h--margin-07 .epsilon,
.h--margin-07 .zeta,
.h--margin-07 h1,
.h--margin-07 h2,
.h--margin-07 h3,
.h--margin-07 h4,
.h--margin-07 h5,
.h--margin-07 h6 {
    margin-bottom: 0.7rem;
}

.h--margin-08 .alfa,
.h--margin-08 .beta,
.h--margin-08 .gamma,
.h--margin-08 .delta,
.h--margin-08 .epsilon,
.h--margin-08 .zeta,
.h--margin-08 h1,
.h--margin-08 h2,
.h--margin-08 h3,
.h--margin-08 h4,
.h--margin-08 h5,
.h--margin-08 h6 {
    margin-bottom: 0.8rem;
}

.h--margin-09 .alfa,
.h--margin-09 .beta,
.h--margin-09 .gamma,
.h--margin-09 .delta,
.h--margin-09 .epsilon,
.h--margin-09 .zeta,
.h--margin-09 h1,
.h--margin-09 h2,
.h--margin-09 h3,
.h--margin-09 h4,
.h--margin-09 h5,
.h--margin-09 h6 {
    margin-bottom: 0.9rem;
}

.h--margin-1 .alfa,
.h--margin-1 .beta,
.h--margin-1 .gamma,
.h--margin-1 .delta,
.h--margin-1 .epsilon,
.h--margin-1 .zeta,
.h--margin-1 h1,
.h--margin-1 h2,
.h--margin-1 h3,
.h--margin-1 h4,
.h--margin-1 h5,
.h--margin-1 h6 {
    margin-bottom: 1rem;
}

.h--margin-1-2 .alfa,
.h--margin-1-2 .beta,
.h--margin-1-2 .gamma,
.h--margin-1-2 .delta,
.h--margin-1-2 .epsilon,
.h--margin-1-2 .zeta,
.h--margin-1-2 h1,
.h--margin-1-2 h2,
.h--margin-1-2 h3,
.h--margin-1-2 h4,
.h--margin-1-2 h5,
.h--margin-1-2 h6 {
    margin-bottom: 1.2rem;
}

.h--margin-1-5 .alfa,
.h--margin-1-5 .beta,
.h--margin-1-5 .gamma,
.h--margin-1-5 .delta,
.h--margin-1-5 .epsilon,
.h--margin-1-5 .zeta,
.h--margin-1-5 h1,
.h--margin-1-5 h2,
.h--margin-1-5 h3,
.h--margin-1-5 h4,
.h--margin-1-5 h5,
.h--margin-1-5 h6 {
    margin-bottom: 1.5rem;
}

.h--margin-2 .alfa,
.h--margin-2 .beta,
.h--margin-2 .gamma,
.h--margin-2 .delta,
.h--margin-2 .epsilon,
.h--margin-2 .zeta,
.h--margin-2 h1,
.h--margin-2 h2,
.h--margin-2 h3,
.h--margin-2 h4,
.h--margin-2 h5,
.h--margin-2 h6 {
    margin-bottom: 2rem;
}

.h--margin-2-5 .alfa,
.h--margin-2-5 .beta,
.h--margin-2-5 .gamma,
.h--margin-2-5 .delta,
.h--margin-2-5 .epsilon,
.h--margin-2-5 .zeta,
.h--margin-2-5 h1,
.h--margin-2-5 h2,
.h--margin-2-5 h3,
.h--margin-2-5 h4,
.h--margin-2-5 h5,
.h--margin-2-5 h6 {
    margin-bottom: 2.5rem;
}

.h--margin-3 .alfa,
.h--margin-3 .beta,
.h--margin-3 .gamma,
.h--margin-3 .delta,
.h--margin-3 .epsilon,
.h--margin-3 .zeta,
.h--margin-3 h1,
.h--margin-3 h2,
.h--margin-3 h3,
.h--margin-3 h4,
.h--margin-3 h5,
.h--margin-3 h6 {
    margin-bottom: 3rem;
}

a {
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    outline: none;
}

a:focus,
a:active,
a:visited {
    outline: none;
}

.a-hover:hover, .a-hover:focus {
    text-decoration: underline;
}

.a-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    padding: 0.6rem 0;
}

.a-link__text {
    color: #002bf2;
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem;
}

.a-link__text--black {
    color: #002bf2;
}

.a-link__text--white {
    color: #ffffff;
}

.a-link__text--purple {
    color: #002bf2;
}

.a-link__text--size-12 {
    font-size: 12px;
    font-size: 0.75rem;
}

.a-link__text--size-14 {
    font-size: 14px;
    font-size: 0.875rem;
}

.a-link__text--size-16 {
    font-size: 16px;
    font-size: 1rem;
}

.a-link__text--size-18 {
    font-size: 18px;
    font-size: 1.125rem;
}

.a-link__icon {
    display: inline-block;
    vertical-align: middle;
}

.a-link--hover-underline {
    position: relative;
}

.a-link--hover-underline:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    -webkit-transition: width 250ms ease-out;
    -o-transition: width 250ms ease-out;
    transition: width 250ms ease-out;
    background-color: currentColor;
}

.a-link--hover-underline:hover:after {
    width: 100%;
}

.a-link--hover-block .a-link--hover-underline {
    position: relative;
}

.a-link--hover-block .a-link--hover-underline:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    -webkit-transition: width 250ms ease-out;
    -o-transition: width 250ms ease-out;
    transition: width 250ms ease-out;
    background-color: currentColor;
}

.a-link--hover-block:hover .a-link--hover-underline:after {
    width: 100%;
}

p {
    display: block;
    margin-top: 0;
    margin-bottom: 2.5rem;
    color: #002bf2;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    font-size: 1rem;
    letter-spacing: -0.01em;
    -webkit-transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
    -o-transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
    transition: font-size 0.3s cubic-bezier(0.16, 0.08, 0.355, 1);
}

p a {
    color: currentColor;
}

.p--spacing-1 p {
    letter-spacing: 0.1em;
}

@media (min-width: 771px) {
    .p--sm-spacing-1 p {
        letter-spacing: 0.1em;
    }
}

.p--size-12 p {
    font-size: 12px;
    font-size: 0.75rem;
}

.p--size-14 p {
    font-size: 14px;
    font-size: 0.875rem;
}

.p--size-15 p {
    font-size: 15px;
    font-size: 0.9375rem;
}

.p--size-18 p {
    font-size: 18px;
    font-size: 1.125rem;
}

.p--size-20 p {
    font-size: 20px;
    font-size: 1.25rem;
}

.p--size-30 p {
    font-size: 30px;
    font-size: 1.88rem;
}

@media (max-width: 770px) {
    .p--sm-size-16 p {
        font-size: 16px;
        font-size: 1rem;
    }

    .p--sm-size-14 p {
        font-size: 14px;
        font-size: 0.875rem;
    }
}

.p--line-1 p {
    line-height: 1;
}

.p--line-1-2 p {
    line-height: 1.2;
}

.p--line-1-4 p {
    line-height: 1.4;
}

.p--line-1-5 p {
    line-height: 1.5;
}

.p--line-1-6 p {
    line-height: 1.6;
}

.p--line-1-8 p {
    line-height: 1.8;
}

.p--line-2 p {
    line-height: 2;
}

.p--margin-0 p {
    margin-bottom: 0;
}

.p--margin-01 p {
    margin-bottom: 0.1rem;
}

.p--margin-02 p {
    margin-bottom: 0.2rem;
}

.p--margin-03 p {
    margin-bottom: 0.3rem;
}

.p--margin-04 p {
    margin-bottom: 0.4rem;
}

.p--margin-05 p {
    margin-bottom: 0.5rem;
}

.p--margin-06 p {
    margin-bottom: 0.6rem;
}

.p--margin-07 p {
    margin-bottom: 0.7rem;
}

.p--margin-08 p {
    margin-bottom: 0.8rem;
}

.p--margin-09 p {
    margin-bottom: 0.9rem;
}

.p--margin-1 p {
    margin-bottom: 1rem;
}

.p--margin-1-2 p {
    margin-bottom: 1.2rem;
}

.p--margin-1-5 p {
    margin-bottom: 1.5rem;
}

.p--margin-2 p {
    margin-bottom: 2rem;
}

.p--margin-2-5 p {
    margin-bottom: 2.5rem;
}

.p--primary-semibold p {
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
}

.p--primary-bold p {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.list-style,
ol.list-style {
    margin-bottom: 2rem;
}

ul.list-style li,
ol.list-style li {
    position: relative;
    display: block;
    margin-bottom: 8px;
    padding-left: 25px;
    color: #000000;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    line-height: 1.4;
    font-size: 16px;
    font-size: 1rem;
}

ul.list-style a,
ol.list-style a {
    text-decoration: underline;
}

ul.list-style a:focus, ul.list-style a:hover,
ol.list-style a:focus,
ol.list-style a:hover {
    text-decoration: underline;
}

ul.list-style li:before {
    content: '';
    position: absolute;
    top: 9px;
    left: 3px;
    display: block;
    width: 6px;
    height: 6px;
    color: #000000;
    border-radius: 100%;
    background-color: #000000;
}

ol.list-style {
    list-style-position: inside;
    counter-reset: item;
}

ol.list-style li:before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    color: #000000;
    line-height: 1.4;
    font-size: 16px;
    font-size: 1rem;
}

.swiper-arrow-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 80px;
    position: absolute;
    left: 50%;
    bottom: -50px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.swiper-arrow {
    outline: none;
}

.swiper-arrow.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

.swiper-arrow-next {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.swiper-arrow-prev {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
}

.swiper-arrow-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    cursor: pointer;
}

.swiper-arrow-content:focus svg, .swiper-arrow-content:hover svg {
    fill: #002bf2;
}

.swiper-arrow-content svg {
    fill: #002bf2;
    font-size: 28px;
    font-size: 1.75rem;
}

.swiper-pagination {
    position: relative;
    bottom: auto;
    width: 100%;
    margin-top: 1.2rem;
}

.swiper-pagination-bullet {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 40px;
    border-radius: 0;
    opacity: 1;
    background: transparent;
}

.swiper-pagination-bullet:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 8px;
    height: 8px;
    opacity: 0.3;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    border-radius: 100%;
}

.swiper-pagination-bullet-active:after {
    opacity: 1;
    background-color: #ffffff;
}

.swiper-container-horizontal
> .swiper-pagination-bullets
.swiper-pagination-bullet {
    margin: 0;
}

/* Content */
section {
    position: relative;
    padding: 3rem 0 3rem;
    z-index: 2;
}

@media (min-width: 771px) {
    section {
        padding: 3rem 0 3rem;
    }
}

.section-get-started {
    padding: 0;
    margin-bottom: 180px;
    margin-top: 360px;
}

@media (min-width: 771px) {
    .section-get-started {
        margin-bottom: 0;
        padding: 0 0 8.125rem;
        margin-top: 270px;
    }
}

.padding-style-1 {
    padding: 1rem 0 1rem;
}

@media (min-width: 771px) {
    .padding-style-1 {
        padding: 1rem 0 1rem;
    }
}

.padding-style-2 {
    padding: 2rem 0 2rem;
}

@media (min-width: 771px) {
    .padding-style-2 {
        padding: 2rem 0 2rem;
    }
}

.padding-style-3 {
    padding: 2rem 0 2rem;
}

@media (min-width: 771px) {
    .padding-style-3 {
        padding: 3rem 0 3rem;
    }
}

.padding-style-3-6 {
    padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-3-6 {
        padding: 3rem 0 10rem;
    }
}

.padding-style-4 {
    padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-4 {
        padding: 4rem 0 4rem;
    }
}

.padding-style-5 {
    padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-5 {
        padding: 5rem 0 5rem;
    }
}

.padding-style-6 {
    padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-6 {
        padding: 6rem 0 6rem;
    }
}

.padding-style-6-3 {
    padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-6-3 {
        padding: 6rem 0 3rem;
    }
}

.padding-style-6-8 {
    padding: 0 1rem 3rem;
}

@media (min-width: 992px) {
    .padding-style-6-8 {
        padding: 6rem 0 8rem;
    }
}

.padding-style-8-6 {
    padding: 6rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-8-6 {
        padding: 8rem 0 6rem;
    }
}

.padding-content-1 {
    padding: 1rem 1rem;
}

.padding-content-2 {
    padding: 2rem 2rem;
}

.padding-content-3 {
    padding: 3rem 3rem;
}

.padding-content-4 {
    padding: 4rem 4rem;
}

.padding-content-5 {
    padding: 5rem 5rem;
}

@media (min-width: 771px) {
    .padding-content-2 {
        padding: 2rem 2rem;
    }
}

.content-width-200 {
    max-width: 200px;
}

.content-width-300 {
    max-width: 300px;
}

.content-width-360 {
    max-width: 360px;
}

.content-width-400 {
    max-width: 400px;
}

.content-width-450 {
    max-width: 450px;
}

.content-width-500 {
    max-width: 500px;
}

.content-width-600 {
    max-width: 600px;
}

.content-width-850 {
    max-width: 850px;
}

main {
    z-index: 1;
    position: relative;
    display: block;
    padding-top: 70px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}

@media (min-width: 992px) {
    main {
        padding-top: 120px;
    }
}

.container-full {
    margin: 0 auto;
}

.container-blog,
.container-small,
.container-small-ext,
.container-normal,
.container-large {
    margin: 0 auto;
    padding: 0 15px;
}

.container-blog {
    width: 100%;
}

@media (min-width: 771px) {
    .container-blog {
        width: 700px;
    }
}

@media (min-width: 992px) {
    .container-blog {
        width: 700px;
    }
}

@media (min-width: 1200px) {
    .container-blog {
        width: 700px;
    }
}

@media (min-width: 1440px) {
    .container-blog {
        width: 700px;
    }
}

.container-small {
    width: 100%;
}

@media (min-width: 771px) {
    .container-small {
        width: 730px;
    }
}

@media (min-width: 992px) {
    .container-small {
        width: 800px;
    }
}

@media (min-width: 1200px) {
    .container-small {
        width: 800px;
    }
}

@media (min-width: 1440px) {
    .container-small {
        width: 800px;
    }
}

.container-small-ext {
    width: 100%;
}

@media (min-width: 771px) {
    .container-small-ext {
        width: 730px;
    }
}

@media (min-width: 992px) {
    .container-small-ext {
        width: 920px;
    }
}

@media (min-width: 1200px) {
    .container-small-ext {
        width: 980px;
    }
}

@media (min-width: 1440px) {
    .container-small-ext {
        width: 980px;
    }
}

.container-normal {
    width: 100%;
}

@media (min-width: 771px) {
    .container-normal {
        width: 730px;
    }
}

@media (min-width: 992px) {
    .container-normal {
        width: 950px;
    }
}

@media (min-width: 1200px) {
    .container-normal {
        width: 1100px;
    }
}

@media (min-width: 1440px) {
    .container-normal {
        width: 1140px;
    }
}

.container-large {
    width: 100%;
}

@media (min-width: 771px) {
    .container-large {
        width: 730px;
    }
}

@media (min-width: 992px) {
    .container-large {
        width: 950px;
    }
}

@media (min-width: 1200px) {
    .container-large {
        width: 1140px;
    }
}

@media (min-width: 1440px) {
    .container-large {
        width: 1360px;
    }
}

/* Footer */
.footer {
    position: relative;
    z-index: 4;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 3.125rem 0.5rem 3.125rem;
    background-color: #ffffff;
}

@media (min-width: 992px) {
    .footer {
        padding: 11.25rem 0 9.375rem;
    }
}

.footer__title {
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #002bf2;
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 1.125rem;
    padding-left: 2.1875rem;
}

@media (min-width: 576px) {
    .footer__title {
        margin-bottom: 2.5rem;
        padding-left: 0;
    }
}

.footer-list {
    margin-bottom: 2.5rem;
    padding-left: 2.1875rem;
}

@media (min-width: 576px) {
    .footer-list {
        padding-left: 0;
        margin-bottom: 3.75rem;
    }
}

.footer-list--blog .footer-list__item {
    margin-bottom: 1.25rem;
}

.footer-list__item {
    display: block;
    margin-bottom: 0.5rem;
}

.footer-list__item:last-child {
    margin-bottom: 0;
}

.footer-list__link {
    position: relative;
    display: inline;
    line-height: 1.4;
    color: #002bf2;
    letter-spacing: -0.01em;
    padding: 0.2rem 0;
    font-size: 16px;
    font-size: 1rem;
}

@media (min-width: 771px) {
    .footer-list__link {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.footer-list__link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    -webkit-transition: width 250ms ease-out;
    -o-transition: width 250ms ease-out;
    transition: width 250ms ease-out;
    background-color: currentColor;
}

.footer-list__link:hover:after {
    width: 100%;
}

.footer-list__link--link:after {
    width: 100%;
}

.footer__headline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 24px;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #002bf2;
    font-family: "Sonda Bold", Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

@media (min-width: 771px) {
    .footer__headline {
        margin-bottom: 3.75rem;
    }
}

@media (min-width: 992px) {
    .footer__headline {
        margin-bottom: 6.25rem;
    }
}

.footer__headline svg {
    margin: 0 8px;
    font-size: 26px;
    font-size: 1.625rem;
}

.footer__copy {
    color: #002bf2;
    font-size: 14px;
    font-size: 0.875rem;
}

@media (min-width: 576px) {
    .footer__copy {
        font-size: 16px;
        font-size: 1rem;
    }
}

@media (min-width: 771px) {
    .footer__copy {
        font-size: 18px;
        font-size: 1.125rem;
    }
}

.footer__box {
    max-width: 400px;
    border: 5px solid #ff7846;
    border-radius: 50px;
    padding: 3.125rem 1rem 3.125rem;
}

@media (max-width: 770px) {
    .footer__box {
        max-width: 100%;
        margin: 0 auto;
    }
}

.footer__rating {
    font-size: 15px;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #002bf2;
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.09em;
}

/* Header */
.header__navigation .header__hamburger {
    display: none;
}

@media (max-width: 991px) {
    .header__navigation .container-normal,
    .header__navigation .container-large {
        width: 100%;
    }

    .header__navigation .main-nav {
        position: fixed;
        z-index: 98;
        top: 0;
        left: 0;
        overflow: auto;
        width: 100%;
        height: 100%;
        padding: 20px 15px 80px;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        background-color: #ffffff;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    .header__navigation .header__hamburger {
        position: fixed;
        z-index: 200;
        top: 0;
        left: 0;
        display: block;
        width: 70px;
        height: 70px;
    }

    .header__navigation .header__hamburger-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        display: inline-block;
        width: 30px;
        height: 3px;
        -webkit-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-property: background-color, -webkit-transform;
        transition-property: background-color, -webkit-transform;
        -o-transition-property: background-color, transform;
        transition-property: background-color, transform;
        transition-property: background-color, transform, -webkit-transform;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-weight: 300;
        border-radius: 20px;
    }

    .header__navigation .header__hamburger-icon:before, .header__navigation .header__hamburger-icon:after {
        position: absolute;
        display: block;
        width: 30px;
        height: 3px;
        border-radius: 20px;
        content: '';
        -webkit-transition-duration: 250ms;
        -o-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-property: margin, -webkit-transform;
        transition-property: margin, -webkit-transform;
        -o-transition-property: margin, transform;
        transition-property: margin, transform;
        transition-property: margin, transform, -webkit-transform;
        background: #002bf2;
    }

    .header__navigation .header__hamburger-icon:before {
        margin-top: -5px;
    }

    .header__navigation .header__hamburger-icon:after {
        margin-top: 5px;
    }

    .header__navigation.is-collapse .main-nav {
        top: 60px;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: -webkit-transform 250ms ease;
        transition: -webkit-transform 250ms ease;
        -o-transition: transform 250ms ease;
        transition: transform 250ms ease;
        transition: transform 250ms ease, -webkit-transform 250ms ease;
    }

    .header__navigation.is-collapse .header__hamburger-icon {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        background: rgba(0, 0, 0, 0);
    }

    .header__navigation.is-collapse .header__hamburger-icon:before {
        margin-top: 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .header__navigation.is-collapse .header__hamburger-icon:after {
        margin-top: 0;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
}

@media (max-width: 991px) {
    .header--blue .header__navigation.is-collapse {
        background-color: #002bf2;
    }

    .header--blue .header__navigation.is-collapse .main-nav {
        background-color: #002bf2;
    }

    .header--blue .header__navigation.is-collapse .header__logo-image {
        fill: #ffffff;
    }

    .header--blue .header__navigation.is-collapse .header__hamburger-icon:after,
    .header--blue .header__navigation.is-collapse .header__hamburger-icon:before {
        background-color: #ffffff;
    }

    .header--blue .header__navigation .main-nav__link,
    .header--blue .header__navigation .dropdown__link {
        color: #ffffff;
    }
}

.header__navigation {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 15px;
    background-color: #ffffff;
    -webkit-transition: -webkit-box-shadow 350ms ease;
    transition: -webkit-box-shadow 350ms ease;
    -o-transition: box-shadow 350ms ease;
    transition: box-shadow 350ms ease;
    transition: box-shadow 350ms ease, -webkit-box-shadow 350ms ease;
}

@media (min-width: 992px) {
    .header__navigation {
        background-color: #ffffff;
        -webkit-box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
        box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
        padding: 0 30px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.header__navigation.is-scrolling {
    background-color: #ffffff;
    -webkit-box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
    box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
}

@media (min-width: 992px) {
    .header__navigation.is-scrolling .header__logo {
        padding: 12px 0 12px;
    }

    .header__navigation.is-scrolling .header__logo-link {
        height: 42px;
    }

    .header__navigation.is-scrolling .header__logo-image {
        width: 100px;
        height: 42px;
    }
}

.header__flex {
    text-align: center;
}

@media (min-width: 992px) {
    .header__flex {
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.header__logo {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 99;
    padding: 19px 0 17px;
    text-align: center;
    -webkit-transition: padding 350ms ease;
    -o-transition: padding 350ms ease;
    transition: padding 350ms ease;
}

@media (min-width: 992px) {
    .header__logo {
        float: left;
        padding: 25px 0 25px;
    }
}

.header__logo-link {
    display: inline-block;
    vertical-align: middle;
    -webkit-transition: all 350ms ease;
    -o-transition: all 350ms ease;
    transition: all 350ms ease;
    height: 50px;
}

@media (max-width: 991px) {
    .header__logo-link {
        height: 33px;
    }
}

.header__logo-image {
    margin: 0 auto;
    -webkit-transition: all 350ms ease;
    -o-transition: all 350ms ease;
    transition: all 350ms ease;
    fill: #002bf2;
    width: 115px;
}

@media (max-width: 991px) {
    .header__logo-image {
        width: 80px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .main-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.main-nav__list {
    text-align: center;
}

@media (min-width: 992px) {
    .main-nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (min-width: 992px) {
    .main-nav__list--absolute {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }
}

@media (min-width: 992px) {
    .main-nav__item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
}

@media (max-width: 991px) {
    .main-nav__item {
        margin-bottom: 0.5rem;
        display: block;
        text-align: center;
    }
}

.main-nav__item:focus .main-nav__link, .main-nav__item:hover .main-nav__link, .main-nav__item.is-active .main-nav__link {
    color: #ff7846;
}

.main-nav__link {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    text-decoration: none;
    color: #002bf2;
    line-height: 1.2;
    font-size: 17px;
    font-size: 1.0625rem;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    -webkit-transition: color 0.25s ease-out;
    -o-transition: color 0.25s ease-out;
    transition: color 0.25s ease-out;
}

@media (min-width: 992px) {
    .main-nav__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 25px 0;
        margin: 0 20px;
    }

    .main-nav__link.js-dropdown-trigger {
        margin-right: 40px;
    }
}

.header__action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.header__btn {
    z-index: 99;
    padding: 0.5em 1.2rem;
}

@media (max-width: 991px) {
    .header__btn {
        position: absolute;
        top: 50%;
        right: 15px;
        width: 80px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 13px;
        font-size: 0.8125rem;
        padding-left: 0;
        padding-right: 0;
    }
}

/* Tabs block */
.tabs-group {
    height: 40px;
    margin: 0 auto 2rem;
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    z-index: 4;
}

@media (max-width: 369px) {
    .tabs-group {
        margin: 0 -20px 2rem;
    }
}

.tabs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    border: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 auto;
    -webkit-box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
    box-shadow: 0 5px 10px rgba(1, 1, 1, 0.1);
}

@media (max-width: 369px) {
    .tabs-list {
        margin: 0 auto;
    }
}

.tab-list__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 40px;
    cursor: pointer;
    text-align: center;
    border: 0;
    background-color: #ffffff;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 5px 10px;
    -webkit-transition: all 250ms ease;
    -o-transition: all 250ms ease;
    transition: all 250ms ease;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (min-width: 576px) {
    .tab-list__item {
        padding: 0 5px;
    }
}

@media (min-width: 992px) {
    .tab-list__item:hover {
        background-color: #ff7846;
    }

    .tab-list__item:hover .tab-list__text {
        color: #ffffff;
    }
}

.tab-list__item.mixitup-control-active, .tab-list__item.is-active {
    background-color: #ff7846;
}

.tab-list__item.mixitup-control-active .tab-list__text, .tab-list__item.is-active .tab-list__text {
    color: #ffffff;
}

.tab-list__text {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: #002bf2;
    font-size: 12px;
    font-size: 0.75rem;
}

@media (min-width: 370px) {
    .tab-list__text {
        font-size: 13px;
        font-size: 0.8125rem;
    }
}

.tabs-content {
    clear: both;
}

.tab-content__item {
    visibility: hidden;
    overflow: hidden;
    height: 0;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-out;
    -o-transition: opacity 400ms ease-out;
    transition: opacity 400ms ease-out;
}

.tab-content__item.is-active {
    padding: 2rem 0;
    visibility: visible;
    overflow: visible;
    height: auto;
    opacity: 1;
}

@media (min-width: 771px) {
    .tab-content-item--sm {
        visibility: hidden;
        overflow: hidden;
        height: 0;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-out;
        -o-transition: opacity 400ms ease-out;
        transition: opacity 400ms ease-out;
    }

    .tab-content-item--sm.is-active {
        visibility: visible;
        overflow: visible;
        height: auto;
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .tab-content-item--md {
        visibility: hidden;
        overflow: hidden;
        height: 0;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-out;
        -o-transition: opacity 400ms ease-out;
        transition: opacity 400ms ease-out;
    }

    .tab-content-item--md.is-active {
        visibility: visible;
        overflow: visible;
        height: auto;
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    .tab-content-item--lg {
        visibility: hidden;
        overflow: hidden;
        height: 0;
        opacity: 0;
        -webkit-transition: opacity 400ms ease-out;
        -o-transition: opacity 400ms ease-out;
        transition: opacity 400ms ease-out;
    }

    .tab-content-item--lg.is-active {
        visibility: visible;
        overflow: visible;
        height: auto;
        opacity: 1;
    }
}

/* Accordion block */
.accordion-group--chevron .accordion__item.is-active {
    border-color: #002bf2;
}

.accordion-group--chevron .accordion__item.is-active > .accordion__trigger:after {
    height: 6px;
    background-image: url("./images/icons/chevron-up.svg");
}

.accordion-group--chevron .accordion__trigger:after {
    width: 12px;
    height: 6px;
    background-image: url("./images/icons/chevron-down.svg");
}

.accordion__item {
    position: relative;
    z-index: 2;
    border: 3px dotted transparent;
    border-radius: 8px;
}

.accordion__item.is-active {
    border-color: #ff7846;
    -webkit-transition: border-color 600ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: border-color 600ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: border-color 600ms cubic-bezier(0.5, 0.7, 0.4, 1);
}

.accordion__item.is-active > .accordion__trigger {
    -webkit-transition: border-color 600ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: border-color 600ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: border-color 600ms cubic-bezier(0.5, 0.7, 0.4, 1);
}

.accordion__item.is-active > .accordion__trigger:after {
    width: 12px;
    height: 4px;
    background-image: url("./images/icons/minus.svg");
}

.accordion__item.is-active > .accordion__content {
    visibility: visible;
    overflow: visible;
    width: auto;
    height: auto;
    padding: 0 4rem 2rem 2rem;
    opacity: 1;
    -webkit-transform: scaleY(1) translateY(0);
    -ms-transform: scaleY(1) translateY(0);
    transform: scaleY(1) translateY(0);
}

.accordion__trigger {
    position: relative;
    display: block;
    margin-bottom: 0;
    padding: 1rem 3rem 1rem 2rem;
    font-family: "Sonda Bold", Arial, sans-serif;
    font-weight: 700;
    cursor: pointer;
    color: #002bf2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    font-size: 20px;
    font-size: 1.25rem;
}

.accordion__trigger:after {
    content: '' !important;
    width: 13px;
    height: 13px;
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("./images/icons/plus.svg");
}

.accordion__content {
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    opacity: 0;
    border-top: 0;
    -webkit-transition: opacity 600ms cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 300ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: opacity 600ms cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 300ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -o-transition: opacity 600ms cubic-bezier(0.5, 0.7, 0.4, 1), transform 300ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: opacity 600ms cubic-bezier(0.5, 0.7, 0.4, 1), transform 300ms cubic-bezier(0.5, 0.7, 0.4, 1);
    transition: opacity 600ms cubic-bezier(0.5, 0.7, 0.4, 1), transform 300ms cubic-bezier(0.5, 0.7, 0.4, 1), -webkit-transform 300ms cubic-bezier(0.5, 0.7, 0.4, 1);
    -webkit-transform: scaleY(1) translateY(-15px);
    -ms-transform: scaleY(1) translateY(-15px);
    transform: scaleY(1) translateY(-15px);
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}

.accordion__content p:last-child {
    margin-bottom: 0;
}

@media (min-width: 771px) {
    .accordion--sm {
        display: none;
    }
}

/* Blog block */
.article__item {
    margin-bottom: 2.5rem;
}

@media (min-width: 771px) {
    .article__item {
        margin-bottom: 4.375rem;
    }
}

.article__item--small {
    margin-bottom: 2.5rem;
}

@media (min-width: 771px) {
    .article__item--small {
        margin-bottom: 5.9375rem;
    }
}

@media (min-width: 771px) {
    .article__item--small:nth-last-child(-n + 2) {
        margin-bottom: 0;
    }
}

.article__item--small:last-child {
    margin-bottom: 0;
}

.article__item--small .article__image-block {
    height: 300px;
}

.article__content {
    display: block;
    overflow: hidden;
}

.article__content:focus .article__title, .article__content:hover .article__title {
    color: #ff7846;
}

.article__content:focus img, .article__content:hover img {
    -webkit-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.article__image-block {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background-color: #ffffff;
    height: 300px;
    z-index: 1;
}

@media (min-width: 771px) {
    .article__image-block {
        height: 450px;
    }
}

.article__image-block img {
    border-radius: 30px;
    -webkit-transition: -webkit-transform 400ms ease-out;
    transition: -webkit-transform 400ms ease-out;
    -o-transition: transform 400ms ease-out;
    transition: transform 400ms ease-out;
    transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
    will-change: transform;
}

.article__text-block {
    padding: 2.1875rem 0 0;
}

.article__date {
    display: block;
    margin-bottom: 1rem;
    color: #002bf2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
    font-size: 15px;
    font-size: 0.9375rem;
}

.article__date--small {
    margin-bottom: 0.5rem;
}

/* Card block */
.card__item--slider {
    position: relative;
    padding-top: 50px;
}

@media (min-width: 772px) and (max-width: 992px) {
    .card__item--slider p {
        font-size: 16px;
        font-size: 1rem;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .card__item--slider p {
        font-size: 16px;
        font-size: 1rem;
    }
}

@media (min-width: 772px) and (max-width: 992px) {
    .card__item--slider .card__title {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .card__item--slider .card__title {
        font-size: 26px;
        font-size: 1.625rem;
    }
}

.card__item--recommend .card__content {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.card__item--classic .card__content {
    border-radius: 50px;
    padding: 4.375rem 0.625rem;
}

@media (min-width: 771px) {
    .card__item--classic .card__content {
        padding: 4.375rem 1.5625rem;
    }
}

.card__item--classic .card__content .btn {
    padding: 0.75em 0.95rem;
}

@media (min-width: 771px) {
    .card__item--classic .card__content .btn {
        padding: 0.75em 2rem;
    }
}

@media (min-width: 771px) {
    .card__item--classic .card__content:focus, .card__item--classic .card__content:hover {
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

.card__item--classic .card__content:focus .btn, .card__item--classic .card__content:hover .btn {
    color: #ff7846;
    border-color: #ff7846;
    background-color: transparent;
}

.card__item--classic .card__image-block {
    margin-bottom: 2rem;
}

.card__content {
    display: block;
    overflow: hidden;
    height: 100%;
    background: #ffffff;
    border-radius: 30px;
    background-color: #ffffff;
    -webkit-transition: all 400ms ease-out;
    -o-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    padding: 1.875rem 0.9375rem 1.25rem;
    text-align: center;
}

@media (min-width: 771px) {
    .card__content {
        padding: 2.8125rem 0.9375rem;
    }
}

.card__content:focus, .card__content:hover {
    -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.card__content:focus img, .card__content:hover img {
    -webkit-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
}

.card__image-block {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 1.2rem;
}

.card__image-block img {
    -webkit-transition: -webkit-transform 400ms ease-out;
    transition: -webkit-transform 400ms ease-out;
    -o-transition: transform 400ms ease-out;
    transition: transform 400ms ease-out;
    transition: transform 400ms ease-out, -webkit-transform 400ms ease-out;
    will-change: transform;
}

.card__subtitle {
    margin-bottom: 2rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
    color: #002bf2;
}

.card__price {
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    color: #002bf2;
    text-align: center;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 50px;
    font-size: 3.125rem;
}

@media (min-width: 772px) and (max-width: 992px) {
    .card__price {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .card__price {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

.card__price small {
    display: block;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
    color: #002bf2;
}

.card-list {
    max-width: 240px;
    margin: 0 auto;
    margin-top: 2rem;
}

.card-list__item {
    display: block;
    margin-bottom: 0.6rem;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    text-align: left;
    color: #002bf2;
}

.card-list__item strong {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    font-size: 14px;
    font-size: 0.875rem;
}

@media (min-width: 771px) {
    .card-list__item strong {
        font-size: 16px;
        font-size: 1rem;
    }
}

.card-list__item--none,
.card-list__item--check {
    position: relative;
    padding-left: 38px;
}

.card-list__item--none:before,
.card-list__item--check:before {
    content: '';
    position: absolute;
}

.card-list__item--check:before {
    display: block;
    position: absolute;
    top: 0;
    left: 5px;
    width: 12px;
    height: 20px;
    border: solid #ff7846;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.card-list__item--none:before {
    display: block;
    position: absolute;
    top: 10px;
    left: 0;
    border-radius: 20px;
    width: 20px;
    height: 4px;
    margin: 0 auto;
    background-color: #ff7846;
}

.card__recommend {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border: 3px solid #ffffff;
    border-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    text-transform: uppercase;
    height: 50px;
    line-height: 1;
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 15px;
    font-size: 0.9375rem;
    border-radius: 30px 30px 0 0;
}

.slider-pricing.is-monthly .content--monthly {
    display: block;
}

.slider-pricing.is-monthly .content--annually {
    display: none;
}

.slider-pricing.is-annualy .content--monthly {
    display: none;
}

.slider-pricing.is-annualy .content--annually {
    display: block;
}

@media (max-width: 991px) {
    .slider-pricing-group {
        margin: 0 -30px;
    }

    .slider-pricing-group .swiper-slide {
        max-width: calc(100% - 100px);
        margin: 0 auto;
        -webkit-transition: all 250ms ease;
        -o-transition: all 250ms ease;
        transition: all 250ms ease;
    }

    .slider-pricing-group .swiper-slide:first-child {
        margin-left: 50px;
    }

    .slider-pricing-group .swiper-slide:last-child {
        margin-right: 50px !important;
    }
}

@media (min-width: 772px) and (max-width: 992px) {
    .slider-pricing-group {
        width: 100vw;
        left: calc(50% - 50vw);
        position: relative;
        margin: 0;
    }

    .slider-pricing-group .swiper-slide {
        max-width: 660px;
    }
}

/* Rate block */
.rate-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0.625rem;
}

.rate-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    margin: 0 0.1rem;
}

.rate-list__item svg {
    fill: #ff7846;
    font-size: 16px;
    font-size: 1rem;
}

/* Dropdown block */
@media (min-width: 770px) {
    .dropdown:focus .dropdown__content, .dropdown:hover .dropdown__content {
        visibility: visible;
        height: auto;
        opacity: 1;
    }

    .dropdown:focus .dropdown__trigger .dropdown__icon svg, .dropdown:hover .dropdown__trigger .dropdown__icon svg {
        fill: #ff7846;
    }

    .dropdown:focus .dropdown__trigger .dropdown__icon--down, .dropdown:hover .dropdown__trigger .dropdown__icon--down {
        -webkit-transform: translateY(-50%) rotateZ(180deg);
        -ms-transform: translateY(-50%) rotate(180deg);
        transform: translateY(-50%) rotateZ(180deg);
    }
}

.dropdown.is-active .dropdown__content {
    visibility: visible;
    height: auto;
    opacity: 1;
}

.dropdown .dropdown__trigger {
    cursor: pointer;
}

.dropdown .dropdown__icon {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -18px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
    transition: opacity 0.25s ease-out, -webkit-transform 0.25s ease-out;
    -o-transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
    height: 17px;
}

.dropdown .dropdown__icon svg {
    fill: #002bf2;
    font-size: 14px;
    font-size: 0.875rem;
    -webkit-transition: fill 0.25s ease-out;
    -o-transition: fill 0.25s ease-out;
    transition: fill 0.25s ease-out;
    vertical-align: unset;
}

.dropdown .dropdown__icon--down {
    opacity: 1;
    visibility: visible;
}

.dropdown .dropdown__content {
    position: absolute;
    top: 100%;
    left: -165px;
    visibility: hidden;
    width: 100%;
    height: 0;
    opacity: 0;
    background: #ffffff;
    -webkit-box-shadow: 0 24px 104px rgba(0, 0, 0, 0.2);
    box-shadow: 0 24px 104px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding: 50px 70px;
    min-width: 850px;
}

@media (max-width: 991px) {
    .dropdown .dropdown__content {
        min-width: auto;
        padding: 0;
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        background-color: transparent;
        opacity: 1;
        visibility: visible;
        left: auto;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media (min-width: 992px) {
    .dropdown .dropdown__content:before {
        content: '';
        position: absolute;
        left: 215px;
        top: -14px;
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0 14px 14px 14px;
        border-color: transparent transparent #ffffff transparent;
    }
}

@media (min-width: 771px) {
    .dropdown--sm {
        display: none;
    }
}

.dropdown__list {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .dropdown__list {
        text-align: left;
        margin: 0;
    }
}

.dropdown__item {
    display: block;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .dropdown__item {
        display: block;
    }
}

.dropdown__link {
    position: relative;
    display: block;
    line-height: 1.2;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 800;
    font-family: "Sonda Heavy", Arial, sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    color: #002bf2;
    padding: 0.25rem 0;
}

@media (min-width: 992px) {
    .dropdown__link {
        padding: 0.5rem 0;
    }
}

.dropdown__link:focus, .dropdown__link:hover {
    color: #ff7846;
}

.dropdown__link--title {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: "Inter SemiBold", Arial, sans-serif;
    margin-bottom: 0.4rem;
}

@media (min-width: 992px) {
    .dropdown__link--title {
        margin-bottom: 0.6rem;
    }
}

.dropdown__link--title:focus, .dropdown__link--title:hover {
    color: #002bf2;
}

/* Social block */
.social-list {
    position: relative;
    padding-top: 2.1875rem;
    margin-top: 0.625rem;
}

.social-list:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 140px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border-top: 3px dotted #ff7846;
}

.social-list__item {
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

.social-list__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 45px;
    height: 45px;
    text-align: center;
    vertical-align: middle;
    color: #ffffff;
    background-color: #ff7846;
    border-radius: 100%;
}

.social-list__link:hover {
    background-color: #ff5313;
}

.social-list__link svg {
    font-size: 22px;
    font-size: 1.375rem;
    fill: #ffffff;
}

.social-list__link:focus svg, .social-list__link:hover svg {
    fill: #ffffff;
}

/* Table block */
@media (max-width: 770px) {
    .table-responsives {
        overflow-x: auto;
        overflow-y: hidden;
        width: 100%;
        min-height: 0.01%;
        border: 0 !important;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        background: -webkit-gradient(linear, left top, right top, color-stop(30%, white), to(rgba(255, 255, 255, 0))), -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(70%, white)) 0 100%, radial-gradient(farthest-side at 0% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
        background: -o-linear-gradient(left, white 30%, rgba(255, 255, 255, 0)), -o-linear-gradient(left, rgba(255, 255, 255, 0), white 70%) 0 100%, -o-radial-gradient(0% 50%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), -o-radial-gradient(100% 50%, farthest-side, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
        background: linear-gradient(to right, white 30%, rgba(255, 255, 255, 0)), linear-gradient(to right, rgba(255, 255, 255, 0), white 70%) 0 100%, radial-gradient(farthest-side at 0% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)), radial-gradient(farthest-side at 100% 50%, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)) 0 100%;
        background-repeat: no-repeat;
        background-color: white;
        background-size: 40px 100%, 40px 100%, 14px 100%, 14px 100%;
        background-position: 0 0, 100%, 0 0, 100%;
        background-attachment: local, local, scroll, scroll;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
}

table thead tr {
    border-bottom: 1px solid #f7f7f7;
}

table th {
    padding: 15px 15px 15px 15px;
    font-family: "Sonda Bold", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #000000;
    font-size: 16px;
    font-size: 1rem;
}

@media (min-width: 771px) {
    table th {
        font-size: 16px;
        font-size: 1rem;
    }
}

table td {
    padding: 15px 15px 15px 15px;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #000000;
    font-size: 14px;
    font-size: 0.875rem;
}

.table {
    width: 100%;
}

.table__row {
    position: relative;
    display: table;
    width: 100%;
    margin-bottom: 3px;
}

.table__row--header {
    height: 50px;
}

.table__row--header-first .table__cell--header {
    border-right: 0;
}

.table__cell {
    display: table-cell;
    float: none;
    vertical-align: middle;
    width: 20%;
    max-width: 20%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
}

@media (min-width: 993px) and (max-width: 1200px) {
    .table__cell {
        max-width: 160px;
    }
}

.table__cell--header {
    padding: 0 5px 10px;
    border-right: 3px dotted #002bf2;
}

.table__cell--header:first-child {
    padding-left: 0;
    padding-right: 0;
}

.table__cell--header:first-child, .table__cell--header:last-child {
    border-right: 0;
}

@media (min-width: 370px) {
    .table__cell--header {
        padding: 0 10px 30px;
    }
}

@media (min-width: 771px) {
    .table__cell--header {
        padding: 0 10px 30px;
    }
}

.table__cell--body {
    padding: 6px 5px;
    border-right: 3px dotted #002bf2;
}

.table__cell--body:first-child {
    padding-right: 0;
    padding-left: 0;
}

.table__cell--body:first-child, .table__cell--body:last-child {
    border-right: 0;
}

@media (min-width: 370px) {
    .table__cell--body {
        padding: 6px 10px;
    }
}

@media (min-width: 771px) {
    .table__cell--body {
        padding: 6px 10px;
    }
}

.table__cell--body:first-child .table__text {
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    text-align: right;
}

.table__cell--body-btn {
    padding: 25px 5px 0;
}

@media (min-width: 370px) {
    .table__cell--body-btn {
        padding: 25px 10px 0;
    }
}

@media (min-width: 771px) {
    .table__cell--body-btn {
        padding: 25px 10px 0;
    }
}

@media (min-width: 1200px) {
    .table__cell--body-btn {
        padding: 25px 20px 0;
    }
}

@media (min-width: 772px) and (max-width: 992px) {
    .table__cell--body-btn .btn {
        font-size: 14px;
        font-size: 0.875rem;
    }

    .table__cell--body-btn .btn .icon--size-20 {
        height: 16px;
    }

    .table__cell--body-btn .btn .icon--size-20 svg {
        font-size: 16px;
        font-size: 1rem;
    }
}

.table__text--body-none {
    display: block;
    border-radius: 20px;
    width: 20px;
    height: 4px;
    margin: 0 auto;
    background-color: #ff7846;
}

.table__text--body-check {
    position: relative;
}

.table__text--body-check:after {
    content: '';
    display: block;
    position: absolute;
    top: -10px;
    left: -10px;
    width: 12px;
    height: 20px;
    border: solid #ff7846;
    border-width: 0 4px 4px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.table__text {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.2;
    color: #002bf2;
}

.table__text--header {
    color: #002bf2;
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem;
}

@media (min-width: 992px) {
    .table__text--header {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

.table__text--header:first-child {
    margin-bottom: 1.875rem;
}

.table__text--header small {
    display: block;
    margin-top: 0.6rem;
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
}

.table__text--header-recommend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font-family: "Inter SemiBold", Arial, sans-serif;
    font-weight: 600;
    color: #ff7846;
    font-size: 12px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

@media (min-width: 992px) {
    .table__text--header-recommend {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.table__text--header-recommend .icon--size-20 {
    height: 20px;
}

.table__text--body {
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 16px;
    font-size: 1rem;
    color: #002bf2;
    text-align: center;
}

/* Load more content block */
.load-more-block.is-last .load-more {
    height: auto;
}

.load-more-block.is-last .load-more__button {
    display: none;
}

.load-more.is-disabled .load-more__button {
    display: none;
}

.load-more__spinner {
    z-index: 1;
    display: none;
}

.load-more__spinner.is-active {
    display: inline-block;
}

.load-more__button {
    cursor: pointer;
}

.hero-section {
    padding: 4rem 0 4rem;
}

@media (min-width: 771px) {
    .hero-section {
        padding: 7rem 0 7rem;
    }
}

.hero-section--small {
    padding: 1rem 0 4rem;
}

@media (min-width: 771px) {
    .hero-section--small {
        padding: 7rem 0 7rem;
    }
}

.hero-section--small-ext {
    padding: 5rem 0 4rem;
}

@media (min-width: 771px) {
    .hero-section--small-ext {
        padding: 7rem 0 7rem;
    }
}

@media (min-width: 992px) {
    .hero-section--small-ext {
        padding: 7rem 0 12rem;
    }
}

.hero-star {
    position: absolute;
}

.hero-star svg {
    fill: #002bf2;
    font-size: 16px;
    font-size: 1rem;
}

@media (min-width: 992px) {
    .hero-star svg {
        font-size: 45px;
        font-size: 2.8125rem;
    }
}

.hero-star--big svg {
    font-size: 30px;
    font-size: 1.875rem;
}

@media (min-width: 992px) {
    .hero-star--big svg {
        font-size: 86px;
        font-size: 5.375rem;
    }
}

.hero-star-1 {
    top: -60px;
    left: calc(50% + 120px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .hero-star-1 {
        left: auto;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        top: -30px;
        right: 20px;
    }
}

@media (min-width: 1200px) {
    .hero-star-1 {
        right: 20px;
    }
}

@media (min-width: 1440px) {
    .hero-star-1 {
        right: 80px;
    }
}

.hero-star-2 {
    top: -20px;
    left: calc(55% + 120px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .hero-star-2 {
        left: auto;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        top: 150px;
        right: -20px;
    }
}

@media (min-width: 1200px) {
    .hero-star-2 {
        right: 20px;
    }
}

.hero-star-3 {
    bottom: -20px;
    left: calc(40% - 100px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .hero-star-3 {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        bottom: auto;
        top: 210px;
        left: 30px;
    }
}

@media (min-width: 1200px) {
    .hero-star-3 {
        top: 210px;
        left: 80px;
    }
}

.animate-headline {
    position: relative;
}

@media (min-width: 577px) and (max-width: 771px) {
    /*.benefit__item--classic:nth-child(2n + 2) .benefit__content:after {*/
    /*    display: none;*/
    /*}*/
    /*.benefit__item--classic:nth-last-child(-n + 2) .benefit__content:after {*/
    /*    bottom: auto;*/
    /*    top: 0;*/
    /*}*/
    /*.benefit__item--classic:nth-last-child(-n + 2) .benefit__content:before {*/
    /*    display: none;*/
    /*}*/


}

@media (min-width: 771px) {
    /*.benefit__item--classic:nth-child(3n + 3) .benefit__content:after {*/
    /*    display: none;*/
    /*}*/
    /*.benefit__item--classic:nth-last-child(-n + 3) .benefit__content:after {*/
    /*    bottom: auto;*/
    /*    top: 0;*/
    /*}*/
    /*.benefit__item--classic:nth-last-child(-n + 3) .benefit__content:before {*/
    /*    display: none;*/
    /*}*/
    .mycols-even .benefit__item--classic:nth-last-child(-n + 3) .benefit__content:after {
        bottom: auto;
        top: 0;
    }

    .mycols-even .benefit__item--classic:nth-child(-n + 3) .benefit__content:before {
        display: block
    }

    .mycols-even .benefit__item--classic:nth-child(-n + 3) .benefit__content:after {
        bottom: 0;
        top: auto;
    }

    .mycols-even .benefit__item--classic:nth-child(3) .benefit__content:after {
        display: none;
    }

    .mycols-odd .benefit__item--classic:nth-last-child(-n + 3) .benefit__content:after {
        bottom: auto;
        top: 0;
    }

    .mycols-even:not(.special-even) .benefit__item--classic:nth-last-child(-n + 3) .benefit__content:before {
        display: none;
    }

    .mycols-even .benefit__item--classic:nth-last-child(1) .benefit__content:after {
        display: none;
    }

    .mycols-even.special-even .benefit__item--classic:nth-last-child(1) .benefit__content:after {
        display: block;
    }

    .mycols-even.special-even .benefit__item--classic:nth-last-child(1) .benefit__content:before {
        display: block;
        content: ' ';
        bottom: auto;
        top: 0;
        height: 80%;
        left: -4px;
        width: 4px;
        border-left: 3px dotted #ff7846;
        position: absolute;
    }


    .mycols-odd .benefit__item--classic:nth-last-child(-n + 3) .benefit__content:before {
        display: none;
    }

    .mycols-odd .benefit__item--classic:nth-child(-n + 3) .benefit__content:after {
        bottom: 0;
        top: auto;
    }

    .mycols-odd .benefit__item--classic:nth-child(-n + 3) .benefit__content:before {
        display: block;
    }

    .mycols-odd .benefit__item--classic:nth-child( 3) .benefit__content:after {
        display: none;
    }

    .mycols-odd:not(.special-even) .benefit__item--classic:nth-last-child(1) .benefit__content:after {
        display: none;
    }

    .mycols-odd.special-even .benefit__item--classic:nth-last-child(1) .benefit__content:before {
        display: block;
        content: ' ';
        bottom: auto;
        top: 0;
        height: 80%;
        left: -4px;
        width: 4px;
        border-left: 3px dotted #ff7846;
        position: absolute;
    }
}

@media (min-width: 577px) and (max-width: 771px) {
    .benefit__item--three .benefit__content:before {
        width: 80%;
        left: 50%;
        right: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .benefit__item--three .benefit__content:after {
        height: 80%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .benefit__item--three:nth-child(2n + 2) .benefit__content:after {
        display: none;
    }

    .benefit__item--three:nth-child(3) .benefit__content:before, .benefit__item--three:nth-child(3) .benefit__content:after {
        display: none;
    }
}

@media (min-width: 771px) {
    .benefit__item--three .benefit__content:before {
        display: none;
    }
}

@media (min-width: 771px) {
    .benefit__item--three .benefit__content:after {
        bottom: auto;
        height: 60%;
        top: 50% !important;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.benefit__content {
    position: relative;
    padding: 45px 20px;
}

@media (min-width: 576px) {
    .benefit__content {
        min-height: 400px;
    }
}

@media (min-width: 771px) {
    .benefit__content {
        min-height: 400px;
    }
}

.benefit__content:after, .benefit__content:before {
    content: '';
    position: absolute;
}

@media (min-width: 576px) {
    .benefit__content:after {
        right: 0;
        bottom: 0;
        height: 100%;
        width: 4px;
        border-left: 3px dotted #ff7846;
    }
}

@media (min-width: 771px) {
    .benefit__content:after {
        height: 80%;
    }
}

.benefit__content:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 0;
    height: 4px;
    width: 140px;
    border-top: 3px dotted #ff7846;
}

@media (min-width: 576px) {
    .benefit__content:before {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        right: 0;
        left: auto;
        width: 100%;
    }
}

.benefit__image-block {
    margin-bottom: 1.25rem;
}

@media (min-width: 772px) and (max-width: 992px) {
    .benefit__title {
        font-size: 22px;
        font-size: 1.375rem;
    }
}

.stats__number {
    font-family: "Sonda Heavy", Arial, sans-serif;
    font-weight: 800;
    color: #ff7846;
    line-height: 1;
    margin-bottom: 0.625rem;
    font-size: 30px;
    font-size: 1.875rem;
}

@media (min-width: 576px) {
    .stats__number {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

@media (min-width: 771px) {
    .stats__number {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

@media (min-width: 992px) {
    .stats__number {
        font-size: 50px;
        font-size: 3.125rem;
    }
}

@media (min-width: 1200px) {
    .stats__number {
        font-size: 70px;
        font-size: 4.375rem;
    }
}

.stats__text {
    color: #002bf2;
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 0.875rem;
}

@media (min-width: 576px) {
    .stats__text {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.review__item {
    margin-bottom: 0.9375rem;
}

@media (min-width: 771px) {
    .review__item {
        margin-bottom: 2.5rem;
    }
}

.review__content {
    border: 3px dotted #0029f2;
    border-radius: 20px;
    padding: 1.375rem 1.375rem;
}

@media (min-width: 771px) {
    .review__content {
        padding: 1.875rem 1.875rem;
    }
}

@media (min-width: 771px) {
    .review__content p {
        min-height: 140px;
    }
}

.swiper-reviews {
    width: 100%;
}

.swiper-reviews .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-reviews .swiper-slide {
    width: 300px;
}

@media (min-width: 771px) {
    .swiper-reviews .swiper-slide {
        width: 430px;
    }
}

.swiper-reviews .reference__item {
    width: 100%;
    padding: 0;
}

.swiper-reviews--offset {
    padding-left: 240px;
}

.about-section {
    padding-top: 7.5rem;
    padding-bottom: 0;
}

@media (min-width: 771px) {
    .about-section {
        padding-top: 0;
        padding-bottom: 0;
        overflow: visible;
    }
}

@media (min-width: 992px) {
    .about-section {
        padding-top: 9.375rem;
        padding-bottom: 6.25rem;
    }

    .section-v2.about-section {
        padding-bottom: 18.55rem;
    }
}

@media (min-width: 1440px) {
    .about-section {
        padding-top: 15.625rem;
        overflow: visible;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .about-section .beta {
        font-size: 40px;
        font-size: 2.5rem;
    }
}

.about-link {
    display: inline-block;
    outline: none;
    overflow: hidden;
    font-family: inherit;
    position: relative;
    vertical-align: bottom;
    text-decoration: none;
    white-space: nowrap;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.about-link:hover {
    color: #ffffff;
}

.about-link:hover:before {
    -webkit-transform: translateY(5%);
    -ms-transform: translateY(5%);
    transform: translateY(5%);
}

.about-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: #002bf2;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    -webkit-transform: translateY(88%);
    -ms-transform: translateY(88%);
    transform: translateY(88%);
}

.invoice-section {
    padding: 6rem 0 6rem;
}

@media (min-width: 992px) {
    .invoice-section {
        padding: 12rem 0 12rem;
    }
}

.invoice-stars {
    position: absolute;
    top: -70px;
    right: -40px;
    width: 121px;
    height: 102px;
}

@media (min-width: 771px) {
    .invoice-stars {
        top: -80px;
        width: 151px;
        height: 122px;
        right: -30px;
    }
}

@media (min-width: 992px) {
    .invoice-stars {
        right: -30px;
        width: 251px;
        height: 202px;
        top: -200px;
        right: -60px;
    }
}

@media (min-width: 1600px) {
    .invoice-stars {
        right: -180px;
    }
}

.section-invoice-bg {
    padding: 6rem 1rem 6rem;
    margin-bottom: 7.5rem;
}

@media (min-width: 992px) {
    .section-invoice-bg {
        padding: 2rem 0 6rem;
        margin-bottom: 12.5rem;
    }
}

.invoice-star {
    position: absolute;
}

.invoice-star svg {
    fill: #ffffff;
    font-size: 40px;
    font-size: 2.5rem;
}

@media (min-width: 992px) {
    .invoice-star svg {
        font-size: 60px;
        font-size: 3.75rem;
    }
}

.invoice-star--big svg {
    font-size: 50px;
    font-size: 3.125rem;
}

@media (min-width: 992px) {
    .invoice-star--big svg {
        font-size: 95px;
        font-size: 5.9375rem;
    }
}

.invoice-star--small svg {
    font-size: 18px;
    font-size: 1.125rem;
}

@media (min-width: 992px) {
    .invoice-star--small svg {
        font-size: 35px;
        font-size: 2.1875rem;
    }
}

.invoice-star-1 {
    top: -100px;
    left: calc(50% + 120px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .invoice-star-1 {
        left: auto;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        top: -120px;
        right: 80px;
    }
}

@media (min-width: 1200px) {
    .invoice-star-1 {
        right: 80px;
    }
}

@media (min-width: 1440px) {
    .invoice-star-1 {
        right: 80px;
    }
}

.invoice-star-2 {
    top: -50px;
    left: calc(50% + 60px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .invoice-star-2 {
        left: auto;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        top: 80px;
        right: -60px;
    }
}

.invoice-star-3 {
    top: -70px;
    left: calc(50% - 100px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 992px) {
    .invoice-star-3 {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        top: 220px;
        left: -120px;
    }
}

.invoice-star-4 {
    bottom: -110px;
    left: calc(50% - -50px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .invoice-star-4 svg {
        font-size: 60px;
        font-size: 3.75rem;
    }
}

@media (min-width: 992px) {
    .invoice-star-4 {
        bottom: -210px;
        left: -40px;
    }
}

@media (min-width: 1200px) {
    .invoice-star-4 {
        left: -70px;
    }
}

.invoice-star-5 {
    bottom: -60px;
    left: calc(50% - 30px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (max-width: 991px) {
    .invoice-star-5 svg {
        font-size: 30px;
        font-size: 1.875rem;
    }
}

@media (min-width: 992px) {
    .invoice-star-5 {
        bottom: -100px;
        left: 65%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.invoice-star-6 {
    bottom: 0;
    right: 50px;
}

@media (min-width: 992px) {
    .invoice-star-6 {
        bottom: 250px;
        right: -40px;
    }
}

@media (min-width: 1200px) {
    .invoice-star-6 {
        right: -80px;
    }
}

@media (min-width: 1440px) {
    .invoice-star-6 {
        right: -130px;
    }
}

.invoice-screen {
    padding: 4rem 0 4rem;
    overflow: hidden;
}

@media (min-width: 992px) {
    .invoice-screen {
        padding: 10rem 0 10rem;
    }
}

.screen-desktop,
.screen-mobile {
    position: relative;
    max-width: 200px;
    border-radius: 20px;
    border: 10px solid #dddddd;
    margin: 0 auto;
    -webkit-box-shadow: 0 34px 54px rgba(0, 0, 0, 0.1);
    box-shadow: 0 34px 54px rgba(0, 0, 0, 0.1);
}

@media (min-width: 771px) {
    .screen-desktop,
    .screen-mobile {
        border-radius: 38px;
        border: 16px solid #dddddd;
        max-width: 360px;
        margin-left: 0;
    }
}

@media (min-width: 771px) {
    .screen-mobile--right {
        margin-left: auto;
        margin-right: 0;
    }
}

.screen-mobile--absolute * {
    height: 100%;
}

@media (max-width: 770px) {
    .screen-mobile--absolute {
        border-radius: 10px;
        border: 6px solid #dddddd;
        z-index: 1;
        max-height: 417px;
    }

    .screen-mobile--absolute .screen-mobile-img {
        border-radius: 5px;
    }
}

@media (min-width: 772px) and (max-width: 992px) {
    .screen-mobile--absolute {
        border-radius: 20px;
        border: 10px solid #dddddd;
        z-index: 1;
        height: 462px;
    }

    .screen-mobile--absolute .screen-mobile-img {
        border-radius: 10px;
    }
}

@media (min-width: 992px) {
    .screen-mobile--absolute {
        position: absolute;
        top: 55%;
        right: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        z-index: 4;
        right: -40px;
        height: 742px;
    }
}

@media (min-width: 1200px) {
    .screen-mobile--absolute {
        top: 50%;
        right: -80px;
    }
}

.screen-desktop-group {
    width: calc((100vw - 200px) / 2 + 100%);
}

@media (min-width: 576px) {
    .screen-desktop-group {
        width: calc((100vw - 200px) / 2 + 100%);
    }
}

@media (min-width: 771px) {
    .screen-desktop-group {
        width: calc((100vw - 500px) / 2 + 100%);
    }
}

@media (min-width: 992px) {
    .screen-desktop-group {
        width: auto;
    }
}

.screen-desktop-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 12px;
    background: #dddddd;
    border-radius: 2.54741px 2.54741px 0 0;
    padding-left: 12px;
    padding-top: 5px;
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .screen-desktop-top {
        padding-left: 20px;
        height: 30px;
    }
}

.screen-desktop {
    position: relative;
    border: 3px solid #dddddd;
    border-radius: 0 0 2.54741px 2.54741px;
    margin: 0 auto;
    background: #dddddd;
    max-width: 100%;
    z-index: 1;
}

@media (min-width: 771px) {
    .screen-desktop {
        margin-left: 0;
        max-width: 100%;
    }
}

.screen-mobile-img {
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    height: 100%;
}

@media (min-width: 771px) {
    .screen-mobile-img {
        border-radius: 23px;
    }
}

.screen-mobile-img .img--screen {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.screen-image {
    position: relative;
}

@media (min-width: 771px) {
    .screen-image {
        position: static;
    }
}

.screen-circle {
    position: absolute;
    z-index: -5;
    width: 280px;
    height: 280px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #ff7846;
    border-radius: 100%;
}

@media (min-width: 771px) {
    .screen-circle {
        width: 420px;
        height: 420px;
    }
}

@media (min-width: 992px) {
    .screen-circle {
        width: 570px;
        height: 570px;
    }
}

.hero-screen {
    overflow: hidden;
    padding: 1rem 0 5rem;
}

@media (min-width: 771px) {
    .hero-screen {
        padding: 1rem 0 5rem;
    }
}

@media (min-width: 992px) {
    .hero-screen {
        padding: 1rem 0 8rem;
        overflow: visible;
    }
}

.screen-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .screen-info {
        margin-bottom: 0;
    }
}

.screen-info__left-panel {
    width: 140px;
    max-width: 140px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 140px;
    flex: 0 0 140px;
    text-align: center;
    margin-top: 1rem;
}

.screen-info__right-panel {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (min-width: 992px) {
    .screen-info__right-panel {
        padding-left: 1.875rem;
    }
}

.screen-info__number {
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 170px;
    font-size: 10.625rem;
}

.screen-info__top-image {
    max-width: 160px;
    margin: 0 auto 1.2rem;
}

@media (min-width: 576px) {
    .screen-info__top-image {
        max-width: 260px;
    }
}

@media (min-width: 992px) {
    .screen-info__top-image {
        max-width: none;
        margin-bottom: 0;
        position: absolute;
        bottom: -150px;
        right: -30px;
    }
}

@media (min-width: 992px) {
    .screen-info__top-image--ext {
        bottom: -80px;
    }
}

.screen-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.screen-dots__item {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #002bf2;
    margin-right: 5px;
}

@media (min-width: 992px) {
    .screen-dots__item {
        margin-right: 8px;
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 575px) {
    .pricing-title {
        margin: 0 -30px;
    }
}

@media (max-width: 575px) {
    .pricing-title .gamma {
        font-size: 16px;
        font-size: 1rem;
    }
}

.get-started-star {
    position: absolute;
}

.get-started-star svg {
    fill: #002bf2;
    font-size: 38px;
    font-size: 2.375rem;
}

.get-started-star--big svg {
    font-size: 58px;
    font-size: 3.625rem;
}

.get-started-star--small svg {
    font-size: 26px;
    font-size: 1.625rem;
}

.get-started-star-1 {
    top: -210px;
    left: calc(50% - 120px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.get-started-star-2 {
    top: -330px;
    left: calc(50% - 40px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.get-started-star-3 {
    top: -290px;
    left: calc(50% + 100px);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.simple-dropdown-toggle:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid #002bf2;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.simple-dropdown-toggle.active:after {
    border-bottom: .3em solid #002bf2;
    border-top: 0;
    border-left: .3em solid transparent;
}


.simple_dropdown_content {
    display: none;
}

.simple_dropdown_content.active {
    display: block;
}

.wp-caption {
    width: unset !important;
}

/*# sourceMappingURL=app.css.map */
body .modal {
 z-index: 9999999999
}

/* Landing Page update */
body.temp-page-landing { /* overflow-x: hidden; position: relative; height: auto; min-height: 100%; */ }
body.temp-page-landing main > section { /* overflow-x:hidden; */  }
body.temp-page-landing main > section.landing-why-bildu { height: auto; width: 100%; overflow: hidden;     padding: 5rem 0; }
body main section.landing-why-bildu { height: auto; width: 100%; overflow: hidden; padding: 10rem 0; }
body.temp-page-landing main > section.section-landing-hero { height: auto; width: 100%; overflow: hidden; }


.temp-page-landing main { padding-top: 0px !important; }
 .temp-page-landing nav.main-nav {   }
 div.landing-hero-content { padding: 100px 30px 0; padding-top: 100px !important; }

 html:lang(en) .header__navigation nav.main-nav .main-nav__list li:nth-child(3) .row .main-menu-icon { display:none !important; position:absolute; width:0px; height:0px; }
 html:lang(en) .header__navigation nav.main-nav .main-nav__list li:nth-child(3) .row .col-12 { max-width:33.3333%; flex:0 0 33.3333% }
 /* same width columns */
 html:lang(en) .header__navigation nav.main-nav .main-nav__list li:nth-child(3) .dropdown__content { width: auto; min-width: max-content; }
 html:lang(en) .header__navigation nav.main-nav .main-nav__list li:nth-child(3) .row { flex-direction: row; width: auto; }
 html:lang(en) .header__navigation nav.main-nav .main-nav__list li:nth-child(3) .row .col-12 { max-width: 1000px; /* flex: none; */ display: flex; flex: 1 0 auto; width: auto; }
 @media (max-width: 991px) {
   html:lang(en) .header__navigation nav.main-nav .main-nav__list li:nth-child(3) .row .col-12 { display:block; flex: 0 0 100%; max-width: 100%; }
   html:lang(en) .header__navigation nav.main-nav .main-nav__list li:nth-child(3) .row .col-12 .dropdown__list { width: 100%; }
   html:lang(en) .header__navigation nav.main-nav .main-nav__list li:nth-child(3) .dropdown__content { min-width: 0; }
 }

.header.type-minimalistic .header__navigation { background-color:#002bf2 !important; }
.header.type-minimalistic .main-nav > .main-nav__list { display: none !important; }
.header.type-minimalistic .header__logo-image { fill:#fff; }
.header.type-minimalistic .main-nav__link { color: #fff; }
.header.type-minimalistic.dropdown .dropdown__icon svg { fill: #fff; }

/* Header Types */
body .header.bg-color-landing-hero-invert .header__navigation { background-color:#fff !important; }
body .header.bg-color-landing-hero-invert.type-minimalistic .main-nav > .main-nav__list { display: none !important; }
body .header.bg-color-landing-hero-invert .header__logo-image { fill: #002bf2; }
body .header.bg-color-landing-hero-invert .main-nav__link { color: #002bf2; }

body .header.bg-color-landing-hero.type-minimalistic .main-nav > .main-nav__list { display: none !important; }

body .header.type-full.bg-color-landing-hero .header__navigation { background-color:#002bf2 !important; }
body .header.type-full.bg-color-landing-hero .header__logo-image { fill: #fff; }
body .header.type-full.bg-color-landing-hero .main-nav__link { color: #fff; }
body .header.type-full.bg-color-landing-hero .main-nav__link { color: #fff; }
body .header.type-full.bg-color-landing-hero.dropdown .dropdown__icon svg { fill: #fff; }


.temp-page-landing .section-invoice-bg .swiper-wrapper {  }
.temp-page-landing .accordion-group ul.rate-list { display:none; }

.footer.type-minimalistic .main-footer-row { display:none !important; }
/* footer type-custom solutions-yes features-yes templates-yes generators-yes languages-yes learn-yes */
.footer.type-custom {  }
.footer.type-custom.solutions-no .widget-counter-1 { display:none !important; }
.footer.type-custom.features-no .widget-counter-2 { display:none !important; }
.footer.type-custom.templates-no .widget-counter-3 { display:none !important; }
.footer.type-custom.generators-no .widget-counter-4 { display:none !important; }
.footer.type-custom.languages-no .widget-counter-5 { display:none !important; }
.footer.type-custom.learn-no .widget-counter-6 { display:none !important; }
.footer.type-custom.from-the-blog-no .widget-counter-7 { display:none !important; }


.custom-testimonial-imagery { text-align:right }
.custom-testimonial-imagery .img--responsive { text-align:right }
.custom-testimonial-imagery .img--responsive { display: inline-block; max-width: 100%; height: auto; }
.custom-testimonial-imagery .article__image-block { overflow:visible; }
.custom-testimonial-imagery .testimonial-pattern { position: absolute; top: auto; bottom: -25px; right: 0; }

.custom-testimonial p { text-align:left; margin:0 0 2em 0; }
.custom-testimonial .name-cont { margin: 0px 20px 0 0; }
.custom-testimonial .name-cont .delta { margin:0; padding:0; }
.custom-testimonial .position { text-align:left; padding:1em 0 0 0; font-style: normal; font-weight: 600; font-size: 15px; line-height: 130%; letter-spacing: 0.1em; text-transform: uppercase; color: #0028F2; }
.testimonial-controls {}
.custom-testimonial.border-toggle-off .review__content { border: 3px dotted transparent; }

.testimonial-controls .flx { display:flex; flex:1; flex-direction:row;  }
.testimonial-controls .flx .tc-item { margin:0 5px; }
.testimonial-controls .flx .tc-item > span.circle { margin:0; width:14px; height:14px; border:2px solid #0028F2; border-radius:20px; display:inline-block; }
.testimonial-controls .flx .tc-item > span.circle.active { margin:0; width:14px; height:14px; border:2px solid #FF7845; background-color:#FF7845; border-radius:20px; }
.testimonial-controls .flx .tc-item > span.btn__icon { color:#FF7845; }
.testimonial-controls .flx .tc-item > span.btn__icon svg.icon-arrow-left { transform: rotate(180deg); }

.testimonial-container-margin {  }
.row.testimonial-container-margin { margin-bottom:0rem; }
.landing-testimonials-controls { margin-bottom: 10rem; }
.landing-testimonials-section {  }
.left-portrait-pos {}
.left-portrait-pos .lt-column-content { order:2; }
.left-portrait-pos .lt-column-imagery { order:1; }
.left-portrait-pos .lt-column-imagery .article__image-block { text-align: left; }
.left-portrait-pos .lt-column-imagery .custom-testimonial-imagery .testimonial-pattern { right: auto; left: 0; }
.testimonial-controls { margin-top: 3rem; }
.landing-testimonials-wrapper { overflow:hidden; overflow:clip; }
.tc-items-pagination { display: flex; flex: 1; flex-direction: row; align-items: center; }
.tc-items-pagination .swiper-pagination-bullet {     margin: 0 5px 4px; width: 14px; height: 14px; border: 2px solid #0028F2; border-radius: 20px; display: inline-block; cursor:pointer; transition:all ease 250ms; }
.tc-items-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.tc-items-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover { border: 2px solid #FF7845; background-color: #FF7845; }
.tc-items-pagination .swiper-pagination-bullet:after { display:none; }

.lwb-imagery-w { position: relative; text-align: left; }
.lwb-imagery { position: relative; text-align: left; z-index:10; }
.lwb-pattern-art { z-index:5;   }
.lwb-circle-art { position: absolute; text-align: left; top: -200px; right: 30px; z-index: 1; overflow: hidden; border-radius: 1000px; }

.lwb-circle-art { max-width: 490px; max-height: 490px; width: 1000%; height: 1000%; }
.lwb-circle-art img {
  /*
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  /*/
}
.lwb-circle-art.landscape {}
.lwb-circle-art.portrait {}
.lwb-circle-art.landscape img {     width: auto; display: inline-block; height: 100%; max-height: inherit; max-width: fit-content; }
.lwb-circle-art.portrait img { width: 100%; display: inline-block; height: auto; max-height: fit-content; max-width: inherit; }

.lwb-headline { margin: 0 0 100px 0; text-align: center; }
.lwb-item { margin-top: 200px; }
.lwb .delta.lwb-subhead { margin-bottom:1.75em; font-style: normal; font-weight: 700; font-size: 24px; line-height: 130%; letter-spacing: -0.01em; text-transform: uppercase; color: #FF7845; }
.lwb p { text-align:left;  }
.lwb .card-list { text-align:left; margin:40px 0 0 0; }
.lwb-item .screen-pattern { position: absolute; top: 40%; right: 35%; left:auto; z-index: 2; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); width: 95vw; height: auto; }
.lwb-item.right-aligned-image .screen-pattern { position: absolute; top: 18%; left: 57%; right:auto; }
.lwb-item-logo-list { margin:40px 0 0 0; display: flex; flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center; }
.lwb-item-logo-list > div { margin-right:30px }
.lwb-item.right-aligned-image .lwb-imagery { text-align:right; }
.lwb-item.right-aligned-image .lwb-imagery img,
.lwb-item.right-aligned-image .lwb-imagery img.img--responsive { display: inline-block; }
.lwb-item.right-aligned-image .lwb-imagery-col { order:2; }
.lwb-item.orange-wave-color .screen-pattern path { fill: #FF7845; }
.lwb-item.orange-title-color .lwb-content-col  h2.beta { color:#FF7845; }
.lwb-item.right-aligned-image .lwb-imagery-col { order:2; }
.lwb-item.right-aligned-image .lwb-content-col { order:1; }
.social-impact-flx { margin:0px 0 0 0; display: flex; flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; }
.social-impact-item { margin:0px 70px }
.social-impact-item h2 { color: #ff7846; font-size:6.5rem; line-height:124%; position:relative; }
.social-impact-item .img--responsive.img--hand { height: 175px; width: auto; }
.section-social-proof.items-3 .social-impact-item h2 { color: #ff7846; font-size:4rem; line-height:124%; position:relative; }
.section-social-proof.items-3 .social-impact-item h2 { color: #ff7846; font-size:4rem; line-height:124%; position:relative; }
.section-social-proof.items-3 .social-impact-item { margin: 0 auto;  padding: 0 3.5%; max-width: 33.3333%;  }
.social-impact-item .d-flex.align-items-center.justify-content-center { margin-top:3.5rem }
.section-social-proof.items-3 .social-impact-item p {     text-transform: uppercase; color: #002bf2; font-size: 0.9375rem; font-weight: 700; letter-spacing: 0.09em; margin:0; }
.section-social-proof .social-impact-item p { font-family: inherit; text-transform: uppercase; color: #002bf2; font-weight: 700; letter-spacing: 0.09em; margin:0; font-size: 0.9375rem; }


.section-landing-hero { position:relative; margin-bottom:6rem; padding: 0 0 90px 0; }
.bg-wave-landing-hero-bottom img {    display: block; width: 100%; height: 275px;}
.bg-wave-landing-hero-bottom { position: absolute; bottom: 0%; z-index: 2; lefT: 0; right: 0; background: #fff; }
.section-landing-hero .lhc-flx { max-width: 1920px; margin: 95px auto 35px; display: flex; flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: center; position:relative; z-index:10; }
.section-landing-hero .lhc-flx .lhc-content {width:40%; }
.section-landing-hero .lhc-flx .lhc-carousel { width:60%;}

.lhc-item-logo-list { margin: 20px 0 40px 0; display: flex; flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center; }
.lhc-item-logo-list .ll-item { margin-right: 30px; }


.section-landing-hero h3 { font-style: normal; font-weight: 700; font-size: 24px; line-height: 130%; letter-spacing: -0.01em; text-transform: uppercase; color: #FFFFFF; margin-bottom:1.67em; }
.section-landing-hero h2 { font-style: normal; font-weight: 800; font-size: 50px; line-height: 100%; letter-spacing: -0.01em; text-transform: uppercase; color: #FFFFFF; margin-bottom:0.8em; }
.section-landing-hero .lhc-trustpilot { margin:50px 0 20px 0; }
.section-landing-hero .lhc-trustpilot-logo { margin-bottom:15px; }
.lhc-trustpilot-number { color:#fff; margin:0 20px 0 0; font-style: normal; font-weight: 700; font-size: 24px; line-height: 26px; color: #FFFFFF; }
.lhc-trustpilot-reviews { font-style: normal; font-weight: 400; font-size: 14px; line-height: 22px; text-decoration-line: underline; color: #FCFCFC; }
.lhc-trustpilot-reviews a { text-decoration-line: underline; color: #FCFCFC; }
.lhc-trustpilot-reviews a:hover { text-decoration-line: underline; color: #ff7846; }
.section-landing-hero .lhc-trustpilot-stars-flx { display: flex; flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center;   }
.lhc-trustpilot-stars { margin:0 15px 0 0;  }
.lhc-trustpilot-stars .flx{  display: flex; flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center; }
.lhc-trustpilot-stars .flx img { display:block; }
.lhc-carousel { position:relative; }
.lhc-desktop-screen-w { text-align: right;  margin-right: -30px;  }
.lhc-desktop-screen { text-align: right; position:relative; display: inline-block; z-index: 2; }
.lhc-mobile-screen { position: absolute; right: 100%; width: fit-content; height: fit-content; top: 20%; }
.lhc-mobile-screen img { min-width: 100%; width: auto; height: auto; min-height: 0; display: block; border-radius: 40px; border: solid 10px rgba(255,255,255,0.35); }
.lhc-person { position: absolute; left: -27%; top: 34%; z-index: 10; }
.app-link { max-width: 1920px; margin: 0 auto; position: absolute; width: 100%; text-align: right; padding: 0 6rem; left:0; right: 0; bottom: 120px; z-index: 10; font-style: normal; font-weight: 700; font-size: 15px;
  line-height: 130%; letter-spacing: 0.09em; text-transform: uppercase; color: #0028F2; pointer-events: none; }
.app-link a { font-style: normal; font-weight: 700; font-size: 15px; line-height: 130%; letter-spacing: 0.09em; text-transform: uppercase; color: #0028F2; }
section.section-landing-hero.image-position-left .app-link {    position: absolute; width: 100%; max-width: 1920px; margin: 0 auto; text-align: left; color: #fff; padding: 0 5rem 0% 5rem; left: 0;
  pointer-events: none; right: 0; bottom: 120px; color: #0028F2; }
section.section-landing-hero.image-position-left.color-invert .app-link { color: #fff; }



.section-landing-hero .lhc-info { font-style: normal; font-weight: 600; font-size: 15px; line-height: 130%; letter-spacing: 0.1em; text-transform: uppercase; color: #FFFFFF; }
.section-landing-hero .lhc-info .sep:last-of-type { display:none; }
.section-landing-hero.image-position-left .lhc-flx .lhc-carousel { width: 60%; order: 1; text-align: left; }
.section-landing-hero.image-position-left .lhc-flx .lhc-content { width: 40%; order: 2; text-align: left; }
.section-landing-hero.image-position-left .lhc-desktop-screen-w { text-align: left; margin-left: -30px; }
.section-landing-hero.image-position-left .lhc-person { position: absolute; right:-27%; left: auto; top: 34%; z-index: 10; }
.section-landing-hero.image-position-left .lhc-mobile-screen { position: absolute; left: 100%; top: 20%; right:auto; }
.section-landing-hero.image-position-left .lhc-mobile-screen img { margin-left: 30px; }
.section-landing-hero.image-position-left .bg-wave-landing-hero-bottom { transform: rotateY(180deg); }

.section-landing-hero.color-invert .bg-blue { background-color: #fff; }
.section-landing-hero.color-invert h3 { color: #002bf2; }
.section-landing-hero.color-invert h2 { color: #002bf2; }
.section-landing-hero.color-invert .lhc-trustpilot-number { color: #002bf2; }
.section-landing-hero.color-invert .lhc-trustpilot-reviews a { color: #002bf2; }
.section-landing-hero.color-invert .lhc-info { color: #002bf2; }
.section-landing-hero.color-invert .app-link { color: #fff; }

.section-landing-hero.background-color-white .bg-blue { background-color: #fff; }
.section-landing-hero.background-color-white h3 { color: #002bf2; }
.section-landing-hero.background-color-white h2 { color: #002bf2; }
.section-landing-hero.background-color-white .lhc-trustpilot-number { color: #002bf2; }
.section-landing-hero.background-color-white .lhc-trustpilot-reviews a { color: #002bf2; }
.section-landing-hero.background-color-white .lhc-info { color: #002bf2; }
.section-landing-hero.background-color-white .app-link { color: #002bf2; }
.section-landing-hero.background-color-white .bg-wave-landing-hero-bottom { visibility: hidden; }
div.landing-hero-content { padding: 100px 0 0; }
.section-landing-hero .lhc-flx .lhc-content {  padding-left: 6%; }
.section-landing-hero.image-position-left .lhc-flx .lhc-content {  padding-right: 6%; padding-left:0; }

.section-invoice-bg.section-landing-pricing { margin-top:6rem; }
.section-landing-pricing .swiper-slide { height:auto !important; }
.section-landing-pricing .slider-pricing-group .card__item--slider {
    height: auto;
}
.section-landing-pricing .slider-pricing-group .card__item--recommend .card__content {/* padding: 3.8125rem 2.1375rem; */}
.section-landing-pricing .slider-pricing-group .card__item--slider .card__content:nth-child(1) { padding-bottom: }
.section-landing-pricing .slider-pricing-group .card__item--slider .card__content:nth-child(2) { padding-bottom: }
.section-landing-pricing .slider-pricing-group .card__item--slider .card__content:nth-child(3) { padding-bottom: }
.section-landing-pricing .slider-pricing-group .card__item--slider .card__content:nth-child(4) { padding-bottom: }
.section-landing-pricing .slider-pricing-group .card__item--slider.card__item--recommend .card__content { padding-bottom: }
.section-landing-pricing .slider-pricing-group .card__item--slider .card__image-block img { display:inline-block; max-width:110px; width:100%; margin:0 auto }
.section-landing-pricing .slider-pricing-group .card__item--slider .card__price,
.section-landing-pricing .slider-pricing-group .card__item--slider .card__price p { margin-bottom: 2rem; text-transform: uppercase; font-size: 50px; font-family: "Sonda Heavy", Arial, sans-serif; font-weight: 800; margin:0 0 0 0;    line-height: 1; }
.section-landing-pricing .slider-pricing-group .card__item--slider .card__price small { font-size: 0.75rem;display: block; margin-top: 0.5rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: #002bf2; }

.section-landing-pricing .slider-pricing-group .card__item--slider.card__item--recommend { }
.section-landing-pricing .swiper-slide {  }


.bg-wave-landing-hero-wrapper { position:relative; }
.bg-wave-landing-hero-wrapper { position:relative; }
.bg-wave-landing-hero-w .app-link { top: 40%; }
.app-overlayer { display: inline-block; position: relative; }
.app-overlayer .app-overlay-text { position:absolute; top:0; lefT:0; visibility: hidden;}

.hero-app-buttons > a {     display: inline-block; float: left; margin:0 20px 12px 0; }
.hero-app-buttons:after { display:table; content:""; clear:both;  }
@media (max-width: 768px) {
  .hero-app-buttons > a { display: inline-block; float: none; }
}
body > .responsive-wrapper { display:block; }
body > .responsive-wrapper + header .header__navigation { top:89px }
body > .responsive-wrapper + header .header__navigation .header__hamburger{ top:89px }
body > .responsive-wrapper + header .header__navigation.is-collapse .main-nav { top:155px; }
body > .responsive-wrapper div span { white-space:nowrap !important; }

@media (min-width: 374px) and (max-width: 410px) {
  body > .responsive-wrapper div span { font-size: 1.14em !important; }
}
@media (max-width: 374px) {
  body > .responsive-wrapper + header .header__navigation { top:74px }
  body > .responsive-wrapper + header .header__navigation .header__hamburger{ top:74px }
  body > .responsive-wrapper + header .header__navigation.is-collapse .main-nav { top:143px; }
}
@media (max-width: 360px) {
  body > .responsive-wrapper + header .header__navigation { top:67px }
  body > .responsive-wrapper + header .header__navigation .header__hamburger{ top:67px }
  body > .responsive-wrapper- + header .header__navigation.is-collapse .main-nav { top:166px; }
}

@media (min-width: 1440px) {
  .lwb-item { margin:210px 0 0 0; }
  .container-small-ext.container-small-xxl { width: 1080px; }
}

@media (min-width: 1980px) {
  body.temp-page-landing main > section.landing-why-bildu {  padding: 10rem 0; }
}


@media (min-width: 992px) {

}

.grid-cols .benefit__content:before { border-top: 3px dotted transparent;  }
temp-page-landing
.benefit__content-w { position:relative; }
.benefit__content-w:after { position:absolute; height:100%; border-left: 3px dotted transparent; display:block; content:""; width:3px; top:0%; bottom:0; right:100%; }


@media (min-width: 771px) {
  .benefit__content:after { height: 100%; }
  .temp-page-landing .benefit__content { min-height: 480px; }
  .grid-cols .benefit__item.benefit__item--classic:nth-child(1) .benefit__content:after,
  .grid-cols .benefit__item.benefit__item--classic:nth-child(2) .benefit__content:after,
  .grid-cols .benefit__item.benefit__item--classic:nth-child(3) .benefit__content:after { height: 90%; }
  .mycols-odd .benefit__item--classic:nth-child(3n) .benefit__content:after { bottom: auto; top: 0; display:none; }
  .grid-cols .benefit__item.benefit__item--classic:nth-child(1) .benefit__content,
  .grid-cols .benefit__item.benefit__item--classic:nth-child(2) .benefit__content,
  .grid-cols .benefit__item.benefit__item--classic:nth-child(3) .benefit__content { border-top: 3px dotted transparent; }
  .grid-cols.mycols-odd.special-even .benefit__item--classic:nth-last-child(1) .benefit__content:before { height: 100%; }
  .grid-cols.mycols-odd.special-even .benefit__item--classic:nth-last-child(1) .benefit__content:after { height: 100%; }


  .grid-cols .benefit__item.benefit__item--classic:nth-child(3n-2) .benefit__content:before { width:80%; border-top: 3px dotted #ff7846; display:block; height:3px; top:100%; left:auto; right:0; }
  .grid-cols .benefit__item.benefit__item--classic:nth-child(3n-1) .benefit__content:before { width:100%; border-top: 3px dotted #ff7846; display:block; height:3px; top:100%; left:0; right:0; }
  .grid-cols .benefit__item.benefit__item--classic:nth-child(3n) .benefit__content:before { width:80%; border-top: 3px dotted #ff7846; display:block; height:3px; top:100%; left:0; right:auto; }

  .grid-cols.total-rows-1 .benefit__item.benefit__item--classic .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-1.total-items-1 .benefit__item.benefit__item--classic:nth-child(1) .benefit__content-w:after { border-left: 3px dotted #ff7846; }
  .grid-cols.total-rows-1.total-items-2 .benefit__item.benefit__item--classic:nth-child(1) .benefit__content-w:after { border-left: 3px dotted transparent; }

  .grid-cols.total-rows-2 .benefit__item.benefit__item--classic:nth-child(4) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-2 .benefit__item.benefit__item--classic:nth-child(5) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-2 .benefit__item.benefit__item--classic:nth-child(6) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-2.total-items-4 .benefit__item.benefit__item--classic:nth-child(4) .benefit__content-w:after { border-left: 3px dotted #ff7846; }
  .grid-cols.total-rows-2.total-items-5 .benefit__item.benefit__item--classic:nth-child(4) .benefit__content-w:after { border-left: 3px dotted transparent; }

  .grid-cols.total-rows-3 .benefit__item.benefit__item--classic:nth-child(7) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-3 .benefit__item.benefit__item--classic:nth-child(8) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-3 .benefit__item.benefit__item--classic:nth-child(9) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-3 .benefit__item.benefit__item--classic:nth-child(6) .benefit__content:after { display:none !important; }
  .grid-cols.total-rows-3.total-items-7 .benefit__item.benefit__item--classic:nth-child(7) .benefit__content-w:after { border-left: 3px dotted #ff7846; }
  .grid-cols.total-rows-3.total-items-8 .benefit__item.benefit__item--classic:nth-child(7) .benefit__content-w:after { border-left: 3px dotted transparent; }

  .grid-cols.total-rows-4 .benefit__item.benefit__item--classic:nth-child(10) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-4 .benefit__item.benefit__item--classic:nth-child(11) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-4 .benefit__item.benefit__item--classic:nth-child(12) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-4.total-items-10 .benefit__item.benefit__item--classic:nth-child(10) .benefit__content-w:after { border-left: 3px dotted #ff7846; }
  .grid-cols.total-rows-4.total-items-11 .benefit__item.benefit__item--classic:nth-child(10) .benefit__content-w:after { border-left: 3px dotted transparent; }

  .grid-cols.total-rows-5 .benefit__item.benefit__item--classic:nth-child(13) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-5 .benefit__item.benefit__item--classic:nth-child(14) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-5 .benefit__item.benefit__item--classic:nth-child(15) .benefit__content:before { display:none !important; }
  .grid-cols.total-rows-5.total-items-13 .benefit__item.benefit__item--classic:nth-child(13) .benefit__content-w:after { border-left: 3px dotted #ff7846; }
  .grid-cols.total-rows-5.total-items-14 .benefit__item.benefit__item--classic:nth-child(13) .benefit__content-w:after { border-left: 3px dotted transparent; }

  .lwb-item .screen-pattern { width: 1869px; height: 837px; }

}

@media (max-width:1350px ) {

  .section-landing-hero h3 { text-align:center; font-size:18px; line-height:1.3; }
  .section-landing-hero h2 { text-align:center; font-size:40px; line-height:1; }
  .section-landing-hero .lhc-flx .lhc-content { text-align: center; }
  .section-landing-hero .lhc-flx .lhc-content { width: 100%; order:1; margin-bottom:2rem; padding: 0 1rem; }
  .section-landing-hero .lhc-flx .lhc-carousel { width: 100%; order:1; }
  .section-landing-hero .lhc-info { font-size: 14px; line-height: 130%; }
  .section-landing-hero .lhc-trustpilot-reviews { font-size: 10px; line-height: 150%; }
  .section-landing-hero .lhc-trustpilot-number { font-size: 18px; line-height: 20px; }
  .lhc-img img.img-lhc-hero { max-width:70%; }
  .lhc-mobile-screen img { min-width: auto; width: 100%; max-width: 400px; margin: 0; border-radius:20px; }
  .section-landing-hero .lhc-info .sep { content: ""; display: block; line-height: 1.33em; }
  .section-landing-hero .lhc-info .sep:last-of-type { display:none; }
  .section-landing-hero.image-position-left .lhc-flx .lhc-content { width: 100%; order: 1; text-align: center; }
  .section-landing-hero.image-position-left .lhc-flx .lhc-carousel { width: 100%; order: 2; text-align: center; }
  .section-landing-hero.image-position-left .lhc-flx .lhc-content { padding-right: 6%; padding-left: 6%; }
  .section-landing-hero.image-position-left .lhc-desktop-screen { text-align: right; position: relative; display: inline-block; width: 100%; }
  .section-landing-hero.image-position-left .lhc-person {     position: absolute; left: 0; right: 0; text-align: center; top: 20%; z-index: 10; max-width: 100%; }
  .section-landing-hero.image-position-left .lhc-mobile-screen { position: absolute; left: 6%; right: auto; z-index: 5; top: 0%; }
  section.section-landing-hero.image-position-left .app-link { position: absolute; text-align: center;bottom: -2rem; left: 0; right: 0; color: #0028F2; }
  section.section-landing-hero.image-position-left.color-invert .app-link { color: #0028F2; }

  .bg-wave-landing-hero-bottom { position: absolute; bottom: 0rem; z-index: 2; lefT: 0; right: 0; background: #fff;}
  .bg-wave-landing-hero-bottom img { display: block; width: 100%; height: 150px; }

  .lhc-desktop-screen { text-align: right; position: relative; display: inline-block; width: 100%; }
  .lhc-mobile-screen { position: absolute; left: 6%; right: auto; z-index: 5; top: 0; }
  .lhc-person { position: absolute; left: 0; right: 0; text-align: center; top: 20%; z-index: 10; max-width: 100%; }
  .lhc-person img {     display: block; width: 100%; margin: 0 auto; width:100%; max-width: 330px; height: auto; }
  .section-landing-hero { margin-bottom:0rem }
  .section-social-proof { margin-top:5rem; }
  .section-landing-hero .lhc-trustpilot-stars-flx { justify-content: center; }
  .lhc-item-logo-list { justify-content: center; }
  .section-landing-hero .lhc-trustpilot-logo { text-align: center; }
  .app-link { bottom: 50px; }

}

@media (max-width: 1080px) {
  .section-social-proof.items-3 .social-impact-item { margin: 0 auto 3rem; padding: 0 3.5%; max-width: 100vw; }
  .social-impact-item .d-flex.align-items-center.justify-content-center { margin-top: 0rem; }
}

@media (max-width: 1024px) {
  .bg-wave-landing-hero-bottom { position: absolute; bottom:0; top: auto; z-index: 2; lefT: 0; right: 0; background: #fff; }

}

@media (max-width: 991px)  {

  main > section { margin: 3rem 0; padding:0; }

  main > section.landing-why-bildu .lwb-item.right-aligned-image { margin-top: 5rem; }

  body.temp-page-landing main > section.section-landing-hero { overflow-x:clip;  }
  body.temp-page-landing main > section.landing-why-bildu { overflow-x: clip; }


  .header.type-minimalistic .header__hamburger.js-navigation-trigger { display:none !important; }
  .header.type-minimalistic .header__logo { display: block; }
  .header.type-minimalistic .header__action.d-none { display: flex!important; flex-direction: row; align-items: center; }
  .header.type-minimalistic .header__action.d-none .header__btn{ transform: translateY(-0%); position: relative; top: 0; margin-left: 15px; right: 0; width: 80px; min-width: 120px; }
  .header.type-minimalistic .header__flex > .header__btn { display:none !important; }
  .header.type-minimalistic .header__navigation .main-nav { position:relative; transform:translate(0); padding: 20px 0px; background: transparent; }
  .header.type-minimalistic .header__navigation .header__flex { text-align: left; display: -webkit-box; display: -ms-flexbox;display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
  .header.type-minimalistic .main-nav__item { margin-bottom: 0; }
  .header.type-minimalistic .main-nav__item .main-nav__link { font-size: 14px; }

  body main > section > div.landing-hero-content { padding-top: 70px !important; }
  .section-landing-hero .lhc-flx { margin: 0px 0 0 0; }

  .social-impact-item .img--responsive.img--hand { height: 110px; width: auto; }
  .custom-testimonial-imagery { display:none; }

  .section-social-proof .social-impact-item h2 { color: #ff7846; font-size:4rem; line-height:124%; position:relative; }
  .section-social-proof .social-impact-item { width:100%; margin-bottom: 4rem; }



}

@media (max-width: 771px) {

  .grid-cols .benefit__item .benefit__content { border-top: 3px dotted #ff7846; }

  .section-landing-hero h3 { text-align:center; font-size:18px; line-height:1.3; }
  .section-landing-hero h2 { text-align:center; font-size:40px; line-height:1; }
  .section-landing-hero .lhc-flx .lhc-content { text-align: center; }
  .section-landing-hero .lhc-flx .lhc-content { width: 100%; order:1; margin-bottom:2rem; padding: 0 1rem; }
  .section-landing-hero .lhc-flx .lhc-carousel { width: 100%; order:1; }
  .section-landing-hero .lhc-info { font-size: 14px; line-height: 130%; }
  .section-landing-hero .lhc-trustpilot-reviews { font-size: 10px; line-height: 150%; }
  .section-landing-hero .lhc-trustpilot-number { font-size: 18px; line-height: 20px; }
  .lhc-img img.img-lhc-hero { max-width:70%; }
  .lhc-mobile-screen img { min-width: 0; width: 100%; max-width: 50%; min-height: 0; margin: 0; border-radius: 20px; }
  .lhc-desktop-screen-w { text-align: right; margin-right: 0; }

  .section-landing-hero.image-position-left .lhc-flx .lhc-content { width: 100%; order: 1; text-align: center; }
  .section-landing-hero.image-position-left .lhc-flx .lhc-carousel { width: 100%; order: 2; text-align: center; }
  .section-landing-hero.image-position-left .lhc-flx .lhc-content { padding-right: 6%; padding-left: 6%; }
  .section-landing-hero.image-position-left .lhc-desktop-screen { text-align: right; position: relative; display: inline-block; width: 100%; }
  .section-landing-hero.image-position-left .lhc-person {     position: absolute; left: 0; right: 0; text-align: center; top: 8%; z-index: 10; max-width: 100%; }
  .section-landing-hero.image-position-left .lhc-mobile-screen { position: absolute; left: 15px; right: auto; z-index: 5; top: 20%; }
  section.section-landing-hero.image-position-left .app-link { position: absolute; text-align: center;bottom: -2rem; left: 0; right: 0; color: #0028F2; }
  body.temp-page-landing main > section.section-landing-hero { overflow: inherit; }

  body.temp-page-landing main > section.landing-why-bildu { padding: 0rem 0 0rem; }
   .lwb-item .lwb-imagery-col { order: 1 !important; margin-top: 5rem; margin-bottom: 1rem; }
   .lwb-item .lwb-content-col { order:2 !important; }
   .lwb-item { margin-top: 30px; }
   .lwb-headline { margin: 0 0 100px 0; text-align: center; }
   .section-social-proof.items-3 .social-impact-item { margin: 0 auto 50px; padding: 0 3.5%; max-width: 100vw; }
     .social-impact-item .img--responsive.img--hand { height: 110px; width: auto; }
   .section-landing-hero .app-link { position: absolute; text-align: center; bottom: -2rem; left: 0; right: 0;  padding: 0 15px; }
   .section-landing-hero.color-invert .app-link { color: #0028F2; }
   .bg-wave-landing-hero-bottom { position: absolute; bottom: 0rem; z-index: 2; lefT: 0; right: 0; background: #fff;}
   .bg-wave-landing-hero-bottom img { display: block; width: 100%; height: 150px; }

   .lhc-desktop-screen { text-align: right; position: relative; display: inline-block; width: 100%; }
   .lhc-mobile-screen { position: absolute; left: 15px; right:auto; z-index: 5; top: 20%; }
   .lhc-person { position: absolute; left: 0; right: 0; text-align: center; top: 8%; z-index: 10; max-width: 100%; }
   .lhc-person img {     display: block; width: 100%; margin: 0 auto; width:100%; max-width: 330px; height: auto; }
   .section-landing-hero { margin-bottom:0rem }
   .section-social-proof { margin-top:6rem; }
   .section-landing-hero .lhc-trustpilot-stars-flx { justify-content: center; }
   .lhc-item-logo-list { justify-content: center; }
   .section-landing-hero .lhc-trustpilot-logo { text-align: center; }

   .grid-cols .benefit__item .benefit__content { border-top: 3px dotted #ff7846; }
   .benefit__content { border-left: 3px dotted #ff7846;  border-right: 3px dotted transparent; border-collapse:collapse; }
   .benefit__content:after { border-left: 0px dotted transparent; }
   .grid-cols .benefit__item.benefit__item--classic:nth-child(2n-1) .benefit__content { border-left: 3px dotted transparent; }


   .lt-column-content { order:2 !important; width:100% !important; }
   .lt-column-imagery { order:1 !important; width:100% !important; margin-bottom:2rem; }
   .row.testimonial-container-margin { margin-bottom: 0rem; display: flex; width: 100%; flex-wrap: wrap; }
   .testimonial-controls { display: inline-block; margin-top: 5rem; }
   .landing-testimonials-controls .row.testimonial-container-margin { display:block; }

   .lwb-item .delta.lwb-subhead { text-align: left; }
   .lwb-item .beta.lwb-mainhead { text-align: left; }
   .lwb-item .screen-pattern { position: absolute; top: 35%; z-index: 1;  width: 1025px; }
   .lwb-circle-art { max-width: 320px; max-height: 320px; position: absolute; text-align: left; top: -105px; right: 0; }
   .lwb-item.right-aligned-image .screen-pattern { position: absolute; top: 28%; z-index: 1;  width: 986px; left: 51%; }
   .lwb-item.right-aligned-image .lwb-circle-art { position: absolute; text-align: left; top: -125px; right: 0; left: 0; z-index: 1; overflow: hidden; border-radius: 1000px; }
   .lwb-item.img--responsive { display: block; max-width: 80vw; margin: 0 auto; height: auto; }
   .lwb-content-col .beta.lwb-mainhead { font-size:40px; line-height:1.2; }
}

@media (max-width: 580px) {
  .benefit__content { border-left: 3px dotted transparent; }
  .lwb-item.right-aligned-image .lwb-imagery { text-align: center; margin: 0 auto; max-width: 220px; min-height: 360px; }
  .lwb-item.right-aligned-image .lwb-imagery img, .lwb-item.right-aligned-image .lwb-imagery img.img--responsive { display: inline-block; margin: 0 auto; }
  .lwb-item.right-aligned-image .lwb-circle-art { top: -140px; }
  .lwb-item.left-aligned-image .lwb-imagery { text-align: center; margin: 0 auto; max-width: 220px; min-height: 360px; }
  .lwb-item.left-aligned-image .lwb-imagery img, .lwb-item.right-aligned-image .lwb-imagery img.img--responsive { display: inline-block; margin: 0 auto; }
  .lwb-item.left-aligned-image .lwb-circle-art { top: -140px; }
}

@media (max-width: 480px)  {
}


@media (max-width: 480px) {
  .section-landing-hero .app-link { bottom: -2rem; top: auto; }
  .lhc-person img { max-width: 238px; }

}

@media (max-width: 400px) {
  .section-landing-hero .app-link { bottom: -2rem; top: auto; }
  .bg-wave-landing-hero-bottom > img { display:none }
  .bg-mobile-wave { background: #fff; display: block !important; position: ABSOLUTE; left: 0; bottom: 0; padding-bottom: 90px; right: auto; min-width: 100vw; }
  .bg-mobile-wave img { height: 181px; }

}

@media (max-width: 375px) {

}
