*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
    all: unset;
    display: revert;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
a, button {
    cursor: revert;
}
ol, ul, menu {
    list-style: none;
}
img {
    max-inline-size: 100%;
    max-block-size: 100%;
}
table {
    border-collapse: collapse;
}
input, textarea {
    -webkit-user-select: auto;
}
textarea {
    white-space: revert;
}
meter {
    -webkit-appearance: revert;
    appearance: revert;
}
:where(pre) {
    all: revert;
}
::placeholder {
    color: unset;
}
::marker {
    content: initial;
}
:where([hidden]) {
    display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
    -moz-user-modify: read-write;
    -webkit-user-modify: read-write;
    overflow-wrap: break-word;
    -webkit-line-break: after-white-space;
    -webkit-user-select: auto;
}
:where([draggable="true"]) {
    -webkit-user-drag: element;
}
:where(dialog:modal) {
    all: revert;
}

body{
    font-family: 'Open Sans', sans-serif;
    background-color: #21103e;
    color: #fff;
    font-size: 1.2em;
    overflow-x: hidden;
}
.bigPadding{
    padding-top: 170px;
}
.text-right{
    text-align: right;
}
.title-left{
    text-transform: uppercase;
    margin-bottom: 80px;
    text-align: right;
    font-size: 90px;
    font-weight: 300;
    padding-right: 40px;
}
.title-right{
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: left;
    font-size: 90px;
    font-weight: 300;
    padding-left: 40px;
}
.button {
  align-items: center;
  background-image: linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #FFFFFF;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 18px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
}

.button:active,
.button:hover {
  outline: 0;
}

.button span {
  background-color: rgb(5, 6, 45);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
  text-transform: uppercase;
  font-weight: 600;
}

.button:hover span {
  background: none;
}

.particles-js-canvas-el{
    position: absolute;
    top: 0;
    left: 0;
}
.header .header__bg{
    background: #150929c2;
    border-radius: 20px;
    margin-top: 70px;
    position: relative;
    z-index: 999;
    padding: 40px;

}
.header .header__bg .row{
    flex-direction: column;
}
.header--link{
    text-decoration: none;
    color: inherit;
}
.header--link:hover{
    color: inherit;
}
.logotip{
    display: flex;
    align-items: center;
    gap: 15px;
}
.logotip img{
    width: 240px;
}
.logotip h2{
    margin: 0;
}


/* NAVIGATION */
.containerbox{
    width: 100%;
}
.navbar {
	max-width: 100%;
	height: auto;
	padding: 0.75rem 0;
	border: none;
	outline: none;
	color: #fff;
}
.navbar ul{
    margin: 0;
    padding: 0;
}
.navbar li{
    list-style: none;
}

.navbar .wrapperbox {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: auto;
	margin: 0 auto;
	gap: 12%;
}

.orderNavbar {
	width: 100%;
}

.navbar .burger {
	position: relative;
	display: none;
	cursor: pointer;
	width: 2rem;
	height: 1rem;
	border: none;
	outline: none;
	opacity: 0;
	visibility: hidden;
	background: none;
	transform: rotate(0deg);
	transition: 0.35s ease-in-out;
}

.navbar .burger-line {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	left: 0;
	border: none;
	outline: none;
	opacity: 1;
	border-radius: 0.25rem;
	background: #fff;
	transform: rotate(0deg);
	transition: 0.25s ease-in-out;
}

.navbar .burger-line:nth-child(1) {
	top: 0;
}

.navbar .burger-line:nth-child(2),
.navbar .burger-line:nth-child(3) {
	top: 0.5rem;
}

.navbar .burger-line:nth-child(4) {
	top: 1rem;
}

.navbar .burger.is-active .burger-line:nth-child(1),
.navbar .burger.is-active .burger-line:nth-child(4) {
	top: 1.25rem;
	width: 0%;
	left: 50%;
}

.navbar .burger.is-active .burger-line:nth-child(2) {
	transform: rotate(45deg);
}

.navbar .burger.is-active .burger-line:nth-child(3) {
	transform: rotate(-45deg);
}

