@font-face {
  font-family: "OpenSans";
  src: url("../themes/demo/assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UbuntuSans";
  src: url("../themes/demo/assets/fonts/UbuntuSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UbuntuSans";
  src: url("../themes/demo/assets/fonts/UbuntuSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "UbuntuSans";
  src: url("../themes/demo/assets/fonts/UbuntuSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UbuntuSans";
  src: url("../themes/demo/assets/fonts/UbuntuSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UbuntuSans";
  src: url("../themes/demo/assets/fonts/UbuntuSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UbuntuSans";
  src: url("../themes/demo/assets/fonts/UbuntuSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}


/* Reset and base styles  */
* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Links */

a, a:link, a:visited  {
    text-decoration: none;
}

a:hover  {
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

section{
	position: relative;
	overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

:root {
  --container-width: 1254px;
  --container-padding: 15px;

  --font-main: UbuntuSans, sans-serif;
  --font-accent: "Merriweather", sans-serif;
  --font-three: OpenSans, sans-serif;
  --font-four: "proxima-nova", sans-serif;
  --font-five: "Montserrat", sans-serif;
  --font-titles: var(--font-accent);

  --page-bg: #fff;
  --text-color: rgba(21, 21, 21, 1);
  --text-2: rgba(51, 51, 51, 1);
  --text-3: rgba(15, 98, 135, 1);
  --text-4: rgba(85, 85, 85, 1);
  --accent: rgba(119, 119, 119, 1);
  --link-color: rgba(5, 150, 214, 1);
  --lang-text: rgba(115, 115, 115, 1);
  --back-text: rgba(68, 68, 68, 1);
  --news-title: rgba(13, 13, 13, 1);
  --promo-text: rgba(16, 16, 16, 1);

  --footer-text: rgba(41, 41, 41, 1);
  --footer-bg: rgba(242, 249, 252, 1);
  --card-bg: rgba(226, 244, 251, 1);
  --br-news: rgba(225, 225, 225, 1);

  --laptop-size: 1199px;
  --tablet-size: 959px;
  --mobile-size: 599px;
}

.dark {
  --page-bg: #252526;
  --text-color: #fff;
}

html {
  scroll-behavior: smooth;
  background-color: rgb(39, 39, 39);
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
}

img {
  display: block;
}

a {
  color: var(--link-color);
}

code {
  background-color: #e9f1f6;
  padding: 0.2rem;
  border-radius: 4px;
}

pre.code {
  overflow-x: auto;
  background-color: #e9f1f6;
  padding: 1rem;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background:var(--link-color);
}

::-webkit-scrollbar-thumb:hover {
  background:var(--link-color);
}

/* Контейнеры */
.container {
	margin: 0 auto;
	padding: 0 var(--container-padding);

	max-width: var(--container-width);
	width: 100%;
	position: relative;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
}

.page {
  height: 100%;
  font-size: 14px;
  font-family: var(--font-main);
  line-height: 18px;
}

.page__body {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background-color: #fff;
  color: #000000;
}

.page-main {
  flex-grow: 1;
}

.footer {
  margin-top: auto;
}

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;

  --width: 38px;
  --height: 38px;

  --line-height: 4px;
  --spacing: 2px;

  --color: #000;
  --radius: 4px;

  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */

  /* Dynamic height and width */
  // height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  height: 38px;
  width: var(--width);

  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--link-color);
  border: 1px solid rgba(241, 238, 233, 1);
  border-radius: 8px;
}

.nav-icon {
  margin: auto;
  position: relative;
  width: 20px;
  height: 2px;
  background-color: var(--page-bg);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;

  position: absolute;
  left: 0;

  width: 20px;
  height: 2px;

  border-radius: var(--radius);
  background-color: var(--page-bg);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* Layout */

.mobile-nav-btn {
	z-index: 999;
	display: none;
}

.swiper-slide {
  display: flex !important;
  height: auto !important;
}

.swiper-wrapper {
  align-items: stretch;
}

.pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  border: 1px solid var(--link-color);
  background-color: transparent;
  opacity: 0.5;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.pagination .swiper-pagination-bullet-active {
  position: relative;
  opacity: 1;
}

.pagination .swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--link-color);
}

.news-card__block .swiper-pagination {
  bottom: -55px !important;
}

.slider-arrow {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--link-color);
  border-radius: 50%;
  z-index: 50;
  cursor: pointer;
  transition: 0.4s linear;
}

.slider-arrow:focus,
.slider-arrow:hover,
.slider-arrow:active {
  border: 1px solid var(--accent);
}

.button-prev img {
  position: relative;
}

.button-next img {
  position: relative;
  transform: rotate(180deg);
}

.slide__block .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
  bottom: 0 !important;
  width: auto !important;
}

.title {
  font-size: 58px;
  line-height: 64px;
  font-weight: 700;
  font-family: var(--font-accent);
}

.title-1 {
  font-size: 40px;
  line-height: 125%;
  font-weight: 500;
  font-family: var(--font-five);
  /* color: var(--page-bg); */
}

.promo-title.title-1{
	font-size: 22px;
  line-height: 110%;
  font-weight: 700;
} 

.title-1 span {
  font-size: 40px;
  font-weight: 700;
}

.title-2 {
  font-size: 36px;
  line-height: 135%;
  font-weight: 400;
  font-family: var(--font-accent);
  position: relative;
}

.title-3 {
  font-size: 26px;
  line-height: 37px;
  font-weight: 500;
  font-family: var(--font-main);
}

.title-3-bold {
  line-height: 33px;
}

.title-4 {
  font-size: 26px;
  line-height: 33px;
  font-weight: 700;
  font-family: var(--font-main);
}

.faq-title {
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
  text-transform: uppercase;
}

.why__title {
  font-size: 25px;
  line-height: 140%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--text-color);
}

.ways__title {
  font-size: 38px;
  line-height: 120%;
  font-weight: 400;
  font-family: var(--font-accent);
  color: var(--text-3);
}

.news-time__title {
  font-size: 32px;
  line-height: 36px;
  font-weight: 500;
  font-family: var(--font-main);
}

.hang__title {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--font-main);
}

.text {
  font-size: 26px;
  line-height: 36px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.promo__text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  /* color: var(--page-bg); */
}

.promo-weight.promo__text{
	font-weight: 700;
}

.promo-blue{
	color: var(--link-color);
}

.promo__text strong{
  font-weight: 700;
}

.text-bold{
	font-weight: 700;
}



.about__text {
  font-size: 22px;
  line-height: 26px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.rezhim__text {
  font-size: 26px;
  line-height: 33px;
  font-weight: 400;
  font-family: var(--font-main);
}

.faq-text {
  font-size: 17px;
  line-height: 27px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--back-text);
}

.why__text {
  font-size: 18px;
  line-height: 23px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-4);
}

.why__text-2 {
  font-size: 14px;
  line-height: 27px;
  font-weight: 400;
  font-family: var(--font-main);
  color: rgba(153, 153, 153, 1);
}

.why__num {
  font-size: 76px;
  line-height: 140%;
  font-weight: 300;
  font-family: var(--font-accent);
  color: var(--link-color);
}

.news-recommend__num {
  font-size: 62px;
  line-height: 140%;
  font-weight: 700;
  font-family: var(--font-accent);
  color: var(--link-color);
  opacity: 15%;
  flex-shrink: 0;
}

.hang__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.advent__text {
  font-size: 20px;
  line-height: 17px;
  font-weight: 600;
  font-family: var(--font-main);
}

.grip-text {
  font-size: 15px;
  line-height: 18px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.hang__text-2 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.modal-title{
	font-size: 26px;
  line-height: 33px;
  font-weight: 600;
  font-family: var(--font-main);
}

.modal-text{
	font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  color: var(--page-bg);
  background-color: var(--link-color);
  border-radius: 10px;
  border: 1px solid var(--link-color);
  padding: 13px 5px;
  transition: 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.btn:focus,
.btn:hover,
.btn:active {
  color: var(--link-color);
  background-color: var(--page-bg);
}

.line-center {
  position: relative;
  display: inline-block;
}

.line-center::after {
  position: absolute;
  content: "";
  left: 45%;
  transform: translateX(-50%);
  bottom: -17px;
  background: url("/storage/app/media/svg/line-text.svg") no-repeat center;
  width: 112px;
  height: 14px;
}

.left-line {
  position: relative;
  display: inline-block;
}

.left-line::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -11px;
  background: url("/storage/app/media/svg/line-text.svg") no-repeat center;
  width: 112px;
  height: 14px;
}

.text-center {
  text-align: center;
}

.text-blue {
  color: var(--link-color);
}

.text-blue-2 {
  color: var(--text-3);
}

.text-black {
  color: var(--promo-text);
}

.text-center {
  text-align: center;
}

.header-btn {
  width: 200px;
}

.promo-btn {
  width: 287px;
}

.footer__btn {
  width: 208px;
}

.page-header {
  min-width: 320px;
}

.header {
  position: fixed;
  padding: 22px 0 8px 0;
  // top: 8px;
  left: 0;
  width: 100%;
  z-index: 80;
  transition: 0.2s linear;
  background-color: var(--page-bg);
}

.header__active {
  padding: 8px 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.header__row {
  width: 100%;
  display: flex;
  align-items: center;
}

.logo {
  flex-shrink: 0;
}

.header__nav {
  flex-grow: 1;
}

.nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
}

.nav__list a {
  font-size: 18px;
  line-height: 22px;
  color: var(--text-color);
  font-family: var(--font-main);
  font-weight: 400;
  transition: 0.3s ease;
}

.nav__list a:focus,
.nav__list a:hover,
.nav__list a:active {
  color: var(--link-color);
}

.header__contact {
  display: flex;
  align-items: center;
  gap: 46px;
  margin-left: 70px;
}

.header__lang {
  display: flex;
  gap: 21px;
}
.lang {
  position: relative;
  font-size: 18px;
  line-height: 100%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  transition: 0.3s ease;
}

.lang:focus,
.lang:hover,
.lang:active {
  color: var(--link-color);
}

.lang:not(:last-child)::after {
  position: absolute;
  content: "/";
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--lang-text);
}

.lang-active {
  color: var(--lang-text);
}



.mobile-nav {
  position: fixed;
  top: 0;
  left: -110%;
  width: 45%;
  height: 100%;
  z-index: 110;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: var(--page-bg);
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s ease-in;
}

.mobile-nav--open {
  left: 0;
}

.mobile-nav a {
  color: #151515;
  padding: 15px 10px 15px 35px;
  text-transform: uppercase;
  display: block;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 22px;
  padding-top: 20px;

  & .active {
    opacity: 0.5;
  }
}

.mobile-nav__list li {
  position: relative;
}

.menu-title {
  min-height: 67px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: var(--link-color);
  text-transform: uppercase;
  font-size: 18px;
  line-height: 22px;
  padding: 7px 5px;
  position: relative;
}

.menu-title .menu__close {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.submenu {
  position: fixed;
  top: 0px;
  left: -100%;
  width: 45%;
  height: 100%;
  z-index: 100;

  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
  background: var(--page-bg);
  transition: 0.5s ease-in;
}

.submenu--open {
  left: 0;
}

.submenu ul {
  padding-top: 20px;
}

.back-btn {
  position: absolute;
  z-index: 1000;
  left: 35px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  cursor: pointer;
}

.back-btn img {
  transform: rotate(90deg);
}

.item-arrow {
  position: relative;
}

.item-arrow img {
  position: absolute;
  transform: translateY(-50%) rotate(-90deg);
  right: 30px;
  top: 50%;
}

.breadcrumbs__wrapper {
  display: flex;
  margin-top: 133px;
}

.breadcrumbs {
  width: 100%;
  background-color: var(--page-bg);
  display: flex;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(222, 222, 222, 1);
}

.breadcrumbs-back {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  line-height: 150%;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--back-text);
  position: relative;
  transition: 0.3s ease;
}

.breadcrumbs-back:focus,
.breadcrumbs-back:hover,
.breadcrumbs-back:active {
  color: var(--link-color);
}

.footer {
  background-color: var(--footer-bg);
  padding: 21px 0 69px 0;
  position: relative;
  z-index: 10;
}

.footer__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__top {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(234, 234, 234, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__logo {
  flex-shrink: 0;
}
.footer__row {
  display: flex;
  align-items: center;
  gap: 95px;
  justify-content: space-between;
}
.footer__list {
  display: flex;
  gap: 21px;
}
.footer__link {
  font-size: 18px;
  line-height: 22px;
  color: var(--text-color);
  font-family: var(--font-main);
  font-weight: 400;
  transition: 0.3s ease;
}

.footer__link:focus,
.footer__link:hover,
.footer__link:active {
  color: var(--link-color);
}

.footer__btns {
  display: flex;
  align-items: center;
  gap: 44px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--link-color);
  width: 42px;
  height: 42px;
  transition: 0.3s ease;
}

.top:focus,
.top:hover,
.top:active {
  box-shadow: 0 0 10px 0 var(--link-color);
}

.footer__copyright {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.footer__address {
  font-size: 11px;
  line-height: 100%;
  color: var(--text-4);
  font-family: var(--font-three);
  font-weight: 400;
}

.promo {
  margin-top: 83px;
  height: 610px;
}

.promo-2 {
  margin-top: 60px;
  height: 673px;
}

.promo__wrapper {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* .promo-2 .promo-img {
    display: none;
  } */
  
  

 

.banner {
  height: 100%;
}

.banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo__block {
  display: flex;
  align-items: center;
  position: absolute;
  padding-bottom: 80px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.promo__layout {
  display: flex;
  align-items: center;
  gap: 22px;
}

.promo__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 70px;
  width: 520px;
}

.promo-2 .promo__inner {
  width: 520px;
}

.promo__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 320px;
}

@media (max-width: 580px) {
	.promo__info {
		max-width: 100%;
	}
}

.promo__info-2 {
  position: relative;
/*   padding-top: 22px; */
}

.promo__info-2::after {
  position: absolute;
  content: "";
  top: -22px;
  left: 0;
  height: 1px;
  width: 27px;
  background-color: var(--text-color);
}

.promo-2 .promo__info-2::after {
  display: none;
}

/* .promo__block-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
} */

.promo__arrow {
  position: absolute;
  bottom: -1px;
  left: -15px;
  z-index: 15;
}

.promo__arrow-block {
  position: relative;
}

.promo__down-arrow {
  position: absolute;
  left: 80px;
  top: 20px;
  animation: moveUpDown 2s infinite;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}


.promo__bottom-block{
  display: none;	
  }
  
 .promo-mobile{
 	display: none;
 }
 
 .promo-img.promo-img-main{
 	display: none;
 }
 
 
 
 .promo-img img{
 		object-fit: contain;
 		width: 600px;
 }

.about {
  min-width: 320px;
  padding: 150px 0 90px 0;
}

.news-about {
  min-width: 320px;
 /*  padding-bottom: 108px; */
}

.about__wrapper {
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.about__wrapper-2 {
  display: flex;
  gap: 104px;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
}

.reverse {
  flex-direction: row-reverse;
}

.about__wrapper-2 .about__inner {
  flex-direction: column;
  justify-content: stretch;
  gap: 45px;
}

.about__img-block {
  width: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img-block .play {
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.about__wrapper-2 .about__img-block {
  width: 100%;
}

.news-about__wrapper .about__img-block {
  width: 41%;
  position: relative;
}

.about__wrapper-2 .about__info {
  width: 100%;
  position: relative;
}

.about__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.play {
  width: 76px;
  height: 76px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto auto;
}
.about__info {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.about__info-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.news-about-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about__item img {
  position: relative;
  top: 5px;
}

.cycle {
  position: absolute;
  pointer-events: none;
  animation: moveUp 5s linear infinite;
}

@keyframes moveUp {
  0% {
    transform: translateY(100vh); /* снизу */
  }
  100% {
    transform: translateY(-100vh); /* уходит вверх */
  }
}

.cycle-2 {
  right: 0;
  bottom: 30%;
}
.cycle-1 {
  right: 0;
  bottom: -25%;
}

.cycle-15 {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.rezhim {
  min-width: 320px;
  padding-bottom: 90px;
}

.rezhim__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.rezhim__top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.rezhim__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rezhim__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-bottom-right-radius: 20px;
  background: linear-gradient(
    to right,
    rgba(226, 244, 251, 1),
    rgba(176, 221, 238, 1)
  );
  padding: 43px 50px 74px 41px;
}

.rezhim__item:nth-child(2) {
  background: linear-gradient(
    to right,
    rgba(176, 221, 238, 1),
    rgba(226, 244, 251, 1)
  );
}

.rezhim__num {
  font-size: 56px;
  line-height: 140%;
  font-weight: 300;
  color: rgba(152, 207, 232, 1);
  font-family: var(--font-accent);
}
.rezhim__item-inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.cycle-3 {
  left: -20%;
  top: 50%;
  transform: translateY(-50%);
}
.recommend__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.recommend__item {
  display: flex;
  align-items: center;
  gap: 40px;
}
.recommend__img {
  width: 167px;
  height: 150px;
}

.recommend__img img {
  object-fit: contain;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.recommend__info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  max-width: 187px;
}
.recommend__step {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--link-color);
}
.recommend__text {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--accent);
}

.about-tab {
  min-width: 320px;
  padding-bottom: 49px;
}
.about-tab__wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
}
.about-tab__top {
  width: 60%;
  position: relative;
}
.about-tab__img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.about-tab__info {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
}

.about-tab__info-block {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
}
.faq__item-top {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--link-color);
}

.faq-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(225, 246, 255, 1);
  border-radius: 50%;
  flex-shrink: 0;
}

.faq__item img {
  transform: rotate(-270deg);
  transition: 0.4s ease;
}

.faq__item-top-active img {
  transform: rotate(-360deg);
}

.faq-hidden {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-hidden-show {
  opacity: 1;
  visibility: visible;
  max-height: 500px;
}

.cycle-4 {
  left: -15%;
  bottom: -10%;
}

.cycle-5 {
  right: -13%;
  top: 25%;
}

.cycle-6 {
  left: 17%;
  bottom: 10%;
}

.why {
  min-width: 320px;
  position: relative;
  background-color: rgba(226, 244, 251, 1);
  padding: 88px 0 130px 0;
}

.why::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url("/storage/app/media/svg/cloudy.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 217px;
  pointer-events: none;
}

.why::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-image: url("/storage/app/media/svg/cloudy-2.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 240px;
  pointer-events: none;
}

.why__wrapper {
  display: flex;
  flex-direction: column;
}

.why__top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 30px;
}

.why__top .line-center::after {
  left: 61%;
}

.cycle-7 {
  right: 0;
  top: -60px;
}

.why__info {
  position: relative;
  z-index: 5;
}
.why__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 141px;
}

.left {
  align-self: flex-start;
}
.right {
  align-self: center;
}

.why__item:nth-child(2) {
  grid-row: 1 / 3;
  grid-column: 2 / 3;
  justify-self: flex-end;
  padding-top: 92px;
}

.why__item:nth-child(3) {
  left: 10%;
}

.why__item {
  max-width: 339px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
}

.why__item-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.why__img img {
  object-fit: cover;
}

.news-card {
  min-width: 320px;
  padding: 50px 0 90px 0;
}

.news-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.news-card__block {
  position: relative;
}

.news-card__top {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
}

.cycle-8 {
  top: -200px;
  right: 0;
}

.cycle-12 {
  right: 0;
  top: -80px;
}

.cycle-13 {
  left: -80px;
  top: -60px;
}

.news-card__link {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border: 1px solid var(--br-news);
  border-radius: 10px;
  transition: 0.3s ease;
  background-color: #fff;
  overflow: hidden;
}

.news-card__link:focus,
.news-card__link:hover,
.news-card__link:active {
  border-color: var(--link-color);
}

.news-card__img {
  width: 100%;
  height: 278px;
}

.news-card__img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.news-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0px 27px 19px 27px;
  gap: 11px;
}

.news-card__info-block {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.news-card__date {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 11px;
}

.news-title {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--news-title);
}

.news-text {
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 15px;
  line-height: 18px;
  color: var(--accent);
}

.news__link-text {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: var(--link-color);
  text-transform: lowercase;
  text-decoration: underline;
}

.news-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--link-color);
  transition: 0.3s ease;
}

