/* Стили для мобильного меню */
.mobile-menu {
  position: fixed;
  width: 100%;
  max-width: 100%; /* Изменено с 390px на 100% */
  height: 100vh;
  top: 0;
  left: 0;
  background: #FFFFFF;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.mobile-menu-header {
  display: flex; 
  justify-content: space-between; /* Возвращаем, т.к. снова 2 элемента */
  align-items: center;
  padding: 20px 15px;
  width: 100%;
  height: 80px; 
  flex-shrink: 0;
  position: relative; /* Для позиционирования дочерних absolute */
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center; /* Изменено с flex-start на center */
  padding: 20px 15px;
  gap: 32px;
  width: 100%;
  flex: 1;
  overflow-y: auto;
}

.menu-item {
  width: 100%;
  font-family: "Hezaedrus-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #001B4A;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
  margin-bottom: 0;
}

.menu-item:hover {
  color: #6B5BF8;
}

.menu-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 8px;
  width: 100%;
  max-width: 180px;
}

.menu-label {
  width: 100%;
  font-family: "Hezaedrus-Regular", Helvetica;
  font-weight: 400;
  font-size: 14px;
  line-height: 132%;
  color: rgba(0, 27, 74, 0.6);
}

.menu-value {
  width: 100%;
  font-family: "Hezaedrus-Regular", Helvetica;
  font-weight: 400;
  font-size: 16px;
  line-height: 132%;
  color: #001B4A;
  transition: color 0.3s ease;
  text-decoration: none;
  display: block;
}

.menu-value:hover {
  color: #6B5BF8;
  cursor: pointer;
}

.menu-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  gap: 12px;
  width: 100%;
}

.menu-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  gap: 32px;
  width: 100%;
  height: 60px;
}

.social-icon {
  position: relative;
  width: 60px;
  height: 60px;
  background: #F7F7FF;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(107, 91, 248, 0.2);
}

.social-icon:active {
  transform: translateY(0);
}

.social-icon img,
.social-icon div {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 18px;
  top: 18px;
  transition: all 0.3s ease;
}

.social-icon:hover img,
.social-icon:hover div {
  transform: scale(1.1);
}

.mingcute-telegram,
.mingcute-whatsapp {
  background-color: #CBCBFF;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.3s ease;
}

.social-icon:hover .mingcute-telegram,
.social-icon:hover .mingcute-whatsapp {
  background-color: #6B5BF8;
}

.mingcute-telegram {
  mask-image: url(https://c.animaapp.com/pUstXqrR/img/group-25@2x.png);
}

.mingcute-whatsapp {
  mask-image: url(https://c.animaapp.com/pUstXqrR/img/group-26@2x.png);
}

.mobile-menu-button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 12px;
  gap: 24px;
  width: calc(100% - 30px);
  max-width: 360px;
  height: 59px;
  position: relative;
  margin: 40px auto;
  border: 2px solid #6B5BF8;
  filter: drop-shadow(2px 4px 120px rgba(11, 64, 156, 0.2));
  border-radius: 60px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  flex-shrink: 0;
  text-decoration: none;
}

.mobile-menu-button:hover {
  background-color: #6B5BF8;
  box-shadow: 0 6px 15px rgba(107, 91, 248, 0.4);
  transform: translateY(-2px);
}

.mobile-menu-button:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(107, 91, 248, 0.3);
}