.menu {
	min-height: 100%;
	height: 100%;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.navbar .menu-inner {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 2rem;
}
.navbar .two-menu{
    gap: 1rem;
}

.navbar .menu-link {
	font-family: inherit;
	font-size: 16px;
    text-transform: uppercase;
	font-weight: 500;
	line-height: inherit;
	border: none;
	color: #fff;
	text-rendering: optimizeLegibility;
	transition: all 0.25s ease-in-out;
	text-decoration: none;
}

.navbar .menu-link:hover {
	transition: all 0.25s ease-in-out;
	opacity: 0.5;
}

/* HEADER CONTENT */
.header__content{
    padding-top: 80px;
    display: flex;
    align-items: center;
    gap: 2%;
}
.header__content > div:first-child{
    width: 60%;
}
.header__content > div:last-child{
    width: 40%;
}
.header__content--image img{
    max-width: 100%;
}
.header__content--text h2{
    text-transform: uppercase;
    background-color: #4B56D2;
    background-image: linear-gradient(90deg, #73e3dd, #4B56D2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 30px;
}
.header__content--text li{
    font-size: 1.2em;
}
.header__content--priceblock{
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.header__content--priceblock h3{
    margin: 0;
    font-weight: 700;
    font-size: 2.5em;
    animation: opacity 1.5s linear infinite alternate;
}

@keyframes opacity{
    from {
        text-shadow: 0px 0px 20px #53b4ff;
        opacity: 1;
    }

    to {
        text-shadow: 0px 0px 10px #53b4ff;
        opacity: 0.7;
    }
}

.benefits--item{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.benefits--item:last-child{
    margin: 0;
}
.benefits--item img{
    width: 150px;
}
.benefits--item h5{
    font-weight: 700;
}
.benefitsBtn{
    display: flex;
    text-decoration: none;
    justify-content: end;
    padding-right: 40px;
}

.who-uses--item{
    position: relative;
    padding-left: 100px;
    padding-bottom: 10px;
    background: url(../img/b2-line1.svg) no-repeat;
    background-position: 7% 100%;
    visibility: visible;
    margin-bottom: 50px;
}
.who-uses--item:last-child{
    margin: 0;
}
.who-uses h5{
    font-weight: 700;
}
.who-usesBtn{
    display: flex;
    text-decoration: none;
    justify-content: start;
    padding-left: 40px;
}

.how-it-works{
    display: flex;
    gap: 100px;
    max-width: 1600px;
    margin: 0 auto;
    background: #210f3f;
    box-shadow: 0px 0px 20px #22103d;
    padding: 100px 100px 100px 0px;
    margin-top: 170px;
    align-items: center;
}
.how-it-works > div:first-child{
    flex-shrink: 0;
}
.how-it-works > div img{
    max-width: 100%;
    width: 400px;
    animation: animWorld 30s ease-in-out infinite alternate;
}
.how-it-works h1{
    text-transform: uppercase;
    background-color: #4B56D2;
    background-image: linear-gradient(90deg, #73c5e3, #7d4bd2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.pertners{
    padding-bottom: 170px;
}
.pertners .row{
    align-items: center;
}
.pertners .col{
    width: 50%;
}
.slick-track > div{
    margin: 0 20px;
    position: relative;
}
.slick-slide img{
    max-width: 100%;
}
.partnersSlide--item{
    height: 100px;
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

@keyframes animWorld {
    from {
        transform: rotate3d(0, 0, 0, 0deg);
    }

    to {
        transform: rotate3d(1, 1.5, 2, 35deg);
    }
  }


.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #dfc;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.wrapper-auth__formblock{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.wrapper-auth__formblock .form__content {
    width: 300px;
}
.wrapper-auth__formblock .header--link {
    margin: 40px 0;
}
.wrapper-auth__formblock .header--link img{
    width: 280px;
}
.sitedom{
    font-size: 14px;
    opacity: 0.7;
}
.error, .success{
    margin-bottom: 20px;
    background: #ff000059;
    padding: 10px;
    font-size: 14px;
    display: none;
    border-radius: 3px;
}
.success {
    background: #7aff77;
    color: #21103e;
    display: block;
}
.signFor, .signLine {
    margin-bottom: 20px;
}
.signLine .inLine {
    font-size: 16px;
    display: block;
    position: relative;
}
.signLine .inLine:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: #565c9c;
    left: 0;
    top: 12px;
    z-index: -1;
}
.signLine .inLine span {
    background: #2c3383;
    z-index: 2;
    position: inherit;
    padding: 0 10px;
}
.signFor a {
    display: flex;
    height: 50px;
    background: #21103e;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    font-size: 16px;
    box-shadow: 0px 2px 0px #000000;
}
.signFor a:hover {
    background: #0e2029;
    box-shadow: 0px 2px 0px #173361;
}
.signFor img {
    width: 30px;
    margin-right: 10px;
}
.termsBlock {
    font-size: 12px;
    margin-bottom: 20px;
}
.termsBlock a {
    color: #00d9ff;
}
.alredy-sign {
    font-size: 16px;
    margin-bottom: 20px;
}
.alredy-sign a {
    color: #72d6fb;
    text-decoration: underline;
}
.alredy-sign a:hover {
    color: #84d8f6;
}
.wrapper-auth__formblock .form {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 100%;
    width: 400px;
    flex-shrink: 0;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 40px;
}
.form__loader {
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: -4;
    transition: all 0.5s ease;
}
.form__content {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s ease 0.7s;
}
.form__cover {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: -4;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.3s ease 0.8s;
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.form__cover:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #2c3383;
    z-index: -4;
    border-radius: 50%;
    transition: all 1.5s ease 0.3s;
    transform: scale(0);
}
.form__cover:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: white;
    z-index: -5;
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: scale(0);
}
body.on-start .form__cover:before {
    transform: scale(0.15);
}
body.document-loaded .form__loader {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
}
body.document-loaded .form__content {
    opacity: 1;
    transform: none;
}
body.document-loaded .form__cover {
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
body.document-loaded .form__cover:after {
    transform: scale(2);
}
body.document-loaded .form__cover:before {
    transition: transform 2s ease, opacity 0.3s ease 0.8s;
    transform: scale(2);
    opacity: 0;
}
.wrapper-auth h1 {
    font-size: 40px;
    margin: 15px 0 20px 0;
    letter-spacing: 0.05em;
    color: #ffffffd1;
    font-weight: 700;
}
.styled-button {
    -webkit-appearance: none;
    -webkit-user-select: none;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    padding: 20px;
    outline: none;
    background: none;
    position: relative;
    color: #0a3056;
    border-radius: 3px;
    margin-bottom: 25px;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: #1b76c4;
    transition: all 0.3s ease;
    overflow: hidden;
}
.styled-button__real-text-holder {
    position: relative;
}
.styled-button__real-text {
    color: transparent;
    display: inline-block;
}
.styled-button__text-holder {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.styled-button__moving-block {
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.styled-button__moving-block.back {
    color: white;
    transform: translateX(-100%);
}
.styled-button__moving-block.back .styled-button__text-holder {
    transform: translateX(100%);
}
.styled-button:hover, .styled-button:active {
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    background: #1464a9;
}
.styled-button:hover .face, .styled-button:active .face {
    transform: translateX(100%);
}
.styled-button:hover .face .styled-button__text-holder, .styled-button:active .face .styled-button__text-holder {
    transform: translateX(-100%);
}
.styled-button:hover .back, .styled-button:active .back {
    transform: translateX(0);
}
.styled-button:hover .back .styled-button__text-holder, .styled-button:active .back .styled-button__text-holder {
    transform: translateX(0);
}
.styled-button:active {
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.styled-input {
    width: 100%;
    position: relative;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.styled-input__circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    border-radius: 3px;
}
.styled-input__circle:after {
    content: '';
    position: absolute;
    left: 16.5px;
    top: 19px;
    height: 14px;
    width: 14px;
    z-index: -2;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 10px rgba(255,255,255,0);
    transition: transform 0.6s ease, opacity 1s ease;
}
.styled-input__input {
    width: 100%;
    -webkit-appearance: none;
    font-size: 14px;
    outline: none;
    background: none;
    padding: 18px 15px;
    color: #afe3ff;
    border: none;
    font-weight: 600;
    letter-spacing: 0.035em;
    text-align: left;
}
input.styled-input__input:-webkit-autofill {
    border-radius: 2px;
}
.styled-input__placeholder {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: -1;
    padding-left: 45px;
    color: white;
}
.styled-input__placeholder-text {
    perspective: 500px;
    display: inline-block;
}
.styled-input__placeholder-text .letter {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    animation: letterAnimOut 0.25s ease forwards;
    text-shadow: 0 0 5px;
}
.styled-input__placeholder-text .letter.active {
    animation: letterAnimIn 0.25s ease forwards;
}
.styled-input:hover {
    border-color: rgba(255,255,255,0.4);
}
.styled-input.filled {
    border-color: rgba(255,255,255,0.2);
}
.styled-input.filled .styled-input__circle:after {
    transform: scale(37);
    opacity: 0;
}
.styled-input input:-webkit-autofill,
.styled-input input:-webkit-autofill:hover,
.styled-input input:-webkit-autofill:focus
{
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
}

@keyframes letterAnimIn {
    0% {
        transform: translate(0,0);
   }
    25% {
        transform: translate(0,10px);
        color: red;
   }
    45% {
        transform: translate(0,10px);
        opacity: 0;
        color: red;
   }
    55% {
        transform: translate(0,10px);
        opacity: 0;
   }
    56% {
        transform: translate(-30px,-27px);
        opacity: 0;
        color: #00d9ff;
   }
    76% {
        color: #00d9ff;
        opacity: 1;
        transform: translate(-30px,-27px);
   }
    100% {
        transform: translate(-30px,-27px);
        opacity: 1;
   }
}
@keyframes letterAnimOut {
    0% {
        transform: translate(-30px,-27px);
        opacity: 1;
   }
    25% {
        transform: translate(-30px,-40px);
        opacity: 0;
   }
    45% {
        transform: translate(0,10px);
        opacity: 0;
   }
    55% {
        transform: translate(0,10px);
        opacity: 0;
        color: red;
   }
    56% {
        transform: translate(0,10px);
        color: red;
   }
    100% {
        transform: translate(0,0);
   }
}
.spinner {
    position: relative;
    margin: auto;
    width: 50px;
    height: 50px;
    transition: all 0.2s ease 0s;
}
.spinner__circular {
    animation: rotate 1.5s linear infinite;
    animation-play-state: paused;
    transform-origin: center center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: auto;
}
.spinner__path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.3s ease forwards 0.5s;
    opacity: 0;
    stroke-linecap: round;
    stroke: #2348ff;
    animation-play-state: running;
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
        opacity: 0;
   }
    50% {
        stroke-dasharray: 40, 200;
        opacity: 1;
   }
    100% {
        stroke-dasharray: 125, 200;
        opacity: 1;
   }
}

.footer{
    padding-bottom: 50px;
    background: #150929c2;
}
.footer .container:first-child{
    padding-bottom: 80px;
}
.navboxx{
    display: flex;
    gap: 5%;
}
.nav--iitembox{
    width: 33%;
}
.nav--iitembox p{
    text-transform: uppercase;
    font-size: 16px;
}
.nav--iitembox ul{
    padding: 0;
    margin: 0;
}
.nav--iitembox li{
    list-style: none;
    margin-bottom: 5px;
}
.nav--iitembox li:last-child{
    margin: 0;
}
.nav--iitembox a{
    text-decoration: none;
    transition: all 200ms ease-in-out;
    color: #737dee;
    position: relative;
}
.nav--iitembox a:hover{
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.nav--iitembox a:before {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #36166d;
    -webkit-transition: width .2s;
    -o-transition: width .2s;
    transition: width .2s;
}
.nav--iitembox a:hover:before{
    width: 0;
}

.footer-q{
    margin-bottom: 30px;
}
.footer-q h3 a{
    text-decoration: none;
    transition: all 200ms ease-in-out;
    color: #737dee;
    position: relative;
}
.footer-q h3 a:before{
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #36166d;
    -webkit-transition: width .2s;
    -o-transition: width .2s;
    transition: width .2s;
}
.footer-q h3 a:hover{
    opacity: 0.8;
    transition: all 200ms ease-in-out;
}
.footer-q h3 a:hover:before{
    width: 0;
}

.langBtn{
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 8px 14px;
    color: #fff;
    background: #21103e;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    max-width: 275px;
    cursor: pointer;
}

.langBtn img {
    display: block;
    margin-right: 10px;
    width: 26px;
    height: 26px;
}


.langBtn:before {
    content: '';
    position: absolute;
    top: 19px;
    right: 12px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-top: 6px solid #fff;
}
.activeBtn:before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 13px;
}

.to_top{
    display: none;
    position: absolute;
    bottom: 50px;
    background: #21103e;
    flex-wrap: wrap;
    padding: 15px;
    margin: 0;
    gap: 10px;
}
.to_top li{
    flex: 0 0 48%;
}
.to_top li img{
    max-width: 40px;
}
.to_top li a{
    color: inherit;
    display: flex;
    text-decoration: none;
    gap: 10px;
    align-items: center;
}
.activeBtnList{
    display: flex;
}




@media (max-width: 1400px) {
    .navbar .wrapperbox{
        gap: 8%;
    }
}


@media (max-width: 1200px) {
    .navbar {
		width: 100%;
	}
	.navbar .wrapperbox {
		gap: 0px;
		align-items: center;
        flex-wrap: wrap;
	}
    .one-menu{
        padding-bottom: 0px !important;
    }
    .two-menu{
        padding-top: 0px !important;
    }
	.navbar .burger {
		display: block;
		opacity: 1;
		visibility: visible;
	}
	.navbar .menu {
		width: 100%;
		max-height: 0rem;
		padding: 0;
		opacity: 0;
		visibility: hidden;
		overflow: hidden;
		transition: all 0.35s ease;
        flex-direction: column;
	}
	.navbar .menu.is-active {
		opacity: 1;
		visibility: visible;

	}
	.navbar .menu-inner {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		gap: 0;
		padding: 1.5rem 0;
	}
	.menu-item {
		padding: 10px 0px;
		border-bottom: 2px dashed #0a1948;
		text-align: center;
		width: 100%;
	}
	.menu-item:nth-child(5) {
		border: none;
	}
    .header__content--priceblock h3{
        font-size: 1.5em;
    }
    .benefits .row{
        flex-direction: column;
        gap: 70px;
    }
    .who-uses .row{
        flex-direction: column-reverse;
        gap: 70px;
    }
    .who-uses--item{
        padding-left: 130px;
    }
    .title-right, .title-left{
        font-size: 60px;
        padding: 0;
    }
    .how-it-works{
        flex-direction: column-reverse;
        padding: 50px 30px 70px 30px;
        overflow-x: hidden;
    }
}

@media (max-width: 992px) {
    .header__content{
        gap: 50px;
        flex-direction: column-reverse;
    }
    .header__content > div{
        width: 100% !important;
    }
    .header__content--priceblock{
        flex-direction: column-reverse;
    }
    .header__content--image img {
        max-width: 50%;
        margin: 0 auto;
        display: flex;
    }
    .title-left, .title-right{
        font-size: 38px;
        text-align: center;
        margin-bottom: 30px;
    }
    .benefitsBtn, .who-usesBtn{
        justify-content: center;
        padding: 0;
    }
    .to_top li{
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .button {
      font-size: 20px;
      min-width: 196px;
    }
    .pertners .row{
        flex-direction: column;
        gap: 50px;
    }
    .pertners .col{
        width: 100%;
    }
    .who-uses--item {
        padding-left: 90px;
    }
    .footer .container .row > div{
        width: 100%;
    }
    .footer .container .row{
        gap: 50px;
    }
}

@media (max-width: 576px){
    .header .header__bg{
        margin-top: 0;
        border-radius: 0px;
    }
    .title-left, .title-right{
        font-size: 28px;
    }
    .navboxx{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .nav--iitembox{
        width: 100%;
    }
    .footer-q{
        text-align: center;
    }
    .langBtn{
        margin: 0 auto;
    }
}
@media (max-width: 480px){
    .header__content{
        text-align: center;
    }
    .header__content--text h2{
        font-size: 26px;
    }
    .bigPadding{
        padding-top: 100px;
    }
    .who-uses--item{
        background: none;
        padding: 0;
    }
    .how-it-works{
        padding: 30px 15px !important;
    }
    .how-it-works > div:first-child{
        display: none;
    }
    .benefits--item img{
        display: none;
    }
    .header__content--text ul{
        padding: 0;
    }
    .header__content--text li{
        font-size: 1em;
        list-style: none;
        margin: 10px 0px;
    }
}