.news-card__link:focus .news-arrow,
.news-card__link:hover .news-arrow,
.news-card__link:active .news-arrow {
  box-shadow: 0 0 10px 0 var(--link-color);
}

.partner {
  min-width: 320px;
  padding-bottom: 90px;
}

.partner-2 {
  min-width: 320px;
  padding: 70px 0 90px;
}

.partner__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.partner__top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cycle-9 {
  left: 0;
  top: -60px;
}

.cycle-14 {
  right: 0;
  top: -50%;
  transform: translateY(-50%);
}

.partner__list {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.partner__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 107px;
  border: 1px solid rgba(213, 213, 213, 1);
  border-radius: 10px;
  transition: 0.3s ease;
  background-color: var(--page-bg);
  padding:10px;
}

.partner__link img {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.partner__link:focus,
.partner__link:hover,
.partner__link:active {
  border-color: var(--link-color);
}

.ways {
  min-width: 320px;
  padding-bottom: 115px;
}

.ways__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.ways__top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ways__list {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ways__item {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background-color: var(--card-bg);
  border-radius: 30px;
  padding: 40px 164px 40px 85px;
}

.hang {
  min-width: 320px;
  /* padding-bottom: 130px; */
}

.hang__wrapper {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.hang__top {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cycle-11 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hang__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}
.hang__item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.hang__item-center {
  align-items: center;
}

.hang__img {
  flex-shrink: 0;
  width: 120px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hang__item-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.news {
  min-width: 320px;
  margin-top: 83px;
  padding: 50px 0 90px;
  position: relative;
}

.news__list {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.cycle-10 {
  bottom: -170px;
  right: 12px;
}

.news-time {
  min-width: 320px;
  /* padding: 108px 0 90px 0; */
}

.news-time__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 74px;
}
.news-time__left {
  width: 50%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.news-time__left-img-1 {
  position: relative;
  z-index: 10;
}

.news-time__left-img {
  top: -30px;
  left: 40px;
  position: relative;
  z-index: 10;
}

.news-time__right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 52px;
  position: relative;
}

.news-time__list {
  position: relative;
  margin: 0;
  padding: 0 0 0 30px;
  list-style: none;
}

.news-time__item {
  position: relative;
  padding: 0 0 30px 0;
}

.news-time__item:last-child {
  padding-bottom: 0;
}

.news-time__item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: url("/storage/app/media/svg/time-marker.svg") no-repeat center/contain;
}

.news-time__item::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 25px;
  width: 2px;
  height: calc(100% - 20px);
  background-color: var(--link-color);
}

.news-time__item:last-child::after {
  display: none;
}

.cycle-21 {
  top: -85px;
  right: -83px;
  transform: rotate(200deg);
}

.cycle-22 {
  right: -20px;
  top: 90%;
}

.cycle-23 {
  top: 60%;
  left: -10%;
}

.cycle-24 {
  top: 90%;
  right: 0%;
}

.info {
  min-width: 320px;
  /* padding: 60px 0 90px 0; */
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-2 {
  min-width: 320px;
  /* padding-bottom: 90px; */
}

.info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.info__inner {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: space-between;
  position: relative;
}

.info-reverse {
  flex-direction: row-reverse;
}

.info__img-block {
  width: 34%;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  position: relative;
}

.info__img-block img {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: relative;
  z-index: 10;
}

.info__info {
  width: 59%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.info__block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.news-recommend {
  min-width: 320px;
  /* padding-bottom: 90px; */
}

.news-recommend__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.news-recommend__item {
  display: flex;
  align-items: center;
  gap: 80px;
  border-radius: 15px;
  background-color: var(--card-bg);
  padding: 53px 41px 53px 57px;
}

.news-recommend__list-2 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  position: relative;
  z-index: 10;
}
.news-recommend__item-2 {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 15px;
  background-color: var(--card-bg);
  padding: 44px 32px 44px 12px;
}

.news-recommend__item-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.news-recommend__title {
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-main);
  color: var(--link-color);
}

.cycle-18 {
  right: 0;
  top: -80px;
}

.news-info__wrapper {
  display: flex;
  flex-direction: column;
  gap: 44px;
  position: relative;
}

.news-info__block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cycle-19 {
  right: 0;
  top: 120px;
}

.cycle-20 {
  right: 38%;
  top: 100%;
}

.grip {
  min-width: 320px;
  /* padding-bottom: 90px; */
}

.grip__list {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.grip__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 45px 21px;
  border: 1px solid var(--br-news);
  border-radius: 10px;
  background-color: var(--page-bg);
}

.cycle-17 {
  right: 0;
  top: -150px;
}

.advent {
  min-width: 320px;
  /* padding: 90px 0; */
}

.advent-2 {
  min-width: 320px;
  /* padding-top: 90px ; */
}

.advent__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 77px;
}

.advent__list-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.advent__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}
.advent__img {
  width: 103px;
  height: 92px;
}

