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

.checkbox--big {
    margin-bottom: 1.2rem;
}

.checkbox--big .checkbox__input-hidden:checked + .checkbox__label .checkbox__box {
    background-color: #002bf2;
}

.checkbox--big .checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
    top: 7px;
    left: 13px;
    width: 10px;
    height: 19px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
}

@media (min-width: 771px) {
    .checkbox--big .checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
        top: 11px;
        left: 18px;
    }
}

.checkbox--big .checkbox__box {
    border-radius: 100%;
    height: 40px;
    border: 2px solid #002bf2;
    max-width: 40px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    width: 40px;
}

@media (min-width: 771px) {
    .checkbox--big .checkbox__box {
        max-width: 50px;
        height: 50px;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50px;
        flex: 0 0 50px;
        width: 50px;
    }
}

.checkbox--big .checkbox__text {
    color: #002bf2;
    display: block;
    text-transform: uppercase;
    font-family: "Inter Bold", Arial, sans-serif;
    font-weight: 700;
    padding-left: 1.25rem;
    max-width: calc(100% - 40px);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(100% - 40px);
    flex: 0 0 calc(100% - 40px);
    width: calc(100% - 40px);
    font-size: 18px;
    font-size: 1.125rem;
}

@media (min-width: 771px) {
    .checkbox--big .checkbox__text {
        font-size: 20px;
        font-size: 1.25rem;
        max-width: calc(100% - 50px);
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 50px);
        flex: 0 0 calc(100% - 50px);
        width: calc(100% - 50px);
    }
}

.checkbox--big .checkbox__text small {
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    text-transform: none;
    display: block;
    color: #002bf2;
    line-height: 1.4;
    font-size: 14px;
    font-size: 0.875rem;
}

.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: 0px;
    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;
}

/* Form base */
.form__input, .form__textarea {
    width: 100%;
    height: 55px;
    padding: 0.2rem 2rem;
    border: 3px solid #002bf2;
    background-color: #ffffff;
    color: #002bf2;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
    border-radius: 50px;
    outline: none !important;
    letter-spacing: -0.01em;
    -webkit-appearance: none;
}

.form__input:-moz-placeholder-shown, .form__textarea:-moz-placeholder-shown {
    border-color: #002bf2;
}

.form__input:-ms-input-placeholder, .form__textarea:-ms-input-placeholder {
    border-color: #002bf2;
}

.form__input:placeholder-shown, .form__textarea:placeholder-shown {
    border-color: #002bf2;
}

.form__input:focus, .form__textarea:focus {
    border-color: #002bf2;
}

.form__textarea {
    height: 150px;
    padding: 1rem 1.5rem;
    line-height: 1.5rem;
    resize: none;
    border-radius: 0;
}

@media (min-width: 576px) {
    .form__textarea--limit {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        resize: none;
        min-height: 100px;
        max-height: 250px;
    }
}

@media (max-width: 575px) {
    .form__textarea--limit {
        height: 200px !important;
    }
}

.form__select {
    width: 100%;
    height: 60px;
    padding: 0.2rem 1.5rem;
    font-family: "Sonda Bold", Arial, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    border: 2px solid #000000;
    outline: none;
    background-color: #ffffff;
    font-size: 16px;
    font-size: 1rem;
    -webkit-appearance: value;
    -moz-appearance: value;
    -ms-appearance: value;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
}

.form__icon {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    height: 60px;
    font-size: 22px;
    font-size: 1.375rem;
    color: #000000;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    pointer-events: none;
}

.form__icon-block .form__input {
    padding-right: 60px;
}

.form__label {
    display: block;
    margin: 0 0 10px;
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 700;
    color: #000000;
    font-size: 16px;
    font-size: 1rem;
}

.form__field {
    position: relative;
}

.form__field--small {
    margin-bottom: 0.5rem;
}

.form__field--medium {
    margin-bottom: 1rem;
}

