@charset "UTF-8";
.f-e, .f-s, .f-c, .f-b, .f-a {
  display: flex;
}

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

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

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

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

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

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

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

.f-ai {
  align-items: center;
}
@keyframes rotate-scale-down {
  0% {
    transform: scale(1) rotateZ(0);
  }
  50% {
    transform: scale(0.5) rotateZ(180deg);
  }
  100% {
    transform: scale(1) rotateZ(360deg);
  }
}
@keyframes rotate-center {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideChange {
  0% {
    transform: translateY(-10px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.btn-main {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #32adff, #3d5f77);
  border-radius: 40px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 40px;
  transition: 0.3s;
  letter-spacing: 1px;
}
.btn-main:hover {
  filter: saturate(2);
}
.btn-main:active {
  transform: scale(0.98);
}
.btn-main::after {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  border: 1px solid rgba(30, 40, 45, 0.1);
  border-radius: 40px;
}

.btn-read {
  border-radius: 50px;
  text-align: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 6px 6px 20px;
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(50, 173, 255, 0.4);
  transition: 0.3s;
}
.btn-read span {
  border-radius: 50%;
  background: white;
  color: white;
  width: 30px;
  height: 30px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  transition: 0.3s;
}
.btn-read span svg {
  color: #1e282d;
  transition: 0.3s;
}
.btn-read:hover {
  background: #3d5f77;
}
.btn-read:hover span {
  background: #32adff;
}
.btn-read:hover span svg {
  color: #fff;
}

.btn-decor {
  border-radius: 50px;
  text-align: center;
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 20px 40px;
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-left: 10px solid #263238;
  border-right: 10px solid #263238;
  box-shadow: 0px 0px 0 10px white;
  left: 50%;
  bottom: -25px;
  transform: translate(-50%, 0);
  background: linear-gradient(90deg, #3d5f77, #32adff, #3d5f77);
  background-size: 220% 100%;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.3s ease, filter 0.3s ease, border-color 0.3s ease;
  animation: btnGradientFlow 4s ease-in-out infinite;
  z-index: 2;
}

.btn-decor:hover {
  filter: brightness(1.2) saturate(1.08);
}

.btn-decor:hover::before {
  inset: 4px;
  opacity: 1;
}

/* если внутри текст в span */
.btn-decor__text {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

.btn-decor:active {
  filter: saturate(0.95);
}

.btn-decor:active::before {
  inset: 7px;
  opacity: 0.55;
}

@keyframes btnGradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes btnLightSweep {
  0%, 38% {
    transform: rotate(22deg) translateX(-180%);
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  68% {
    transform: rotate(22deg) translateX(520%);
    opacity: 0;
  }
  100% {
    transform: rotate(22deg) translateX(520%);
    opacity: 0;
  }
}
.informer-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(0deg, #1e282d, rgba(50, 173, 255, 0.6)), linear-gradient(0deg, #1e282d, #1e282d);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 20px solid white;
  box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: 0.3s;
  z-index: 9;
}
.informer-btn span {
  font-weight: 500;
  font-size: 18px;
  background: radial-gradient(circle, #ffffff 0%, #ffffff 35%, #32adff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.informer-btn:hover {
  filter: brightness(1.2);
}

@media screen and (max-width: 1480px) {
  .btn-main {
    font-size: 16px;
  }
}
@media screen and (max-width: 780px) {
  .btn-main {
    order: 4;
    width: 100%;
    font-size: 15px;
  }
}
:root {
  --margin-big: 100px;
  --text-main: 18px;
  --text-main2: 20px;
  --text-small: 16px;
  --text-mini: 14px;
  --text-titleMain: 50px;
  --text-titleBig: 40px;
  --text-titleMedium: 28px;
  --text-titleSmall: 14px;
}

* {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  padding: 0;
  margin: 0;
  font-size: var(--text-main);
  color: #1e282d;
}

.wrap {
  max-width: 84%;
  margin: 0 auto;
}

.section-title a {
  color: #1e282d;
  font-weight: 600;
  transition: 0.3s;
}
.section-title a:hover {
  color: #32adff;
}
.section-title h2 {
  font-size: var(--text-titleMain);
  color: #1e282d;
  font-weight: 700;
  margin: 0;
}
.section-title span {
  color: #263238;
  font-weight: 400;
  display: block;
  width: 90%;
}
.section-title.center {
  text-align: center;
}
.section-title.center span {
  margin: 10px auto;
}

.custom-underline {
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
}
.custom-underline::after {
  content: "";
  position: absolute;
  bottom: -2px; /* расстояние от текста */
  left: 0;
  width: 100%;
  height: 1px; /* толщина линии */
  background: repeating-linear-gradient(to right, currentColor 0px, currentColor 1px, transparent 1px, transparent 3px);
}

.homepage {
  background: linear-gradient(0deg, #ffffff, #c9eaff);
  position: relative;
}
.homepage::after {
  position: absolute;
  content: "";
  width: 580px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  left: -250px;
  top: -220px;
  z-index: 0;
}

.header {
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

.lang {
  padding: 8px 10px;
  box-shadow: 0 0 0px 5px rgba(50, 173, 255, 0.2);
  background: #1e282d;
  border-radius: 20px;
  color: #fff;
  font-size: var(--text-mini);
  font-weight: 500;
  width: 80px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
.lang svg {
  cursor: pointer;
  color: #32adff;
  transition: 0.2s;
}
.lang.active svg {
  cursor: pointer;
  color: rgba(50, 173, 255, 0.5);
}
.lang:hover {
  background: #3d5f77;
}
.lang:hover svg {
  color: #32adff;
}
.lang-panel {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background: #263238;
  border-radius: 20px;
  font-weight: 300;
  padding: 10px;
  border-top: 5px solid #1e282d;
  border-bottom: 5px solid #1e282d;
  display: none;
}
.lang-panel a {
  display: block;
  color: #c9eaff;
  text-decoration: none;
  padding: 5px;
  background: #1e282d;
  margin: 1px;
  border-radius: 10px;
  text-align: center;
  transition: 0.2s;
}
.lang-panel a:hover {
  background: #32adff;
  color: #fff;
}
.lang-panel.active {
  display: block;
}

.navigation-btn {
  margin-left: 60px;
}

.navigation-link {
  margin-left: 40px;
  color: #1e282d;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}
.navigation-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #32adff, transparent);
  left: 50%;
  bottom: -10px;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: 0.3s;
}
.navigation-link:hover {
  transform: translateX(10px);
}
.navigation-link:hover::before {
  opacity: 1;
}
.navigation-link:hover::after {
  opacity: 1;
}

.mainhero {
  position: relative;
  z-index: 1;
  color: white;
  padding-top: var(--margin-big);
}

.mainhero-info {
  max-width: 50%;
}
.mainhero-info-slog {
  padding: 10px 20px;
  background: #3d5f77;
  border-radius: 50px;
  font-weight: 500;
}
.mainhero-info-title {
  font-size: var(--text-titleBig);
  font-weight: 900;
  color: #1e282d;
  margin: 20px 0;
}
.mainhero-info-desc {
  font-size: var(--text-main2);
  color: #3d5f77;
  line-height: 1.5;
  max-width: 80%;
  margin: 20px 0;
}
.mainhero-info-tags {
  position: relative;
  min-height: 24px;
  margin-top: 40px;
}
.mainhero-info-decor {
  margin-right: 20px;
  background: #3d5f77;
  width: 25px;
  height: 25px;
  border-radius: 5px;
  animation: rotate-scale-down 2s linear infinite both;
}
.mainhero-info-tag {
  position: absolute;
  left: 45px;
  color: #3d5f77;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.mainhero-info-tag.active {
  opacity: 1;
  transform: translateX(0);
}
.mainhero-info-btn {
  display: inline-flex;
  padding: 20px 80px;
  font-weight: 500;
}
.mainhero-info-btnwrap {
  margin-top: 40px;
}

.mainhero-img {
  width: 600px;
}

.preim {
  margin-top: 60px;
  gap: 20px;
}

.preim-item {
  padding: 15px 40px;
  background: linear-gradient(-90deg, #e4f4ff, rgba(228, 244, 255, 0));
  border-radius: 20px 100px 20px 100px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  color: #3d5f77;
}
.preim-item span {
  font-weight: 600;
  color: #1e282d;
  font-size: var(--text-main2);
}
.preim-item::after {
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  left: -5px;
  top: -5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px 50px 15px 50px;
}

.keys {
  margin-top: var(--margin-big);
  background: linear-gradient(180deg, white, #3d5f77);
  position: relative;
  padding-bottom: 140px;
  border-radius: 0 0 200px 200px;
}

.keys-slog {
  position: absolute;
  top: 50%;
  text-align: center;
  font-weight: 900;
  font-size: 128px;
  text-transform: uppercase;
  color: rgba(61, 95, 119, 0.1);
  z-index: 0;
  letter-spacing: 50%;
}
.keys-slog-in {
  position: relative;
  top: 0;
}

.keys-container {
  margin-top: 40px;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.keys {
  margin-top: var(--margin-big);
}
.keys .btn-decor {
  font-size: var(--text-main2);
}

.keys-container {
  margin-top: 40px;
  gap: 40px;
}

.keys-item {
  width: 440px;
  position: relative;
  padding: 20px 0;
}
.keys-item:hover .keys-panel {
  opacity: 0.98;
}

.keys-desktop {
  background: url(../img/notebook.png);
  width: 100%;
  height: 260px;
  background-size: 100% 100%;
}
.keys-desktop-in {
  width: calc(100% - 157px);
  height: 210px;
  position: relative;
  left: 79px;
  top: 16px;
  border-radius: 4px;
  overflow: hidden;
  background: #1e282d;
}
.keys-desktop img {
  width: 100%;
}

.keys-mobile {
  background: url(../img/mob.png);
  width: 110px;
  height: 226px;
  background-size: cover;
  position: absolute;
  bottom: 20px;
  left: 0;
  box-shadow: 0px 3px 5px 0px rgba(73, 73, 73, 0.3215686275);
  border-radius: 14px;
  z-index: 2;
}
.keys-mobile-in {
  width: calc(100% - 9px);
  height: 203px;
  position: relative;
  left: 4px;
  top: 10px;
  border-radius: 3px;
  overflow: hidden;
}
.keys-mobile img {
  width: 100%;
}

.keys-panel {
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  padding: 40px;
  position: absolute;
  background: #263238;
  border-radius: 40px;
  top: -20px;
  left: -20px;
  z-index: 3;
  backdrop-filter: blur(20px);
  color: white;
  opacity: 0;
  transition: 0.3s;
  box-shadow: 0 0 0px 5px #c9eaff, 0 0 20px 10px #c9eaff;
}
.keys-panel-title {
  font-weight: 600;
  font-size: var(--text-main2);
  line-height: 150%;
  margin: 0;
  margin-bottom: 20px;
}

.keys-panel-tags {
  font-size: var(--text-small);
  margin-top: 20px;
  font-weight: 500;
}

.keys-panel-tags-name {
  margin-bottom: 5px;
  font-weight: 400;
  font-size: var(--text-mini);
}

.keys-panel-tags-tag {
  color: #c9eaff;
}

.keys-panel-btn {
  margin-top: 20px;
  position: absolute;
  bottom: 40px;
  left: 40px;
}

.keys-lenght {
  color: white;
  font-size: var(--text-main2);
  position: absolute;
  bottom: 40px;
  left: 35%;
  transform: translate(-50%, 0);
  font-size: var(--text-main2);
  font-weight: 300;
}
.keys-lenght span {
  background: white;
  color: #1e282d;
  padding: 15px;
  border-radius: 50px;
  margin-left: 10px;
  font-weight: 500;
}

.services {
  margin-top: var(--margin-big);
  position: relative;
  overflow: hidden;
}
.services::after {
  position: absolute;
  content: "";
  width: 650px;
  height: 650px;
  background: #e4f4ff;
  right: -200px;
  top: 25%;
  transform: translate(0%, -50%);
  border-radius: 50px;
  z-index: -1;
  animation: rotate-center 6s linear infinite both;
}
.services::before {
  position: absolute;
  content: "";
  width: 400px;
  height: 400px;
  background: #e4f4ff;
  left: -200px;
  top: 50%;
  transform: translate(0%, -50%);
  border-radius: 50px;
  z-index: -1;
  animation: rotate-center 6s linear infinite both;
}

.services-container {
  margin-top: 40px;
  gap: 40px;
}

.services-item {
  padding: 40px;
  border-radius: 40px;
  background: #1e282d;
  width: calc(50% - 20px);
  color: white;
  display: block;
  position: relative;
  overflow: hidden;
  max-height: 380px;
  transition: 0.3s;
}
.services-item h3 {
  color: white;
  font-size: var(--text-titleMedium);
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
}
.services-item .services-img {
  transition: 0.3s;
  display: none;
}
.services-item::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 320px;
  height: 320px;
  background: linear-gradient(180deg, #87ccfa, rgba(38, 50, 56, 0));
  border-radius: 50%;
}
.services-item:nth-child(1)::after {
  background: linear-gradient(180deg, #87ccfa, rgba(38, 50, 56, 0));
}
.services-item:nth-child(1) .services-img {
  transform: rotate(14deg);
  top: 50px;
}
.services-item:nth-child(2)::after {
  background: linear-gradient(180deg, #a1ffd0, rgba(38, 50, 56, 0));
}
.services-item:nth-child(2) .services-img {
  transform: rotate(14deg);
  top: 20px;
  left: 50px;
}
.services-item:nth-child(3)::after {
  background: linear-gradient(180deg, #eff2a7, rgba(38, 50, 56, 0));
}
.services-item:nth-child(3) .services-img {
  transform: rotate(14deg);
  top: 50px;
  left: 0px;
}
.services-item:nth-child(4)::after {
  background: linear-gradient(180deg, #ccaae6, rgba(38, 50, 56, 0));
}
.services-item:nth-child(4) .services-img {
  transform: rotate(-35deg);
  top: -40px;
  left: 10px;
}
.services-item:nth-child(5)::after {
  background: linear-gradient(180deg, #e49f96, rgba(38, 50, 56, 0));
}
.services-item:nth-child(5) .services-img {
  transform: rotate(0deg);
  top: 40px;
  left: 0px;
}
.services-item:nth-child(6)::after {
  background: linear-gradient(180deg, #7895df, rgba(38, 50, 56, 0));
}
.services-item:nth-child(6) .services-img {
  transform: rotate(0deg);
  top: 40px;
  left: 40px;
}
.services-item:hover {
  box-shadow: 0 0 0px 10px #c9eaff;
}
.services-item:hover .services-btn {
  border: 1px solid rgba(50, 173, 255, 0.6);
}
.services-item:hover .services-btn span {
  background: #32adff;
  box-shadow: 0 0 0px 6px #32adff;
}
.services-item:hover .services-btn span svg {
  color: white;
}
.services-item:hover:nth-child(1) .services-img {
  transform: rotate(4deg);
}
.services-item:hover:nth-child(2) .services-img {
  transform: rotate(4deg);
}
.services-item:hover:nth-child(3) .services-img {
  transform: rotate(4deg);
}
.services-item:hover:nth-child(4) .services-img {
  transform: rotate(-45deg);
}
.services-item:hover:nth-child(5) .services-img {
  transform: rotate(-10deg);
}
.services-item:hover:nth-child(6) .services-img {
  transform: rotate(-10deg);
}

.services-in {
  gap: 20px;
  max-height: 266px;
  position: relative;
  z-index: 2;
}

.services-content {
  width: 60%;
}

.services-info {
  color: #c9eaff;
  font-size: var(--text-main);
  font-weight: 400;
  margin: 20px 0;
  line-height: 150%;
}

.services-price {
  font-size: var(--text-titleMedium);
  font-weight: 500;
}
.services-price span {
  color: #c9eaff;
  font-size: 24px;
}
.services-price svg {
  color: white;
}

.services-btn {
  color: #fff;
  font-size: var(--text-main);
  text-decoration: none;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.services-img {
  position: relative;
  z-index: 1;
  width: 50%;
  transform: rotate(14deg);
  top: 50px;
}

.services-blocks {
  gap: 40px;
  margin-top: 40px;
}

.services-block {
  background: #1e282d;
  padding: 40px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  text-decoration: none;
}
.services-block::after {
  content: "";
  position: absolute;
  bottom: -250px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: linear-gradient(180deg, #1f6a8f, rgba(0, 0, 0, 0) 50%);
  border-radius: 50%;
}
.services-block:hover {
  box-shadow: 0 0 0px 10px #c9eaff;
}
.services-block:hover .services-img {
  transform: rotate(0deg);
}
.services-block:hover .services-btn {
  border: 1px solid rgba(50, 173, 255, 0.6);
}
.services-block:hover .service-block-header {
  gap: 20px;
  position: relative;
  z-index: 1;
}
.services-block:hover .service-block-header span {
  background: #32adff;
  box-shadow: 0 0 0 10px #32adff;
}

.service-block-header {
  gap: 20px;
  position: relative;
  z-index: 1;
}
.service-block-header span {
  padding: 5px;
  background: #1e282d;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  justify-content: center;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.service-block-header span svg {
  color: white;
  transition: 0.3s;
}
.service-block-header h3 {
  color: white;
  font-size: var(--text-titleMedium);
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
}

.services-block {
  max-width: 35%;
}
.services-block.small {
  max-width: 450px;
}
.services-block.small::after {
  visibility: hidden;
}

.services-block-info {
  position: relative;
  z-index: 1;
  color: #c9eaff;
  margin-top: 20px;
}

.service-block-tags {
  margin-top: 20px;
  position: relative;
  z-index: 1;
  gap: 10px;
}

.service-block-tag {
  background: #3d5f77;
  color: white;
  font-size: var(--text-mini);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 20px;
}
.service-block-tag svg {
  margin-right: 10px;
}

.menu {
  width: 80px;
  position: fixed;
  left: 20px;
  top: 20px;
  z-index: 9;
  height: calc(100vh - 40px);
  max-height: calc(100vh - 40px);
  min-height: 420px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 9;
  background: #263238;
  border-radius: 40px;
}

/* Внутренние блоки */
.menu-top,
.menu-social {
  flex-shrink: 0;
}

.menu-top {
  height: 40%;
}

.menu-logo {
  background: #1e282d;
  padding: 40px 0;
  width: 100%;
  border-radius: 40px;
}

.menu-game {
  margin: 0 auto;
  text-align: center;
  background: #1e282d;
  margin-top: 40px;
  border-radius: 20px;
  width: 60px;
  transition: 0.3s;
}
.menu-game svg {
  color: white;
  transition: 0.3s;
}
.menu-game:hover {
  background: #3d5f77;
}

.menu-btn {
  cursor: pointer;
  background: transparent;
  border: none;
  transition: 0.3s;
  color: white;
  border-radius: 40px;
}
.menu-btn:hover {
  color: white;
  background: #3d5f77;
  padding: 20px;
}

.menu-social {
  height: 40%;
}

.menu-social-item {
  width: 50px;
  height: 50px;
  background: #1e282d;
  margin: 5px;
  border-radius: 50%;
  transition: 0.3s;
}
.menu-social-item:last-child {
  margin-bottom: 20px;
}
.menu-social-item:hover {
  background: #3d5f77;
}

.menu-panel {
  position: absolute;
  top: 0;
  left: 35px;
  width: 500px;
  height: 100%;
  padding: 40px 40px 40px 80px;
  border-radius: 0 50px 50px 0;
  background: linear-gradient(90deg, #1e282d, #263238);
  box-shadow: 0 0 20px 0px rgba(30, 40, 45, 0.2);
  z-index: 1;
  color: #fff;
  /* Анимация выезда */
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

.menu.active .menu-panel {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.menu-btn.active {
  color: white;
  background: #3d5f77;
  padding: 20px;
}

.menu-panel-header {
  font-weight: 600;
  font-size: var(--text-titleBig);
  text-align: center;
  border-bottom: 0px solid #263238;
  padding-bottom: 0px;
}
.menu-panel-header span {
  background: linear-gradient(90deg, #d5ffd2, #b7e6ff, #7cc9ff, #d8c2ff, #d5ffd2);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: titleGradientFlow 5s linear infinite;
  color: transparent;
}

.menu-panel-btns {
  margin: 40px 0;
}

.menu-panel-btn {
  padding: 15px 20px;
  width: 100%;
  margin-bottom: 20px;
}
.menu-panel-btn::after {
  border: 1px solid rgba(50, 173, 255, 0.1);
}

.sitename {
  position: fixed;
  top: 50%;
  right: -30px;
  transform: translate(0, -50%) rotate(-90deg);
  color: #263238;
  font-size: var(--text-small);
  font-weight: 300;
  background: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  letter-spacing: 1px;
  z-index: 9;
}
.sitename span {
  display: inline-flex;
  line-height: 25px;
  align-items: center;
  justify-content: center;
  background: #32adff;
  width: 40px;
  height: 34px;
  color: white;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.decor-stars {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.decor-stars > * {
  position: relative;
  z-index: 2;
}

.star-decor-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.star-decor {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}

.star-decor__item {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--item-size);
  height: var(--item-size);
  transform-origin: center;
  transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
  opacity: 0;
  will-change: transform, opacity;
  background-image: url("data:image/svg+xml,%3Csvg width='92' height='92' viewBox='0 0 92 92' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M46 0L47.3987 44.6013L92 46L47.3987 47.3987L46 92L44.6013 47.3987L0 46L44.6013 44.6013L46 0Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation-name: starPulseSpin;
  animation-duration: var(--item-duration);
  animation-delay: var(--item-delay);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
}

@keyframes starPulseSpin {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(0deg);
  }
  15% {
    opacity: calc(var(--item-opacity) * 1);
    transform: translate(-50%, -50%) scale(0.55) rotate(calc(var(--item-rotate) * 0.18));
  }
  50% {
    opacity: var(--item-opacity);
    transform: translate(-50%, -50%) scale(1) rotate(calc(var(--item-rotate) * 0.55));
  }
  75% {
    opacity: calc(var(--item-opacity) * 0.55);
    transform: translate(-50%, -50%) scale(0.72) rotate(calc(var(--item-rotate) * 0.82));
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2) rotate(var(--item-rotate));
  }
}
@media screen and (max-width: 1680px) {
  :root {
    --text-main: 18px;
    --text-main2: 20px;
    --text-small: 16px;
    --text-mini: 14px;
    --text-titleMain: 44px;
    --text-titleBig: 36px;
    --text-titleMedium: 28px;
    --text-titleSmall: 14px;
  }
  .preim-item {
    padding: 15px 20px;
  }
  .keys-item {
    width: 480px;
  }
  .keys-item:nth-child(7) {
    display: none;
  }
  .keys-item:nth-child(8) {
    display: none;
  }
  .keys-item:nth-child(9) {
    display: none;
  }
  .keys-desktop-in {
    width: calc(100% - 160px);
  }
}
.about {
  padding: 0;
  background: #1e282d;
  position: relative;
}
.about .wrap {
  gap: 40px;
}

.about-top {
  background: white;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  margin-bottom: 40px;
  border-radius: 0 0 100px 100px;
}

.about-bottom {
  background: white;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  margin-top: 40px;
  border-radius: 100px 100px 0 0;
}

.about-photo {
  position: relative;
  margin: 40px 0;
  width: 300px;
  height: 300px;
}
.about-photo::before {
  position: absolute;
  content: "";
  width: 90%;
  height: 90%;
  background: rgba(255, 255, 255, 0.05);
  left: 15px;
  top: 5px;
  border-radius: 40px;
  animation: rotate-center 6s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite forwards;
  border: 2px solid rgba(255, 255, 255, 0.02);
}
.about-photo img {
  position: relative;
  z-index: 1;
}
.about-photo .about-photo-text {
  position: absolute;
  z-index: 1;
  color: white;
  left: 50%;
  bottom: 60px;
  transform: translate(-50%, 0);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
  padding: 10px;
  width: 180px;
  font-size: var(--text-small);
  text-align: center;
}
.about-photo .about-photo-text span {
  font-weight: 700;
}

.about-title {
  color: #c9eaff;
  font-size: var(--text-titleMain);
  text-align: right;
  margin: 0;
}

.about-title {
  color: transparent;
  font-size: var(--text-titleMain);
  text-align: right;
  background: linear-gradient(90deg, #d5ffd2, #b7e6ff, #7cc9ff, #d8c2ff, #d5ffd2);
  background-size: 300% auto;
  background-clip: text;
  -webkit-background-clip: text;
  animation: titleGradientFlow 5s linear infinite;
}

@keyframes titleGradientFlow {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 300% center;
  }
}
.about-queat {
  padding: 10px 20px;
  background: white;
  border-radius: 40px;
  margin-left: 40px;
  margin-top: 40px;
  position: relative;
  text-align: center;
}
.about-queat span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}

.about-info {
  color: #c9eaff;
  margin: 20px 0;
  text-align: right;
  font-weight: 300;
  line-height: 150%;
}
.about-info strong {
  font-weight: 600;
  color: white;
}

.about-container .btn-main {
  padding: 15px 40px;
  float: right;
  margin-top: 20px;
}
.about-container .btn-main::after {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps {
  background: linear-gradient(180deg, white, #3d5f77);
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
.steps::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 0 200px 200px 0;
  top: 50%;
  left: -60px;
  transform: translate(0, -50%);
  background: #3d5f77;
  border: 20px solid white;
  border-left: 0;
  z-index: 1;
}
.steps::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 200px 0px 0px 200px;
  top: 50%;
  right: -60px;
  transform: translate(0, -50%);
  background: #3d5f77;
  border: 20px solid white;
  border-right: 0;
  z-index: 1;
}

.steps-row {
  margin-top: 100px;
  text-align: center;
  position: relative;
}
.steps-row img {
  width: 100%;
}

.steps-block {
  position: absolute;
  top: -25px;
  height: 100px;
  width: 100%;
}

.steps-item {
  background: url(../img/steps-hexagon.svg);
  width: 87px;
  height: 99px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.steps-item span {
  font-weight: 400;
  font-size: var(--text-main2);
  animation: rotate-center 4s linear infinite both;
}
.steps-item.one {
  top: 0;
}
.steps-item.two {
  top: 20px;
}
.steps-item.tree {
  top: -5px;
}
.steps-item.four {
  top: 0;
}
.steps-item.five {
  top: 5px;
}
.steps-item:hover {
  filter: contrast(1.4);
}
.steps-item:hover .steps-name {
  color: #263238;
  transition: 0.3s;
}
.steps-item.active {
  background: url(../img/steps-hexagon-active.svg);
  color: white;
}
.steps-item.active span {
  font-weight: 700;
}
.steps-item.active:hover {
  filter: contrast(1);
}
.steps-item.active .steps-name {
  color: #263238;
  font-weight: 500;
  transition: 0.3s;
}

.steps-name {
  position: absolute;
  top: 120px;
  text-align: center;
  width: 150px;
  color: rgba(38, 50, 56, 0.7);
  font-size: var(--text-main2);
  font-weight: 400;
}

.steps-slider {
  margin-top: 150px;
}

.steps-slider-btn {
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.steps-slider-btn:hover {
  transform: scale(1.2);
}
.steps-slider-btn.inactive {
  opacity: 0.5;
  transform: scale(1);
  cursor: auto;
}

.steps-slider-in {
  margin: 20px 0;
  animation: slideChange 0.3s ease;
}

.steps-slider-slide {
  background: linear-gradient(90deg, transparent, white, transparent);
  padding: 20px;
  text-align: center;
  margin: 10px 0;
  filter: blur(4px);
  transition: all 0.3s ease;
  opacity: 0.4;
}
.steps-slider-slide.active {
  filter: blur(0px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  opacity: 1 !important;
}

.informer {
  margin-top: var(--margin-big);
  position: relative;
  gap: 40px;
}

.feedback {
  background: linear-gradient(180deg, white, #3d5f77);
  width: 50%;
  padding: 40px 40px 40px 8%;
  border-radius: 100px 100px 100px 0;
}

.feedback-scroll-wrapper {
  position: relative;
  margin-top: 40px;
  padding-right: 40px;
  width: 84%;
}

.feedback-blocks {
  width: 100%;
  height: 580px;
  overflow: hidden;
  scrollbar-width: none;
}

.feedback-blocks::-webkit-scrollbar {
  display: none;
}

/* ─────────────── ITEMS ─────────────── */
.feedback-item {
  width: calc(100% - 40px);
  padding: 0;
  border-radius: 50px;
  background: linear-gradient(180deg, white, #3d5f77);
  overflow: hidden;
  margin: 30px 20px;
  box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0.1);
}
.feedback-item:first-child {
  margin-top: 10px;
}
.feedback-item:last-child {
  margin-bottom: 10px;
}
.feedback-item p {
  line-height: 150%;
  margin: 40px;
  margin-bottom: 20px;
}

.feedback-author {
  font-weight: 700;
  font-size: var(--text-small);
  margin: 40px;
  margin-top: 0;
  margin-bottom: 20px;
}

.feedback-bottom {
  background: #1e282d;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feebdack-btn {
  text-decoration: none;
  color: white;
  font-size: var(--text-small);
  transition: 0.3s;
  display: flex;
  align-items: center;
}

.feebdack-btn svg {
  transition: 0.3s;
  opacity: 0;
  margin-left: -20px;
}

.feebdack-btn:hover svg {
  margin-left: 20px;
  opacity: 1;
}

.custom-scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  width: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Кнопки-стрелки */
.scroll-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(0deg, #263238, #32adff);
  border-radius: 50%;
  transition: color 0.2s;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.scroll-arrow:hover {
  color: rgb(255, 255, 255);
  filter: brightness(1.1);
}

.scroll-arrow svg {
  display: block;
  width: 14px;
  height: 14px;
}

/* Состояние «недоступно» (крайнее положение) */
.scroll-arrow.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Трек */
.scroll-track {
  flex: 1;
  width: 20px;
  background: #263238;
  border-radius: 100px;
  position: relative;
  margin: 20px 0;
  cursor: pointer;
}

/* Ползунок */
.scroll-thumb {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  background: linear-gradient(0deg, #1e282d, #32adff, #1e282d);
  border-radius: 100px;
  cursor: grab;
  transition: width 0.1s;
  top: 0;
}

.scroll-thumb:hover,
.scroll-thumb.dragging {
  width: 16px;
  cursor: grabbing;
}

.asq {
  background: linear-gradient(180deg, white, #3d5f77);
  width: 50%;
  padding: 40px 8% 40px 40px;
  border-radius: 100px 100px 0px 100px;
  position: relative;
}
.asq .section-title {
  text-align: right;
}
.asq .section-title span {
  text-align: right;
  width: auto;
}
.asq .btn-main {
  margin-top: 40px;
  float: right;
  padding: 15px 40px;
}
.asq .btn-main::after {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.asq-container {
  margin-left: 16%;
  margin-top: 40px;
}

.asq-item {
  padding: 10px 20px;
  background: #263238;
  border-radius: 50px;
  box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0.1);
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 30px 0;
  cursor: pointer;
}
.asq-item span {
  color: white;
  margin-left: 20px;
  font-weight: 300;
}
.asq-item svg {
  color: #32adff;
  transition: 0.3s;
}
.asq-item:hover {
  transform: scale(1.02);
  background: #32adff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
.asq-item:hover svg {
  color: white;
}

#faqSidebar {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 620px;
  z-index: 99;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.45s cubic-bezier(0.32, 0.72, 0, 1);
}

#faqSidebar.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(0);
}

.faq-panel {
  width: 100%;
  max-height: 85vh;
  background: linear-gradient(45deg, #c7d1d8, #ffffff);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  transform: translateX(50px);
  transition: transform 0.45s cubic-bezier(0.32, 0.72, 0, 1);
  padding-top: 20px;
}

#faqSidebar.active .faq-panel {
  transform: translateX(0);
}

.faq-close {
  width: 40px;
  height: 40px;
  border: none;
  color: white;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #263238;
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 10;
  transition: all 0.3s ease;
}
.faq-close:hover {
  background: rgba(239, 68, 68, 0.9);
}

.faq-panel-content {
  padding: 0px 40px 40px 40px;
  line-height: 150%;
  font-size: var(--text-mini);
  overflow-y: auto;
  max-height: calc(85vh - 100px);
  transition: opacity 0.3s ease;
}

.faq-panel h3 {
  margin: 0;
  font-weight: 500;
  padding: 30px 40px 20px 40px;
}

.stek {
  margin-top: 0;
  overflow: hidden;
}

.stek-dline {
  text-align: center;
  width: 100%;
}
.stek-dline img {
  width: 100%;
  margin-left: 25px;
}

.stek-container {
  margin-top: 40px;
  overflow: hidden;
  padding-bottom: 100px;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  gap: 80px;
  animation: marqueeRight 12s linear infinite; /* увеличил время — плавнее */
  width: -moz-max-content;
  width: max-content;
  padding-left: 80px;
}

/* При hover — пауза */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* Основная анимация */
@keyframes marqueeRight {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Убираем возможные артефакты */
.marquee-track {
  will-change: transform;
  height: 170px;
}

/* Стили блоков */
.stek-blocks {
  display: flex;
  gap: 80px;
  flex-shrink: 0;
  align-items: center;
}

.stek-item {
  flex-shrink: 0;
  background: rgba(65, 99, 122, 0.3019607843);
  width: 150px;
  height: 150px;
  border-radius: 50px;
}

.stek-item-img {
  background: white;
  width: 150px;
  height: 150px;
  transform: rotate(45deg);
  border-radius: 50px;
  border: 1px solid rgba(30, 40, 45, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stek-item-img img {
  transform: rotate(-45deg);
  height: auto;
}

.footer {
  background: #263238;
  border-radius: 60px;
  position: relative;
  z-index: 11;
}

.footer-container {
  gap: 20px;
  overflow: hidden;
  border-radius: 60px;
}

.footer-logo {
  background: rgba(30, 40, 45, 0.5);
  padding: 75px 60px;
  display: flex;
  align-items: center;
  transition: 0.3s;
  border-right: 1px solid rgba(50, 173, 255, 0.1);
}
.footer-logo img {
  transition: 0.3s;
}
.footer-logo:hover img {
  transform: scale(1.05);
}
.footer-logo:hover {
  background: #1e282d;
}

.footer-nav {
  gap: 20px;
  width: 70%;
}

.footer-nav-block {
  padding: 0px 20px 30px 0;
  flex: 1 1 auto;
  border-right: 1px solid rgba(50, 173, 255, 0.1);
}
.footer-nav-block:last-child {
  border: none;
}
.footer-nav-block span {
  color: white;
  font-size: var(--text-small);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  letter-spacing: 40%;
  font-size: var(--text-mini);
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 0 0 20px 20px;
  background: rgba(50, 173, 255, 0.1);
}

.footer-nav-link {
  display: block;
  color: #c9eaff;
  font-size: var(--text-small);
  line-height: 150%;
  text-decoration: none;
  position: relative;
  margin-left: 20px;
  transition: 0.3s;
  margin-top: 10px;
}
.footer-nav-link::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #3d5f77;
  left: -20px;
  top: 12px;
  transform: translate(0%, -50%) rotate(45deg);
  border-radius: 3px;
  transition: 0.3s;
}
.footer-nav-link:hover {
  transition: 0.3s;
  color: #fff;
}
.footer-nav-link:hover::after {
  background: #32adff;
}

.footer-right {
  gap: 20px;
  /* margin-right: 40px; */
  max-width: 370px;
  background: #222d33;
  overflow: hidden;
  padding-right: 40px;
  border-left: 1px solid rgba(50, 173, 255, 0.1);
}

.footer-label {
  background: rgba(50, 173, 255, 0.1);
  color: white;
  padding: 10px 20px;
  border-radius: 0 0 20px 20px;
  transform: rotate(-90deg);
  letter-spacing: 40%;
  font-size: var(--text-mini);
  font-weight: 500;
  display: flex;
  position: relative;
  left: 23px;
}

.footer-contacts {
  gap: 20px;
  padding: 20px 0;
}

.footer-contacts-item {
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  background: rgba(30, 40, 45, 0.2);
  border: 1px solid #32adff;
  gap: 10px;
  font-weight: 500;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transition: 0.3s;
}
.footer-contacts-item:first-child {
  left: 0px;
}
.footer-contacts-item:nth-child(2) {
  left: -80px;
}
.footer-contacts-item:last-child {
  left: 0px;
  min-width: 242px;
}
.footer-contacts-item:hover {
  background: #32adff;
}
.footer-contacts-item:hover .footer-contacts-social {
  color: white;
}
.footer-contacts-item:hover .footer-contacts-social svg {
  transform: rotate(360deg);
}
.footer-contacts-item:active {
  transform: scale(0.95);
}

.footer-contacts-social {
  color: #32adff;
  font-size: 12px;
  transition: 0.3s;
}
.footer-contacts-social svg {
  margin-right: 10px;
  transition: 0.5s;
}

.footer-contacts-info {
  color: white;
  font-size: var(--text-mini);
}

.footer-totop {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #32adff;
  width: 120px;
  height: 40px;
  border-radius: 50px 50px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.footer-totop svg {
  position: relative;
  top: 2px;
}
.footer-totop:hover {
  background: #1e282d;
}

.copy {
  color: rgba(30, 40, 45, 0.6);
  padding: 20px;
  text-align: center;
  font-size: var(--text-small);
  position: relative;
  z-index: 11;
  background: white;
}
.copy a {
  color: #32adff;
  text-decoration: none;
  transition: 0.3s;
  font-weight: 400;
}
.copy a:hover {
  color: #1e282d;
}

@media screen and (max-width: 1480px) {
  :root {
    --margin-big: 60px;
    --text-main: 16px;
    --text-main2: 18px;
    --text-small: 14px;
    --text-mini: 12px;
    --text-titleMain: 40px;
    --text-titleBig: 32px;
    --text-titleMedium: 22px;
    --text-titleSmall: 14px;
  }
  .keys-slog-in {
    display: none;
  }
  .menu {
    width: 70px;
    left: 10px;
  }
  .menu-logo {
    padding: 30px 10px;
  }
  .mainhero {
    margin: 80px 0;
  }
  .mainhero-img {
    width: 500px;
  }
  .keys-lenght {
    left: 30%;
  }
  .service-block-tag svg {
    margin-right: 5px;
  }
  .service-block-tags {
    gap: 5px;
    flex-wrap: wrap;
  }
  .preim-item {
    border-radius: 20px 50px 20px 50px;
    padding: 15px 10px;
  }
  .preim-item::after {
    content: "";
    border-radius: 15px 40px 15px 40px;
  }
  .keys {
    border-radius: 0 0 60px 60px;
  }
  .keys-lenght span {
    padding: 12px;
  }
  .footer-label {
    left: 19px;
  }
  .feedback-item {
    border-radius: 25px;
  }
  .feedback-item p {
    margin: 20px;
  }
  .feedback-bottom {
    padding: 12px 20px;
  }
  .feedback-resource svg {
    width: 90px;
  }
  .feebdack-btn:hover svg {
    margin-left: 10px;
  }
  .informer-btn {
    width: 210px;
    height: 210px;
    border: 10px solid white;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
  }
  .scroll-track {
    width: 12px;
  }
  .footer-logo {
    display: none;
  }
  .footer-nav-block:first-child {
    margin-left: 40px;
  }
  .footer-totop {
    top: -36px;
    width: 120px;
    height: 36px;
  }
  .footer-totop svg {
    position: relative;
    top: 2px;
    width: 18px;
  }
  .feedback-author {
    margin: 20px;
  }
  .feedback-item {
    width: calc(100% - 20px);
    margin: 30px 10px;
  }
  .keys .btn-decor {
    font-size: 16px;
  }
  .stek-container {
    padding-bottom: 60px;
  }
  .stek-dline img {
    width: 100%;
    margin-left: 10px;
  }
  .asq-item img {
    width: 36px;
  }
  .preim {
    gap: 10px;
  }
  .about-bottom {
    height: 60px;
  }
  .stek-item {
    width: 120px;
    height: 120px;
    border-radius: 30px;
  }
  .stek-item-img {
    width: 120px;
    height: 120px;
    border-radius: 30px;
  }
  .stek-item-img img {
    transform: rotate(-45deg);
    height: auto;
  }
  .mainhero-info {
    max-width: 60%;
  }
  .btn-read {
    font-size: 16px;
  }
  .services-block {
    padding: 20px;
  }
  .services-block:first-child {
    width: 100%;
    max-width: 40%;
  }
  .services-item {
    padding: 20px;
  }
  .service-block-header span svg {
    width: 21px;
  }
  .services-block:hover .service-block-header span {
    background: #32adff;
    box-shadow: 0 0 0 4px #32adff;
  }
  .services-blocks {
    gap: 20px;
    margin-top: 20px;
  }
  .services-container {
    gap: 20px;
  }
  .services-item {
    width: calc(50% - 10px);
  }
  .sitename {
    padding: 6px 20px;
    right: -40px;
  }
}
@media screen and (max-width: 1280px) {
  .wrap {
    max-width: 96%;
  }
  .menu {
    width: 100%;
    left: 0px;
    bottom: 0px;
    top: auto;
    max-height: 70px !important;
    min-height: 40px !important;
    display: none;
  }
  .menu-container {
    flex-direction: row;
    height: 70px;
    border-radius: 40px 40px 0 0;
  }
  .menu-game {
    margin-top: 0;
  }
  .menu-top {
    height: auto;
    display: flex;
    align-items: center;
    width: 180px;
  }
  .menu-social {
    height: auto;
    flex-direction: row;
    margin-right: 10px;
  }
  .menu-social-item:last-child {
    margin-bottom: 5px;
  }
  .menu-btn {
    align-items: center;
  }
  .menu-logo {
    padding: 10px 40px;
    border-radius: 40px 40px 40px 0;
  }
  .menu-logo svg {
    width: 50px;
    height: 50px;
  }
  .menu-panel {
    position: absolute;
    top: auto;
    bottom: 0px;
    left: 50%;
    width: 500px;
    height: auto;
    padding: 40px 40px 40px 40px;
    border-radius: 0 50px 50px 0;
    z-index: 1;
    border-radius: 40px 40px 0 0;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 100%);
  }
  .menu.active .menu-panel {
    transform: translate(-50%, 0%);
  }
  .sitename {
    display: none;
  }
  .steps-row {
    width: 86%;
    margin: 60px auto 0;
  }
  .informer {
    flex-direction: column;
  }
  .feedback {
    width: 100%;
    padding: 0 20px;
    border-radius: 0px 0px 60px 60px;
    padding-bottom: 160px;
  }
  .asq {
    width: 100%;
    padding: 20px 20px 40px;
    border-radius: 0px 0px 60px 60px;
    position: relative;
  }
  .asq .btn-main {
    margin-top: 20px;
    float: right;
    padding: 15px 40px;
  }
  .asq-container {
    margin-left: 0;
    margin-top: 40px;
  }
  .feedback-scroll-wrapper {
    width: 100%;
  }
  .informer-btn {
    width: 70%;
    height: 80px;
    border-radius: 200px;
  }
  .steps-slider-slide {
    background: linear-gradient(90deg, transparent, white, transparent);
    padding: 20px 60px;
  }
  .feedback-blocks {
    height: 580px;
  }
}
@media screen and (max-width: 1080px) {
  :root {
    --margin-big: 40px;
    --text-main: 16px;
    --text-main2: 15px;
    --text-small: 14px;
    --text-mini: 12px;
    --text-titleMain: 32px;
    --text-titleBig: 28px;
    --text-titleMedium: 18px;
    --text-titleSmall: 14px;
  }
  .mainhero-img {
    display: none;
  }
  .mainhero {
    margin: 40px 0;
  }
  .mainhero-info {
    max-width: 100%;
  }
  .mainhero-info-desc {
    max-width: 100%;
  }
  .preim {
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
  }
  .preim img {
    display: none;
  }
  .preim-item {
    border-radius: 10px 20px 10px 20px;
    padding: 15px 15px;
    flex: 1 1 auto;
  }
  .preim-item::after {
    content: "";
    border-radius: 15px 25px 15px 25px;
  }
  .keys {
    border-radius: 0 0 40px 40px;
  }
  .keys-container {
    margin-top: 40px;
    gap: 20px;
  }
  .keys-item {
    width: 360px;
  }
  .keys-desktop {
    height: 220px;
  }
  .keys-desktop-in {
    width: calc(100% - 122px);
    height: 170px;
    left: 60px;
  }
  .keys-mobile {
    width: 83px;
    height: 170px;
    border-radius: 10px;
    left: 0px;
  }
  .keys-panel {
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    padding: 20px;
    border-radius: 20px;
    top: -10px;
    left: -10px;
    box-shadow: 0 0 0px 5px #c9eaff, 0 0 0px 0px #c9eaff;
  }
  .keys-panel-btn {
    margin-top: 20px;
    position: absolute;
    bottom: 40px;
    left: 20px;
  }
  .keys-lenght {
    bottom: 80px;
  }
  .services-item::after {
    bottom: -60px;
    right: -50px;
    width: 200px;
    height: 200px;
  }
  .services-content {
    width: 100%;
  }
  .services-blocks {
    flex-wrap: wrap;
  }
  .services-block {
    max-width: none;
    width: 60%;
  }
  .services-block:first-child {
    width: 100%;
    max-width: 100%;
  }
  .services-block-info {
    margin-top: 10px;
  }
  .services-block.small {
    max-width: auto;
    width: calc(40% - 20px);
  }
  .stek-container {
    padding-bottom: 40px;
    margin-top: 20px;
  }
  .stek-dline {
    display: none;
  }
  .footer {
    border-radius: 0px;
  }
  .footer-container {
    border-radius: 0px;
    flex-wrap: wrap;
    gap: 0;
  }
  .footer-right {
    max-width: 100%;
    padding: 0px 20px;
    width: 100%;
    justify-content: center;
    border-radius: 0;
  }
  .footer-label {
    display: none;
  }
  .footer-contacts-item:nth-child(2) {
    left: 0px;
    min-width: none;
  }
  .footer-contacts-item:last-child {
    left: 0px;
    min-width: auto;
  }
  .footer-nav {
    width: 100%;
  }
  .footer-totop {
    top: -32px;
    width: 100px;
    height: 32px;
  }
  .asq .btn-main {
    margin-top: 40px;
    padding: 15px 40px;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    float: none;
  }
  .asq {
    padding: 20px 20px 20px;
    border-radius: 0px 0px 40px 40px;
  }
  .about .wrap {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
  }
  .about-photo {
    position: relative;
    margin: 0px 0;
    width: 240px;
    height: 240px;
  }
  .about-photo img {
    width: 100%;
  }
  .about-photo .about-photo-text {
    padding: 6px;
    width: 160px;
    bottom: 40px;
  }
  .about-photo::before {
    left: 10px;
    top: 10px;
  }
  .about-container .btn-main {
    padding: 15px 40px;
    float: right;
    margin-top: 20px;
    float: none;
    display: flex;
    margin-top: 20px;
  }
  .about-info {
    text-align: justify;
  }
  .about-queat {
    border-radius: 20px;
    margin-left: 0;
    margin-top: 0;
    position: relative;
  }
  .about-queat span {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .about-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-title {
    text-align: center;
    order: 2;
    margin: 40px 0 20px;
  }
  .about-queat {
    order: 1;
  }
  .about-info {
    order: 3;
  }
  .btn-main {
    order: 4;
  }
  .asq .btn-main {
    padding: 15px 40px;
    margin: 10px auto;
    margin-top: 40px;
  }
  .feedback-item:first-child {
    margin-top: 0px;
  }
  .informer-btn span {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
  }
}
@media screen and (max-width: 780px) {
  :root {
    --margin-big: 40px;
    --text-main: 15px;
    --text-main2: 15px;
    --text-small: 13px;
    --text-mini: 12px;
    --text-titleMain: 28px;
    --text-titleBig: 26px;
    --text-titleMedium: 21px;
    --text-titleSmall: 14px;
  }
  .navigation {
    display: none;
  }
  .menu {
    display: flex;
    max-height: 64px !important;
  }
  .header {
    padding-top: 10px;
  }
  .menu-container {
    height: 64px;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
  }
  .menu-social {
    width: 200px;
  }
  .menu-social-item {
    width: 46px;
    height: 46px;
    margin: 4px;
  }
  .menu-social-item svg {
    width: 18px;
  }
  .menu-top {
    width: 200px;
  }
  .menu-logo {
    padding: 10px 20px;
    border-radius: 40px 40px 40px 0;
    width: 120px;
  }
  .menu-logo svg {
    width: 46px;
    height: 46px;
  }
  .menu-game {
    width: 46px;
    height: 46px;
    border-radius: 50px;
    margin-left: 5px;
  }
  .menu-game svg {
    width: 21px;
  }
  .homepage {
    height: calc(100dvh - 76px);
  }
  .homepage .wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mainhero {
    margin: 0 auto;
    padding-top: 20px;
  }
  .preim {
    margin-top: 20px;
  }
  .mainhero-info-title {
    margin: 40px 0;
  }
  .mainhero-info-decor {
    width: 20px;
    height: 20px;
  }
  .services-item {
    width: 100%;
  }
  .keys-lenght {
    left: 50%;
  }
  .keys-item {
    width: 420px;
  }
  .keys-desktop {
    height: 230px;
  }
  .keys-desktop-in {
    width: calc(100% - 142px);
    height: 180px;
    left: 70px;
  }
  .keys-mobile {
    width: 86px;
    height: 177px;
    left: 0px;
  }
  .keys-mobile-in {
    width: calc(100% - 8px);
    height: 200px;
    left: 4px;
    top: 9px;
  }
  .about-top {
    border-radius: 0 0 40px 40px;
    height: 40px;
  }
  .about-bottom {
    width: 100%;
    height: 40px;
    border-radius: 40px 40px 0 0;
  }
  .steps-row img {
    display: none;
  }
  .steps-item {
    margin: 0 auto;
    width: 70px;
    height: 80px;
  }
  .steps-item.active {
    display: flex;
    width: 80px;
    height: 91px;
    background-size: cover;
  }
  .steps-item.one {
    top: 0;
    bottom: 0;
  }
  .steps-item.two {
    top: 0;
    bottom: 0;
  }
  .steps-item.tree {
    top: 0;
    bottom: 0;
  }
  .steps-item.four {
    top: 0;
    bottom: 0;
  }
  .steps-item.five {
    top: 0;
    bottom: 0;
  }
  .steps-name {
    top: 110px;
    width: auto;
    font-size: 12px;
  }
  .steps::after {
    width: 110px;
    height: 110px;
    left: -80px;
    border: 10px solid white;
    top: 64%;
  }
  .steps::before {
    width: 110px;
    height: 110px;
    right: -80px;
    border: 10px solid white;
    top: 64%;
  }
  .steps-block {
    top: -40px;
    height: 100px;
    width: 100%;
    align-items: center;
  }
  .steps-slider-btn {
    position: absolute;
    z-index: 5;
    top: 64%;
    transform: translate(0%, -50%) scale(1) rotate(-90deg);
  }
  .steps-slider-btn:hover {
    transform: translate(0%, -50%) scale(1.2) rotate(-90deg);
  }
  .steps-slider-btn.top {
    left: -8px;
  }
  .steps-slider-btn.bottom {
    right: -8px;
  }
  .steps-slider-btn.inactive {
    transform: translate(0%, -50%) scale(1) rotate(-90deg);
  }
  .steps-slider {
    margin-top: 200px;
  }
  .section-title span {
    width: 100%;
  }
  .steps-row {
    width: 100%;
  }
  .steps-slider-slide {
    padding: 15px 40px;
  }
  .mainhero-info-desc {
    max-width: 100%;
    font-size: 16px;
    font-weight: 500;
  }
  .keys .btn-decor {
    font-size: 15px;
    width: 80%;
  }
  .keys-lenght span {
    padding: 16px;
    font-size: 15px;
  }
  .services-block {
    width: 100%;
  }
  .services-block.small {
    max-width: none;
    width: 100%;
    padding: 40px;
  }
  .services-price span {
    font-size: 18px;
  }
  .services-price svg {
    width: 18px;
    height: 18px;
  }
  .btn-read {
    font-size: 15px;
  }
  .footer-nav-block:first-child {
    margin-left: 20px;
  }
  .service-block-header {
    justify-content: space-between;
    width: 100%;
  }
  .footer-contacts-item {
    padding: 10px 10px;
  }
  .stek-item {
    width: 110px;
    height: 110px;
    border-radius: 20px;
  }
  .stek-item .stek-item-img {
    width: 110px;
    height: 110px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 680px) {
  .footer-nav {
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-nav-block {
    padding: 10px;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #1e282d;
  }
  .footer-nav-block span {
    padding: 10px 20px;
    border-radius: 20px;
  }
  .footer-nav-block:first-child {
    margin-left: 0;
  }
  .footer-nav-link {
    margin: 10px 0;
  }
  .footer-nav-link::after {
    display: none;
  }
  .footer-nav {
    gap: 5px;
    width: 100%;
  }
  .footer-contacts {
    gap: 10px;
    padding: 10px 0;
    justify-content: center;
  }
  .stek-item-img img {
    transform: rotate(-45deg);
    height: auto;
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --margin-big: 40px;
    --text-main: 15px;
    --text-main2: 15px;
    --text-small: 13px;
    --text-mini: 12px;
    --text-titleMain: 28px;
    --text-titleBig: 26px;
    --text-titleMedium: 18px;
    --text-titleSmall: 14px;
  }
  .mainhero-info-slog {
    padding: 10px 20px;
    display: block;
    border-radius: 20px;
  }
  .mainhero-info-title {
    margin: 20px 0;
    font-size: 21px;
  }
  .mainhero-info-tags {
    margin-top: 20px;
  }
  .preim-item {
    padding: 10px 15px;
  }
  .mainhero-info-desc {
    font-size: 15px;
  }
  .mainhero-info-tag {
    left: 35px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .mainhero-info-btn {
    padding: 15px 40px;
    font-weight: 500;
  }
  .keys-item {
    width: 300px;
  }
  .keys-desktop {
    height: 170px;
  }
  .keys-desktop-in {
    width: calc(100% - 122px);
    height: 135px;
    left: 70px;
    top: 12px;
  }
  .keys-mobile {
    width: 66px;
    height: 135px;
    left: 0px;
  }
  .keys-desktop-in {
    width: calc(100% - 101px);
    height: 135px;
    left: 50px;
    top: 12px;
  }
  .keys-lenght span {
    padding: 14px;
    font-size: 14px;
  }
  .footer-nav-link {
    font-size: 14px;
  }
  .menu-top {
    width: 130px;
  }
  .menu-social {
    width: 120px;
  }
  .menu-social-item {
    width: 36px;
    height: 36px;
    margin: 2px;
  }
  .menu-social-item svg {
    width: 16px;
  }
  .menu-game {
    display: none;
  }
  .menu-btn {
    height: 50px;
    width: 50px;
    padding: 10px;
  }
  .menu-btn.active {
    padding: 10px;
  }
  .menu-container {
    align-items: center;
  }
  .steps-item {
    width: 60px;
    height: 70px;
  }
  .steps-item.active {
    width: 70px;
    height: 80px;
  }
  .menu-panel {
    left: 50%;
    width: 102%;
    padding: 20px 40px 40px 40px;
  }
}