.advent__img-2 {
  height: 130px;
}

.advent__img-2 img {
  object-fit: contain;
  height: 130px;
}

.advent__img img {
  object-fit: contain;
  min-width: 100%;
  min-height: 100%;
}


.no-scroll {
  overflow: hidden;
}

.modal {
  position: fixed;
  width: 643px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 400;
  visibility: hidden;
  opacity: 0;
  transition: 0.7s ease;
}

.modal-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 399;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
}

.modal__active {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.modal__active-bg {
  visibility: visible;
  opacity: 1;
}

.modal__wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--page-bg);
  z-index: 1;
  border-radius: 16px;
  padding: 50px;
}

.modal__form {
  width: 100%;
}

.modal__top {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
  position: relative;
}

.modal-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-form__top-inner {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.modal-form__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.modal__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-label {
  width: 100%;
}

.modal-label .modal-input {
  width: 100%;
}

.modal-label {
  width: 100%;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  font-family: var(--font-main);
  color: var(--text-color);
}
.modal__input {
  width: 100%;
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
  font-family: var(--font-main);
  color: var(--text-color);
  padding: 17px 20px;
  background-color: transparent;
  border-radius: 12px;
  border: 1px solid var(--link-color);
  transition: 0.3s ease;
  cursor: pointer;
}

.modal-input::placeholder {
  color: var(--form-place);
}

.modal__btn {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.modal__btn:hover {
  transform: rotate(25deg);
}

.modal__input:focus,
.modal__input:hover,
.modal__input:active {
  border: 1px solid var(--link-color);
  outline: none;
}

.modal-review {
  outline: none;
  resize: none;
  height: 82px;
  width: 100%;
}

.form__success {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.form__success .alert-success {
  width: 500px;
  background-color: white;
  padding: 20px;
  position: relative;
  border-radius: 15px;
}

.form__success .alert-success button {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 19px;
  line-height: 23px;
  color: #151515;
  background: url("/storage/app/media/svg/close-success-2.svg") no-repeat;
  background-size: cover;
  background-position: center;
}

.form__success .alert-success button span {
  visibility: hidden;
}

.form__success .alert-success p {
  font-size: 19px;
  line-height: 23px;
  color: #151515;
}

.fixed-social {
  position: fixed;
  right: 20px;
  bottom: 12px;
  z-index: 50;
  transition: 0.7s ease;
}
.fixed-social__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.fixed-social__link {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
}


.fixed-social.hidden {
  opacity: 0;
  visibility: hidden;
  transition: 0.7s ease;
}

.cart__img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px; 
  height: 120px;
  z-index: 2;
}


.cart__text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  transform-origin: center center;
  animation: spin 5s linear infinite;
  z-index: 3
}

.cart__text.cart-kz{
	width: 105px;
  height: 105px;
}


@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}


.pt{
	padding-top: 90px;
}

.pb{
	padding-bottom: 90px;
}

.pm-right {
	position: absolute;
	right: 0;
	top: 0;
	width: 30vw;
}

.pm-right img {
	width: 100%;
}

.pm-center {
	position: absolute;
	right: 26vw;
	bottom: 0;
	width: 40vw;
}

.pm-center img {
	width: 100%;
}

@media (max-width: 1600px) {
	.pm-center {
		width: 45vw;
	}
}

@media (max-width: 580px) {
	.pm-center, .pm-right {
		display: none;
	}
}

@media (min-width: 2070px) {
	.pm-center {
		width: 30vw;
	}
	.pm-right {
		width: 25vw;
	}
}

@media (min-width: 2500px) {
	.pm-right {
		width: 20vw;
	}
}

@media (min-width: 2800px) {
	.pm-center {
		width: 25vw;
	}
}


@media (min-width: 3200px) {
    .promo {
        height: 50vh !important;
    }
}

@media (max-width: 480px) {
	.home-promo {
		height: 600px !important;
	}
	.promo-img {
        width: 321px !important;
  }
  .promo .container {
  	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}