.form__field--big {
    margin-bottom: 2rem;
}

.form__placeholder {
    position: relative;
    z-index: 1;
}

.form__placeholder.is-active .form__label {
    width: calc(100% - 20px);
    -webkit-transform: translateX(1px) translateY(1px);
    -ms-transform: translateX(1px) translateY(1px);
    transform: translateX(1px) translateY(1px);
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px 25px 5px;
}

.form__placeholder .form__input,
.form__placeholder .form__textarea {
    padding: 25px 25px 13px;
}

.form__placeholder .select2-container .select2-selection--single {
    padding: 7px 40px 0 25px;
}

.form__placeholder .form__label {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    margin: 0;
    cursor: text;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateX(1px) translateY(8px);
    -ms-transform: translateX(1px) translateY(8px);
    transform: translateX(1px) translateY(8px);
    text-transform: none;
    pointer-events: none;
    padding: 15px 25px 10px;
}

.form__placeholder-textarea .form__label {
    top: 1px;
    left: 2px;
    background: white;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
}

/* Placeholder helpers */
input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #002bf2;
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
    color: #002bf2;
}
input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #002bf2;
}
input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #002bf2;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
    color: #002bf2;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #002bf2;
}

input::-moz-input-placeholder,
select::-moz-input-placeholder,
textarea::-moz-input-placeholder {
    color: #002bf2;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #002bf2;
}

.form__field--white input::-webkit-input-placeholder, .form__field--white select::-webkit-input-placeholder, .form__field--white textarea::-webkit-input-placeholder {
    color: white;
}

.form__field--white input::-moz-placeholder, .form__field--white select::-moz-placeholder, .form__field--white textarea::-moz-placeholder {
    color: white;
}

.form__field--white input:-ms-input-placeholder, .form__field--white select:-ms-input-placeholder, .form__field--white textarea:-ms-input-placeholder {
    color: white;
}

.form__field--white input::-ms-input-placeholder, .form__field--white select::-ms-input-placeholder, .form__field--white textarea::-ms-input-placeholder {
    color: white;
}

.form__field--white input::placeholder,
.form__field--white select::placeholder,
.form__field--white textarea::placeholder {
    color: white;
}

.form__field--white input::-webkit-input-placeholder,
.form__field--white select::-webkit-input-placeholder,
.form__field--white textarea::-webkit-input-placeholder {
    color: white;
}

.form__field--white input::-moz-input-placeholder,
.form__field--white select::-moz-input-placeholder,
.form__field--white textarea::-moz-input-placeholder {
    color: white;
}

.form__field--white input:-ms-input-placeholder,
.form__field--white select:-ms-input-placeholder,
.form__field--white textarea:-ms-input-placeholder {
    color: white;
}

input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
    color: transparent;
    opacity: 1;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
    color: transparent;
    opacity: 1;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
    color: transparent;
    opacity: 1;
}

input:focus::-ms-input-placeholder, textarea:focus::-ms-input-placeholder {
    color: transparent;
    opacity: 1;
}

input:focus::placeholder,
textarea:focus::placeholder {
    color: transparent;
    opacity: 1;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
    color: transparent;
    opacity: 1;
}

input:focus::-moz-input-placeholder,
textarea:focus::-moz-input-placeholder {
    color: transparent;
    opacity: 1;
}

input:focus:-moz-input-placeholder,
textarea:focus:-moz-input-placeholder {
    color: transparent;
    opacity: 1;
}

/* Form validation */
.has-field-error .form__field-message {
    display: block;
}

.form__field-message {
    display: none;
    margin-top: 5px;
    color: #870000;
    text-align: right;
    font-size: 14px;
    font-size: 0.875rem;
}

.parsley-errors-list {
    color: #ea4335;
    text-align: right;
    font-size: 14px;
    font-size: 0.875rem;
}

.parsley-errors-list li {
    display: block;
    margin-top: 5px;
}

