@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

@font-face {
    font-family: 'Blatant';
    src: url('../fonts/BlatantBold.eot');
    src: url('../fonts/BlatantBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/BlatantBold.woff2') format('woff2'),
    url('../fonts/BlatantBold.woff') format('woff'),
    url('../fonts/BlatantBold.ttf') format('truetype'),
    url('../fonts/BlatantBold.svg#BlatantBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


html {
    overflow-x: hidden;
    font-size: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    max-width: 100%;
    overflow: hidden;
}

:focus, button, button:focus, input, input:focus {
    outline: 0;
}

:after, :before {
    box-sizing: border-box;
}

a {
    color: var(--white-color);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.list--unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

.justify-content-start {
    justify-content: flex-start;
}

.justify-content-end {
    justify-content: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-around {
    justify-content: space-around;
}

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.align-items-center {
    align-items: center;
}

.align-items-baseline {
    align-items: baseline;
}

.align-items-stretch {
    align-items: stretch;
}

.align-content-start {
    align-content: flex-start;
}

.align-content-end {
    align-content: flex-end;
}

.align-content-center {
    align-content: center;
}

.align-content-between {
    align-content: space-between;
}

.align-content-around {
    align-content: space-around;
}

.align-content-stretch {
    align-content: stretch;
}

.align-self-auto {
    align-self: auto;
}

.align-self-start {
    align-self: flex-start;
}

.align-self-end {
    align-self: flex-end;
}

.align-self-center {
    align-self: center;
}

.align-self-baseline {
    align-self: baseline;
}

.align-self-stretch {
    align-self: stretch;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.sticky {
    position: sticky;
}

.w-100p {
    width: 100%;
}

.h-100p {
    height: 100%;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block;
}

.d-grid {
    display: grid;
}

.flex-column {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.center {
    margin: 0 auto;
    text-align: center;
}

.d-flex-normal {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

:root {
    --green-color: #0EB964;
    --black-color: #000000;
    --blue-color: #20BDFF;
    --grey-color: #F5F5F5;
    --white-color: #FFFFFF;
    --purple-color: #8A4FE8;
}

.wrap {
    overflow: hidden;
}


h1, h2, h3, h4, h5, h6, .font, .faq strong {
    font-family: 'Blatant', sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 100%;
}

h1 {
    font-size: 115px;
}

h2 {
    font-size: 96px;
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 36px;
}

h5 {

}

h6 {

}

body {
    background: var(--grey-color);
    color: var(--black-color);
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.header {
    padding: 40px 0;
    z-index: 99;
    transition: all 0.2s linear;
}

.header-menu {
    font-size: 16px;
    color: var(--black-color);
}

.footer-menu ul li,
.header-menu li {
    position: relative;
}

.header-menu li a {
    color: var(--black-color);
    font-weight: 800;
    transition: all 0.2s linear;
}

.footer-menu ul li:hover a,
.header-menu li:not(:last-of-type):hover a {
    position: relative;
    top: -2px;
    color: var(--purple-color);
}

.top .buttons a {
    position: relative;
}

.top .buttons a.link:hover:before,
.footer-menu ul li:hover:before,
.header-menu li:not(:last-of-type):hover:before {
    -webkit-animation: move13 1.5s linear forwards;
    animation: move13 1.5s linear forwards;

}

.top .buttons a.link:before,
.footer-menu ul li:before,
.header-menu li:not(:last-of-type):before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    width: 0;
    background: var(--purple-color);
    bottom: 0;
}

.top .buttons a.link:before {
    bottom: 18px;
}

@-webkit-keyframes move13 {
    50% {
        width: 90%;
    }
    20%, to {
        width: 100%;
    }
}

@keyframes move13 {
    50% {
        width: 90%;
    }
    20%, to {
        width: 100%;
    }
}

.header-menu li {
    margin-left: 27px;
}

.shadow-md {
    background-color: rgba(255, 255, 255, .8);
}

.top-left {
    z-index: 2;
}

.header-mobile {
    display: none;
}

.top {
    padding-bottom: 65px;
}

.top-video {
    flex-shrink: 0;
    position: absolute;
    right: -10%;
    width: 990px;
    top: 80px;
}

.pages-container {
    max-width: 1075px;
    margin-right: auto;
    font-size: 20px;
    line-height: 135%;
    margin-bottom: 125px;
}

.pages-container p {
    margin-bottom: 20px;
}

.pages-container ul {
    margin-left: 40px;
    margin-bottom: 20px;
}

.pages-container a {
    font-weight: 900;
    color: var(--purple-color);
    text-decoration: underline;
}

.pages-container h1 {
    margin-bottom: 55px;
}

.pages-container table {
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 35px;
}

.pages-container table tr > td {
    border: 1px solid var(--purple-color);
    padding: 15px;
    font-weight: bold;
}

.text--underline {
    text-decoration: underline;
}

.pages-container h2 {
    font-size: 32px;
    font-family: "Manrope", sans-serif;
    font-weight: 900;
    margin-bottom: 20px;
    margin-top: 30px;
}

.content .subtitle {
    font-size: 36px;
    line-height: 110%;
}

.content .subtitle p {
    margin-bottom: 25px;
}

.top-line {
    top: 0;
    left: 0;
}

.top-line2 {
    right: 0;
    bottom: -20%;
    z-index: 3;
}

.top-left__text p {
    font-size: 24px;
    margin-top: 15px;
}

.future, .why {
    color: var(--grey-color);
}

/*.future,*/
.why {
    background: var(--purple-color);
    /*background: #9559ea;*/
    color: var(--grey-color);
}

/*.overlay {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: var(--purple-color);*/
/*    mix-blend-mode: luminosity;*/
/*    z-index: 1;*/
/*}*/
.why {
    padding: 100px 0;
    z-index: 22;
    position: relative;
}

.top h1 {
    color: var(--purple-color);
}

.top .buttons {
    z-index: 2;
    position: relative;
    margin-top: 30px;
}

.link {
    height: 55px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 800;
    margin-right: 200px;
    line-height: 55px;
}

.link--2 {
    margin-right: 27px;
}

.link--1 {
    margin-left: auto;
    margin-right: 27px;
}

.top-left__text {
    margin: 250px 0;
}

.top-indent {
    margin-top: 150px !important;
}

.top h1 i {
    font-style: normal;
    color: var(--black-color);
}

.footer-left p > span,
.top-left__text p > span,
.top h1 > span,
.get h2 > span,
.why h2 > span {
    display: block;
}

.why-item {
    border-radius: 25px;
    background: var(--grey-color);
    color: var(--black-color);
    line-height: normal;
    margin: 0 5px 10px;
    z-index: 3;
}

.why-item h4, .get h4 {
    margin-bottom: 9px;
}

.why-item:not(.why-item--5) {
    padding: 25px;
}

.why-item h4 {
    font-weight: 700;
    display: block;
    margin-bottom: 9px;
}

.why-item p + p {
    margin-top: 10px;
}

.why-item--1 {
    width: calc(57% - 200px);
    margin-left: auto;
}

.why-note {
    font-size: 16px;
    max-width: 160px;
    line-height: 130%;
    margin-left: 20px;
    position: relative;
    padding-left: 20px;
    font-weight: 400;
}

.why-note i {
    position: absolute;
    left: 0;
    top: 0;
}

.why-item--2 {
    width: 25%;
}

.why-item--3 {
    width: 22%;
}

.why-item--4 {
    width: 34%;
}

.why-item--5 {
    width: 39%;
    background: transparent;
}

.why-item--6 {
    width: 43%;
}

.why-item--6 p {
    max-width: 80%;
}

.why-item--5 video {
    border-radius: 25px;
    overflow: hidden;
}

/*.why-item--5:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    background: url("../img/why-img2.png") no-repeat;*/
/*    width: 335px;*/
/*    height: 341px;*/
/*    top: 50%;*/
/*    right: 5%;*/
/*    transform: translateY(-50%);*/
/*}*/

.why-line {
    right: 0;
    bottom: 80px;
}

.get {
    padding: 150px 0;
}

.get h2 {
    margin-bottom: 48px;
}

.why-line2 {
    z-index: 1;
    bottom: -40%;
}

.get-line {
    right: 0;
    bottom: 0;
    z-index: 2;
}

.get-item {
    margin-bottom: 28px;
    max-width: 45%;
}

.get-item:nth-child(4) {
    margin-bottom: unset;
    max-width: 45%;
}

.get-item i {
    width: 69px;
    height: 69px;
    border-radius: 100%;
    flex-shrink: 0;
    background: rgba(138, 79, 232, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.get-video {
    flex-shrink: 0;
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
}

.get-left {
    z-index: 3;
    margin-left: 150px;
}

.get .buttons {
    margin-top: 45px;
}

.btn i {
    transform: translateX(-100px);
    width: 0;
}

.btn:hover i {
    animation: appear 1.5s linear forwards;
    width: 24px;
}

@-webkit-keyframes appear {
    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%, to {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }
}

@keyframes appear {
    50% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%, to {
        -webkit-transform: translateX(-15px);
        transform: translateX(-15px);
    }
}

.btn {
    border-radius: 45px;
    border: 2px solid var(--black-color);
    height: 55px;
    width: 200px;
    font-size: 16px;
    color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    overflow: hidden;
}

.btn:not(:last-of-type) {
    margin-right: 8px;
}

.btn:hover {
    color: var(--white-color);
    border: unset;
    font-size: 14px;
    box-shadow: 0 1px 1px 0 #000;
}

.btn-appstore:hover {
    background: linear-gradient(180deg, #17C9FB 0%, #1A74E8 10000%);
}

.btn-googleplay:hover {
    background: var(--black-color);
}

.btn-webapp:hover {
    background: var(--purple-color);
}

.cards {
    margin-bottom: -110px;
    z-index: 2;
    position: relative;
}

.cards-button img {
    width: 89px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.cards-button a:first-of-type {
    margin-right: 15px;
}

.cards-button a:hover img {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.cards-list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 23px;
    gap: 23px;
}

.cards-title {
    margin-bottom: 35px;
}

.cards-item {
    border-radius: 25px;
    background: var(--white-color);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.cards-item .buttons {
    margin-top: auto;
}

.cards-item .buttons .btn i {
    margin-bottom: unset;
}

.cards-item .buttons .btn {
    width: 50%;
}

.cards-item > i {
    color: rgba(0, 0, 0, 0.4);
    font-style: normal;
    display: block;
    margin-bottom: 25px;
}

.btn-black {
    font-size: 33px;
    height: 65px;
    width: 100%;
    background: var(--black-color);
    color: var(--white-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.cards .btn-black i {
    font-style: normal;
}

.cards .btn-black:hover i {
    font-size: 0;
}

.cards .btn-black:hover {
    background: transparent;
    justify-content: space-between;
}

.cards .btn-black .btn-googleplay i,
.cards .btn-black .btn-appstore i {
    margin-right: -10px;
}

.cards .btn-black .btn-appstore {
    left: -10px;
}

.cards .btn-black .btn-googleplay {
    right: -10px;
}

.cards .btn-black:hover .btn-googleplay,
.cards .btn-black:hover .btn-appstore {
    display: flex !important;
    width: calc(49% + 10px);
}

.cards-item ul {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 2px solid var(--black-color);
    font-weight: 800;
    margin-bottom: 40px;
}

.cards-item ul li {
    margin-bottom: 10px;
    padding-left: 43px;
    position: relative;
    font-weight: 500;
}

.cards-item ul li.card-list__x:before {
    background: rgba(255, 0, 0, 0.4) url("../img/icon-close.svg") no-repeat center;
}

.cards-item ul li:before {
    flex-shrink: 0;
    content: "";
    width: 28px;
    height: 28px;
    background: rgba(0, 0, 0, 0.4) url("../img/icon-done.svg") no-repeat center;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 2px;
    display: block;
}

.cards-item--purple ul {
    border-top-color: var(--purple-color);
}

.cards-item--purple h3:first-of-type {
    color: var(--purple-color);
}

.cards-item--blue ul {
    border-top-color: var(--blue-color);
}

.cards-item--blue h3:first-of-type {
    color: var(--blue-color);
}

.cards-item__price {
    display: flex;
    align-items: flex-start;
}

.cards-item__price > span {
    display: block;
    font-size: 16px;
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    line-height: normal;
}

.cards-item--blue ul li:before {
    background-color: rgba(32, 189, 255, 0.4);
}

.cards-item--purple ul li:before {
    background-color: rgba(138, 79, 232, 0.4);
}

.future {
    overflow: hidden;
}

.future h2 {
    max-width: 45%;
}

.future p {
    max-width: 28%;
    margin-left: 100px;
    margin-top: 15px;
}

.future-text {
    position: relative;
    z-index: 2;
    margin-top: 250px;
    margin-bottom: 200px;
    margin-left: 100px;
}

.future-video {
    flex-shrink: 0;
    position: absolute;
    left: 0;
    overflow: hidden;
    bottom: 0;
    top: 0;
    right: 0;
}

.future-video video {
    object-fit: cover;
}

.blog {
    margin-top: 125px;
}

.blog-title {
    margin-left: 150px;
    display: table;
}

.blog-title:before {
    content: "";
    position: absolute;
    background: url("../img/blog-line.png") no-repeat;
    width: 501px;
    height: 690px;
    left: -420px;
    top: -240px;
    z-index: -1;
}

.blog-title p {
    margin-top: 10px;
    max-width: 300px;
    margin-left: auto;
    margin-right: 40px;
}

.blog-info {
    margin-bottom: -140px;
}

.blog-info h3 {
    font-size: 85px;
}

.blog-info h3 > span,
.blog-title h2 {
    color: var(--purple-color);
}

.blog-info p {
    margin: 10px 0 46px;
}

.blog-info {
    max-width: 1100px;
    border-radius: 25px;
    padding: 120px 50px 80px;
    background: var(--white-color);
    margin-left: 290px;
    margin-top: -80px;
}

.blog-list {
    margin-top: 40px;
    margin-left: 250px;
}

.blog-list li {
    width: 670px;
    overflow: hidden;
    margin: 0 10px;
    flex-shrink: 0;
}

.blog-list__link {
    display: block;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.blog-list li > i img {
    display: block;
}

.blog-list li > i {
    position: relative;
    display: block;
    border-radius: 25px;
    overflow: hidden;
}

.blog-list li > i:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    transition: all 0.2s linear;
    background: rgba(0, 0, 0, 0.75);
    opacity: 0;
    top: 0;
    bottom: 0;
}

.blog-list li:hover i:after {
    opacity: 1;
}

.blog-list li:hover .blog-list__text {
    transform: translateY(-40px);
}

.blog-list li:hover .blog-list__text span,
.blog-list li:hover .blog-list__text strong {
    transform: unset;
    height: unset;
}

.blog-list__text {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: -20px;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
}

.blog-list__text span {
    color: rgba(245, 245, 245, 1);
    font-size: 16px;
    margin: 15px 0 45px;
    font-weight: 800;
    transform: translateY(250px);
    transition: all 0.2s linear;
    height: 0;
}

.blog-list__text strong {
    font-size: 20px;
    transform: translateY(250px);
    height: 0;
    transition: all 0.2s linear;
}

.blog-list__text span i {
    opacity: 0.6;
    font-style: normal;
    font-weight: 500;
}

.blog-list__text b {
    font-size: 32px;
    max-width: 90%;
}

.footer {
    background: var(--black-color);
    color: var(--white-color);
    padding-top: 280px;
    padding-bottom: 60px;
}

.footer-left p {
    font-size: 14px;
    margin-top: 25px;
}

.footer-left i {
    font-style: normal;
    opacity: 40%;
    font-size: 14px;
    margin-top: auto;
}

.footer-menu b {
    margin-bottom: 25px;
    color: var(--purple-color);
    display: block;
}

.footer-menu ul li {
    font-size: 16px;
    margin-bottom: 15px;
    display: table;
}

.footer-menu ul li:last-of-type {
    margin-bottom: unset;
}

.footer-menu__links {
    font-size: 16px;
    margin-top: auto;
    font-weight: 500;
}

.footer-menu__links a:first-of-type {
    margin-right: 15px;
}

.footer-menu__links a:hover {
    color: var(--purple-color);
}

.footer-menu.d-flex.flex-column {
    z-index: 22;
}

.footer-menu__subscribe input::placeholder {
    color: var(--black-color);
}

.footer-menu:last-of-type b {
    margin-bottom: 10px;
}

.footer-menu__subscribe {
    height: 50px;
    flex-shrink: 0;
    display: flex;
}

.footer-menu__subscribe button {
    height: 100%;
    width: 185px;
    display: flex;
    border-radius: 10px;
    background: var(--purple-color);
    color: var(--white-color);
    font-size: 16px;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-left: 8px;
    border: unset;
}

.footer-menu__subscribe input {
    height: 100%;
    width: 361px;
    border-radius: 10px;
    background: var(--white-color);
    color: var(--black-color);
    padding-left: 25px;
    border: unset;
    box-shadow: unset;
    font-size: 16px;
    font-weight: 800;
}

.footer-menu__subscribe + span {
    font-size: 14px;
    margin-top: 6px;
    color: #666666;
}

.footer-menu__subscribe + span > a {
    color: var(--purple-color);
}

.footer-menu__subscribe + span > a:hover {
    color: var(--white-color)
}

.footer-menu__sublinks a {
    margin-right: 15px;
    font-size: 14px;
    margin-top: 100px;
    opacity: 0.4;
}

.footer-menu__sublinks a:hover {
    opacity: 1;
}

.faq-block__left {
    width: 40%;
    flex-shrink: 0;
    margin-right: 3%;
}

.faq-block__tabs.faq-block__left span {

    align-items: center;
    justify-content: center;
}

.faq-block__tabs .faq-block__item,
.faq-block__tabs span {
    background: var(--white-color);
    color: var(--black-color);
    padding: 25px 35px;
    border-radius: 25px;
    display: flex;
    cursor: pointer;
}

.faq-block__new b {
    margin-bottom: 15px;
    display: block;
}

.faq-block__new b,
.faq-block__left span,
.faq-block__right b {
    font-size: 36px;
    line-height: 100%;
    font-weight: normal;
}

.faq-block__right b {
    padding-right: 90px;
    line-height: 115%;
    width: 100%;
}

.faq-block__item:not(:last-of-type),
.faq-block__tabs span:not(:last-of-type) {
    margin-bottom: 15px;
}

.faq-block__item.is--open,
.faq-block__tabs span:hover,
.faq-block__tabs span.is--active {
    background: var(--black-color);
    color: var(--white-color);
}

.faq-block__item:after,
.faq-block__item {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.faq-block__item.is--open b {
    color: var(--purple-color);
}

.faq-block__item.is--open:after {
    content: '-';
    color: var(--white-color)
}

.faq-block__right {
    width: 57%;
}

.faq-block__right p {
    font-size: 20px;
    font-family: "Manrope", sans-serif;
    margin-top: 10px;
}

.faq-block__tabs span:hover:after {
    color: var(--white-color);
}

.faq-block__item:after {
    content: '+';
    font-size: 36px;
    color: var(--black-color);
    position: absolute;
    right: 35px;
    font-family: 'Blatant', sans-serif;
}

.faq-block {
    margin-top: 55px;
}

.content h1,
.content h2 {
    color: var(--purple-color);
}

.breadcrumbs {
    flex-wrap: wrap;
}

.breadcrumbs a {
    color: #868686
}

.breadcrumbs .kb_sep {
    margin: 0 10px;
}

.breadcrumbs {
    font-size: 24px;
    font-weight: bold;
}

.faq-block__new {
    background: var(--purple-color);
    padding: 50px 90px 50px 135px;
    color: var(--white-color);
    border-radius: 25px;
    margin-top: 40px;
    margin-bottom: -40px;
    width: 40%;
}

.faq-block__new p {
    font-size: 20px;
    line-height: 115%;
    font-weight: normal;
    font-family: "Manrope", sans-serif;
    margin-bottom: 15px;
}

.faq-block__new .btn {
    height: 50px;
    background: var(--black-color);
    color: var(--white-color);
    border-radius: 10px;
    width: 250px;
    font-weight: normal;
    font-family: "Manrope", sans-serif;
}

.faq-block__new:before {
    content: '';
    width: 180px;
    height: 178px;
    background: url("../img/chat-img.png") no-repeat;
    background-size: contain;
    position: absolute;
    left: -60px;
    top: 20%;
}

.faq.content {
    z-index: 22;
    position: relative;
}

.faq-img1 {
    top: -150px;
    z-index: -1;
    left: 20%;
}

.faq-img2 {
    right: 0;
    bottom: 570px;
    z-index: -1;
}

.purple--bg .shadow-md {
    background: rgba(0, 0, 0, .8);
}

.purple--bg .btn {
    border-color: var(--white-color);
}

.purple--bg .header-menu li a {
    color: var(--white-color);
}

.purple--bg .header-menu li .btn:hover {
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.purple--bg .header-menu li a:hover {
    opacity: 0.8;
    color: var(--white-color);
}

.purple--bg .header-menu li:not(:last-of-type):before {
    background: var(--white-color);
}

.purple--bg:after {
    content: "";
    position: absolute;
    height: 1080px;
    width: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #8A4FE8 0%, #4D2C82 100%);
    z-index: -1;
}

.events h1,
.events .breadcrumbs {
    color: var(--white-color)
}

.events .breadcrumbs a {
    color: #B2B2B2
}

.events-tabs {
    margin-top: 45px;
}

.events-tabs span {
    min-width: 280px;
    border-radius: 15px;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 65px;
    cursor: pointer;
    padding: 0 34px;
}

.events-tabs span:not(:last-of-type) {
    margin-right: 10px;
}

.events-tabs span:hover,
.events-tabs span.is--active {
    background: var(--white-color);
    color: var(--black-color)
}

.events-list, .blog-block {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 25px;
    margin-bottom: 75px;
}

.events-list {
    grid-gap: 35px 20px;
    gap: 35px 20px;
}

.blog-block {
    grid-gap: 20px;
    gap: 20px;
}

.events-item:nth-child(1),
.events-item:nth-child(2),
.events-item:nth-child(3) {
    color: var(--white-color)
}

.blog-item__text,
.events-item:nth-child(1) .events-item__btn,
.events-item:nth-child(2) .events-item__btn,
.events-item:nth-child(3) .events-item__btn {
    color: var(--white-color)
}

.events-item:nth-child(1):hover .events-item__text b,
.events-item:nth-child(2):hover .events-item__text b,
.events-item:nth-child(3):hover .events-item__text b {
    opacity: 0.8;
    color: var(--white-color)
}

.blog-item__text,
.events-item__text {
    font-size: 14px;
}

.blog-item__text b,
.events-item__text b {
    font-size: 24px;
}

.events-item__btn {
    font-size: 15px;
    color: var(--black-color)
}

.events-item__text p {
    margin: 5px 0 25px;
}

.events-item__img img {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.events-item:hover .events-item__text b {
    color: var(--purple-color)
}

.events-item:hover .events-item__img img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.big-btn {
    font-size: 40px;
    font-weight: bold;
    background: var(--purple-color);
    color: var(--white-color);
    height: 80px;
    line-height: 80px;
    text-align: center;
    padding: 0 68px;
    border-radius: 25px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    border: 4px solid var(--purple-color);
    display: table;
    margin-bottom: -40px;
}

.big-btn:hover {
    background: var(--white-color);
    color: var(--purple-color);
    transform: translateY(-20px);
}

.cards-button {
    align-self: center;
}

.footer-menu__subscribe .btn:hover {
    background: var(--blue-color);
}

.blog-top {
    padding: 65px;
    border-radius: 25px;
    height: 555px;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 35px;
    margin-bottom: 60px;
}

.blog-top__link {
    margin-top: auto;
    font-size: 24px;
}

.blog-top__text p {
    color: var(--grey-color);
    font-size: 14px;
    margin-top: 10px;
    line-height: normal;
    font-weight: 300;
}

.blog-top__text {
    width: 42%;
    height: 100%;
    color: var(--white-color);
}

.blog-item__text {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.blog-item__text p {
    margin: 5px 0 36px;
}

.blog-item__btn {
    font-size: 15px;
}

.blog-item__text b {
    max-width: 230px;
}

.blog-item {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.blog-item img {
    display: block;
    border-radius: 17px;
    overflow: hidden;
    object-fit: cover;
    height: 100%;
}

.blog-item:after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    border-radius: 17px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.blog-item:hover:after {
    display: none;
}

.blog-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-elem1 {
    left: 0;
    top: 10%;
}

.blog-elem2 {
    right: 0;
    top: 15%;
}

.blog-inner__img img {
    object-fit: cover;
    max-width: unset;
    width: 100%;
}

.blog-inner__img {
    margin: 35px 0;
}

.blog-inner {
    line-height: 145%;
}

.blog-inner p {
    margin-bottom: 15px;
}

.blog-inner h2 {
    font-size: 32px;
    color: var(--black-color);
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-custom {
    background: var(--purple-color);
    border-radius: 25px;
    padding: 45px;
    color: var(--white-color);
    margin: 35px 0;
}

.blog-custom h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.blog-custom p {
    font-size: 20px;
    line-height: normal;
}

.blog-custom__buttons {
    margin-top: 20px;
}

.blog-custom__buttons a {
    height: 50px;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 0 35px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.blog-custom__buttons a:first-of-type {
    margin-right: 15px;
    background: var(--black-color);
    color: var(--white-color);
}

.blog-custom__buttons a:last-of-type {
    background: var(--white-color);
    color: var(--black-color);
}

.blog-custom__buttons a:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

.blog-inner {
    max-width: 1075px;
}

a.blog-item__img {
    height: 100%;
}
.error-img1{
    top: 0;
    left: -10%;
}
.error-img2{
    top: 10%;
    right: 0;
}
.error-img3{
    bottom: 5%;
    left: 0;
    z-index: -1;
}
@media screen and (max-width: 1810px) {
    .top-line {
        left: -140px;
    }

    .top-line2 {
        right: -100px;
        bottom: -25%;
    }

    .why-line2 {
        left: -180px;
    }
}

@media screen and (max-width: 1540px) {
    .container {
        max-width: 1280px;
        padding-left: 20px;
        padding-right: 20px;
    }

    body {
        font-size: 16px;
    }

    h1 {
        font-size: 80px;
    }

    h2 {
        font-size: 67px;
    }

    h3 {
        font-size: 33px;
    }

    h4, .faq-block__new b, .faq-block__left span, .faq-block__right b {
        font-size: 25px;
    }

    .top-video {
        width: 763px;
        right: 0;
        top: 10%;
    }

    .top-line {
        width: 148px;
        left: -110px;
    }

    .top-line2 {
        width: 186px;
        bottom: -10%;
        right: -30px;
    }

    .top-left__text {
        margin: 175px 0;
    }

    .why-line {
        width: 488px;
    }

    .why-line2 {
        width: 505px;
        left: -140px;
    }

    .get-line {
        width: 325px;
    }

    .why-item--5:after {
        background-size: contain;
        width: 235px;
        height: 239px;
    }

    /*.get-video {*/
    /*    width: 710px;*/
    /*    right: -50px;*/
    /*}*/

    .get-item i {
        width: 50px;
        height: 50px;
    }

    .get-item i img {
        width: 25px;
    }

    .btn-black, .blog-list__text b, .pages-container h2 {
        font-size: 23px;
    }

    .cards-item ul li:before {
        width: 20px;
        height: 20px;
        background-size: 10px auto !important;
    }

    /*.future-video {*/
    /*    width: 800px;*/
    /*}*/
    .future-text, .get-left {
        margin-left: 105px;
    }

    .blog-list li {
        width: 470px;
    }

    .blog-list__text {
        left: 30px;
        right: 30px;
    }

    .blog-info h3 {
        font-size: 60px;
    }

    .blog-title:before {
        background-size: contain;
        width: 350px;
        height: 483px;
        left: -294px;
    }

    .cards-item {
        padding: 22px;
    }

    .cards-item ul {
        margin: 30px 0;
    }

    .faq-block__tabs .faq-block__item, .faq-block__tabs span {
        padding: 20px 30px;
    }

    .faq-block__new:before {
        width: 126px;
        height: 124px;
        left: -20px;
    }

    .faq-block__new {
        padding: 50px 30px 50px 125px;
    }

    .faq-img1 {
        width: 450px;
    }

    .faq-img2 {
        width: 535px;
        bottom: 500px;
    }

    .breadcrumbs {
        font-size: 20px;
    }

    .purple--bg:after {
        height: 920px;
    }

    .blog-top {
        height: 388px;
        background-size: cover;
    }

    .blog-elem1 {
        width: 260px;
    }

    .blog-elem2 {
        width: 490px;
    }

    .blog-inner {
        max-width: 80%;
    }

    .error-img1{
        width: 925px;
        left: -170px;
    }
    .error-img2{
        width: 625px;
        top: 20%;
        right: -100px;
        z-index: 2;
    }
    .error-img3{
        width: 915px;
        bottom: 250px;
    }
    .error svg{
        max-width: 1020px;
        min-height: 700px;
        height: auto;
    }
}

@media screen and (max-width: 1279px) {
    .container {
        max-width: 100%;
    }

    body {
        font-size: 14px;
    }

    h1 {
        font-size: 68px;
    }

    h2 {
        font-size: 57px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 21px;
    }

    .top-video {
        width: 648px;
    }

    .top-line, .top-line2 {
        display: none;
    }

    .top-left__text {
        margin: 149px 0;
    }

    .why-line {
        width: 415px;
    }

    .why-line2 {
        width: 429px;
        left: -119px;
    }

    .get-line {
        width: 276px;
    }

    .why-item--5:after {
        width: 200px;
        height: 203px;
    }

    /*.get-video {*/
    /*    width: 604px;*/
    /*    right: 0;*/
    /*}*/

    .get-item i {
        width: 43px;
        height: 43px;
    }

    .get-item i img {
        width: 21px;
    }

    .btn-black,
    .blog-list__text b, .pages-container h2 {
        font-size: 20px;
    }

    .cards-item ul li:before {
        width: 17px;
        height: 17px;
        background-size: 9px auto !important;
    }

    /*.future-video {*/
    /*    width: 680px;*/
    /*}*/
    .future-text,
    .get-left {
        margin-left: 89px;
    }

    .blog-list li {
        width: 400px;
    }

    .blog-list__text {
        left: 25px;
        right: 25px;
    }

    .blog-info h3 {
        font-size: 51px;
    }

    .blog-title:before {
        width: 298px;
        height: 410px;
        left: -250px;
    }

    .cards-list {
        overflow-x: scroll;
        padding-bottom: 15px;
        margin-right: -15px;
    }

    .cards-item {
        padding: 20px;
        width: 330px;
    }

    .cards-item ul {
        margin: 26px 0;
    }

    .link {
        margin-right: unset;
    }

    .link--2,
    .link--1 {
        margin-right: 27px;
    }

    .blog-list {
        overflow-x: scroll;
        padding-bottom: 15px;
    }

    .footer-menu.d-flex.flex-column {
        width: 100%;
        margin-top: 40px;
    }

    .footer-menu__links {
        margin-top: 20px;
        margin-left: auto;
    }

    .footer .container {
        flex-wrap: wrap;
        position: relative;
        padding-bottom: 40px;
    }

    .footer-menu:not(:last-of-type) {
        width: 25%;
    }

    .footer-left i, .footer-menu__sublinks {
        position: absolute;
        bottom: 0;
    }

    .footer-menu__sublinks {
        right: 0;
    }

    .header {
        padding: 30px 0;
    }

    .faq-block__new {
        width: 57%;
        margin-left: auto;
    }

    .blog-item__text b,
    .events-item__text b, .events-tabs span {
        font-size: 20px;
    }

    .blog-item__text {
        padding: 20px;
    }

    .blog-top__text p {
        font-size: 12px;
    }

    .events-tabs span {
        min-width: 200px;
        padding: 0 25px;
    }

    .purple--bg:after {
        height: 800px;
    }

    .events-item__text p, .blog-item__text p {
        margin-bottom: 20px;
    }

    .big-btn {
        font-size: 32px;
        height: 65px;
        line-height: 65px;
        padding: 0 45px;
    }

    .blog-top {
        padding: 40px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .blog-elem1 {
        width: 220px;
    }

    .blog-elem2 {
        width: 415px;
    }
    .error-img1{
        top: 100px;
    }
    .error-img2 {
        width: 545px;}
    .error svg{
        max-width: 700px;
    }
    .error-img3{
        bottom: 370px;
    }
}

@media screen and (max-width: 990px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 70px;
    }

    .top h1 > span:nth-child(2) {
        font-size: 58px;
    }

    h2 {
        font-size: 46px;
    }

    h3 {
        font-size: 25px;
    }

    h4, .faq-block__new b, .faq-block__left span, .faq-block__right b {
        font-size: 19px;
    }

    .future-text {
        margin-top: 140px;
        margin-bottom: 80px;
    }

    .top-video {
        width: 520px;
        right: -9%;
    }

    .top-left__text p {
        font-size: 18px;
    }

    .btn {
        height: 50px;
        width: 150px;
    }

    .header .btn {
        width: unset;
        padding: 0 20px;
    }

    .why {
        padding: 80px 0;
    }

    .why-item--3 {
        width: calc(29% - 10px);
    }

    .why-item--4 {
        width: calc(42% - 10px);
    }

    .why-item--2 {
        width: calc(29% - 10px);
    }

    .why-item--6 {
        width: calc(61% - 20px);
    }

    .link {
        height: 50px;
        line-height: 50px;
    }

    .top-line,
    .top-line2 {
        display: none;
    }

    .top-left__text {
        margin: 134px 0;
    }

    .why-line {
        width: 374px;
    }

    .why-line2 {
        width: 386px;
        left: -107px;
        bottom: -25%;
    }

    .get {
        padding: 60px 0;
    }

    .get-line {
        width: 168px;
    }

    .why-item--5:after {
        width: 180px;
        height: 183px;
    }

    /*.get-video {*/
    /*    width: 395px;*/
    /*}*/

    .get-item i {
        width: 60px;
        height: 60px;
    }

    .get-item i img {
        width: 40px;
    }

    .cards-item ul li {
        padding-left: 22px;
    }

    .btn-black,
    .blog-list__text b {
        font-size: 20px;
    }

    .cards-item ul li:before {
        width: 15px;
        height: 15px;
        background-size: 8px auto !important;
    }

    /*.future-video {*/
    /*    width: 520px;*/
    /*}*/
    .future-text,
    .get-left {
        margin-left: 80px;
    }

    .blog-list li {
        width: 360px;
    }

    .blog-list__text {
        left: 23px;
        right: 23px;
    }

    .blog-info h3 {
        font-size: 46px;
    }

    .blog {
        margin-top: 80px;
    }

    .blog-list {
        margin-left: 100px;
        margin-right: -20px;
    }

    .blog-info {
        margin-left: 120px;
        padding: 80px 35px 40px;
    }

    .footer {
        padding-top: 190px;
        padding-bottom: 40px;
    }

    .blog-title:before {
        width: 268px;
        height: 369px;
        left: -225px;
        top: -170px;
    }

    .cards-list {
        overflow-x: scroll;
        padding-bottom: 14px;
        margin-right: -14px;
    }

    .cards-item {
        padding: 18px;
        width: 297px;
    }

    .cards-item ul {
        margin: 23px 0;
    }

    .link {
        margin-right: unset;
    }

    .link--1 {
        margin-right: 24px;
    }

    .blog-list {
        overflow-x: scroll;
        padding-bottom: 14px;
    }

    .footer-menu.d-flex.flex-column {
        width: 100%;
        margin-top: 36px;
    }

    .footer-menu__links {
        margin-top: 18px;
        margin-left: auto;
    }

    .footer .container {
        flex-wrap: wrap;
        position: relative;
        padding-bottom: 36px;
    }

    .footer-menu:not(:last-of-type) {
        width: 23%;
    }

    .footer-left i,
    .footer-menu__sublinks {
        position: absolute;
        bottom: 0;
    }

    .footer-menu__sublinks {
        right: 0;
    }

    .logo img {
        width: 174px;
    }

    .header {
        padding: 27px 0;
    }

    .blog-title {
        margin-left: 80px;
    }

    .faq-img2 {
        width: 725px;
    }

    .events-list, .blog-block {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-tabs span {
        height: 50px;
        padding: 0 15px;
    }

    .blog-item__text b, .events-item__text b, .events-tabs span {
        font-size: 18px;
    }

    .events-item:nth-child(3), .events-item:nth-child(3) .events-item__btn {
        color: var(--black-color);
    }

    .blog-elem1 {
        width: 185px;
    }

    .blog-elem2 {
        width: 355px;
    }

    .blog-custom {
        padding: 35px;
    }

    .blog-custom h2 {
        font-size: 24px;
    }

    .blog-custom p {
        font-size: 16px;
    }

    .blog-inner {
        max-width: 100%;
    }
    .error-img2{
        right: -190px;
    }
    .error-img1 {
        top: -60px;
    }
}


@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .top .buttons {
        flex-wrap: wrap;
    }

    .top .btn {
        width: calc(33.3% - 8px);
    }

    .link--1 + .link {
        margin-right: 27px;
    }

    .top .container, .get .container {
        flex-direction: column;
    }

    .top-left__text {
        margin-bottom: 0;
    }

    .top-video {
        position: relative;
        top: 0;
        right: 0;
        left: 0;
        width: 100%;
    }

    .header-menu {
        display: none;
    }

    .header-mobile {
        height: 49px;
        border-radius: 59px 0 0 59px;
        padding-left: 22px;
        padding-right: 7px;
        position: absolute;
        right: 15px;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .header-mobile span {
        height: 28px;
        width: 51px;
        display: block;
        position: relative;
    }

    .header-mobile span > i,
    .header-mobile span:before,
    .header-mobile span:after {
        content: "";
        height: 4px;
        background: var(--black-color);
        display: block;
        position: absolute;
        -webkit-transition: all 0.5s linear;
        transition: all 0.5s linear;
    }

    .header-mobile span > i {
        width: 100%;
        top: 12px;
        left: 8px;
    }

    .header-mobile span:before {
        width: 100%;
        top: 0;
    }

    .header-mobile span:after {
        width: 34px;
        bottom: 0;
        left: 16px;
    }

    .header-btns {
        display: none;
    }

    .header.is--active .header-mobile span i {
        display: none;
    }

    .header.is--active .header-mobile span:before {
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
        top: 15px;
    }

    .header.is--active .header-mobile span:after {
        width: 100%;
        transform: rotate(-25deg);
        -webkit-transform: rotate(-25deg);
        bottom: 10px;
        left: 0;
    }

    .header.is--active .header-menu {
        flex-direction: column;
        align-items: flex-start;
        margin-left: unset;
        position: absolute;
        left: 15px;
        top: 100px;
        display: flex;
        right: 15px;
    }

    .header.is--active .header-menu ul {
        flex-direction: column;
        font-size: 24px;
        align-items: flex-start;
    }

    .header.is--active .header-menu li {
        margin-bottom: 20px;
        width: calc(100% - 27px);
    }

    .header.is--active .header-menu li {
        display: block;
        font-size: 30px;
        text-transform: uppercase;
    }

    .purple--bg .header-mobile span > i, .purple--bg .header-mobile span:before, .purple--bg .header-mobile span:after {
        background: var(--white-color);
    }

    .purple--bg .header.is--active {
        background: var(--purple-color);
    }

    .header.is--active {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 220;
        overflow: hidden;
        justify-content: flex-start;
        display: flex;
        flex-direction: column;
        -webkit-transform: none;
        transform: none;
        background: var(--grey-color);
    }

    .top {
        padding-bottom: 20px;
    }

    .why {
        padding: 40px 0;
    }

    .why h2 {
        margin-bottom: 20px;
        width: 100%;
    }

    .why-item--1 {
        margin-left: 0;
        width: calc(100% - 200px);
    }

    .why-item--2 {
        width: calc(42% - 10px);
    }

    .why-item--3 {
        width: calc(45% - 10px);
    }

    .why-item--4 {
        width: calc(55% - 10px);
    }

    .why-line2 {
        width: 266px;
        left: -167px;
        bottom: -17%;
    }

    .future-text, .get-left {
        margin-left: 0;
    }

    /*.get-video {*/
    /*    right: -80px;*/
    /*    top: -70px;*/
    /*}*/

    .get-item {
        max-width: unset;
    }

    .get-item:nth-child(4) {
        max-width: 350px;
    }

    .get-line {
        width: 148px;
        bottom: 150px;
    }

    .future {
        background: var(--purple-color);
    }

    .future-video {
        display: none;
    }

    .future h2 {
        max-width: 100%;
    }

    .future p {
        max-width: 80%;
        margin-left: 60px;
    }

    .blog {
        margin-top: 40px;
    }

    .blog-list {
        margin-left: 60px;
    }

    .blog-info {
        margin-left: 80px;
    }

    .blog-info h3 {
        font-size: 28px;
    }

    .blog-list li {
        width: 320px;
    }

    .blog-title:before {
        width: 200px;
        left: -175px;
    }

    .blog-title {
        margin-left: 30px;
    }

    .cards-button {
        flex-shrink: 0;
    }

    .cards-button img {
        width: 50px;
    }

    .faq-block__tabs.faq-block__left span {
        justify-content: flex-start;
    }

    .faq-block__new {
        width: 100%;
        margin-left: unset;
    }

    .purple--bg:after {
        height: 760px;
    }

    .events-tabs span {
        min-width: unset;
        font-size: 14px;
    }

    .blog-top {
        padding: 0;
        margin-top: 15px;
        margin-bottom: 25px;
        height: 200px;
    }

    .blog-top__text {
        width: 100%;
        padding: 20px 60px 20px 20px;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 25px;
    }

    .blog-top__text p {
        font-size: 10px;
    }

    .blog-top__link {
        font-size: 14px;
    }

    .blog-elem1 {
        width: 95px;
        top: 17%;
    }

    .blog-elem2 {
        width: 185px;
        top: 18%;
    }
    .error-img1{
        top: 0;
        left: -80px;
    }

    .error-img2{
        display: none;
    }
}

@media screen and (max-width: 540px) {
    .why-item--1, .why-item--6 {
        width: 100%;
    }

    .why-item--2, .why-item--3, .why-item--4 {
        width: calc(50% - 10px);
    }

    .why-item--5 {
        display: none;
    }

    .why-note {
        max-width: 50%;
        margin-bottom: 20px;
        margin-left: 0;
        margin-top: 80px;
    }

    /*.get-video {*/
    /*    width: 295px;*/
    /*}*/

    .blog-info .buttons .btn {
        width: 100%;
        margin-bottom: 8px;
    }

    .blog-info .buttons {
        flex-direction: column;
    }

    .faq-block__tabs .faq-block__item, .faq-block__tabs span {
        padding: 15px 20px;
        border-radius: 15px;
    }

    .faq-block__right b {
        padding-right: 30px;
    }

    .faq-block__item:after {
        font-size: 20px;
        right: 20px;
    }

    .faq-block__new {
        border-radius: 15px;
        padding: 30px 30px 30px 105px;
    }

    .faq-block__new:before {
        width: 106px;
    }

    .faq-block__new p {
        font-size: 14px;
    }

    .faq-img2 {
        bottom: 720px;
    }

    .faq-img1 {
        width: 250px;
        left: 140px;
    }

    .faq-block__new .btn {
        width: unset;
        padding: 0 15px;
        text-align: center;
    }

    .blog-item__text b, .events-item__text b, .events-tabs span {
        font-size: 14px;
    }

    .events-item__text p, .blog-item__text p {
        font-size: 12px;
    }

    .purple--bg:after {
        height: 670px;
    }

    .big-btn {
        font-size: 24px;
        height: 50px;
        line-height: 50px;
    }

    .events-list {
        margin-bottom: 50px;
        grid-gap: 15px 10px;
        gap: 15px 10px;
    }

    .events-item__btn, .blog-item__btn {
        font-size: 10px;
    }

    .blog-elem1 {
        top: 15%;
    }

    .blog-elem2 {
        display: none;
    }

    .blog-custom {
        padding: 15px;
    }

    .blog-custom__buttons {
        flex-direction: column;
    }

    .blog-custom__buttons a:first-of-type {
        margin-right: unset;
        margin-bottom: 15px;
    }

    .blog-inner h2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 440px) {
    h1 {
        font-size: 60px;
    }

    .top h1 > span:nth-child(2) {
        font-size: 50px;
    }

    .top-left__text p {
        font-size: 14px;
    }

    .top .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .get-video {
        display: none;
    }

    .get-item, .get-item:nth-child(4) {
        max-width: 100%;
    }

    .get-line {
        width: 98px;
        bottom: 70%;
    }

    .get .buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .get .buttons {
        flex-direction: column;
    }

    .cards-item {
        width: 250px;
    }

    .cards-list {
        grid-gap: 15px;
        gap: 15px;
    }

    .blog-list {
        margin-left: unset;
    }

    .blog-info {
        margin-left: 30px;
        padding: 100px 30px 30px;
    }

    .footer-left {
        width: 100%;
    }
    .footer-menu.d-flex.flex-column{
        order: 1;
    }
    .footer-menu:nth-child(2){
        order: 2;
    }
    .footer-menu:nth-child(3){
        order: 3;
    }
    .footer-left{
        order: 4;
        margin-top: 65px;
    }
    .footer-menu__links{
        display: none;
    }
    .footer-menu:not(:last-of-type) {
        width: 50%;
        margin-top: 20px;
    }

    .footer-menu:nth-child(2),
    .footer-menu:nth-child(3){
        margin-top: 65px;
    }
    .footer-menu__subscribe {
        flex-direction: column;
        height: unset;
        position: relative;
    }
    .footer-menu:last-of-type{
        position: relative;
    }
    .footer-menu__subscribe + span{
        position: absolute;
        bottom: 62px;
    }
    .footer-menu:last-of-type b{
        font-size: 20px;
    }

    .footer-menu__subscribe button,
    .footer-menu__subscribe input {
        width: 100%;
        height: 50px;
        font-size: 16px;
        border-radius: 10px;
    }
    .footer-menu__subscribe button {
        margin-top: 40px;
        margin-left: unset;
    }

    .footer-menu__sublinks {
        bottom: 20px;
        right: unset;
        left: 45px;
    }

    .footer-left i {
        bottom: -20px;
    }

    .footer .container {
        padding-bottom: 76px;
        padding-left: 45px;
        padding-right: 45px;
    }

    .cards-button {
        order: 2;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .cards-title {
        order: 1;
    }

    .cards-top {
        flex-direction: column;
    }

    .faq-img1 {
        width: 170px;
    }

    .faq-img2 {
        bottom: 880px;
    }

    .faq-block__new {
        padding-left: 30px;
    }

    .faq-block__new:before {
        display: none;
    }

    .events-list, .blog-block {
        grid-template-columns: repeat(1, 1fr);
    }

    .purple--bg:after {
        height: 1080px;
    }
}

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

}
