:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-black: #333;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 0, 0, 0;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, hsla(0, 0%, 100%, 0.15), hsla(0, 0%, 100%, 0));
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
    --bs-border-width: 1px;
    --bs-border-style: solid;
    --bs-border-color: #dee2e6;
    --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
    --bs-border-radius: 0.375rem;
    --bs-border-radius-sm: 0.25rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 1rem;
    --bs-border-radius-2xl: 2rem;
    --bs-border-radius-pill: 50rem;
    --bs-link-color: #0d6efd;
    --bs-link-hover-color: #0a58ca;
    --bs-code-color: #d63384;
    --bs-highlight-bg: #fff3cd;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

@media screen and (forced-colors: active) {
    .footer_nav .menu a:focus-visible {
        outline: 4px solid WindowText;
    }
}

body {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    margin: 0;
    text-align: var(--bs-body-text-align);
}

hr {
    border: 0;
    border-top: 1px solid;
    color: inherit;
    margin: 1rem 0;
    opacity: 0.25;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

h1 {
    font-size: calc(1.375rem + 1.5vw);
}

@media (min-width: 1200px) {
    h1 {
        font-size: 2.5rem;
    }
}

h2 {
    font-size: calc(1.325rem + 0.9vw);
}

@media (min-width: 1200px) {
    h2 {
        font-size: 2rem;
    }
}

h3 {
    font-size: calc(1.3rem + 0.6vw);
}

@media (min-width: 1200px) {
    h3 {
        font-size: 1.75rem;
    }
}

h4 {
    font-size: calc(1.275rem + 0.3vw);
}

@media (min-width: 1200px) {
    h4 {
        font-size: 1.5rem;
    }
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    margin-top: 0;
}

abbr[title] {
    cursor: help;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    -webkit-text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
}

address {
    font-style: normal;
    line-height: inherit;
    margin-bottom: 1rem;
}

ol,
ul {
    padding-left: 2rem;
}

dl,
ol,
ul {
    margin-bottom: 1rem;
    margin-top: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

blockquote {
    margin: 0 0 1rem;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 0.875em;
}

mark {
    background-color: var(--bs-highlight-bg);
    padding: 0.1875em;
}

sub,
sup {
    font-size: 0.75em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

a {
    color: var(--bs-link-color);
    text-decoration: underline;
}

a:hover {
    color: var(--bs-link-hover-color);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
}

code,
kbd,
pre,
samp {
    font-family: var(--bs-font-monospace);
    font-size: 1em;
}

pre {
    display: block;
    font-size: 0.875em;
    margin-bottom: 1rem;
    margin-top: 0;
    overflow: auto;
}

pre code {
    color: inherit;
    font-size: inherit;
    word-break: normal;
}

code {
    word-wrap: break-word;
    color: var(--bs-code-color);
    font-size: 0.875em;
}

a>code {
    color: inherit;
}

kbd {
    background-color: var(--bs-body-color);
    border-radius: 0.25rem;
    color: var(--bs-body-bg);
    font-size: 0.875em;
    padding: 0.1875rem 0.375rem;
}

kbd kbd {
    font-size: 1em;
    padding: 0;
}

figure {
    margin: 0 0 1rem;
}

img,
svg {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    caption-side: bottom;
}

caption {
    color: #6c757d;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    text-align: left;
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 0 solid;
    border-color: inherit;
}

label {
    display: inline-block;
}

button {
    border-radius: 0;
}

button:focus:not(:focus-visible) {
    outline: 0;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

button,
select {
    text-transform: none;
}

[role="button"] {
    cursor: pointer;
}

select {
    word-wrap: normal;
}

select:disabled {
    opacity: 1;
}

[list]:not([type="date"]):not([type="datetime-local"]):not([type="month"]):not([type="week"]):not([type="time"])::-webkit-calendar-picker-indicator {
    display: none !important;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

textarea {
    resize: vertical;
}

fieldset {
    border: 0;
    margin: 0;
    min-width: 0;
    padding: 0;
}

legend {
    float: left;
    font-size: calc(1.275rem + 0.3vw);
    line-height: inherit;
    margin-bottom: 0.5rem;
    padding: 0;
    width: 100%;
}

@media (min-width: 1200px) {
    legend {
        font-size: 1.5rem;
    }
}

legend+* {
    clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
    padding: 0;
}

::-webkit-inner-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
    padding: 0;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

::file-selector-button {
    -webkit-appearance: button;
    font: inherit;
}

output {
    display: inline-block;
}

iframe {
    border: 0;
}

summary {
    cursor: pointer;
    display: list-item;
}

progress {
    vertical-align: baseline;
}

[hidden] {
    display: none !important;
}

@font-face {
    font-display: swap;
    font-family: Segoe UI;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/SegoeUI.woff2) format("woff2"), url(../fonts/SegoeUI.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Segoe UI;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/SegoeUI-Bold.woff2) format("woff2"), url(../fonts/SegoeUI-Bold.woff) format("woff");
}

@font-face {
    font-display: swap;
    font-family: Segoe UI;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/SegoeUI-SemiBold.woff2) format("woff2"), url(../fonts/SegoeUI-SemiBold.woff) format("woff");
}

::-webkit-input-placeholder {
    color: #666;
}

::-moz-placeholder {
    color: #666;
}

:-ms-input-placeholder {
    color: #666;
}

::-ms-input-placeholder {
    color: #666;
}

::placeholder {
    color: #666;
}

::-moz-selection {
    background-color: orange;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}

::selection {
    background-color: orange;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
}

input,
textarea {
    outline: none;
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: red;
}

input:required:valid,
textarea:required:valid {
    border-color: green;
}

body {
    color: #333;
    font-family: Segoe UI, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    min-width: 320px;
    overflow-x: hidden;
    position: relative;
}

:root {
    --swiper-theme-color: #007aff;
}

.swiper {
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.swiper-wrapper {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
    z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.swiper-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    width: 100%;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode>.swiper-wrapper {
    -ms-overflow-style: none;
    overflow: auto;
    scrollbar-width: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper:before {
    -ms-flex-negative: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    content: "";
    flex-shrink: 0;
    order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal>.swiper-wrapper:before {
    height: 100%;
    width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical>.swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    width: 100%;
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
}

.hamburger {
    background-color: transparent;
    border: 0;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    margin: 0;
    overflow: visible;
    padding: 0;
    text-transform: none;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    -o-transition-property: opacity, filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
    background-color: #333;
}

.hamburger-box {
    display: inline-block;
    height: 16px;
    position: relative;
    width: 23px;
}

.hamburger-inner {
    display: block;
    margin-top: -1px;
    top: 50%;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
    background-color: #333;
    border-radius: 2px;
    height: 2px;
    position: absolute;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    width: 23px;
}

.hamburger-inner:after,
.hamburger-inner:before {
    content: "";
    display: block;
}

.hamburger-inner:before {
    top: -7px;
}

.hamburger-inner:after {
    bottom: -7px;
}

.hamburger--slider .hamburger-inner {
    top: 1px;
}

.hamburger--slider .hamburger-inner:before {
    top: 7px;
    -webkit-transition-duration: 0.15s;
    -o-transition-duration: 0.15s;
    transition-duration: 0.15s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: transform, opacity;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
}

.hamburger--slider .hamburger-inner:after {
    top: 14px;
}

.hamburger--slider.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
    transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner:before {
    opacity: 0;
    -webkit-transform: rotate(-45deg) translate3d(-3.2857142857px, -5px, 0);
    transform: rotate(-45deg) translate3d(-3.2857142857px, -5px, 0);
}

.hamburger--slider.is-active .hamburger-inner:after {
    -webkit-transform: translate3d(0, -14px, 0) rotate(-90deg);
    transform: translate3d(0, -14px, 0) rotate(-90deg);
}

img {
    max-width: 100%;
}

* {
    caret-color: transparent;
}

input,
textarea {
    caret-color: auto;
}

.container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1558px;
    padding: 0 15px;
    position: relative;
    width: 90%;
}

.footer {
    background: #bad8e7 url(../images/dist/footer-bg.jpg) no-repeat 50% 50% / cover;
    position: relative;
}

.footer .container {
    position: relative;
    z-index: 5;
}

.footer_inner {
    overflow: hidden;
    padding: 60px 0 280px;
    position: relative;
}

.footer_nav .menu .readyLink {
    display: inline-block;
    margin: 0px auto 14px auto;
    background: linear-gradient(#1EB876, #74B000);
    color: #fff;
    left: auto;
    text-decoration: none;
}

.footer_nav .menu .readyLink:hover {
    color: #fff;
    text-decoration: none;
}

.footer_inner:before {
    background: url(../images/dist/elements_toys.png) no-repeat 50% 50% / contain;
    bottom: 46px;
    content: "";
    height: 192px;
    left: 71px;
    position: absolute;
    width: 283px;
}

.footer_inner:after {
    background: url(../images/dist/footer-ref.png) no-repeat 50% 50% / contain;
    bottom: 28px;
    content: "";
    height: 620px;
    left: 50%;
    margin-left: -17px;
    position: absolute;
    width: 1140px;
}

.footer_title {
    font-size: 53.75px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

.footer_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer_nav {
    /*border-right: 1px solid rgba(0, 0, 0, 0.29);*/
    padding-right: 37px;
}

.footer_nav .menu {
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    list-style: none;
    margin: 0 0 0 5px;
    padding: 0;
}

.footer_nav .menu>li:not(:last-child) {
    margin-bottom: 16px;
}

.footer_nav .menu a {
    color: #333;
    text-decoration: none;
}

.footer_nav .menu a:hover {
    color: #333;
    text-decoration: underline;
}

.footer_nav .menu a:focus-visible {
    outline-offset: 5px;
}

.footer_contacts {
    font-size: 18px;
    line-height: 24px;
    list-style: none;
    margin: 0 0 0 65px;
    padding: 0;
}

.footer_contacts>li:not(:last-child) {
    margin-bottom: 36px;
}

.footer_contacts a {
    color: #333;
    text-decoration: none;
}

.footer_contacts a:hover {
    color: #333;
    text-decoration: underline;
}

.footer_sun {
    height: 532px;
    left: 0;
    position: absolute;
    top: -250px;
    width: 220px;
}

.footer_sun:before {
    background: url(../images/dist/elements_sun.png) no-repeat 50% 50% / contain;
    content: "";
    height: 440px;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: rotate(31.78deg);
    -ms-transform: rotate(31.78deg);
    transform: rotate(31.78deg);
    width: 440px;
}

.c-uhff {
    background: #f2f2f2;
}

.c-uhff-base {
    margin: 0 auto;
    max-width: calc(1600px + 10%);
    padding: 20px 5% 16px;
}

.c-uhff-base nav {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
}

.c-uhff-base ul.c-list {
    color: #616161;
    font-size: 11px;
    line-height: 16px;
    list-style-type: none;
    margin: 3px 0;
    padding: 0;
}

.c-uhff-base ul.c-list li {
    display: inline-block;
    padding: 0 24px 4px 0;
}

@media only screen and (max-width: 767px) {
    .c-uhff-base ul.c-list {
        float: none;
        text-align: left;
        width: 100%;
    }

    .c-uhff-base ul.c-list li {
        padding: 0 4px 4px 6px;
    }
}

@media only screen and (max-width: 539px) {
    .c-uhff-base ul.c-list li {
        padding: 0 10px 4px 0;
    }
}

@media only screen and (max-width: 1083px) {
    .c-uhff-base {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px 24px 16px;
    }
}

.c-uhff-link {
    color: inherit;
    text-decoration: none;
}

.c-uhff-link:hover {
    color: inherit;
    text-decoration: underline;
}

@media screen and (min-width: 860px) {
    .context-uhf li {
        word-break: break-word;
    }
}

.header {
    background: rgba(255, 255, 255, 0.7);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px)
}

.header:has(.is-active) {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.header .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 14px auto;
}

.hamburger {
    display: none;
}

.header_logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 19px;
}

.header_logo .sep {
    border-left: 2px solid #999;
    height: 22px;
    margin: 6px 0px 2px 2px;
}

.header_Reflect,
.header_ReflectInt {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.header_Reflect:hover,
.header_ReflectInt:hover {
    color: #333;
    font-weight: 700;
}

.header_nav {
    font-size: 16px;
    line-height: 1;
}

.header_nav .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.header_nav a {
    color: #333;
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 12px 12px 12px 12px;
}

.header_nav a:before {
    color: #333;
    content: attr(data-hover);
    font-weight: 700;
    left: 50%;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    white-space: nowrap;
    padding: 12px 12px 12px 12px;

}

.header_nav a:hover {
    color: transparent;
    text-decoration: none;
}

.header_nav a:hover:before {
    opacity: 1;
}

.header_nav .active a {
    color: transparent;
}

.header_nav .active a:before {
    opacity: 1;
}

.header_nav .signinLink {
    background: linear-gradient(#828FC6, #3F96CC);
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    margin-left: 10px;
    padding: 12px 20px 12px 20px;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 2px 0px, rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;

    transition: all 200ms ease 0s;

}
.header_nav .whatsNew, .header_nav .active .whatsNew::before, .header_nav .whatsNew:hover:before 
{
    background: linear-gradient(276deg, #881798 -23.91%, #3A96DD 97.9%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header_nav .whatsNew:hover, .header_nav .active .whatsNew
{
    background:transparent;
}

.header_nav .signinLink:hover {
    transform: scale(1.1);
    color: #fff;
}

.header_nav .signinLink:before {
    display: none;
}

@font-face {
    font-family: msico;
    src: url(data:application/octet-stream;base64,AAEAAAALAIAAAwAwT1MvMg8SBbkAAAC8AAAAYGNtYXAXVtKIAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZvzTBgMAAAF4AAABrGhlYWQh646jAAADJAAAADZoaGVhCGwEcQAAA1wAAAAkaG10eA6qAAAAAAOAAAAAGGxvY2EA/gDIAAADmAAAAA5tYXhwAAkAZgAAA6gAAAAgbmFtZaN2l6EAAAPIAAABbnBvc3QAAwAAAAAFOAAAACAAAwOOAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAQPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6QH//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAACAAD/wwSqA8AAMQBjAAA3FBYXHgEzMjY3PgE1NCYnLgEnLgEnLgEnLgEnLgE1PgE3PgE3Iw4BBw4BBw4BBw4BFSEUFhceATMyNjc+ATU0JicuAScuAScuAScuAScuATU+ATc+ATcjDgEHDgEHDgEHDgEVACMiJmRAMFAgJCETEhIrFhYrFBQYBgYMBAIDBDAsLEkgYxY2Hh48Hh4zFhATArYjIiZlPzBQICQhExISKxUWLBQUGAYGCwQCBAQtKixJIGAWNx0ePB4eNBYOEvJIcCooJRsaHFY1KDoWFiMKCgwCBAgDBhAKChwQT5NCQmMgDDMjJlgyNGw6OnA4SHAqKCUbGhxWNSg6FhYjCgoMAgQIAwYQCgocEE+TQkJjIAwzIyZYMjRsOjpwOAABAAD/wAQAA8AACwAAJQkBJwkBBwkBFwkBBAD+7AEU6f7s/ubpARn+5+kBGgEUqQEUARrp/ucBGen+5v7s6QEU/uwAAAEAAAABAAA8ugGnXw889QALBAAAAAAA3xElEwAAAADfESUTAAD/wASqA8AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABKoAAAAABKoAAQAAAAAAAAAAAAAAAAAAAAYEAAAAAAAAAAAAAAACAAAABKoAAAQAAAAAAAAAAAoAFAAeALQA1gAAAAEAAAAGAGQAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAFAAAAAQAAAAAAAgAHAE4AAQAAAAAAAwAFADAAAQAAAAAABAAFAGMAAQAAAAAABQALAA8AAQAAAAAABgAFAD8AAQAAAAAACgAaAHIAAwABBAkAAQAKAAUAAwABBAkAAgAOAFUAAwABBAkAAwAKADUAAwABBAkABAAKAGgAAwABBAkABQAWABoAAwABBAkABgAKAEQAAwABBAkACgA0AIxtc2ljbwBtAHMAaQBjAG9WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBtc2ljbwBtAHMAaQBjAG9tc2ljbwBtAHMAaQBjAG9SZWd1bGFyAFIAZQBnAHUAbABhAHJtc2ljbwBtAHMAaQBjAG9Gb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA);
}

.testimonial_close:before,
.testimonial_descr:before {
    speak: never;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: msico !important;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-transform: none;
}

.wrapper {
    display: block;
    padding-top: 66px;
}

.section1 {
    background: -webkit-gradient(linear, left top, left bottom, from(#e1f4fe), to(rgba(93, 207, 226, 0)));
    background: -o-linear-gradient(top, #e1f4fe 0, rgba(93, 207, 226, 0) 100%);
    background: linear-gradient(180deg, #e1f4fe, rgba(93, 207, 226, 0));
    min-height: 840px;
    overflow: hidden;
    padding-top: 76px;
    position: relative;
}

.section1 .container {
    position: relative;
    z-index: 10;
}

.section1 .readyLink {
    display: none;
}

.section1 .sun {
    background: url(../images/dist/elements_sun.png) no-repeat 50% 50% / contain;
    height: 343px;
    left: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-51.5%, -55%);
    -ms-transform: translate(-51.5%, -55%);
    transform: translate(-51.5%, -55%);
    width: 342px;
}

.section1 .cloud {
    background: url(../images/dist/elements_cloud.png) no-repeat 50% 50% / contain;
    position: absolute;
}

.section1 .cloud1 {
    height: 113px;
    right: 67px;
    top: 23px;
    width: 219px;
}

.section1 .cloud2 {
    -webkit-filter: blur(3.27798px);
    filter: blur(3.27798px);
    height: 78px;
    opacity: 0.6;
    right: 483px;
    top: 207px;
    width: 150px;
}

.section1 .cloud3 {
    -webkit-filter: blur(3.30686px);
    filter: blur(3.30686px);
    height: 79px;
    left: 279px;
    opacity: 0.8;
    top: 267px;
    width: 153px;
}

.section1 .wave1 {
    background: url('data:image/svg+xml,<svg width="1964" height="238" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.7" fill-rule="evenodd" clip-rule="evenodd" d="M1398.88 144.047C1661.62 112.575 1963.31 0.307818 1963.31 0.307818L1963.61 51.8375C1963.61 51.8375 1423.9 270.182 908.205 233.564C811.494 226.696 704.147 208.871 597.132 191.101C354.371 150.791 37.6222 144.143 1.39937 191.614L0.853398 98.333C26.6678 66.5391 275.327 -8.71009 483.474 8.97008C556.431 15.1675 653.367 38.0896 761.599 63.6825C962.134 111.104 1201.45 167.696 1398.88 144.047Z" fill="url(%23paint0_linear_4998_454302)"/><defs><linearGradient id="paint0_linear_4998_454302" x1="1837.45" y1="23.8024" x2="1722.51" y2="550.121" gradientUnits="userSpaceOnUse"><stop stop-color="%23B7C7FF"/><stop offset="1" stop-color="%23E8B7FF"/></linearGradient></defs></svg>') no-repeat 50% 50%/100% 100%;
    bottom: 60px;
    height: 235px;
    z-index: 1;
}

.section1 .wave1,
.section1 .wave2 {
    left: 0;
    position: absolute;
    width: 100%;
}

.section1 .wave2 {
    background: url('data:image/svg+xml,<svg width="1964" height="238" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M1398.88 144.047C1661.62 112.575 1963.31 0.307818 1963.31 0.307818L1963.61 51.8375C1963.61 51.8375 1423.9 270.182 908.205 233.564C811.494 226.696 704.147 208.871 597.132 191.101C354.371 150.791 37.6222 144.143 1.39937 191.614L0.853398 98.333C26.6678 66.5391 275.327 -8.71009 483.474 8.97008C556.431 15.1675 653.367 38.0896 761.599 63.6825C962.134 111.104 1201.45 167.696 1398.88 144.047Z" fill="url(%23paint0_linear_4998_454302)"/><defs><linearGradient id="paint0_linear_4998_454302" x1="1837.45" y1="23.8024" x2="1722.51" y2="550.121" gradientUnits="userSpaceOnUse"><stop stop-color="%23B7C7FF"/><stop offset="1" stop-color="%23E8B7FF"/></linearGradient></defs></svg>') no-repeat 50% 50%/100% 100%;
    bottom: 30px;
    height: 235px;
    z-index: 3;
}

.section1 .wave3 {
    background: url('data:image/svg+xml,<svg width="1963" height="235" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.7" fill-rule="evenodd" clip-rule="evenodd" d="M565.267 143.484C302.349 113.55 0 3.05055 0 3.05055V54.5811C0 54.5811 540.984 269.763 1056.45 230.127C1153.12 222.693 1260.36 204.241 1367.28 185.844C1609.8 144.114 1926.5 135.613 1963 182.871V89.5881C1937 57.9457 1687.91 -15.8468 1479.86 3.05137C1406.94 9.67566 1310.14 33.1648 1202.06 59.3907C1001.81 107.986 762.828 165.977 565.267 143.484Z" fill="url(%23paint0_linear_4996_456367)"/><defs><linearGradient id="paint0_linear_4996_456367" x1="125.968" y1="25.8116" x2="244.008" y2="551.426" gradientUnits="userSpaceOnUse"><stop stop-color="%233498CC"/><stop offset="1" stop-color="%23B4DCF2"/></linearGradient></defs></svg>') no-repeat 50% 50%/100% 100%;
    height: 235px;
    bottom: 30px;
    z-index: 4;
}

.section1 .wave3,
.section1 .wave5 {
    left: 0;
    position: absolute;
    width: 100%;
}

.section1 .wave5 {
    background: url('data:image/svg+xml,<svg width="1963" height="235" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M565.267 143.484C302.349 113.55 0 3.05055 0 3.05055V54.5811C0 54.5811 540.984 269.763 1056.45 230.127C1153.12 222.693 1260.37 204.241 1367.28 185.844C1609.8 144.114 1926.5 135.613 1963 182.871V89.5881C1937 57.9457 1687.9 -15.8468 1479.86 3.05137C1406.94 9.67566 1310.14 33.1648 1202.06 59.3907C1001.81 107.986 762.828 165.977 565.267 143.484Z" fill="url(%23paint0_linear_4996_456367)"/><defs><linearGradient id="paint0_linear_4996_456367" x1="125.968" y1="25.8116" x2="244.008" y2="551.426" gradientUnits="userSpaceOnUse"><stop stop-color="%233498CC"/><stop offset="1" stop-color="%23B4DCF2"/></linearGradient></defs></svg>') no-repeat 50% 50%/100% 100%;
    height: 235px;
    bottom: 0px;
    z-index: 7;
}

.section1 .monster1 {
    background: url(../images/dist/hero_FeelingsMonster_jealous.png) no-repeat 50% 50% / contain;
    height: 348px;
    left: 0;
    position: absolute;
    top: 300px;
    width: 367px;
    z-index: 2;
}

.section1 .monster2 {
    background: url(../images/dist/hero_FeelingsMonster_happy.png) no-repeat 50% 50% / contain;
    height: 525px;
    position: absolute;
    right: 0;
    top: 180px;
    width: 530px;
    z-index: 5;
}

.section1 .monster3 {
    background: url(../images/dist/hero_FeelingsMonster_bored.png) no-repeat 50% 50%/100% auto;
    height: 326px;
    position: absolute;
    right: 480px;
    top: 450px;
    -webkit-transform: matrix(0.97, -0.25, 0.26, 0.97, 0, 0) scaleX(-1);
    -ms-transform: matrix(0.97, -0.25, 0.26, 0.97, 0, 0) scaleX(-1);
    transform: matrix(0.97, -0.25, 0.26, 0.97, 0, 0) scaleX(-1);
    width: 230px;
    z-index: 6;
}

.section1 .heading {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    margin: 0 4px 8px;
}

.section1 .subheading {
    font-size: 32px;
    font-weight: 400;
    margin: 0 6px;
    line-height: 1.3;
    max-width: 550px;

}

.sectionQuote {
    margin: 40px 0 40px;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #ED8F57 0%, #FCD46E 50%, #FDD2C7 100%);
    padding: 60px 0 60px 0;
    text-align: center;
}

.sectionQuote .container {
    max-width: 1510px;
    font-size: 25px;
    font-weight: 400;
    line-height: 34px;
    color: #4F3D72;
    position: relative;
    max-width: 950px;
    background-color: rgba(255, 255, 255, 0.6);
    ;
    border-radius: 20px;
    padding: 40px;
}

.section10 {
    margin: -140px 0 80px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding-top: 220px;
}

.section10 .container {
    max-width: 1510px;
}

.section10 .section_inner {

    padding: 70px 0 90px;
    position: relative;
    background: radial-gradient(60% 100%, #eafdec, transparent), radial-gradient(100% 30% at 50% 0, #dff0fa 60%, transparent), linear-gradient(120.7deg, #B4EFB2 10.68%, #B4DCF2 88.93%);

}

.section10 .section_inner .container {
    z-index: 5;
}

.section_heading {
    font-size: 54px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.section10 .section_monster {
    background: url(../images/dist/FeelingsMonster_Nervous.png) no-repeat 0 0 / contain;
    cursor: grab;
    height: 600px;
    left: 200px;
    position: absolute;
    top: 0;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: left 0.3s ease-in-out;
    -o-transition: left 0.3s ease-in-out;
    transition: left 0.3s ease-in-out;
    width: 450px;
    z-index: 10;
}

.section10 .section_monster:hover {
    left: 350px;
}

.confidence_list {
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 44px;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.confidence_item {
    -webkit-box-flex: 1;
    background: #fff;
    border-radius: 25px;
    -ms-flex: 1 1 33%;
    flex: 1 1 33%;
    min-height: 340px;
    padding: 24px 24px;
}

.confidence_icon {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 110px;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.confidence_icon img {
    max-height: 100%;
}

.confidence_title {
    font-size: 31.1px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 4px;
}

.confidence_descr {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

#insightstory {
    display: inline-block;
    height: 0;
    position: relative;
    top: -80px;
}

.section12 {
    padding: 50px 0 170px;
    position: relative;
}

.section12:before {
    background: url(../images/dist/FeelingsMonster_focused.png) no-repeat 50% 0/100% auto;
    content: "";
    height: 205px;
    position: absolute;
    right: 0;
    top: -320px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transform-origin: 100% 100%;
    -ms-transform-origin: 100% 100%;
    transform-origin: 100% 100%;
    width: 441px;
    z-index: 2;
}

.section12 .container {
    max-width: 1526px;
}

.blog_list {
    -ms-grid-columns: 1fr 24px 1fr;
    display: -ms-grid;
    display: grid;
    gap: 25px 24px;
    grid-template-columns: repeat(2, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog_item {
    color: #333;
    display: block;
    position: relative;
    text-decoration: none;
}

.blog_item:before {
    content: "";
    display: block;
    padding-top: 44.14%;
}

.blog_item:hover {
    color: #333;
    text-decoration: none;
}

.blog_item:hover .blog_image {
    opacity: 0.8;
}

.blog_image {
    border-radius: 29px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
}

.blog_image,
.blog_title {
    left: 0;
    position: absolute;
}

.blog_title {
    background: #fff;
    border-radius: 20px;
    bottom: 0;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.11;
    margin: 0 51px 34px;
    max-width: 557px;
    padding: 22px 75px 22px 22px;
    right: 0;
}

.blog_title:after {
    background: #5dcfe2 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Cpath d='m29.4 53.6 17.3-17.3-17.3-17.2v8l9.2 9.2-9.2 9.2v8.1z' fill='%23fff'/%3E%3C/svg%3E") no-repeat 50% 50% / contain;
    border-radius: 50%;
    content: "";
    height: 46px;
    position: absolute;
    right: 22px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 46px;
}

.section2 {
    padding: 100px 0 0px;
}

.icons_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    list-style: none;
    margin: 0 -15px 0 -15px;
    padding: 0;
    text-align: center;
}

.icon_img,
.icons_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 15px 0 15px;
}

.icon_img {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    height: 122px;
    justify-content: center;
    margin-bottom: 27px;
}

.icon_title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    max-width: 260px;
}

.section3 {
    padding: 180px 0 100px;
}

.section3 .section_title {
    font-size: 53.75px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.how_works {
    --margin-start: 50px;
    --padding-top: 50px;
    --padding-end: 50px;
    --padding-bot: 55px;
    --border-width: 20px;
    --border-radius: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.how_works .how_works_item:before {
    --margin-start: 50px;
    --border-width: 20px;
}

.how_works .how_works_item+.how_works_item {
    margin-top: calc(var(--border-width) * -1);
}

.how_works .how_works_item:first-child:before {
    background: #eef1ff;
    border-radius: calc(var(--border-width) / 2) 0 0 calc(var(--border-width) / 2);
    bottom: 100%;
    content: "";
    height: var(--border-width);
    position: absolute;
    right: 100%;
    width: calc(var(--margin-start) + 1px);
}

.how_works .how_works_item:last-child:before {
    background: #eef1ff;
    border-radius: calc(var(--border-width) / 2) 0 0 calc(var(--border-width) / 2);
    content: "";
    height: var(--border-width);
    position: absolute;
    right: 100%;
    top: 100%;
    width: calc(var(--margin-start) + 1px);
}

.how_works .how_works_item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-width: var(--border-width) 0 var(--border-width) var(--border-width);
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    margin-left: 0;
    margin-right: var(--margin-start);
    padding: var(--padding-top) 0 var(--padding-bot) var(--padding-end);
}

.how_works .how_works_item:nth-child(2n):after {
    -webkit-transform: translateX(-50%) scaleX(-1);
    -ms-transform: translateX(-50%) scaleX(-1);
    transform: translateX(-50%) scaleX(-1);
}

.how_works .how_works_item:nth-child(2n) .how_works_text {
    padding: 40px 0px 40px 80px;
}

.how_works .how_works_item:nth-child(2n) .how_works_screen {
    border-radius: 25px;
    /*padding: 99px 0px;*/
}

.how_works .how_works_item:nth-child(2n) .how_works_screen img {
    margin: -120px auto -120px auto;
    left: auto;
    padding: 15px;
}

.how_works_item.item-3 .how_works_screen img {
    margin: 5px 0 auto -50px;
}

.how_works .how_works_item:nth-child(2n) .how_works_title {
    margin-top: 10px;
}

.how_works .how_works_item:nth-child(2n):last-child:before {
    border-radius: 0 calc(var(--border-width) / 2) calc(var(--border-width) / 2) 0;
    left: 100%;
    right: auto;
}

.how_works_item {
    border: var(--border-width) solid #eef1ff;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    border-width: var(--border-width) var(--border-width) var(--border-width) 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: var(--margin-start);
    padding: var(--padding-top) var(--padding-end) var(--padding-bot) 0;
    position: relative;
}

.how_works_item:after {

    bottom: 100%;
    content: "";
    height: 20px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 535px;
}

.how_works_item.item-1 {
    --color: linear-gradient(133deg, #B7C7FF 0%, #E8B7FF 100%);
    --colorTitle: -webkit-linear-gradient(#688aff, #cf68ff);
}


.how_works_item.item-2 {
    --color: linear-gradient(133deg, #B4EFB2 0%, #B4DCF2 100%);
    --colorTitle: -webkit-linear-gradient(#4fd94a, #2392cf);
    z-index: 2;
}

.how_works_item.item-3 {
    --color: linear-gradient(133deg, #78C6F2 0%, #BFAEF0 100%);
    --colorTitle: -webkit-linear-gradient(#2fa7eb, #8d6fe4);
}


.how_works_item.item-4 {
    --color: linear-gradient(133deg, #B0C1EC 0%, #A892E8 100%);
    --colorTitle: -webkit-linear-gradient(#7492de, #7b5adc);


}


.how_works_text {
    -webkit-box-flex: 1;
    background: #fff;
    border: 5px #f8f8f8;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 40px 100px 40px 0px;
    align-self: center;
}

.how_works_title {
    background: var(--colorTitle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-size: 37px;
    font-weight: 700;
    line-height: 1.33;
    margin-bottom: 30px;
}

.how_works_screen {
    -webkit-box-flex: 0;
    background: var(--color);
    border-radius: 25px;
    -ms-flex: 0 0 597px;
    flex: 0 0 597px;
}

.how_works_screen img {
    display: block;
    position: relative;
}

.how_works_descr {
    font-size: 24px;
    line-height: 1.31;
    list-style: none;
    margin: 0;
    padding: 0;
}

.how_works_descr>li {
    padding-left: 37px;
    position: relative;
}

.how_works_descr>li:before {
    background: var(--color);
    border-radius: 50%;
    content: "";
    height: 15px;
    left: 0;
    position: absolute;
    top: 0.5em;
    width: 15px;
}

.how_works_descr>li:not(:last-child) {
    margin-bottom: 24px;
}

.section4 {
    overflow: hidden;
    padding-top: 66px;
    position: relative;
    margin-bottom: -100px;
}

.sunrise_wrapper {
    background-image: url('data:image/svg+xml,<svg width="1920" height="539" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2202.1 676.8C2204.8 660.4 2206.1 643.7 2206.1 627C2206.1 280.7 1628.1 0 915.1 0C202.1 0 -375.9 280.7 -375.9 627C-375.9 644.1 -374.5 661 -371.7 677.7C-143.6 443.8 347.1 282 915.7 282C1483.5 282 1973.7 443.4 2202.1 676.8Z" fill="url(%23paint0_linear_4997_454296)"/><defs><linearGradient id="paint0_linear_4997_454296" x1="-210.164" y1="74.426" x2="420.746" y2="1356.12" gradientUnits="userSpaceOnUse"><stop stop-color="%23B0C1EC"/><stop offset="1" stop-color="%23A892E8"/></linearGradient></defs></svg>');
}

.sunrise_dayark,
.sunrise_wrapper {
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 100vw 100%;
    height: 539px;
}

.sunrise_dayark {
    background-image: url('data:image/svg+xml,<svg width="1920" height="539" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2202.1 676.8C2204.8 660.4 2206.1 643.7 2206.1 627C2206.1 280.7 1628.1 0 915.1 0C202.1 0 -375.9 280.7 -375.9 627C-375.9 644.1 -374.5 661 -371.7 677.7C-143.6 443.8 347.1 282 915.7 282C1483.5 282 1973.7 443.4 2202.1 676.8Z" fill="url(%23paint0_linear_4997_454292)"/><defs><linearGradient id="paint0_linear_4997_454292" x1="915.1" y1="0" x2="915.1" y2="677.7" gradientUnits="userSpaceOnUse"><stop stop-color="%23FBDF71"/><stop offset="1" stop-color="%23FDB465"/></linearGradient></defs></svg>');
    overflow: hidden;
}

.sunrise_sun {
    background: url(../images/dist/elements_sun.png) no-repeat 50% 50% / contain;
    height: 396px;
    position: absolute;
    -webkit-transform: translate(-50%) rotate(16.85deg);
    -ms-transform: translate(-50%) rotate(16.85deg);
    transform: translate(-50%) rotate(16.85deg);
    width: 396px;
}

.section5 {
    padding: 0 0 80px;
    text-align: center;

}

.section5 .section_heading {
    margin-bottom: 44px;
    margin-top: 80px;
}

.section5 .sectionSubtitle {
    margin-bottom: 40px;
}

.readyLink {
    display: inline-block;
    padding: 22px 44px 22px 44px;
    background: linear-gradient(#828FC6, #3F96CC);
    color: #fff;
    font-weight: 700;
    border-radius: 100px;
    text-align: center;
    font-size: 20px;
    margin: 10px auto 54px auto;
    left: auto;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 2px 0px, rgba(0, 0, 0, 0.1) 0px 4px 8px 0px;
    transition: all 200ms ease 0s;
}

.section6 .readyLink {
    background: linear-gradient(234deg, #425BD9 0%, #874DE7 50.52%, #C44ECF 100%);
}

.readyLink:hover {
    transform: scale(1.1);
    color: #fff;
}

.sectionSubtitle {
    font-size: 25px;
    font-weight: 400;
    line-height: 34px;
    color: #5c5c5c;

    position: relative;
    margin-bottom: 60px;
    max-width: 950px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}


.section6 {
    padding: 40px 0 100px;
    text-align: center;
}


.guides_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.guides_list .guideItem {
    display: grid;
    color: #333;
    text-decoration: none;
    background-color: #F8F8F8;
    border-radius: 20px;
    grid-template-areas:
        "icon title title link"
        "description description description link";
    grid-template-rows: 32px 1fr;
    grid-template-columns: 32px 1fr 1fr 44px;
    text-align: left;
    gap: 10px 20px;
    padding: 20px;
    align-items: center;
    line-height: 1.5;
}

.guides_list .guideItem:hover {
    background-image: linear-gradient(135deg, #eadeff, #dfeaff 25%, #ecf4fa 70%, #e5fffc);
}

.guides_list .guideItem:hover .guideArr {
    background: #4295CB url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 29.9'%3E%3Cpath d='m3 22.9 8-8-8-8V0l15 14.9-15 15v-7z' fill='%23fff'/%3E%3C/svg%3E") no-repeat 50% 50%/18px 18px;
}


.guides_list .guideArr {
    grid-area: link;
    background: #e1e1e2 url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 29.9'%3E%3Cpath d='m3 22.9 8-8-8-8V0l15 14.9-15 15v-7z' fill='%235c5c5c'/%3E%3C/svg%3E") no-repeat 50% 50%/18px 18px;
    color: transparent;
    border-radius: 50%;
    height: 44px;
    width: 44px;
    text-decoration: none;
}

.guideItem img {
    grid-area: icon;
    height: 32px;
}

.guideItem .guideTitle {
    grid-area: title;
    font-weight: 600;
    height: 32px;
    align-content: center;
}

.guideItem .guideDecription {
    grid-area: description;
    align-self: self-start;
}

.get_started_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 155px;
}

.get_started_buttons {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 453px;
    flex: 0 0 453px;
    padding-top: 4px;
}

.get_started_buttons .color1 {
    --color: #2b9db4;
}

.get_started_buttons .color2 {
    --color: #828fc6;
}

.get_started_title {
    color: var(--color);
    font-size: 37.32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 22px;
    text-align: center;
}

.get_started_btn {
    background: var(--color);
    border-radius: 14px;
    color: #fff;
    display: block;
    font-size: 25.92px;
    font-weight: 900;
    line-height: 35px;
    margin-bottom: 16px;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
}

.get_started_btn:hover {
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
}

.get_started_btn span {
    font-size: 0.7em;
    line-height: 50%;
    font-weight: 400;
}

.get_started_btn+.get_started_title {
    margin-top: 74px;
}

.get_started_video_ratio {
    position: relative;
    max-width: 1200px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 60px;
}

.get_started_video_ratio iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}

.video_wrapper {
    position: relative;
}

.video_wrapper:before {
    content: "";
    display: block;
    padding-top: 57%;
}

.video_wrapper video {
    -o-object-fit: contain;
    object-fit: contain;
}

.video-overlay,
.video_wrapper video {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.video-overlay {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

.video-play {
    background: #ffffff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 107 106'%3E%3Cpath d='M86.1 53.3 37.7 81.2V25.4l48.4 27.9z' fill='%235e6a9d' fill-opacity='.9'/%3E%3C/svg%3E") no-repeat 50% 50% / contain;
    border-radius: 50%;
    cursor: pointer;
    height: 106px;
    width: 106px;
    border: none;
}

.video-play:hover {
    box-shadow: -2px 2px 0px 1px #5e6a9d;
    opacity: 0.9;
}

.section7 {
    background: linear-gradient(135deg, #dde0fe 0%, #e6c8f7 50%, #a5d6f6 100%);
    margin: 10px 0 80px;
    padding: 70px 0 0 0;
    position: relative;
    text-align: center;
}

.section7 .readyLink {
    background: linear-gradient(125deg, #1E86C2 0%, #1FB494 50.52%, #6CD082 100%);
}

.section7 .heroGrid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 35px;
    justify-items: center;
    align-items: center;
}

.section7 .heroImg {
    grid-column: 3/8;
    grid-row: 1/4;
    width: 450px;
    margin-bottom: -120px;
    pointer-events: none;
}

.section7 .activityIcon {
    background: rgba(255, 255, 255, 0.38);
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.3px);
    -webkit-backdrop-filter: blur(2.3px);
    border: 1px solid rgba(255, 255, 255, 0.42);
    font-weight: 500;
    padding: 4px;
    color: #5c5c5c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    align-items: center;
    width: 100px;
    height: 100px;
    margin-top: -120px;
}

.section7 .activityIcon img {
    width: 44px;
}

.section7 .activityIconA {
    transform: rotate(-8deg);
}

.section7 .activityIconB {
    transform: rotate(8deg);
}

.section7 .activityIconLogo {
    width: 120px;
    height: 60px;
    transform: rotate(5deg);


}

.section7 .activityIconLogoB {
    width: 80px;
    height: 80px;
    transform: rotate(-5deg);
}

.section7 .activityIconLogo img,
.section7 .activityIconLogoB img {
    width: 80%;
}


.section8 {
    padding: 95px 0 100px;
}

@media (min-width: 1401px) {

    .section8 .section_heading {
        margin-bottom: 120px;
    }

    .section12 .section_heading {
        margin-bottom: 88px;
    }
}

@media (min-width: 1900px) {
    .section8 .container {
        max-width: 1635px;
        padding-right: 99px;
    }
}

.routine_list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.routine_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 29px;
}

.routine_item:not(:last-child) {
    margin-bottom: 72px;
}

.routine_item:nth-child(3n + 1) {
    --routine-color: -webkit-linear-gradient(#688aff, #cf68ff);
    --bg-color: linear-gradient(133deg, #B7C7FF 0%, #E8B7FF 100%);
}

.routine_item:nth-child(3n + 2) {
    --routine-color: -webkit-linear-gradient(#4fd94a, #2392cf);
    --bg-color: linear-gradient(133deg, #B4EFB2 0%, #B4DCF2 100%);
}

.routine_item:nth-child(3n + 3) {
    --routine-color: -webkit-linear-gradient(#2fa7eb, #8d6fe4);
    --bg-color: linear-gradient(133deg, #78C6F2 0%, #BFAEF0 100%);
    --routine-aColor: #7e63cd;
}

.routine_item:nth-child(2n + 2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.routine_item:nth-child(2n + 2) .routine_text {
    padding: 40px 40px 20px 0px;

}

.routine_img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    background: var(--bg-color);
    min-height: 350px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    padding: 0px 20px 0px 20px;
}

.routine_img img {
    max-width: 100%;
    margin: -60px auto -50px auto;
    align-self: flex-end;

}

.routine_text {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 20px 0px 20px 40px;
    align-self: center;
}

.routine_title {
    color: var(--routine-color);
    background: var(--routine-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 37px;


    font-weight: 700;
    line-height: 60px;
    margin-bottom: 16px;
}

.routine_descr {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.routine_descr a {
    color: var(--routine-aColor);
    font-weight: 600;
    text-decoration: none;
}

.routine_descr a:hover {
    text-decoration: underline;
}


@media (min-width: 991px) and (max-width: 1400px) {

    .header_nav a {
        padding: 10px 8px 10px 8px;
        font-size: 15px;
    }


    .header_nav a:before {
        padding: 10px 8px 10px 8px;
    }

    .header_nav .signinLink {
        margin-left: 8px;
    }



    .sectionSubtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .readyLink {
        font-size: 18px;
        border-radius: 60px;
        padding: 18px 30px 18px 30px;
    }

    .container {
        width: 96%;
    }

    .section1 {
        min-height: 530px;
        padding-top: 65px;
    }

    .section1 .sun {
        height: 206px;
        -webkit-transform: translate(-53.5%, -45%);
        -ms-transform: translate(-53.5%, -45%);
        transform: translate(-53.5%, -45%);
        width: 202px;
    }

    .section1 .heading {
        font-size: 32px;
        margin: 0 0 8px;
    }

    .section1 .subheading {
        font-size: 20px;
        margin: 0;
        max-width: 400px;

    }

    .section1 .cloud1 {
        height: 68px;
        right: 4%;
        top: 35px;
        width: 129px;
    }

    .section1 .cloud2 {
        -webkit-filter: blur(1.92626px);
        filter: blur(1.92626px);
        height: 49px;
        right: 25.6%;
        top: 143px;
        width: 89px;
    }

    .section1 .cloud3 {
        -webkit-filter: blur(1.94323px);
        filter: blur(1.94323px);
        height: 54px;
        left: 14%;
        top: 176px;
        width: 94px;
    }

    .section1 .monster1 {
        height: 221px;
        top: 176px;
        width: 214px;
    }

    .section1 .monster2 {
        height: 310px;
        top: 110px;
        width: 313px;
    }

    .section1 .monster3 {
        height: 219px;
        right: 292px;
        top: 260px;
        width: 138px;
    }

    .section1 .wave1 {
        bottom: 45px;
        height: 156px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .section1 .wave2 {
        bottom: 0px;
        height: 169px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .section1 .wave3 {
        bottom: 30px;
        height: 156px;
        top: auto;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .section1 .wave5 {
        bottom: 0;
        height: 169px;
        top: auto;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .section2 {
        padding: 63px 0 72px;
    }

    .section2 .container {
        max-width: 1020px;
    }

    .icon_img {
        height: 100px;
    }

    .icon_img img {
        height: auto;
        max-height: 100%;
        width: auto;
    }

    .icon_title {
        font-size: 20px;
        font-weight: 700;
        line-height: 1.35;
        max-width: 220px;
    }

    .section3 {
        margin-bottom: 0;
        padding: 68px 0 55px;
    }

    .section3 .section_title {
        font-size: 31.25px;
        margin-bottom: 83px;
    }

    .how_works {
        --margin-start: 48px;
        --padding-top: 48px;
        --padding-end: 48px;
        --padding-bot: 48px;
        --border-width: 14px;
        --border-radius: 21px;
        margin-right: 9px;
    }

    .how_works .how_works_item:first-child:before {
        --margin-start: 48px;
        --border-width: 14px;
    }

    .how_works_title {
        font-size: 25px;
        margin-bottom: 21px;
    }

    .how_works_descr {
        font-size: 18px;
        line-height: 1.3;
    }

    .how_works_descr>li {
        padding-left: 24px;
    }

    .how_works_descr>li:before {
        height: 10px;
        width: 10px;
    }

    .how_works_descr>li:not(:last-child) {
        margin-bottom: 20px;
    }

    .how_works_screen {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 426px;
        flex: 0 0 426px;
    }

    .how_works_text {
        padding: 15px 50px 20px 0px;
    }

    .how_works .how_works_item:nth-child(2n) .how_works_text {
        padding: 15px 0px 20px 40px;
    }

    .how_works_item.item-3 .how_works_screen img {
        margin: 5px 0 auto -22px;
    }

    .section4 {
        padding-top: 35px;
    }

    .sunrise_dayark,
    .sunrise_wrapper {
        height: 340px;
    }

    .sunrise_sun {
        height: 220px;
        width: 220px;
    }

    .section5 {
        padding: 24px 0 87px;
    }

    .section_heading {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 50px;
    }

    .section7 .section_heading,
    .section6 .section_heading,
    .section10 .section_heading,
    .section3 .section_heading {
        margin-bottom: 10px;
    }

    .section10 {
        margin-top: -190px;
    }
    .section8 .section_heading {
        margin-bottom: 80px;
    }

    .section6 {
        padding: 20px 0 60px;
    }

    .get_started_wrap {
        gap: 0 40px;
        padding: 0 33px 0 35px;
    }

    .get_started_title {
        font-size: 25px;
        line-height: 1;
        margin-bottom: 18px;
    }

    .get_started_buttons {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 398px;
        flex: 0 0 398px;
    }

    .get_started_btn {
        font-size: 20px;
        line-height: 1.5;
        margin-bottom: 15px;
        padding: 11px 25px;
    }

    .get_started_btn+.get_started_title {
        margin-top: 35px;
    }

    .video_wrapper:before {
        padding-top: 61.2%;
    }

    .video_wrapper video {
        -o-object-fit: cover;
        object-fit: cover;
    }



    .section7 .activityIcon {
        zoom: 0.9;
    }

    .section7 .heroImg {
        width: 380px;
        margin-bottom: -85px;
    }

    .section8 {
        padding: 60px 0 120px;
    }

    .routine_item {
        gap: 0 20px;
    }

    .routine_item:nth-child(odd) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .routine_item:nth-child(2n + 2) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .routine_title {
        font-size: 25px;
        line-height: 1.32;
        margin-bottom: 25px;
    }

    .routine_text {
        padding: 20px 20px 10px 10px;
    }

    .routine_item:nth-child(2n + 2) .routine_text {
        padding: 20px 10px 10px 20px;
    }

    .routine_descr {
        font-size: 16px;
        line-height: 1.47;
    }

    .section10 .section_monster {
        height: 450px;
        left: 150px;
        width: 450px;
    }

    .section10 .section_monster:hover {
        left: 300px;
    }

    .section10 .section_inner:before {
        height: 120px;
    }

    .section10 .section_inner:after {
        height: 115px;
    }

    .confidence_list {
        gap: 0 14px;
    }

    .confidence_item {
        border-radius: 18px;
        min-height: 0;
        padding: 20px 20px 20px 20px;
    }

    .confidence_icon {
        height: 100px;
        margin-bottom: 6px;
    }

    .confidence_icon img {
        max-height: 100%;
    }

    .confidence_title {
        font-size: 20px;
        line-height: 27px;
        margin-bottom: 4px;
    }

    .confidence_descr {
        font-size: 16px;
        line-height: 1.5;
    }



    .section12 {
        padding: 20px 0 140px;
    }

    .section12:before {
        height: 160px;
        top: -250px;
        width: 280px;
    }

    .blog_list {
        gap: 18px 17px;
    }

    .blog_image {
        border-radius: 20px;
    }

    .blog_title {
        border-radius: 14px;
        font-size: 20px;
        line-height: 27px;
        margin: 20px 20px 20px 20px;
        max-width: 100%;
        padding: 15px 45px 15px 15px;
    }

    .blog_title:after {
        height: 35px;
        right: 15px;
        width: 35px;
    }

    .footer_sun {
        top: -170px;
        width: 120px;
    }

    .footer_sun:before {
        background-size: contain;
        height: 340px;
        width: 249px;
    }

    .footer_inner:before {
        bottom: 46px;
        height: 159px;
        left: 38px;
        width: 205px;
    }

    .footer_inner:after {
        bottom: -39px;
        height: 620px;
        left: 50%;
        margin-left: -115px;
        width: 1140px;
    }

    .footer_title {
        font-size: 25px;
        line-height: 33px;
        margin-bottom: 38px;
    }

    .footer_nav {
        padding-right: 42px;
    }

    .footer_nav .menu {
        font-size: 16px;
        margin-left: 3px;
    }

    .footer_contacts {
        font-size: 16px;
        margin-left: 46px;
    }
}


@media (max-width: 1100px) {
    .header .container {
        padding: 0 39px;
        margin: 17px auto;
        width: 100%;
    }

    .header_nav {
        background: rgba(0, 0, 0, 0.67);
        height: 100%;
        left: 100%;
        margin: 0;
        position: fixed;
        top: 0;
        width: 100%;
    }

    .header_nav .hamburger {
        padding: 17px 39px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 2;
    }

    .header_nav.is-active {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    .header_nav .menu {
        background: #fff;
        display: block;
        height: 100%;
        margin: 0 0 0 auto;
        overflow: auto;
        padding: 50px 0 15px;
        width: 300px;
    }

    .header_nav .menu>li:last-child>a {
        border-bottom: none;
    }

    .header_nav a {
        border-bottom: 1px solid rgba(0, 0, 0, 0.42);
        display: block;
        font-size: 16px;
        padding: 15px 25px;
    }

    .header_nav a:before {
        display: none;
    }

    .header_nav a:hover {
        color: #333;
        font-weight: 600;
    }

    .header_nav .active a {
        color: #333;
        font-weight: 600;
    }

    .header_nav .whatsNew:hover, .header_nav .active .whatsNew
    {
        background: linear-gradient(276deg, #881798 -23.91%, #3A96DD 97.9%);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hamburger {
        padding: 0;
    }

    .hamburger,
    .hamburger-box {
        display: block;
    }

    .header_nav .signinLink {
        margin: 10px;
        display: inline-block;
    }

    .header_nav .signinLink:hover {
        background: linear-gradient(#3F96CC, #7D5AA6);
        color: #fff;
        font-weight: 700;
    }

    .header_logo_link {
        -webkit-box-flex: 0;
        display: block;
        -ms-flex: 0 0 87px;
        flex: 0 0 87px;
    }

    .header_logo_link img {
        display: block;
        height: auto;
    }

    .header_logo {
        gap: 0 10px;
    }

}


@media (max-width: 990px) {
    .container {
        width: 100%;
    }

    .sectionSubtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .readyLink {
        font-size: 16px;
        border-radius: 20px;
        padding: 9px 20px 9px 20px;
    }

 
    .header_logo .sep {
        border-width: 1px;
        height: 12px;
        margin-right: 2px;
    }

    .header_logo_slogan {
        font-size: 16px;
        line-height: 1;
    }

    .wrapper {
        padding-top: 50px;
    }

    .section1 {
        min-height: 686px;
        text-align: center;
    }

    .section1 .readyLink {
        display: inline-block;
        margin-top: 40px;
    }

    .section1 .sun {
        height: 214px;
        -webkit-transform: translate(-47.5%, -52%);
        -ms-transform: translate(-47.5%, -52%);
        transform: translate(-47.5%, -52%);
        width: 208px;
    }

    .section1 {
        padding-top: 126px;
    }

    .section1 .container {
        max-width: 366px;
    }

    .section1 .heading {
        font-size: 31.1px;
        line-height: 41px;
        margin: 0 0 8px;
    }

    .section1 .subheading {
        font-size: 18px;
        margin: 0;
        max-width: 100%;
    }

    .section1 .cloud1 {
        height: 67px;
        right: -36px;
        top: 224px;
        width: 130px;
    }

    .section1 .cloud2 {
        -webkit-filter: blur(1.12635px);
        filter: blur(1.12635px);
        height: 28px;
        opacity: 1;
        right: 130px;
        top: 366px;
        width: 55px;
    }

    .section1 .cloud3 {
        -webkit-filter: blur(1.97834px);
        filter: blur(1.97834px);
        height: 49px;
        left: -25px;
        opacity: 1;
        top: 274px;
        width: 94px;
    }

    .section1 .monster2 {
        height: 219.45px;
        right: -36px;
        top: 380px;
        width: 244.66px;
        transform: rotate(-7deg);
    }

    .section1 .monster1 {
        height: 150px;
        left: -5px;
        top: 450px;
        -webkit-transform: rotate(8deg);
        -ms-transform: rotate(8deg);
        transform: rotate(8deg);
        width: 150px;
    }

    .section1 .monster3 {
        height: 146.7px;
        right: 152px;
        top: 500px;
        width: 103.5px;
    }

    .section1 .wave4 {
        display: none;
    }

    .section1 .wave1,
    .section1 .wave2,
    .section1 .wave3,
    .section1 .wave5 {
        background-size: cover;
        background-repeat: no-repeat;
    }

    .section1 .wave1 {
        bottom: 30px;
        height: 120px;
    }

    .section1 .wave2 {
        bottom: 10px;
        height: 120px;

    }

    .section1 .wave3 {
        bottom: 15px;
        height: 120px;
    }

    .section1 .wave5 {
        bottom: 0px;
        height: 120px;
    }

    .section2 {
        padding-bottom: 97px;
        padding-top: 52px;
    }

    .icons_list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        gap: 50px 0;
        margin: 0 -15px;
    }

    .icons_list li {
        -webkit-box-flex: 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        padding: 0 10px;
    }

    .icon_title {
        font-size: 20px;
        line-height: 24px;
        max-width: 100%;
        padding: 0 20px 0 20px;
    }

    .icon_img {
        height: 81px;
        margin-bottom: 25px;
    }

    .icon_img.icon3 {
        height: 102px;
    }

    .icon_img.icon4 {
        height: 96px;
    }

    .icon_img img {
        height: auto;
        max-height: 100%;
        width: auto;
    }

    .section3 {
        margin-bottom: 0;
        padding-bottom: 50px;
        padding-top: 0;
    }

    .section3 .section_title {
        font-size: 37.32px;
        line-height: 46px;
        margin-bottom: 42px;
    }

    .how_works {
        padding: 0 24px;
        position: relative;
    }

    .how_works .how_works_item {
        margin-bottom: 0;
    }

    .how_works .how_works_item:not(:last-child) {
        margin-bottom: 53px;
    }

    .how_works .how_works_item:nth-child(2n) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 0;
        padding: 0 0 100px 0px;
    }

    .how_works .how_works_text {
        padding: 0px 0px 40px 0px;
    }


    .how_works .how_works_item:nth-child(2n) .how_works_text {
        padding: 0px 0px 140px 0px;
    }

    .how_works .how_works_item:nth-child(2n) .how_works_title {
        margin-top: 0;
    }

    .how_works_item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        background: none;
        border: none;
        border-radius: 0;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0;
        padding: 0 0 0 0;
    }

    .how_works_item:after,
    .how_works_item:before {
        display: none;
    }



    .how_works_screen {
        -webkit-box-flex: 1;
        -ms-flex: auto;
        flex: auto;
    }

    .how_works_screen img {
        left: auto;
        right: auto;
    }

    .how_works_item.item-1 .how_works_screen img {
        margin-left: -5px;
    }

    .how_works_item.item-3 .how_works_screen img {
        margin: 5px -10px 5px -12px;
    }

    .how_works_title {
        font-size: 25.92px;
        line-height: 34px;
        margin-bottom: 31px;
    }

    .how_works_descr {
        font-size: 18px;
        line-height: 24px;
    }

    .how_works_descr>li {
        padding-left: 20px;
    }

    .how_works_descr>li:before {
        height: 6px;
        width: 6px;
    }

    .section5 {
        overflow: hidden;
        padding-bottom: 0;
        padding-top: 60px;
        position: relative;
    }

    .section_heading {
        font-size: 38px;
        line-height: 1.2;
    }

    .section5 .section_heading {
        margin-bottom: 26px;
        margin-top: 100px;
    }


    .section5 .container {
        max-width: 90%;
    }

    .sunrise_dayark,
    .sunrise_wrapper {
        height: 150px;
    }

    .sunrise_sun {
        height: 110px;
        width: 110px;
    }

    .section4 {
        padding-top: 17px;
    }



    .section5 {
        padding: 24px 0 87px;
    }


    .section6 {
        padding-bottom: 40px;
        padding-top: 0;
    }

    .section6 .section_heading {
        margin-bottom: 22px;
    }

    .section6 .container {
        max-width: 90%;
    }

    .get_started_wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 21px 0;
    }

    .get_started_buttons {
        -webkit-box-flex: 1;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        -ms-flex: auto;
        flex: auto;
        order: 2;
    }

    .get_started_title {
        font-size: 26px;
        line-height: 40px;
        margin-bottom: 22px;
    }

    .get_started_btn {
        border-radius: 14px;
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 15px;
        padding: 14px;
    }

    .get_started_btn+.get_started_title {
        margin-top: 25px;
    }

    .video-play {
        height: 50px;
        width: 50px;
    }

    .guides_list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .section7 .heroGrid {
        grid-template-columns: repeat(5, 1fr);
        grid-column-gap: 2px;
        grid-row-gap: 50px;
        margin-top: 40px;
    }

    .section7 .heroImg {
        grid-column: 2/5;
        grid-row: 3/5;
        width: 220px;
        margin-bottom: -95x;
    }

    .section7 .activityIcon {
        margin-top: -50px;
    }


    .section7 .activityIconLogo {
        width: 75px;
        height: 35px;
        padding: 2px;
    }

    .section7 .activityIconB,
    .section7 .activityIconA {
        width: 40px;
        height: 40px;
        padding: 2px;
    }

    .section7 .activityIconLogoB {
        width: 45px;
        height: 45px;
        padding: 2px;
    }


    .section7 .activityIcon span {
        display: none;
    }

    .section8 {
        padding-bottom: 70px;
        padding-top: 103px;
    }

    .routine_list {
        margin: 0 24px;
    }

    .routine_item {
        display: block;
    }

    .routine_item:nth-child(2n + 2) .routine_text {
        padding: 20px 15px;
    }

    .routine_item:not(:last-child) {
        margin-bottom: 54px;
    }

    .routine_img {
        min-height: 200px;
        margin-bottom: 40px;
        margin-top: 70px;
    }

    .routine_text {
        padding: 20px 15px;
    }

    .routine_title {
        font-size: 25.92px;
        line-height: 34px;
        margin: 12px 0;
        text-align: center;
    }

    .routine_descr {
        font-size: 18px;
        line-height: 1.47;
        text-align: center;
    }

    .section10 {
        margin: -100px 0 80px 0;
        padding-bottom: 0;
        padding-top: 87px;
        position: relative;
    }

    .section10:after {
        background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 415 54.1' fill='%23fff' preserveAspectRatio='none'%3E%3Cpath d='M415 0v54.1H53.3c8.1 0 24.8-1.2 38.7-2.8 19.6-2.2 48.6-6.2 84.3-13.8l21.3-4.8c26.1-5.9 120.8-24 120.8-24C390.4 0 415 0 415 0zM53.2 54.1c-17.1 0-28.1-.8-37.9-1.9L1 50.6S.5 52 0 54.1h53.2z'/%3E%3C/svg%3E") no-repeat 0 0/100% 100%;
        bottom: 0;
        content: "";
        height: 54px;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: 5;
    }

    .section10 .section_monster {
        background-position: 0 0;
        background-size: 100% auto;
        bottom: 0;
        cursor: default;
        height: 174px;
        left: 50%;
        right: auto;
        top: auto;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        width: 361px;
        z-index: 4;
    }

    .section10 .section_monster:hover {
        height: 250px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .section10 .section_inner {
        padding-bottom: 240px;
        padding-top: 45px;
    }

    .section10 .section_inner:before {
        height: 87px;
    }

    .section10 .section_inner:after {
        display: none;
    }

    .confidence_list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 33px 0;
    }

    .confidence_item {
        -webkit-box-flex: 1;
        background: none;
        border-radius: 0;
        -ms-flex: auto;
        flex: auto;
        min-height: 0;
        padding: 0;
    }

    .confidence_icon {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        align-items: center;
        background: #fff;
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 74px;
        justify-content: center;
        margin: 0 auto 17px;
        padding: 14px;
        width: 74px;
    }

    .confidence_icon img {
        height: auto;
        max-height: 100%;
        max-width: 100%;
        width: auto;
    }

    .confidence_title {
        font-size: 25.92px;
        line-height: 34px;
        margin-bottom: 17px;
    }

    .confidence_descr {
        font-size: 18.1263px;
        line-height: 24px;
        text-align: center;
    }

    .section12 {
        padding-bottom: 138px;
        padding-top: 0;
    }

    .section12:before {
        height: 112px;
        top: -70px;
        width: 200px;
    }

    .blog_list {
        -ms-grid-columns: 1fr;
        gap: 13px 0;
        grid-template-columns: repeat(1, 1fr);
        margin: 0 23px;
    }

    .blog_image {
        border-right: 13px;
        border-radius: 9px;
    }

    .blog_title {
        border-radius: 9px;
        font-size: 16px;
        line-height: 18px;
        margin: 10px 10px 10px 10px;
        max-width: 100%;
        padding: 10px 40px 10px 10px;
    }

    .blog_title:after {
        height: 24px;
        right: 10px;
        width: 24px;
    }

    .footer .container {
        padding: 0 39px;
    }

    .footer_inner {
        padding-bottom: 120px;
        padding-top: 49px;
    }

    .footer_inner:before {
        bottom: 26px;
        height: 80px;
        left: -23px;
        width: 118px;
    }

    .footer_inner:after {
        background-size: cover;
        bottom: 30px;
        height: 275px;
        margin-left: -42px;
        width: 506px;
    }

    .footer_sun {
        height: 200px;
        top: -140px;
        width: 100px;
    }

    .footer_sun:before {
        background-size: cover;
        height: 200px;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        width: 200px;
    }

    .footer_title {
        font-size: 25.92px;
        line-height: 34px;
        margin-bottom: 24px;
    }

    .footer_contacts {
        display: none;
    }

    .footer_nav {
        border: none;
    }

    .footer_nav .menu {
        margin: 0;
    }

    .footer_nav .menu>li:first-child {
        margin-bottom: 3px;
    }

    .footer_nav .menu li:not(:first-child)
    {
        background-color: #c4ddeac9;
        border-radius: 8px;
        padding: 8px;
        width: fit-content;
        margin-bottom: 3px;
    }

    #getstarted,
    #howtoref,
    #more {
        display: block;
        height: 0;
        overflow: hidden;
        position: relative;
        top: -50px;
    }
}

@media (max-width: 550px) {
    .icons_list>li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

@media (max-width: 400px) {
    .guides_list .guideItem {
        grid-template-areas: "icon title title title"
            "description description description link";
    }
}