/* 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;
    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: 260px;
}

@media (min-width: 576px) {
    .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: #ffffff;
    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;
}

/* 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, -webkit-transform 250ms ease;
    transition: opacity 250ms ease, -webkit-transform 250ms ease;
    -o-transition: opacity 250ms ease, transform 250ms ease;
    transition: opacity 250ms ease, transform 250ms ease;
    transition: opacity 250ms ease, transform 250ms ease, -webkit-transform 250ms ease;
}

.hidden-content.is-active {
    width: auto;
    height: auto;
    opacity: 1;
    overflow: visible;
    visibility: visible;
    -webkit-transition: opacity 250ms ease, -webkit-transform 250ms ease;
    transition: opacity 250ms ease, -webkit-transform 250ms ease;
    -o-transition: opacity 250ms ease, transform 250ms ease;
    transition: opacity 250ms ease, transform 250ms ease;
    transition: opacity 250ms ease, transform 250ms ease, -webkit-transform 250ms ease;
}

.hidden-content[data-content='content-name'] {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
}

.hidden-content[data-content='content-name'].is-active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.hidden-content[data-content='content-services'] {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.hidden-content[data-content='content-services'].is-active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@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: -80px;
        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: 1000px;
    }
}

.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 (min-width: 771px) {
    .img--hand-small {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .img--hand-small {
        width: 300px;
    }
}

@media (min-width: 1200px) {
    .img--hand-small {
        width: 400px;
    }
}

.img--center {
    position: absolute;
    top: 38%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 180px;
    z-index: -1;
}

@media (min-width: 771px) {
    .img--center {
        top: 50%;
        width: 180px;
    }
}

.img--center-top {
    top: 40%;
    width: 100px;
    z-index: 2;
}

@media (min-width: 576px) {
    .img--center-top {
        width: 160px;
    }
}

@media (min-width: 771px) {
    .img--center-top {
        top: 20%;
        width: 160px;
    }
}

.img--center-top-ext {
    top: 40%;
    width: 100px;
    z-index: 2;
}

@media (min-width: 576px) {
    .img--center-top-ext {
        width: 140px;
    }
}

@media (min-width: 771px) {
    .img--center-top-ext {
        top: 45%;
        width: 140px;
    }
}

@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;
    }
}

@media (min-width: 992px) {
    .bg-screen-logo--left {
        position: absolute;
        z-index: -3;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 837px;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        right: auto;
        left: 0;
        top: 0;
        width: 760px;
        height: auto;
    }
}

@media (min-width: 992px) {
    .bg-screen-logo--left {
        width: 480px;
    }
}

@media (min-width: 1200px) {
    .bg-screen-logo--left {
        width: 590px;
    }
}

@media (min-width: 1440px) {
    .bg-screen-logo--left {
        width: 680px;
    }
}

@media (min-width: 1600px) {
    .bg-screen-logo--left {
        width: 760px;
    }
}

@media (min-width: 992px) {
    .bg-screen-logo--left-ext {
        right: calc(((100vw - 1360px) / 2) + 680px + 50px);
        left: auto;
    }
}

@media (min-width: 771px) {
    .bg-screen-logo--left-screen {
        position: absolute;
        z-index: -3;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 837px;
        right: auto;
        left: 0;
        top: 50%;
        width: 460px;
        height: auto;
        left: calc((-50% + 50vw) - 100px);
    }
}

@media (min-width: 992px) {
    .bg-screen-logo--left-screen {
        left: calc((-50% + 50vw) - 100px);
        width: 480px;
    }
}

@media (min-width: 1200px) {
    .bg-screen-logo--left-screen {
        width: 590px;
    }
}

@media (min-width: 1440px) {
    .bg-screen-logo--left-screen {
        width: 700px;
    }
}

@media (min-width: 1600px) {
    .bg-screen-logo--left-screen {
        width: 760px;
    }
}

@media (min-width: 771px) {
    .bg-screen-logo--right-screen {
        right: calc((-50% + 50vw) - 100px);
        left: auto;
    }
}

@media (min-width: 992px) {
    .bg-screen-logo--right-screen {
        right: calc((-50% + 50vw) - 100px);
        left: auto;
    }
}

@media (min-width: 992px) {
    .bg-screen-logo--right-ext {
        left: calc(((100vw - 1360px) / 2) + 680px + 50px);
    }
}

.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;
}

@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;
    }
}

.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%;
    }
}

.bg-image-onboard {
    left: auto;
    right: 0;
    width: 718px;
    height: 896px;
    bottom: 0;
    top: auto;
    display: none;
}

@media (min-width: 771px) {
    .bg-image-onboard {
        width: 328px;
        height: 496px;
    }
}

@media (min-width: 992px) {
    .bg-image-onboard {
        display: block;
        width: 478px;
        height: 666px;
    }
}

@media (min-width: 1200px) {
    .bg-image-onboard {
        width: 818px;
        height: 1136px;
        top: 50px;
        right: -250px;
    }
}

@media (min-width: 1440px) {
    .bg-image-onboard {
        width: 848px;
        height: 1066px;
    }
}

@media (min-width: 1600px) {
    .bg-image-onboard {
        width: 1138px;
        height: 1416px;
    }
}

@media (min-width: 2000px) {
    .bg-image-onboard {
        width: 1288px;
        height: 1616px;
        right: -80px;
    }
}

@media (min-width: 1440px) and (max-height: 768px) {
    .bg-image-onboard {
        width: 788px;
        height: 986px;
    }
}

@media (min-width: 1600px) and (max-height: 860px) {
    .bg-image-onboard {
        width: 978px;
        height: 1226px;
    }
}

.page-onbarding main {
    position: static;
    z-index: 2;
}

.page-onbarding section {
    position: relative;
    z-index: auto;
}

@media (min-width: 1200px) {
    .page-onbarding section {
        overflow: hidden;
    }
}

.page-onbarding .footer {
    z-index: auto;
}

.bg-image-on {
    position: absolute;
    bottom: -50px;
    right: -70px;
    width: 60%;
    height: 100%;
    display: none;
}

@media (min-width: 992px) {
    .bg-image-on {
        display: block;
    }
}

.bg-image-on img {
    margin-left: auto;
    width: 100%;
}

/* 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-2-7 {
    margin-bottom: 2.7rem;
}

.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-1-5 {
        margin-bottom: 1.5rem;
    }
    .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-9 {
        margin-bottom: 9rem;
    }
    .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 (min-width: 576px) {
    .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;
}

@media (min-width: 771px) {
    .h-min-vh-100 {
        min-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-none {
    text-transform: none;
}

.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%;
    position: relative;
    height: 100%;
}

@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;
    }
}

.alfa-big-ext {
    font-size: 70px;
    font-size: 4.375rem;
}

@media (min-width: 576px) {
    .alfa-big-ext {
        font-size: 110px;
        font-size: 6.875rem;
    }
}

@media (min-width: 771px) {
    .alfa-big-ext {
        font-size: 160px;
        font-size: 10rem;
    }
}

@media (min-width: 1200px) {
    .alfa-big-ext {
        font-size: 200px;
        font-size: 12.5rem;
    }
}

@media (min-width: 1440px) {
    .alfa-big-ext {
        font-size: 250px;
        font-size: 15.625rem;
    }
}

@media (min-width: 992px) and (max-height: 800px) {
    .alfa-big-ext {
        font-size: 180px;
        font-size: 11.25rem;
    }
}

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: 15px;
    font-size: 0.9375rem;
}

@media (min-width: 576px) {
    h6,
    .zeta {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

@media (min-width: 771px) {
    h6,
    .zeta {
        font-size: 15px;
        font-size: 0.9375rem;
    }
}

.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-primary-bold h1,
.h--font-primary-bold .alfa,
.h--font-primary-bold h2,
.h--font-primary-bold .beta,
.h--font-primary-bold h3,
.h--font-primary-bold .gamma,
.h--font-primary-bold h4,
.h--font-primary-bold .delta,
.h--font-primary-bold h5,
.h--font-primary-bold .epsilon,
.h--font-primary-bold h6,
.h--font-primary-bold .zeta {
    font-family: "Inter Bold", 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--text-none h1,
.h--text-none .alfa,
.h--text-none h2,
.h--text-none .beta,
.h--text-none h3,
.h--text-none .gamma,
.h--text-none h4,
.h--text-none .delta,
.h--text-none h5,
.h--text-none .epsilon,
.h--text-none h6,
.h--text-none .zeta {
    text-transform: none;
}

.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;
    font-family: "Inter Regular", Arial, sans-serif;
}

a:focus,
a:active,
a:visited {
    outline: none;
}

.a-hover:hover, .a-hover:focus {
    text-decoration: underline;
}

.a-hover-color .a-link__text:hover, .a-hover-color .a-link__text:focus {
    color: #ff7846;
}

.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--xsmall {
    padding: 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--regular {
    font-family: "Inter Regular", Arial, sans-serif;
    font-weight: 400;
}

.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;
}

@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;
}

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-onboard {
    padding: 0 1.2rem 0;
}

@media (min-width: 771px) {
    .section-onboard {
        padding: 0;
    }
}

.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-4 {
    padding: 6rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-8-4 {
        padding: 8rem 0 4rem;
    }
}

.padding-style-8-6 {
    padding: 6rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-8-6 {
        padding: 8rem 0 6rem;
    }
}

.padding-style-8-6-ext {
    padding: 3rem 0 3rem;
}

@media (min-width: 771px) {
    .padding-style-8-6-ext {
        padding: 8rem 0 8rem;
    }
}

.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-330 {
    max-width: 330px;
}

.content-width-360 {
    max-width: 360px;
}

.content-width-400 {
    max-width: 400px;
}

.content-width-420 {
    max-width: 420px;
}

.content-width-450 {
    max-width: 450px;
}

.content-width-500 {
    max-width: 500px;
}

.content-width-600 {
    max-width: 600px;
}

@media (min-width: 992px) {
    .content-width-md-450 {
        max-width: 450px;
    }
}

@media (min-width: 771px) {
    .content-width-sm-500 {
        max-width: 500px;
    }
    .content-width-sm-330 {
        max-width: 330px;
    }
    .content-width-sm-650 {
        max-width: 650px;
    }
}

@media (min-width: 576px) {
    .content-width-xs-330 {
        max-width: 330px;
    }
}

@media (min-width: 576px) and (min-width: 577px) and (max-width: 771px) {
    .content-width-xs-330 {
        margin: 0 auto;
    }
}

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;
    }
}

.page-onbarding main {
    padding-top: 0;
}

@media (min-width: 992px) {
    .page-onbarding main {
        padding-top: 0;
    }
}

.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;
    background-color: #ffffff;
    padding: 3.125rem 0.5rem 3.125rem;
}

@media (min-width: 992px) {
    .footer {
        padding: 11.25rem 0 9.375rem;
    }
}

.footer--onboard {
    padding: 1.875rem 0.5rem 0.625rem;
}

@media (min-width: 992px) {
    .footer--onboard {
        padding: 0 0 3.125rem;
    }
}

.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 {
    z-index: 3;
    position: relative;
    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;
}

.footer-link {
    display: inline-block;
    text-decoration: underline;
}

.footer-link.dropdown__trigger {
    padding: 1rem 0;
    padding-right: 20px;
}

.footer-link.dropdown__trigger:hover {
    color: #002bf2;
}

.footer-link:hover {
    color: #ff7846;
}

/* 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: 0px;
    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:hover .dropdown__trigger {
        color: #ff7846;
    }
    .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.is-active .dropdown__trigger {
    color: #ff7846;
}

.dropdown.is-active .dropdown__trigger .dropdown__icon {
    height: 22px;
}

@media (min-width: 576px) {
    .dropdown.is-active .dropdown__trigger .dropdown__icon {
        height: 26px;
    }
}

.dropdown.is-active .dropdown__trigger .dropdown__icon svg {
    fill: #ff7846;
}

.dropdown.is-active .dropdown__trigger .dropdown__icon--down {
    -webkit-transform: translateY(-50%) rotateZ(180deg);
    -ms-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotateZ(180deg);
}

.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;
}

.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: 0px 24px 104px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 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;
    }
}

.dropdown--icon .dropdown__content {
    position: absolute;
    min-width: 240px;
    bottom: 100%;
    top: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 10px 35px;
    text-align: center;
    visibility: hidden;
    width: 100%;
    height: auto;
    left: 50%;
    opacity: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 24px 104px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 24px 104px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    max-width: 240px;
}

.dropdown--icon .dropdown__content .dropdown__link {
    text-align: center;
    padding: 0.45rem 0;
}

.dropdown--icon .dropdown__content:before {
    content: '';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: auto;
    bottom: -14px;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 14px 0 14px;
    border-color: #ffffff transparent transparent transparent;
}

.dropdown--icon .dropdown__icon {
    height: 18px;
    margin-left: 5px;
    right: 0;
}

@media (min-width: 576px) {
    .dropdown--icon .dropdown__icon {
        height: 22px;
    }
}

@media (min-width: 771px) {
    .dropdown--icon .dropdown__icon {
        height: 27px;
    }
}

.dropdown--icon .dropdown__icon svg {
    font-size: 12px;
    font-size: 0.75rem;
}

@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-section--medium {
    padding: 4rem 0 4rem;
}

@media (min-width: 771px) {
    .hero-section--medium {
        padding: 4rem 0 4rem;
    }
}

@media (max-width: 991px) {
    .hero-section--medium {
        overflow: hidden;
    }
}

@media (min-width: 992px) {
    .hero-section--medium {
        padding: 7rem 0 7rem;
    }
}

.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;
}

.screen-text {
    position: absolute;
    left: calc(100% + 30px);
    bottom: 20px;
    height: 20px !important;
    white-space: pre;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
}

.screen-text p {
    letter-spacing: 0.09em;
    font-weight: 700;
}

@media (min-width: 576px) {
    .benefit__item--two::after {
        content: '';
        position: absolute;
    }
}

@media (min-width: 576px) and (min-width: 576px) {
    .benefit__item--two:after {
        right: 0;
        top: 50px;
        height: calc(100% - 180px);
        width: 4px;
        border-left: 3px dotted #ff7846;
    }
}

@media (min-width: 576px) and (min-width: 771px) {
    .benefit__item--two:after {
        height: calc(100% - 180px);
    }
}

@media (min-width: 576px) {
    .benefit__item--two .benefit__content:before, .benefit__item--two .benefit__content:after {
        display: none;
    }
    .benefit__item--two:nth-child(2n + 2):after {
        display: none;
    }
    .benefit__item--two:nth-child(2n + 2) .benefit__content:after {
        display: none;
    }
}

@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;
    }
}

@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;
    }
}

@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;
}

.invoice-screen.overflow-visible {
    overflow: visible;
}

@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: 0px 34px 54px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 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: 738px;
    }
}

@media (min-width: 1200px) {
    .screen-mobile--absolute {
        top: 50%;
        right: -80px;
    }
}

@media (min-width: 992px) {
    .screen-mobile--absolute-ext-left {
        top: 50%;
        left: calc(47% - 110px);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        right: auto;
        border-width: 10px;
        height: 440px;
        max-width: 220px;
    }
    .screen-mobile--absolute-ext-left .screen-mobile-img {
        border-radius: 29px;
    }
}

@media (min-width: 992px) {
    .screen-mobile--absolute-ext-right {
        top: 60%;
        right: calc(30% - 110px);
        left: auto;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        margin: 0;
        border-width: 10px;
        height: 440px;
        max-width: 220px;
    }
    .screen-mobile--absolute-ext-right .screen-mobile-img {
        border-radius: 29px;
    }
}

@media (min-width: 1200px) {
    .screen-mobile--absolute-ext-right {
        right: calc(35% - 110px);
    }
}

.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-group--large {
    width: calc(100% - 100px);
    min-width: 500px;
}

@media (min-width: 771px) {
    .screen-desktop-group--large {
        min-width: 450px;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .screen-desktop-group--large {
        width: calc(60vw - 50px);
    }
}

@media (min-width: 1200px) {
    .screen-desktop-group--large {
        width: calc(55vw - 50px);
    }
}

@media (min-width: 1440px) {
    .screen-desktop-group--large {
        width: calc(50vw - 50px);
    }
}

.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 0px 0px;
    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: 0px 0px 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-desktop--rounded {
    border: 10px solid #dddddd;
    border-radius: 40px;
    background: #fafafa;
    overflow: hidden;
}

@media (min-width: 576px) {
    .screen-desktop--rounded {
        border: 10px solid #dddddd;
    }
}

@media (min-width: 992px) {
    .screen-desktop--rounded {
        border: 16px solid #dddddd;
    }
}

.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;
    }
}

@media (max-width: 770px) {
    .screen-circle--right {
        left: auto;
        right: 12px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.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;
    }
}

@media (min-width: 992px) {
    .screen-info--ext .screen-info__right-panel {
        padding-left: 0.625rem;
    }
}

.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: 770px) {
    .margin-center-sm {
        margin: 0 auto;
    }
}

.screen-left-center {
    max-width: 200px;
    margin: 0 auto;
}

@media (max-width: 770px) {
    .screen-left-center {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 15px;
        z-index: 4;
    }
}

@media (min-width: 771px) {
    .screen-left-center {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 270px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-height: 540px;
        margin-left: auto;
    }
    .screen-left-center .screen-circle {
        left: calc(50% - 50px);
    }
}

@media (min-width: 771px) and (min-width: 992px) {
    .screen-left-center .screen-circle {
        left: calc(50% - 120px);
    }
}

@media (min-width: 771px) and (min-width: 1200px) {
    .screen-left-center .screen-circle {
        left: calc(50% - 80px);
    }
}

@media (min-width: 771px) and (min-width: 1440px) {
    .screen-left-center .screen-circle {
        left: calc(50% - 50px);
    }
}

@media (min-width: 992px) {
    .screen-left-center {
        max-width: 360px;
        right: -100px;
    }
}

@media (min-width: 1200px) {
    .screen-left-center {
        right: -80px;
    }
}

@media (min-width: 1440px) {
    .screen-left-center {
        right: 0;
    }
}

.screen-left-center-content {
    -webkit-box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

@media (min-width: 771px) {
    .screen-right-center .screen-circle {
        left: auto;
        right: calc(-50% - 180px);
    }
}

@media (min-width: 771px) and (min-width: 992px) {
    .screen-right-center .screen-circle {
        right: calc(-50% - 300px);
    }
}

@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%);
}

.onboard__logo-image {
    width: 150px;
    fill: #002bf2;
}

@media (max-width: 770px) {
    .onboard__logo-image {
        margin: 0 auto;
        width: 100px;
    }
}

.onboarding-content {
    padding: 2rem 0 1rem !important;
}

@media (min-width: 771px) {
    .onboarding-content {
        /*display: -webkit-box;*/
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-line-pack: center;
        align-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 2rem 2rem 1rem !important;
    }
}