.mobile-menu-button span {
  font-family: "Golos-TextMedium", Helvetica;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.01em;
  color: #6B5BF8;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}

.mobile-menu-button:hover span {
  color: #FFFFFF;
}

.button-icon {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 12px;
  top: calc(50% - 16px);
  transition: transform 0.3s ease;
}

.mobile-menu-button:hover .button-icon {
  transform: translateX(3px);
}

.button-icon-circle {
  position: absolute;
  width: 32px;
  height: 32px;
  background: #6B5BF8;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.mobile-menu-button:hover .button-icon-circle {
  background: #FFFFFF;
}

.button-icon-arrow {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 4px;
  transform: rotate(45deg);
  transition: filter 0.3s ease;
}

.mobile-menu-button:hover .button-icon-arrow {
  filter: invert(39%) sepia(93%) saturate(1362%) hue-rotate(229deg) brightness(95%) contrast(93%);
}

/* Делаем бургер кнопку интерактивной */
.element .div-2 {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.element .div-2:hover {
  transform: scale(1.05);
}

.element .div-2:active {
  transform: scale(0.95);
}

.element .overlap-group {
  position: relative;
  width: 36px;
  height: 36px;
  top: 2px;
  left: 2px;
  border-radius: 18px;
  border: 2px solid;
  border-color: #6B5BF8;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.element .div-2:hover .overlap-group {
  border-color: #5348dd;
  background-color: rgba(107, 91, 248, 0.05);
}

.element .line, 
.element .line-2, 
.element .line-3 {
  position: absolute;
  width: 19px;
  height: 2px;
  left: 7px;
  background-color: #6B5BF8;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, top 0.3s ease;
}

.element .line {
  top: 10px;
}

.element .line-2 {
  top: 15px;
}

.element .line-3 {
  top: 20px;
}

.element .div-2:hover .line,
.element .div-2:hover .line-2,
.element .div-2:hover .line-3 {
  background-color: #5348dd;
}

/* Анимация бургер-кнопки в крестик */
.element .div-2.active .line {
  top: 15px;
  transform: rotate(45deg);
}

.element .div-2.active .line-2 {
  opacity: 0;
}

.element .div-2.active .line-3 {
  top: 15px;
  transform: rotate(-45deg);
}

/* Стили для форм */
.input-field {
  width: 100%;
  height: 59px;
  border-radius: 60px;
  border: 2px solid rgba(0, 27, 74, 0.4);
  padding: 0 24px;
  font-family: "Golos-TextMedium", Helvetica;
  font-size: 16px;
  color: #001B4A;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: #FFFFFF;
}

.input-field:focus {
  outline: none;
  border-color: #6B5BF8;
  box-shadow: 0 0 0 3px rgba(107, 91, 248, 0.2);
}

.input-field::placeholder {
  color: rgba(0, 27, 74, 0.4);
}

/* Кнопки для форм */
.button {
  transition: all 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(107, 91, 248, 0.3);
}

.button:active {
  transform: translateY(0);
  box-shadow: 0 4px 8px rgba(107, 91, 248, 0.3);
}

.element.element-wrapper {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
  
  .element .div {
    background-color: #ffffff;
    overflow: hidden;
    width: 390px;
    height: 8201px;
    position: relative;
  }
  
  .element .header {
    display: flex;
    width: 100%; 
    align-items: center;
    justify-content: space-between; 
    padding: 20px 15px;
    position: absolute; /* или relative/static */
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 10; 
  }
  
  .element .header .logo {
    position: absolute; 
    top: 36px;      
    left: 21px;     /* Было 25px, уменьшено на 4px */
    width: 162px; 
    height: auto; 
    /* z-index и fixed убраны */
  }
  
  .element .header .logo .group {
    position: absolute;
    width: 27px;
    height: 19px;
    top: 4px;
    left: 0;
  }
  
  .element .header .logo .img {
    position: absolute;
    width: 122px;
    height: 19px;
    top: 0;
    left: 38px;
  }
  
  .element .header .logo .logo-subtitle {
    position: absolute;
    top: 22px;
    left: 38px;
    font-family: "Golos-TextRegular", Helvetica;
    font-style: normal;
    font-weight: 400;
    font-size: 7px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: rgba(16, 49, 107, 0.7);
    white-space: nowrap;
  }
  
  .element .div-2 {
    position: absolute; 
    top: 30px;    
    right: 29px;  /* Было 25px, увеличено на 4px для сдвига влево */
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease; 
  }
  
  .element .overlap-group {
    position: relative;
    width: 36px;
    height: 36px;
    top: 2px;
    left: 2px;
    border-radius: 18px;
    border: 2px solid #6B5BF8;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  
  .element .div-2:hover .overlap-group {
    border-color: #5348dd;
    background-color: rgba(107, 91, 248, 0.05);
  }
  
  .element .line,
  .element .line-2,
  .element .line-3 {
    position: absolute;
    width: 19px;
    height: 2px;
    left: 7px;
    background-color: #6B5BF8;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, top 0.3s ease;
  }
  .element .line { top: 10px; }
  .element .line-2 { top: 15px; }
  .element .line-3 { top: 20px; }
  
  .element .div-2:hover .line,
  .element .div-2:hover .line-2,
  .element .div-2:hover .line-3 {
    background-color: #5348dd;
  }
  
  .element .content {
    display: flex;
    flex-direction: column;
    width: 390px;
    align-items: flex-start;
    gap: 120px;
    position: absolute;
    top: 112px;
    left: 0;
  }
  
  .element .block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .block-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding: 0px 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .div-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .title {
    position: relative;
    width: 375px;
    height: 192px;
    margin-right: -15.00px;
  }
  
  .element .p {
    position: absolute;
    width: 360px;
    top: -1px;
    left: 0;
    color: transparent;
    font-size: 44px;
    letter-spacing: 0.44px;
    line-height: 44px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
  }
  
  .element .text-wrapper {
    color: #001b49;
    letter-spacing: 0.19px;
  }
  
  .element .span {
    color: #6b5bf8;
    letter-spacing: 0.19px;
  }
  
  .element .text-wrapper-2 {
    color: #0b409c;
    letter-spacing: 0.19px;
  }
  
  .element .text-wrapper-3 {
    color: #f5bd50;
    letter-spacing: 0.19px;
  }
  
  .element .vector {
    position: absolute;
    width: 204px;
    height: 12px;
    top: 181px;
    left: 94px;
  }
  
  .element .text-wrapper-4 {
    position: relative;
    align-self: stretch;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b4acc;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .block-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .button {
    box-sizing: border-box;
    background-color: #6b5bf8;
    box-shadow: var(--drop-shadow);
    display: flex;
    height: 59px;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    padding: 20px 12px 20px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    border-radius: 60px;
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .element .icon {
    position: relative;
    width: 32px;
    height: 32px;
    margin-top: -6.50px;
    margin-bottom: -6.50px;
    background-color: #6b5bf8;
  }
  
  .element .overlap-group-2 {
    position: relative;
    width: 34px;
    height: 34px;
    top: -1px;
    left: -1px;
  }
  
  .element .ellipse {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 1px;
    left: 1px;
    background-color: #ffffff;
    border-radius: 16px;
  }
  
  .element .solar-arrow-up {
    position: absolute;
    width: 34px;
    height: 34px;
    top: 0;
    left: 0;
  }
  
  .element .text-wrapper-5 {
    left: 101px;
    position: absolute;
    top: 18px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: normal;
    white-space: nowrap;
  }
  
  .element .text-wrapper-6 {
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b4acc;
    letter-spacing: 0;
    line-height: 29.1px;
    position: relative;
    width: fit-content;
    font-size: 16px;
    white-space: nowrap;
  }
  
  .element .overlap-wrapper {
    position: relative;
    width: 360px;
    height: 372.98px;
  }
  
  .element .overlap {
    position: relative;
    height: 373px;
  }
  
  .element .overlap-group-wrapper {
    position: absolute;
    width: 360px;
    height: 373px;
    top: 0;
    left: 0;
  }
  
  .element .frame {
    position: absolute;
    width: 360px;
    height: 360px;
    top: 13px;
    left: 0;
    background-color: #ffe39e;
    border-radius: 213.86px;
    overflow: hidden;
  }
  
  .element .overlap-group-3 {
    position: relative;
    height: 360px;
  }
  
  .element .vector-2 {
    position: absolute;
    width: 360px;
    height: 244px;
    top: 46px;
    left: 0;
  }
  
  .element .img-2 {
    width: 316px;
    height: 360px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 15px;
  }
  
  .element .img-3 {
    width: 317px;
    height: 270px;
    position: absolute;
    top: 0;
    left: 15px;
  }
  
  .element .mingcute-game-fill-wrapper {
    position: absolute;
    width: 54px;
    height: 54px;
    top: 91px;
    left: 0;
    background-color: #ffffff;
    border-radius: 27.21px;
    box-shadow: 0.98px 1.96px 30px #0b409c1a;
  }
  
  .element .mingcute-game-fill {
    position: relative;
    width: 20px;
    height: 20px;
    top: 17px;
    left: 17px;
    overflow: hidden;
    transform: rotate(-5.65deg);
  }
  
  .element .group-2 {
    position: absolute;
    width: 22px;
    height: 22px;
    top: -1px;
    left: -1px;
    transform: rotate(5.65deg);
  }
  
  .element .bi-youtube-wrapper {
    position: absolute;
    width: 79px;
    height: 79px;
    top: 5px;
    left: 27px;
    background-color: #ffffff;
    border-radius: 39.56px;
    box-shadow: 1.43px 2.85px 30px #0b409c1a;
  }
  
  .element .bi-youtube {
    position: absolute;
    width: 38px;
    height: 38px;
    top: 20px;
    left: 21px;
  }
  
  .element .block-4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0px 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-7 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 32px;
    text-align: center;
    letter-spacing: 0.32px;
    line-height: 35.2px;
  }
  
  .element .block-5 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 364px;
    background-color: #3151c2;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .img-wrapper {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 15px;
    left: 26px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/vector-5.svg);
    background-size: 100% 100%;
  }
  
  .element .img-4 {
    position: absolute;
    width: 44px;
    height: 44px;
    top: 28px;
    left: 28px;
  }
  
  .element .text {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: absolute;
    top: 162px;
    left: 32px;
  }
  
  .element .text-wrapper-8 {
    position: relative;
    width: 239px;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 28.8px;
  }
  
  .element .text-wrapper-9 {
    position: relative;
    width: 185px;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff99;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .div-wrapper {
    position: absolute;
    width: 186px;
    height: 176px;
    top: -75px;
    left: 243px;
  }
  
  .element .overlap-group-4 {
    position: relative;
    width: 117px;
    height: 101px;
    top: 75px;
  }
  
  .element .group-3 {
    position: absolute;
    width: 46px;
    height: 35px;
    top: 0;
    left: 70px;
  }
  
  .element .group-4 {
    position: absolute;
    width: 65px;
    height: 52px;
    top: 0;
    left: 52px;
  }
  
  .element .group-5 {
    position: absolute;
    width: 82px;
    height: 68px;
    top: 0;
    left: 35px;
  }
  
  .element .group-6 {
    position: absolute;
    width: 99px;
    height: 85px;
    top: 0;
    left: 18px;
  }
  
  .element .group-7 {
    position: absolute;
    width: 117px;
    height: 101px;
    top: 0;
    left: 0;
  }
  
  .element .block-6 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 364px;
    background-color: #6b5bf8;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .text-wrapper-10 {
    position: relative;
    width: 223px;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 28.8px;
  }
  
  .element .text-wrapper-11 {
    position: relative;
    width: 221px;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #ffffffb2;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .group-8 {
    position: absolute;
    width: 188px;
    height: 171px;
    top: -31px;
    left: 236px;
    transform: rotate(-7.72deg);
  }
  
  .element .overlap-2 {
    position: absolute;
    width: 121px;
    height: 171px;
    top: 0;
    left: 66px;
  }
  
  .element .group-wrapper {
    position: absolute;
    width: 48px;
    height: 84px;
    top: 0;
    left: 1px;
    transform: rotate(1.18deg);
  }
  
  .element .group-9 {
    position: absolute;
    width: 69px;
    height: 56px;
    top: 29px;
    left: -12px;
    transform: rotate(6.54deg);
  }
  
  .element .overlap-group-5 {
    position: absolute;
    width: 88px;
    height: 139px;
    top: 32px;
    left: 33px;
  }
  
  .element .group-10 {
    position: absolute;
    width: 39px;
    height: 70px;
    top: 69px;
    left: 1px;
    transform: rotate(1.18deg);
  }
  
  .element .group-11 {
    position: absolute;
    width: 22px;
    height: 71px;
    top: -3px;
    left: -9px;
    transform: rotate(6.54deg);
  }
  
  .element .group-12 {
    position: absolute;
    width: 54px;
    height: 85px;
    top: 1px;
    left: 33px;
    transform: rotate(1.20deg);
  }
  
  .element .group-13 {
    position: absolute;
    width: 5px;
    height: 79px;
    top: 3px;
    left: -11px;
    transform: rotate(6.52deg);
  }
  
  .element .group-14 {
    position: absolute;
    width: 47px;
    height: 89px;
    top: 53px;
    left: 2px;
    transform: rotate(1.17deg);
  }
  
  .element .group-15 {
    position: absolute;
    width: 69px;
    height: 90px;
    top: -1px;
    left: -11px;
    transform: rotate(6.56deg);
  }
  
  .element .block-7 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 364px;
    background-color: #e6e51e;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .text-wrapper-12 {
    position: relative;
    width: 195px;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 28.8px;
  }
  
  .element .text-wrapper-13 {
    position: relative;
    width: 239px;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b4999;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .solar-settings-bold-wrapper {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 15px;
    left: 27px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/vector-5.svg);
    background-size: 100% 100%;
  }
  
  .element .solar-settings-bold {
    position: absolute;
    width: 44px;
    height: 44px;
    top: 28px;
    left: 27px;
  }
  
  .element .group-16 {
    position: absolute;
    width: 130px;
    height: 123px;
    top: 31px;
    left: 271px;
  }
  
  .element .group-17 {
    position: absolute;
    width: 89px;
    height: 10px;
    top: 0;
    left: 0;
  }
  
  .element .group-18 {
    position: absolute;
    width: 89px;
    height: 10px;
    top: 19px;
    left: 0;
  }
  
  .element .group-19 {
    position: absolute;
    width: 89px;
    height: 10px;
    top: 38px;
    left: 0;
  }
  
  .element .group-20 {
    position: absolute;
    width: 89px;
    height: 10px;
    top: 56px;
    left: 0;
  }
  
  .element .group-21 {
    position: absolute;
    width: 89px;
    height: 10px;
    top: 75px;
    left: 0;
  }
  
  .element .group-22 {
    position: absolute;
    width: 89px;
    height: 10px;
    top: 94px;
    left: 0;
  }
  
  .element .group-23 {
    position: absolute;
    width: 89px;
    height: 10px;
    top: 113px;
    left: 0;
  }
  
  .element .block-8 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 364px;
    background-color: #f5bd50;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .vector-3 {
    position: absolute;
    width: 125px;
    height: 125px;
    top: 0;
    left: 235px;
  }
  
  .element .block-9 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    padding: 0px 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .div-4 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: transparent;
    font-size: 32px;
    letter-spacing: 0.32px;
    line-height: 35.2px;
  }
  
  .element .text-wrapper-14 {
    color: #001b49;
    letter-spacing: 0.10px;
  }
  
  .element .text-wrapper-15 {
    color: #6b5bf8;
    letter-spacing: 0.10px;
  }
  
  .element .image-2 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 338.75px;
  }
  
  .element .frame-2 {
    position: absolute;
    width: 174px;
    height: 146px;
    top: 175px;
    left: 186px;
    background-color: #f5bd501f;
  }
  
  .element .overlap-group-6 {
    position: relative;
    width: 132px;
    height: 118px;
    top: 14px;
    left: 28px;
  }
  
  .element .youtube-logo {
    position: absolute;
    width: 118px;
    height: 118px;
    top: 0;
    left: 0;
    object-fit: cover;
  }
  
  .element .ph-timer-fill {
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 110px;
  }
  
  .element .rectangle {
    position: absolute;
    width: 174px;
    height: 339px;
    top: 0;
    left: 0;
  }
  
  .element .frame-3 {
    position: absolute;
    width: 174px;
    height: 155px;
    top: 8px;
    left: 186px;
  }
  
  .element .overlap-3 {
    position: relative;
    height: 146px;
    top: 9px;
    background-color: #6b5bf81f;
    border-radius: 0px 23.61px 23.61px 0px;
  }
  
  .element .chat {
    position: absolute;
    width: 113px;
    height: 112px;
    top: 17px;
    left: 30px;
  }
  
  .element .ph-timer-fill-2 {
    position: absolute;
    width: 22px;
    height: 22px;
    top: 14px;
    left: 138px;
  }
  
  .element .block-10 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .div-5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    border-radius: 32px;
  }
  
  .element .icon-2 {
    display: flex;
    flex-direction: column;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    gap: 7.14px;
    padding: 17.86px 22.86px;
    position: relative;
    background-color: #3151c214;
    border-radius: 14.29px;
    overflow: hidden;
  }
  
  .element .text-wrapper-16 {
    position: relative;
    width: fit-content;
    margin-top: -0.57px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b4980;
    font-size: 20px;
    letter-spacing: 0;
    line-height: 24.0px;
    white-space: nowrap;
  }
  
  .element .div-6 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-17 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    color: #001b49;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 28.8px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
  }
  
  .element .text-wrapper-18 {
    position: relative;
    align-self: stretch;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b49b2;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .text-wrapper-19 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 28.8px;
    white-space: nowrap;
  }
  
  .element .block-11 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding: 0px 20px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .text-2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-20 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 32px;
    letter-spacing: 0.32px;
    line-height: 39.0px;
  }
  
  .element .image-3 {
    position: relative;
    width: 343.96px;
    height: 256px;
    background-color: #fffcf4;
    border-radius: 22.56px;
    overflow: hidden;
  }
  
  .element .overlap-4 {
    position: relative;
    width: 344px;
    height: 365px;
  }
  
  .element .vector-4 {
    position: absolute;
    width: 344px;
    height: 256px;
    top: 0;
    left: 0;
  }
  
  .element .iphone-pro {
    position: absolute;
    width: 167px;
    height: 338px;
    top: 27px;
    left: 89px;
  }
  
  .element .iphone-pro-front {
    height: 338px;
  }
  
  .element .overlap-group-7 {
    position: relative;
    width: 167px;
    height: 330px;
  }
  
  .element .blue {
    position: absolute;
    width: 167px;
    height: 229px;
    top: 0;
    left: 0;
  }
  
  .element .mockup {
    position: absolute;
    width: 149px;
    height: 322px;
    top: 8px;
    left: 9px;
  }
  
  .element .mask-group {
    position: absolute;
    width: 149px;
    height: 221px;
    top: 0;
    left: 0;
  }
  
  .element .block-12 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 877px;
    background-color: #5952fe;
  }
  
  .element .block-13 {
    display: flex;
    flex-direction: column;
    width: 360px;
    align-items: flex-start;
    gap: 60px;
    position: absolute;
    top: 32px;
    left: 15px;
  }
  
  .element .text-3 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .div-7 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: transparent;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 39.0px;
  }
  
  .element .text-wrapper-21 {
    color: #f4f8ff;
  }
  
  .element .text-wrapper-22 {
    color: #ffd25d;
  }
  
  .element .text-wrapper-23 {
    position: relative;
    align-self: stretch;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 23.8px;
  }
  
  .element .button-2 {
    box-sizing: border-box;
    border: 2px solid;
    border-color: #ffffff;
    display: flex;
    height: 59px;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    padding: 20px 12px 20px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    border-radius: 60px;
    text-decoration: none;
  }
  
  .element .solar-arrow-up-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    margin-top: -6.50px;
    margin-bottom: -6.50px;
    background-color: #ffffff;
    border-radius: 16px;
  }
  
  .element .solar-arrow-up-2 {
    position: absolute;
    width: 34px;
    height: 34px;
    top: -1px;
    left: -1px;
  }
  
  .element .text-wrapper-24 {
    left: 104px;
    position: absolute;
    top: 18px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: normal;
    white-space: nowrap;
  }
  
  .element .image-4 {
    position: absolute;
    width: 360px;
    height: 351px;
    top: 480px;
    left: 15px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/vector-8.svg);
    background-size: 100% 100%;
  }
  
  .element .mask-group-wrapper {
    position: relative;
    height: 351px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/mask-group-1@2x.png);
    background-size: 100% 100%;
  }
  
  .element .mask-group-2 {
    position: absolute;
    width: 360px;
    height: 351px;
    top: 0;
    left: 0;
  }
  
  .element .block-14 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0px 15px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-25 {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 32px;
    text-align: center;
    letter-spacing: 0;
    line-height: 39.0px;
  }
  
  .element .block-15 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 331px;
    background-color: #6b5bf81a;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .frame-wrapper {
    width: 360px;
    height: 331px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/vector-9.svg);
    background-size: 100% 100%;
  }
  
  .element .frame-4 {
    display: flex;
    flex-direction: column;
    width: 320px;
    align-items: center;
    gap: 24px;
    position: relative;
    top: 32px;
    left: 20px;
  }
  
  .element .text-wrapper-26 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 39.0px;
    white-space: nowrap;
  }
  
  .element .frame-5 {
    display: flex;
    height: 60px;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffffff;
    border-radius: 440px;
  }
  
  .element .ph-seal-check-fill {
    position: relative;
    width: 28px;
    height: 28px;
  }
  
  .element .div-8 {
    position: relative;
    flex: 1;
    margin-top: -4.00px;
    margin-bottom: -2.00px;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b49;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .text-wrapper-27 {
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b49;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .text-wrapper-28 {
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
  }
  
  .element .text-wrapper-29 {
    position: relative;
    flex: 1;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b49;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .block-16 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 331px;
    background-color: #f5bd501a;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .overlap-5 {
    position: relative;
    width: 340px;
    height: 299px;
    left: 20px;
  }
  
  .element .vector-5 {
    position: absolute;
    width: 206px;
    height: 294px;
    top: 0;
    left: 134px;
  }
  
  .element .frame-6 {
    display: flex;
    flex-direction: column;
    width: 320px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: absolute;
    top: 32px;
    left: 0;
  }
  
  .element .block-17 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 331px;
    background-color: #e6e51e1a;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .overlap-6 {
    position: relative;
    width: 432px;
    height: 358px;
    top: -59px;
    left: 20px;
  }
  
  .element .group-24 {
    position: absolute;
    width: 287px;
    height: 273px;
    top: 0;
    left: 145px;
  }
  
  .element .overlap-group-8 {
    position: relative;
    width: 195px;
    height: 214px;
    top: 59px;
  }
  
  .element .group-25 {
    position: absolute;
    width: 72px;
    height: 68px;
    top: 43px;
    left: 108px;
  }
  
  .element .group-26 {
    position: absolute;
    width: 115px;
    height: 120px;
    top: 17px;
    left: 80px;
  }
  
  .element .group-27 {
    position: absolute;
    width: 141px;
    height: 163px;
    top: 0;
    left: 54px;
  }
  
  .element .group-28 {
    position: absolute;
    width: 168px;
    height: 188px;
    top: 0;
    left: 27px;
  }
  
  .element .group-29 {
    position: absolute;
    width: 195px;
    height: 214px;
    top: 0;
    left: 0;
  }
  
  .element .frame-7 {
    display: flex;
    flex-direction: column;
    width: 320px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: absolute;
    top: 91px;
    left: 0;
  }
  
  .element .block-18 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 621px;
    background-color: #ffffff;
  }
  
  .element .overlap-7 {
    position: relative;
    width: 390px;
    height: 611px;
    top: 32px;
  }
  
  .element .vector-6 {
    position: absolute;
    width: 185px;
    height: 409px;
    top: 202px;
    left: 205px;
  }
  
  .element .text-4 {
    display: flex;
    flex-direction: column;
    width: 390px;
    align-items: flex-start;
    gap: 32px;
    padding: 0px 15px;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .element .title-2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-30 {
    position: relative;
    width: fit-content;
    margin-top: -0.50px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #6b5bf8;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 39.0px;
    white-space: nowrap;
  }
  
  .element .group-30 {
    position: absolute;
    width: 34px;
    height: 38px;
    top: 1px;
    left: 3px;
  }
  
  .element .text-wrapper-31 {
    position: relative;
    align-self: stretch;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 39.0px;
  }
  
  .element .block-19 {
    display: flex;
    flex-direction: column;
    width: 390px;
    align-items: center;
    gap: 40px;
    padding: 0px 15px;
    position: absolute;
    top: 321px;
    left: 0;
  }
  
  .element .input {
    display: flex;
    height: 59px;
    align-items: center;
    gap: 24px;
    padding: 20px 12px 20px 24px;
    position: relative;
    align-self: stretch;
    width: 100%;
    background-color: #ffffff;
    border-radius: 60px;
    border: 2px solid;
    border-color: #001b4966;
  }
  
  .element .text-wrapper-32 {
    margin-top: -2.00px;
    font-family: "Golos-TextMedium", Helvetica;
    font-weight: 500;
    color: #001b4966;
    letter-spacing: 0.16px;
    line-height: normal;
    position: relative;
    width: fit-content;
    font-size: 16px;
    white-space: nowrap;
  }
  
  .element .text-wrapper-33 {
    position: absolute;
    top: 18px;
    left: 119px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: normal;
    white-space: nowrap;
  }
  
  .element .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: transparent;
  }
  
  .element .div-9 {
    position: relative;
    width: 208px;
    height: 38.58px;
  }
  
  .element .image-5 {
    position: absolute;
    width: 98px;
    height: 6px;
    top: 31px;
    left: 49px;
  }
  
  .element .group-31 {
    position: absolute;
    width: 34px;
    height: 24px;
    top: 5px;
    left: 0;
  }
  
  .element .group-32 {
    position: absolute;
    width: 157px;
    height: 25px;
    top: 0;
    left: 49px;
  }
  
  .element .social {
    display: inline-flex;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .frame-8 {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #f7f7ff;
    border-radius: 30px;
  }
  
  .element .basil-vk-solid {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 18px;
    left: 18px;
  }
  
  .element .mingcute-telegram {
    position: relative;
    width: 24px;
    height: 24px;
    top: 18px;
    left: 18px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/group-25@2x.png);
    background-size: 100% 100%;
  }
  
  .element .mingcute-whatsapp {
    position: relative;
    width: 24px;
    height: 24px;
    top: 18px;
    left: 18px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/group-26@2x.png);
    background-size: 100% 100%;
  }
  
  .element .text-wrapper-34 {
    position: relative;
    width: fit-content;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b494c;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
    white-space: nowrap;
  }
  
  .element.element-wrapper-2 {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
  }
  
  .element .frame-wrapper-2 {
    background-color: #ffffff;
    width: 1920px;
    height: 5214px;
  }
  
  .element .frame-9 {
    flex-direction: column;
    width: 1440px;
    align-items: center;
    gap: 120px;
    padding: 20px 0px 0px;
    left: 240px;
    display: flex;
    position: relative;
  }
  
  .element .header-2 {
    display: flex;
    width: 1240px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex: 0 0 auto;
    background-color: transparent;
  }
  
  .element .block-20 {
    display: inline-flex;
    align-items: center;
    gap: 64px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .menu {
    display: inline-flex;
    align-items: center;
    gap: 37px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-35 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Golos-TextRegular", Helvetica;
    font-weight: 400;
    color: #001b49;
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: normal;
    white-space: nowrap;
  }
  
  .element .button-3 {
    box-sizing: border-box;
    width: 295px;
    justify-content: center;
    padding: 20px 12px;
    border: 2px solid;
    border-color: #0b409c;
    box-shadow: var(--drop-shadow);
    display: flex;
    height: 59px;
    align-items: center;
    gap: 24px;
    position: relative;
    border-radius: 60px;
  }
  
  .element .text-wrapper-36 {
    position: relative;
    width: fit-content;
    margin-top: -2.00px;
    font-family: "Golos-TextMedium", Helvetica;
    font-weight: 500;
    color: #0b409c;
    font-size: 16px;
    letter-spacing: 0.16px;
    line-height: normal;
    white-space: nowrap;
  }
  
  .element .icon-3 {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 14px;
    left: 251px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/ellipse-2.svg);
    background-size: 100% 100%;
  }
  
  .element .block-21 {
    display: inline-flex;
    align-items: flex-start;
    gap: 35px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .block-22 {
    display: inline-flex;
    flex-direction: column;
    height: 538px;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .frame-10 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .title-3 {
    position: relative;
    width: 700px;
    height: 243px;
  }
  
  .element .div-10 {
    position: absolute;
    width: 932px;
    top: -1px;
    left: 0;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: transparent;
    font-size: 70px;
    letter-spacing: 0.70px;
    line-height: 70px;
  }
  
  .element .text-wrapper-37 {
    color: #001b49;
    letter-spacing: 0.49px;
  }
  
  .element .text-wrapper-38 {
    color: #6b5bf8;
    letter-spacing: 0.49px;
  }
  
  .element .text-wrapper-39 {
    color: #0b409c;
    letter-spacing: 0.49px;
  }
  
  .element .text-wrapper-40 {
    color: #f5bd50;
    letter-spacing: 0.49px;
  }
  
  .element .vector-7 {
    position: absolute;
    width: 323px;
    height: 19px;
    top: 218px;
    left: 27px;
  }
  
  .element .text-wrapper-41 {
    position: relative;
    width: 577px;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b4acc;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 23.8px;
  }
  
  .element .block-23 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .button-4 {
    box-sizing: border-box;
    width: 400px;
    justify-content: flex-end;
    padding: 20px 12px 20px 24px;
    background-color: #6b5bf8;
    box-shadow: var(--drop-shadow);
    display: flex;
    height: 59px;
    align-items: center;
    gap: 24px;
    position: relative;
    border-radius: 60px;
  }
  
  .element .text-wrapper-42 {
    top: 17px;
    left: 112px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-size: 18px;
    letter-spacing: 0.18px;
    position: absolute;
    font-weight: 500;
    color: #ffffff;
    line-height: normal;
    white-space: nowrap;
  }
  
  .element .image-6 {
    position: relative;
    width: 505px;
    height: 523.21px;
  }
  
  .element .overlap-8 {
    position: relative;
    height: 523px;
  }
  
  .element .image-7 {
    position: absolute;
    width: 505px;
    height: 523px;
    top: 0;
    left: 0;
  }
  
  .element .frame-11 {
    position: absolute;
    width: 505px;
    height: 505px;
    top: 18px;
    left: 0;
    background-color: #ffe39e;
    border-radius: 300px;
    overflow: hidden;
  }
  
  .element .overlap-group-9 {
    position: relative;
    height: 505px;
  }
  
  .element .vector-8 {
    position: absolute;
    width: 505px;
    height: 343px;
    top: 65px;
    left: 0;
  }
  
  .element .img-5 {
    position: absolute;
    width: 443px;
    height: 505px;
    top: 0;
    left: 21px;
    object-fit: cover;
  }
  
  .element .img-6 {
    position: absolute;
    width: 444px;
    height: 379px;
    top: 0;
    left: 21px;
  }
  
  .element .icon-4 {
    position: absolute;
    width: 76px;
    height: 76px;
    top: 127px;
    left: 0;
    background-color: #ffffff;
    border-radius: 38.17px;
    box-shadow: 1.38px 2.75px 32px #0b409c1a;
  }
  
  .element .mingcute-game-fill-2 {
    position: relative;
    width: 28px;
    height: 28px;
    top: 24px;
    left: 24px;
    overflow: hidden;
    transform: rotate(-5.65deg);
  }
  
  .element .group-33 {
    position: absolute;
    width: 31px;
    height: 31px;
    top: -1px;
    left: -1px;
    transform: rotate(5.65deg);
  }
  
  .element .icon-5 {
    position: absolute;
    width: 111px;
    height: 111px;
    top: 24px;
    left: 35px;
    background-color: #ffffff;
    border-radius: 55.5px;
    box-shadow: 2px 4px 32px #0b409c1a;
  }
  
  .element .bi-youtube-2 {
    position: absolute;
    width: 53px;
    height: 53px;
    top: 28px;
    left: 29px;
  }
  
  .element .block-24 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-43 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 50px;
    letter-spacing: 0.50px;
    line-height: 80.0px;
    white-space: nowrap;
  }
  
  .element .blocks {
    display: inline-flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .block-25 {
    position: relative;
    width: 295px;
    height: 364px;
    background-color: #3151c2;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .icon-6 {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 15px;
    left: 26px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/vector-17.svg);
    background-size: 100% 100%;
  }
  
  .element .group-34 {
    position: absolute;
    width: 186px;
    height: 176px;
    top: -75px;
    left: 178px;
  }
  
  .element .block-26 {
    position: relative;
    width: 295px;
    height: 364px;
    background-color: #6b5bf8;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .group-35 {
    position: absolute;
    width: 185px;
    height: 167px;
    top: -29px;
    left: 173px;
    transform: rotate(-9.40deg);
  }
  
  .element .overlap-9 {
    position: absolute;
    width: 121px;
    height: 167px;
    top: 0;
    left: 64px;
  }
  
  .element .group-36 {
    position: absolute;
    width: 49px;
    height: 80px;
    top: 0;
    left: 0;
    transform: rotate(0.33deg);
  }
  
  .element .group-37 {
    position: absolute;
    width: 63px;
    height: 56px;
    top: 27px;
    left: -10px;
    transform: rotate(9.07deg);
  }
  
  .element .overlap-group-10 {
    position: absolute;
    width: 85px;
    height: 133px;
    top: 34px;
    left: 36px;
  }
  
  .element .group-38 {
    position: absolute;
    width: 40px;
    height: 67px;
    top: 66px;
    left: 0;
    transform: rotate(0.33deg);
  }
  
  .element .group-39 {
    position: absolute;
    width: 19px;
    height: 71px;
    top: -5px;
    left: -6px;
    transform: rotate(9.07deg);
  }
  
  .element .group-40 {
    position: absolute;
    width: 55px;
    height: 81px;
    top: 0;
    left: 30px;
    transform: rotate(0.33deg);
  }
  
  .element .group-41 {
    position: absolute;
    width: 2px;
    height: 79px;
    top: -1px;
    left: -7px;
    transform: rotate(9.07deg);
  }
  
  .element .group-42 {
    position: absolute;
    width: 47px;
    height: 85px;
    top: 50px;
    left: 0;
    transform: rotate(0.32deg);
  }
  
  .element .group-43 {
    position: absolute;
    width: 62px;
    height: 90px;
    top: -3px;
    left: -8px;
    transform: rotate(9.07deg);
  }
  
  .element .block-27 {
    position: relative;
    width: 295px;
    height: 364px;
    background-color: #e6e51e;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .icon-7 {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 15px;
    left: 27px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/vector-17.svg);
    background-size: 100% 100%;
  }
  
  .element .group-44 {
    position: absolute;
    width: 130px;
    height: 123px;
    top: 31px;
    left: 206px;
  }
  
  .element .block-28 {
    position: relative;
    width: 295px;
    height: 364px;
    background-color: #f5bd50;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .vector-9 {
    position: absolute;
    width: 125px;
    height: 125px;
    top: 0;
    left: 170px;
  }
  
  .element .block-29 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 60px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .title-4 {
    position: relative;
    width: 1239px;
    height: 122px;
  }
  
  .element .div-11 {
    position: absolute;
    width: 891px;
    top: -1px;
    left: 0;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: transparent;
    font-size: 50px;
    letter-spacing: 0.50px;
    line-height: 61.0px;
  }
  
  .element .text-wrapper-44 {
    color: #001b49;
    letter-spacing: 0.25px;
  }
  
  .element .text-wrapper-45 {
    color: #6b5bf8;
    letter-spacing: 0.25px;
  }
  
  .element .block-30 {
    display: flex;
    width: 1240px;
    align-items: center;
    gap: 125px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .image-8 {
    position: relative;
    width: 610px;
    height: 574px;
  }
  
  .element .frame-12 {
    position: absolute;
    width: 295px;
    height: 247px;
    top: 296px;
    left: 315px;
    background-color: #f5bd501f;
  }
  
  .element .overlap-group-11 {
    position: relative;
    width: 224px;
    height: 200px;
    top: 24px;
    left: 47px;
  }
  
  .element .youtube-logo-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    object-fit: cover;
  }
  
  .element .ph-timer-fill-3 {
    top: 0;
    left: 187px;
    position: absolute;
    width: 37px;
    height: 37px;
  }
  
  .element .rectangle-2 {
    position: absolute;
    width: 294px;
    height: 574px;
    top: 0;
    left: 0;
  }
  
  .element .frame-13 {
    position: absolute;
    width: 295px;
    height: 263px;
    top: 14px;
    left: 315px;
  }
  
  .element .overlap-10 {
    position: relative;
    height: 247px;
    top: 16px;
    background-color: #6b5bf81f;
    border-radius: 0px 40px 40px 0px;
  }
  
  .element .chat-2 {
    position: absolute;
    width: 192px;
    height: 190px;
    top: 28px;
    left: 51px;
  }
  
  .element .ph-timer-fill-4 {
    top: 23px;
    left: 234px;
    position: absolute;
    width: 37px;
    height: 37px;
  }
  
  .element .block-31 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 70px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .div-12 {
    display: flex;
    width: 504px;
    align-items: flex-start;
    gap: 28px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 32px;
  }
  
  .element .text-5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    flex: 1;
    flex-grow: 1;
  }
  
  .element .div-13 {
    display: flex;
    width: 505px;
    align-items: flex-start;
    gap: 28px;
    position: relative;
    flex: 0 0 auto;
    border-radius: 32px;
  }
  
  .element .block-32 {
    display: flex;
    width: 1240px;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .text-6 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 32px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-46 {
    position: relative;
    width: 505px;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 50px;
    letter-spacing: 0.50px;
    line-height: 61.0px;
  }
  
  .element .text-wrapper-47 {
    position: relative;
    width: 410px;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #001b49b2;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 21.1px;
  }
  
  .element .image-9 {
    position: relative;
    width: 610px;
    height: 454px;
    background-color: #fffcf4;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .overlap-11 {
    position: relative;
    height: 647px;
  }
  
  .element .vector-10 {
    position: absolute;
    width: 610px;
    height: 454px;
    top: 0;
    left: 0;
  }
  
  .element .iphone-pro-front-wrapper {
    position: absolute;
    width: 296px;
    height: 599px;
    top: 48px;
    left: 157px;
  }
  
  .element .iphone-pro-front-2 {
    height: 599px;
  }
  
  .element .overlap-group-12 {
    position: relative;
    width: 296px;
    height: 585px;
  }
  
  .element .blue-2 {
    position: absolute;
    width: 296px;
    height: 406px;
    top: 0;
    left: 0;
  }
  
  .element .mockup-2 {
    position: absolute;
    width: 264px;
    height: 571px;
    top: 14px;
    left: 16px;
  }
  
  .element .mask-group-3 {
    width: 264px;
    height: 392px;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .element .block-33 {
    position: relative;
    width: 1920px;
    height: 602px;
    margin-left: -240.00px;
    margin-right: -240.00px;
    background-color: #5952fe;
  }
  
  .element .block-34 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 80px;
    position: absolute;
    top: 112px;
    left: 341px;
  }
  
  .element .text-7 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .div-14 {
    position: relative;
    width: 688px;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: transparent;
    font-size: 50px;
    letter-spacing: 0;
    line-height: 61.0px;
  }
  
  .element .text-wrapper-48 {
    position: relative;
    width: 577px;
    font-family: "Hezaedrus-Regular", Helvetica;
    font-weight: 400;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0;
    line-height: 23.8px;
  }
  
  .element .button-5 {
    box-sizing: border-box;
    width: 388px;
    justify-content: flex-end;
    padding: 20px 12px 20px 24px;
    border: 2px solid;
    border-color: #ffffff;
    display: flex;
    height: 59px;
    align-items: center;
    gap: 24px;
    position: relative;
    border-radius: 60px;
  }
  
  .element .text-wrapper-49 {
    top: 18px;
    left: 118px;
    font-family: "Golos-TextMedium", Helvetica;
    font-size: 16px;
    letter-spacing: 0.16px;
    position: absolute;
    font-weight: 500;
    color: #ffffff;
    line-height: normal;
    white-space: nowrap;
  }
  
  .element .overlap-12 {
    position: absolute;
    width: 512px;
    height: 414px;
    top: 61px;
    left: 1071px;
  }
  
  .element .image-10 {
    position: absolute;
    width: 400px;
    height: 390px;
    top: 24px;
    left: 112px;
    overflow: hidden;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/vector-20.svg);
    background-size: 100% 100%;
  }
  
  .element .overlap-group-13 {
    position: relative;
    height: 390px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/mask-group-4@2x.png);
    background-size: 100% 100%;
  }
  
  .element .mask-group-4 {
    width: 400px;
    height: 390px;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .element .vector-11 {
    position: absolute;
    width: 116px;
    height: 116px;
    top: 0;
    left: 0;
  }
  
  .element .block-35 {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-50 {
    position: relative;
    width: 688px;
    margin-top: -1.00px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 50px;
    text-align: center;
    letter-spacing: 0;
    line-height: 61.0px;
  }
  
  .element .frame-14 {
    width: 1242px;
    align-items: flex-start;
    gap: 20px;
    flex: 0 0 auto;
    display: flex;
    position: relative;
  }
  
  .element .block-36 {
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 348px;
    background-color: #6b5bf81a;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .overlap-group-14 {
    width: 401px;
    height: 348px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/vector-22.svg);
    background-size: 100% 100%;
  }
  
  .element .frame-15 {
    display: flex;
    flex-direction: column;
    width: 352px;
    align-items: center;
    gap: 24px;
    position: relative;
    top: 39px;
    left: 22px;
  }
  
  .element .block-37 {
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 348px;
    background-color: #f5bd501a;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .overlap-13 {
    position: relative;
    width: 377px;
    height: 309px;
    left: 24px;
  }
  
  .element .vector-12 {
    position: absolute;
    width: 229px;
    height: 309px;
    top: 0;
    left: 148px;
  }
  
  .element .frame-16 {
    display: flex;
    flex-direction: column;
    width: 352px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: absolute;
    top: 38px;
    left: 0;
  }
  
  .element .block-38 {
    position: relative;
    flex: 1;
    flex-grow: 1;
    height: 348px;
    background-color: #e6e51e1a;
    border-radius: 40px;
    overflow: hidden;
  }
  
  .element .overlap-14 {
    position: relative;
    width: 459px;
    height: 340px;
    top: -35px;
    left: 23px;
  }
  
  .element .group-45 {
    position: absolute;
    width: 287px;
    height: 287px;
    top: 0;
    left: 173px;
  }
  
  .element .overlap-group-15 {
    position: relative;
    width: 204px;
    height: 252px;
    top: 35px;
  }
  
  .element .group-46 {
    position: absolute;
    width: 72px;
    height: 72px;
    top: 73px;
    left: 108px;
  }
  
  .element .group-47 {
    position: absolute;
    width: 124px;
    height: 126px;
    top: 45px;
    left: 80px;
  }
  
  .element .group-48 {
    position: absolute;
    width: 150px;
    height: 179px;
    top: 19px;
    left: 54px;
  }
  
  .element .group-49 {
    position: absolute;
    width: 177px;
    height: 225px;
    top: 0;
    left: 27px;
  }
  
  .element .group-50 {
    position: absolute;
    width: 204px;
    height: 252px;
    top: 0;
    left: 0;
  }
  
  .element .frame-17 {
    display: flex;
    flex-direction: column;
    width: 352px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    position: absolute;
    top: 73px;
    left: 0;
  }
  
  .element .block-39 {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 531px;
    background-color: #ffffff;
  }
  
  .element .overlap-15 {
    position: absolute;
    width: 612px;
    height: 515px;
    top: -39px;
    left: 878px;
  }
  
  .element .vector-13 {
    position: absolute;
    width: 515px;
    height: 515px;
    top: 0;
    left: 97px;
  }
  
  .element .block-40 {
    display: flex;
    flex-direction: column;
    width: 400px;
    align-items: center;
    gap: 39px;
    position: absolute;
    top: 187px;
    left: 0;
  }
  
  .element .inputs {
    display: flex;
    flex-direction: column;
    width: 388px;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    flex: 0 0 auto;
  }
  
  .element .text-wrapper-51 {
    position: absolute;
    top: 17px;
    left: 132px;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 0.18px;
    line-height: normal;
    white-space: nowrap;
  }
  
  .element .text-8 {
    display: flex;
    flex-direction: column;
    width: 619px;
    align-items: flex-start;
    gap: 60px;
    position: absolute;
    top: 107px;
    left: 98px;
  }
  
  .element .text-wrapper-52 {
    position: relative;
    width: fit-content;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #6b5bf8;
    font-size: 50px;
    letter-spacing: 0;
    line-height: 61.0px;
    white-space: nowrap;
  }
  
  .element .clapping-hands {
    position: relative;
    width: 80px;
    height: 80px;
  }
  
  .element .text-wrapper-53 {
    position: relative;
    align-self: stretch;
    font-family: "Hezaedrus-Medium", Helvetica;
    font-weight: 500;
    color: #001b49;
    font-size: 48px;
    letter-spacing: 0;
    line-height: 58.6px;
  }
  
  .element .mingcute-telegram-2 {
    position: relative;
    width: 24px;
    height: 24px;
    top: 18px;
    left: 18px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/group-49@2x.png);
    background-size: 100% 100%;
  }
  
  .element .mingcute-whatsapp-2 {
    position: relative;
    width: 24px;
    height: 24px;
    top: 18px;
    left: 18px;
    background-image: url(https://c.animaapp.com/pUstXqrR/img/group-50@2x.png);
    background-size: 100% 100%;
  }
  
  @media (max-width: 768px) {
    .element.element-wrapper-2 {
      display: none !important;
    }
  }
  
  @media (min-width: 769px) {
    .element.element-wrapper {
      display: none !important;
    }
  }
  
  /* Стили для обработки ошибок формы */
  .input-field.error {
    border-color: #ff4d4f;
    animation: shake 0.5s;
  }
  
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
  }
  
  /* Стили для эффекта ripple на кнопках */
  button, .button {
    position: relative;
    overflow: hidden;
  }
  
  button:after, .button:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
  }
  
  button:focus:not(:active)::after, .button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0, 0);
      opacity: 0.5;
    }
    20% {
      transform: scale(25, 25);
      opacity: 0.3;
    }
    100% {
      opacity: 0;
      transform: scale(40, 40);
    }
  }
  
  /* Стили для кнопки-бургера в основной шапке */
  .element .header .div-2#mainBurgerBtn {
    position: absolute; 
    top: 30px;    
    right: 29px;  /* Было 25px, увеличено на 4px для сдвига влево */
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease; 
  }
  
  .element .header .div-2#mainBurgerBtn .overlap-group {
    position: relative;
    width: 36px;
    height: 36px;
    top: 2px;
    left: 2px;
    border-radius: 18px;
    border: 2px solid #6B5BF8;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  .element .header .div-2#mainBurgerBtn:hover .overlap-group {
    border-color: #5348dd;
    background-color: rgba(107, 91, 248, 0.05);
  }
  
  .element .header .div-2#mainBurgerBtn .line,
  .element .header .div-2#mainBurgerBtn .line-2,
  .element .header .div-2#mainBurgerBtn .line-3 {
    position: absolute;
    width: 19px;
    height: 2px;
    left: 7px;
    background-color: #6B5BF8;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, top 0.3s ease;
  }
  .element .header .div-2#mainBurgerBtn .line { top: 10px; }
  .element .header .div-2#mainBurgerBtn .line-2 { top: 15px; }
  .element .header .div-2#mainBurgerBtn .line-3 { top: 20px; }
  
  .element .header .div-2#mainBurgerBtn:hover .line,
  .element .header .div-2#mainBurgerBtn:hover .line-2,
  .element .header .div-2#mainBurgerBtn:hover .line-3 {
    background-color: #5348dd;
  }
  
  /* Анимация бургер-кнопки #mainBurgerBtn в крестик */
  .element .header .div-2#mainBurgerBtn.active .line {
    top: 15px;
    transform: rotate(45deg);
  }
  .element .header .div-2#mainBurgerBtn.active .line-2 {
    opacity: 0;
  }
  .element .header .div-2#mainBurgerBtn.active .line-3 {
    top: 15px;
    transform: rotate(-45deg);
  }
  
  /* Логотип в шапке мобильного меню */
  .mobile-menu-header .logo {
    position: absolute; 
    top: 36px;      
    left: 25px;     
    width: 162px; 
    height: auto; 
  }
  /* Стили для дочерних .group, .img, .logo-subtitle в логотипе мобильного меню */
  .mobile-menu-header .logo .group {
    position: absolute;
    width: 27px;
    height: 19px;
    top: 4px;
    left: 0;
  }
  .mobile-menu-header .logo .img {
    position: absolute;
    width: 122px;
    height: 19px;
    top: 0;
    left: 38px;
  }
  .mobile-menu-header .logo .logo-subtitle {
    position: absolute;
    top: 22px; 
    left: 38px;
    font-family: "Golos-TextRegular", Helvetica;
    font-style: normal;
    font-weight: 400;
    font-size: 7px; 
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: rgba(16, 49, 107, 0.7);
    white-space: nowrap;
  }
  
  /* Кнопка-крестик (бургер) в шапке мобильного меню */
  .mobile-menu-header .div-2#menuBurgerBtn {
    position: absolute; 
    top: 30px;    
    right: 25px;  
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease; 
  }
  
  /* Общие стили для рамки бургера (применяются к обоим) */
  .div-2 .overlap-group {
    position: relative;
    width: 36px;
    height: 36px;
    top: 2px;
    left: 2px;
    border-radius: 18px;
    border: 2px solid #6B5BF8;
    transition: border-color 0.3s ease, background-color 0.3s ease;
  }
  .div-2:hover .overlap-group {
    border-color: #5348dd;
    background-color: rgba(107, 91, 248, 0.05);
  }
  
  /* Общие стили для полосок бургера (применяются к обоим) */
  .div-2 .line,
  .div-2 .line-2,
  .div-2 .line-3 {
    position: absolute;
    width: 19px;
    height: 2px;
    left: 7px;
    background-color: #6B5BF8;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease, top 0.3s ease;
  }
  .div-2 .line { top: 10px; }
  .div-2 .line-2 { top: 15px; }
  .div-2 .line-3 { top: 20px; }
  
  .div-2:hover .line,
  .div-2:hover .line-2,
  .div-2:hover .line-3 {
    background-color: #5348dd;
  }
  
  /* Анимация бургеров в крестик (применяется к обоим по классу .active) */
  .div-2.active .line {
    top: 15px;
    transform: rotate(45deg);
  }
  .div-2.active .line-2 {
    opacity: 0;
  }
  .div-2.active .line-3 {
    top: 15px;
    transform: rotate(-45deg);
  }
  
  /* Дополнительные стили для ссылок-кнопок и их состояний */

  .button, 
  .button-2, 
  .button-3, 
  .button-4, 
  .button-5, 
  .mobile-menu-button {
    display: flex; 
    align-items: center;
    justify-content: center; 
    text-decoration: none !important; 
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
  }

  .button-3,
  .button-4,
  .mobile-menu-button {
      justify-content: center;
  }
  .button,
  .button-2,
  .button-5 {
      justify-content: flex-end;
  }

  /* Стили для текста внутри ссылок-кнопок */
  .button .text-wrapper-5, 
  .button-2 .text-wrapper-24, 
  .button-3 .text-wrapper-36,
  .button .text-wrapper-33, 
  .button-4 .text-wrapper-42, 
  .button-5 .text-wrapper-49, 
  .button .text-wrapper-51,
  .mobile-menu-button span {
    text-decoration: none;
  }

  /* Явное задание цвета для каждой кнопки */
  .button .text-wrapper-5, 
  .button .text-wrapper-33, 
  .button .text-wrapper-51,
  .button-4 .text-wrapper-42 
   {
      color: #ffffff; 
  }

  .button-2 .text-wrapper-24, 
  .button-5 .text-wrapper-49 
   {
      color: #ffffff; 
  }

  .button-3 .text-wrapper-36
  {
      color: #0b409c;
  }

  .mobile-menu-button span
  {
      color: #6B5BF8; 
      transition: color 0.3s ease;
  }
  .mobile-menu-button:hover span {
      color: #FFFFFF;
  }

  /* Стили для :hover и :active на ссылках-кнопках */
  a.button:hover, 
  a.button-2:hover,
  a.button-3:hover,
  a.button-4:hover,
  a.button-5:hover,
  a.mobile-menu-button:hover {
    transform: translateY(-2px);
  }

  a.button:hover,
  a.button-3:hover,
  a.button-4:hover,
  .element .element-wrapper-2 a.button:hover 
   {
     box-shadow: 0 8px 15px rgba(107, 91, 248, 0.3);
  }

  a.button-2:hover,
  a.button-5:hover {
      border-color: #f0f0f0; 
  }

  a.mobile-menu-button:hover {
    background-color: #6B5BF8;
    box-shadow: 0 6px 15px rgba(107, 91, 248, 0.4);
  }

  a.button:active, 
  a.button-2:active, 
  a.button-3:active,
  a.button-4:active,
  a.button-5:active,
  a.mobile-menu-button:active {
    transform: translateY(0);
  }

  a.button:active, 
  a.button-3:active,
  a.button-4:active,
  .element .element-wrapper-2 a.button:active {
     box-shadow: 0 4px 8px rgba(107, 91, 248, 0.3);
  }

  a.mobile-menu-button:active {
    box-shadow: 0 3px 8px rgba(107, 91, 248, 0.3);
  }
  
  @media (max-width: 1439px) {
    .element.element-wrapper-2 {
      display: none !important;
    }
  }
  
  @media (min-width: 1440px) {
    .element.element-wrapper {
      display: none !important;
    }
  }
  
  /* Стили для обработки ошибок формы */
  
  /* Дополнительные стили для мобильного меню */
  @media (max-width: 768px) {
    .mobile-menu {
      max-width: 100%;
      width: 100%;
    }
    
    .mobile-menu-header {
      padding: 20px 20px;
      height: 80px;
      justify-content: space-between;
      width: 100%;
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .mobile-menu-content {
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 40px 20px;
    }
    
    .menu-item {
      font-size: 22px;
      margin-bottom: 10px;
      text-align: center;
    }
    
    .menu-text {
      align-items: center;
      max-width: 100%;
      margin-bottom: 10px;
    }
    
    .menu-label {
      text-align: center;
    }
    
    .menu-value {
      text-align: center;
      font-size: 18px;
    }
    
    .menu-block {
      align-items: center;
      margin-top: 20px;
    }
    
    .menu-social {
      justify-content: center;
      margin-top: 10px;
    }
    
    .mobile-menu-button {
      width: calc(100% - 40px);
      max-width: 400px;
      margin: 40px auto;
      height: 64px;
    }
    
    .mobile-menu-button span {
      font-size: 18px;
    }
  }
  
  /* Для затемнения фона при открытии мобильного меню */
  .mobile-menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: -1;
    transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .mobile-menu.active::before {
    background: transparent;
    pointer-events: none;
  }

  /* Дополнительные стили для анимации открытия меню */
  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  @media (max-width: 768px) {
    .mobile-menu {
      transform: translateX(-100%); /* Начальное положение за пределами экрана */
      transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                  visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                  transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mobile-menu.active {
      transform: translateX(0); /* Конечное положение - в пределах экрана */
    }
  }
  
  /* Стили для анимированной презентации логотипа */
  .logo-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5); /* Усиливаем затемнение фона */
    backdrop-filter: blur(15px); /* Увеличиваем размытие с 8px до 15px */
    -webkit-backdrop-filter: blur(15px); /* Для Safari */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out, backdrop-filter 0.6s ease-out;
    overflow: hidden;
  }

  .logo-preloader.hidden {
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }

  .logo-preloader::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(107, 91, 248, 0.03) 0%, rgba(107, 91, 248, 0) 70%);
    animation: rotateBg 12s linear infinite;
    pointer-events: none;
  }

  .logo-preloader-content {
    position: relative;
    width: 680px; /* Уменьшено на 15% с 800px */
    height: 272px; /* Уменьшено на 15% с 320px */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo-animation {
    position: relative;
    width: 595px; /* Уменьшено на 15% с 700px */
    height: 204px; /* Уменьшено на 15% с 240px */
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    animation: logoAppear 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transition: filter 0.6s ease-out;
  }

  /* Для нового PNG логотипа */
  .logo-img-main {
    width: 510px; /* Уменьшено на 15% с 600px */
    max-width: 100%;
    height: auto;
    opacity: 0;
    filter: drop-shadow(0 0 12px rgba(107, 91, 248, 0.6));
    animation: fadeIn 0.6s ease-out 0.2s forwards,
               shimmer 1.5s linear 0.8s infinite,
               glow 1.5s ease-in-out 0.8s infinite;
  }

  /* Начальное состояние основного контента - сильнее размытие */
  body.preloader-active .element {
    filter: blur(15px); /* Увеличиваем размытие с 8px до 15px */
    transition: filter 0.6s ease-out;
  }

  .logo-preloader.hidden .logo-animation {
    filter: blur(15px);
    transition: filter 0.6s ease-out;
  }

  @keyframes logoAppear {
    0% {
      transform: scale(0);
    }
    70% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes shimmer {
    0% {
      filter: drop-shadow(0 0 8px rgba(107, 91, 248, 0.5));
    }
    50% {
      filter: drop-shadow(0 0 12px rgba(107, 91, 248, 0.8));
    }
    100% {
      filter: drop-shadow(0 0 8px rgba(107, 91, 248, 0.5));
    }
  }

  @keyframes glow {
    0% {
      filter: drop-shadow(0 0 8px rgba(107, 91, 248, 0.5));
    }
    50% {
      filter: drop-shadow(0 0 16px rgba(107, 91, 248, 0.8));
    }
    100% {
      filter: drop-shadow(0 0 8px rgba(107, 91, 248, 0.5));
    }
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.5;
    }
    50% {
      transform: scale(1.05);
      opacity: 0.3;
    }
    100% {
      transform: scale(1);
      opacity: 0.5;
    }
  }

  @keyframes rotateBg {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  /* Специальные эффекты для мобильных устройств */
  @media (max-width: 768px) {
    .logo-preloader-content {
      width: 510px; /* Уменьшено на 15% с 600px */
      height: 204px; /* Уменьшено на 15% с 240px */
    }
    
    .logo-animation {
      width: 476px; /* Уменьшено на 15% с 560px */
      height: 153px; /* Уменьшено на 15% с 180px */
    }
    
    .logo-img-main {
      width: 374px; /* Уменьшено на 15% с 440px */
    }
  }
  