@media (min-width: 768px) and (max-height: 720px) {
    .onboarding-content {
        padding: 2rem 2rem 0.4rem !important;
    }
    .onboarding-content .beta {
        font-size: 34px;
        font-size: 2.125rem;
    }
    .onboarding-content .p--size-18 p {
        font-size: 16px;
        font-size: 1rem;
    }
    .onboarding-content .p--size-14 p {
        font-size: 12px;
        font-size: 0.75rem;
    }
    .onboarding-content .p--size-14 p .a-link__text {
        font-size: 12px;
        font-size: 0.75rem;
    }
    .onboarding-content .footer__copy {
        font-size: 14px;
        font-size: 0.875rem;
    }
    .onboarding-content .dropdown--icon .dropdown__icon {
        height: 17px;
    }
}

.onboarding-center {
    padding-top: 4.375rem;
}

@media (min-width: 771px) {
    .onboarding-center {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: calc(100vh - 80px - 70px - 160px);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 2rem 0 2rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) and (max-height: 600px) {
    .onboarding-center {
        display: block;
        height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

.bg-test {
    width: 50%;
    height: 100%;
    border-right: 10px solid #002bf2;
}

.page-onbarding--blue {
    background-color: #002bf2;
}

.page-onbarding--blue footer {
    background-color: #002bf2;
}

.page-onbarding--blue .onboard__logo-image {
    fill: #ffffff;
}

.page-onbarding--blue .beta,
.page-onbarding--blue .a-link__text,
.page-onbarding--blue .footer__copy,
.page-onbarding--blue p {
    color: #ffffff;
}

.page-onbarding--blue .dropdown .dropdown__icon svg {
    fill: #ffffff;
}

.page-onbarding--blue .checkbox--big .checkbox__box {
    background-color: transparent;
    border-color: #ffffff;
}

.page-onbarding--blue .checkbox--big .checkbox__text {
    color: #ffffff;
}

.page-onbarding--blue .checkbox--big .checkbox__text small {
    color: #ffffff;
}

.page-onbarding--blue .checkbox--big .checkbox__input-hidden:checked + .checkbox__label .checkbox__box {
    background-color: #ffffff;
}

.page-onbarding--blue .checkbox--big .checkbox__input-hidden:checked + .checkbox__label .checkbox__box:after {
    border: solid #002bf2;
    border-width: 0 3px 3px 0;
}

.inspire__item {
    margin-bottom: 0.9375rem;
}

@media (min-width: 771px) {
    .inspire__item {
        margin-bottom: 2.5rem;
    }
}

.inspire__content {
    display: block;
    border: 3px dotted #0029f2;
    border-radius: 20px;
    padding: 0.625rem 0.625rem;
}

@media (min-width: 576px) {
    .inspire__content {
        padding: 0.9375rem 0.9375rem;
    }
}

.swiper-inspire {
    width: 100%;
}

.swiper-inspire .swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-inspire .swiper-slide {
    width: 300px;
}

@media (min-width: 576px) {
    .swiper-inspire .swiper-slide {
        width: 360px;
    }
}

@media (min-width: 771px) {
    .swiper-inspire .swiper-slide {
        width: 450px;
    }
}

@media (min-width: 992px) {
    .swiper-inspire .swiper-slide {
        width: 560px;
    }
}

@media (min-width: 1440px) {
    .swiper-inspire .swiper-slide {
        width: 620px;
    }
}

.swiper-inspire--offset {
    padding-left: 240px;
}

.form__input--white {
    color: #ffffff;
    background-color: transparent;
    border: 3px solid #ffffff;
}

.form__input--white:-moz-placeholder-shown {
    border-color: #ffffff;
}

.form__input--white:-ms-input-placeholder {
    border-color: #ffffff;
}

.form__input--white:placeholder-shown {
    border-color: #ffffff;
}

.form__input--white:focus {
    border-color: #ffffff;
}
