/* Стили для подложки */

* {
   -webkit-user-select: none;
   -moz-user-select: none;
   -ms-user-select: none;
   user-select: none;
}

.overlay {
   /* Скрываем подложку  */
   opacity: 0;
   visibility: hidden;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, .5);
   z-index: 20;
   transition: .3s all;
}

body.blur-all>* {
   /* Все элементы непосредственно внутри body.blur-all
     (1-го уровня вложенности, но не глубже) получат этот стиль */
   filter: blur(10px);
}

body.blur-all>.no-blur {
   /* Кроме элемента .no-blur — класс заранее будет добавлен на кнопку */
   filter: blur(0);
   position: absolute;
   z-index: 9999;
}

/* Стили для модальных окон */

.modal-google {
   display: none;
   -webkit-animation-name: animatetop;
   -webkit-animation-duration: 0.4s;
   animation-name: animatetop;
   animation-duration: 0.5s;
   padding: 10px 20px 0 20px;
}

.modal-google1 {
   display: none;
   -webkit-animation-name: animatetop;
   -webkit-animation-duration: 0.4s;
   animation-name: animatetop;
   animation-duration: 0.5s;
   padding: 10px 20px 0 20px;
}

@-webkit-keyframes animatetop {
   from {
      top: -300px;
      opacity: 0
   }

   to {
      top: 50%;
      opacity: 1
   }
}

@keyframes animatetop {
   from {
      top: -300px;
      opacity: 0
   }

   to {
      top: 50%;
      opacity: 1
   }
}

.bell {
   animation: ring 1s infinite;
   transform-origin: top center;
   animation-delay: 0.5s;
}

@keyframes ring {
   0% {
      transform: rotate(0deg);
   }

   25% {
      transform: rotate(10deg);
   }

   50% {
      transform: rotate(-10deg);
   }

   75% {
      transform: rotate(10deg);
   }

   100% {
      transform: rotate(0deg);
   }
}


.modal-google img {
   width: 154px;
   height: 60px;
}


.modal-google svg {
   position: relative;
}

.modal-google p {
   text-align: center;
   font-size: 10px;
   text-transform: uppercase;
}

.modal-google__header {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.none {
   display: none;
}

.show {
   display: block;
}

.popap img {
   margin: 8px auto 0 auto;
}

.popap-two {
   position: absolute;
   content: '';
   background: inherit;
   top: 50%;
   color: #FFF;
   font-feature-settings: 'liga' off, 'clig' off;
   font-family: var(--Font-Font-Family, Inter);
   font-size: 12px;
   font-style: normal;
   font-weight: 400;
   line-height: 150%;
   letter-spacing: -0.06px;
   display: flex;
   padding: 12px;
   flex-direction: column;
   align-items: flex-start;
   left: 50%;
   transform: translate(142%, 28%);

   border-radius: 15px;
}

/* Стили для кнопки закрытия */
.modal__cross {
   width: 15px;
   height: 15px;
   position: absolute;
   top: 20px;
   right: 20px;
   fill: #444;
   cursor: pointer;
}

.activTab {
   color: black !important;
   background-color: #ffffff !important;
}


.loader-with-video {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 9999;
   display: flex;
   justify-content: center;
   align-items: center;
}

.video-background {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
}

.video-background video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   filter: brightness(0.7);
   transition: opacity 1s ease;
}

.video-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   z-index: 1;
}

.loader {
   position: relative;
   z-index: 2;
   text-align: center;
}

.loader .letters span {
   display: inline-block;
   font-size: 40px;
   color: white;
   font-weight: bold;
   opacity: 0;
   transform: translateY(20px);
   animation: letterAppear 0.5s forwards;
}

@keyframes letterAppear {
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.loader.hide {
   opacity: 0;
   transform: scale(1.1);
   transition: all 0.8s ease;
}

.loader-with-video.hide {
   opacity: 0;
   visibility: hidden;
   transition: all 1s ease 0.3s;
}

.loader-with-video.hide .video-background video {
   opacity: 0;
   transform: scale(1.1);
   filter: blur(20px) brightness(0.3);
}

.popap {
   position: absolute;
   content: '';
   top: 36%;
   left: 46.4%;
   transform: translate(65%, 31%);
}

.popap1 {
   position: absolute;
   content: '';
   top: 45%;
   left: 60.18%;
   transform: translate(65%, 31%);
}

.modal-overlay {
   display: none;
   justify-content: space-around;
   flex-direction: column;
   align-items: center;
   padding: 112px;
   width: 280px;
   font-size: 16px;
   height: 332px !important;
   transform: translate(-10%, -120%);
   border-bottom-left-radius: 0;
   border-bottom-right-radius: 0;
}

@media (max-width: 1300px) {
   .modal-overlay {
      transform: translate(-53%, -175%);
   }
}

.why {
   padding-top: 0;
   margin-top: 0;
}

.modal-overlay img {
   width: 30px;
   margin: 0 auto;
   height: 30px;
}

.help-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: 0 auto;
   max-width: 1400px;
   width: 100%;
}

.help-header div {
   display: flex;
   justify-content: space-around;
   align-items: center;
}

.help-header div p {
   color: #FFF;
   font-family: "SF Pro Text";
   font-size: 24px;
   font-style: normal;
   font-weight: 500;
   margin-left: 16px;
   line-height: 31.2px;
}

.help-main__left h2 {
   color: #FFF;
   max-width: 633px;
   width: 100%;
   font-family: "SF Pro Display";
   font-size: 55px;
   font-style: normal;
   font-weight: 700;
   line-height: 66px;
}

.help-main__left p {
   color: #FFF;
   font-family: "SF Pro Text";
   font-size: 24px;
   font-style: normal;
   margin-top: 31.38px;
   width: 512px;
   font-weight: 500;
   line-height: 31.2px;
}

.help-main {
   max-width: 1400px;
   margin: 0 auto;
   display: flex;
   margin-top: 120px;
   padding-left: 25px;
   align-items: center;
   justify-content: space-between;
}

.help-main__ridth div a::before {
   content: "";
   position: relative;
   z-index: -1;
   background-color: rgba(0, 0, 255, 0.3);
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
   border-radius: 50px;
   animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {

   0%,
   100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.5;
   }

   50% {
      transform: translate(-50%, -50%) scale(1.1);
      opacity: 0.8;
   }
}

.help-main__ridth div a {
   z-index: 1;
   display: flex;
   width: 337px;
   padding: 15px 88px !important;
   justify-content: center;
   align-items: center;
   gap: 10px;
   border-radius: 40px;
   border: 10px solid rgba(0, 0, 255, 0.30);
   background: #00F;
   color: #FFF;
   font-family: "SF Pro Text";
   font-size: 24px;
   font-style: normal;
   font-weight: 500;
   line-height: 32px;
   position: relative;
}

.tt {
   border-radius: 1076px;
   opacity: 0.4;
   position: relative;
   left: 200px;
   top: 0;
   width: 776px;
   height: 269px;
   background: linear-gradient(45deg, #F0F 33.23%, #0FF 73.31%);
   filter: blur(150px);
}

.help-main__ridth #registerBtn {
   left: 444px;
   top: -199px;
}

.flexbox {
   display: flex;
   justify-content: space-between;
   align-items: center;
}


.footer-row1 {
   display: flex;
   justify-content: space-between;
   align-items: center;
   height: 100px;
   border-top: 1px solid #75758E;
   border-bottom: 1px solid #75758E;
}

.footer-row1__logo {
   display: flex;
   justify-content: space-between;
}

.footer-row1__logo p {
   color: #FFF;
   font-family: "SF Pro Text";
   font-size: 20px;
   font-style: normal;
   font-weight: 500;
   margin-left: 20px;
   line-height: 26px;
   width: 227px;
}

.footer-row1__apps #google-play {
   width: 210px;
}

.footer-row1__apps #app-store {
   margin-left: 40px;
   width: 210px;
}

.footer-row1__apps a {
   border-radius: 10px;
   border: 1px solid #FFF;
}

.footer-row1__social {
   width: 500px;
}

.footer-row1__social div {
   transition: 0.5s;
}


.footer-row1__social .tg-ikon:hover {
   box-shadow: 5px 5px 14px rgb(0, 225, 255);
}

.footer-row1__social .vk-ikon:hover {
   box-shadow: 5px 5px 14px rgb(29, 44, 255);
}

.footer-row1__social .od-ikon:hover {
   box-shadow: 5px 5px 14px rgb(255, 167, 36);
}

.footer-row1__social .tik-ikon:hover {
   box-shadow: 5px 5px 14px rgb(255, 255, 255);
}

.footer-row1__social .you-ikon:hover {
   box-shadow: 5px 5px 14px rgb(255, 37, 37);
}

.footer-row1 .footer-row1__social div {
   display: flex;
   width: 50px;
   height: 50px;
   min-height: var(--height-50, 50px);
   padding: 10px;
   margin-left: 40px;
   justify-content: center;
   align-items: center;
   border-radius: 36px;
   background: #28293D;
}

.footer-row2 {
   align-items: baseline;
   margin-bottom: 100px;
}

.footer-row2__item {
   flex-direction: column;
   align-items: start;
}

.footer-row2 .footer-row2__item p {
   color: white;
   font-family: "SF Pro Display";
   font-size: 18px;
   font-style: normal;
   align-self: stretch;
   font-weight: 800;
   text-decoration: underline;
   line-height: 30px;
   margin-top: 30px;
}

.footer-row2 .footer-row2__item button {
   color: #FFF;
   position: relative;
   text-decoration: none;
   font-family: "SF Pro Display";
   font-size: 20px;
   font-style: normal;
   font-weight: 400;
   line-height: 30px;
   margin-top: 15px;
}

.footer-row3 {
   border-top: 1px solid #75758E;
}

.footer-row3 * {
   font-family: "SF Pro Display";
   font-size: 16px;
   font-style: normal;
   font-weight: 400;
   line-height: 24px;
   color: #75758E;
}

.footer-row3 a {
   text-decoration: underline;
}

.footer-row3__item1 a {
   margin-left: 20px;
}

.footer-row3__item1 {
   margin-top: 15px;
}

.footer-row3__item3 {
   margin-top: 15px;
}

.footer-row3__item2 {
   margin-top: 10px;
}

.footer-row3__item2 a {
   margin-left: 20px;
}

.footer-row3__item3 {
   max-width: 1295px;
   width: 100%;
   height: 70px;
   line-height: 24px;
}

.footer-row3__item3 a {
   color: #75758E;
   font-family: "SF Pro Display";
   font-size: 16px;
   font-style: normal;
   font-weight: 400;
   line-height: 24px;
}

.map {
   background-position-y: -379px;
   height: 471px;
   display: flex;
   justify-content: end;
   align-items: center;
   background-size: cover;
   background-repeat: no-repeat;
   width: 100%;
   background-image: url('../image/jpg/map.jpg');
}

.h2-title {
   max-width: 451px;
   width: 100%;
}

.mb-73 {
   margin-bottom: 73px;
}

.map .global__item {
   position: relative;
   transform: translate(224%, 8%);
}

.help {
   padding: 0;
   padding-bottom: 167px;
}

.help-button {
   max-width: 1440px;
   padding: 0 20px 160px 20px;
   margin: -460px auto 0px auto;
   padding-bottom: 160px;
}

.active-footer {
   height: 100%;
}
/* Базовые стили для десктопа */
.footer-row2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-row2__item {
    flex-direction: column;
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

/* Стили для аккордеона */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 0;
}

.accordion-toggle {
      color: white;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.accordion-content {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    overflow: hidden;
}

/* Скрываем иконку аккордеона на десктопе */
@media (min-width: 769px) {
    .accordion-toggle {
        display: none;
    }
    .accordion-content {
        display: flex !important;
        height: auto !important;
    }
}

/* Мобильные стили */
@media (max-width: 768px) {
    .footer-row2__item {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .footer-row2__item:last-child {
        border-bottom: none;
    }
    
    .accordion-content {
        display: none;
        height: 0;
        padding: 0 15px;
        transition: all 0.3s ease;
    }
    
    .accordion-content.active {
        display: flex;
        height: auto;
        padding: 15px;
        animation: fadeIn 0.3s ease;
    }
    
    .accordion-item.active .accordion-toggle {
        transform: rotate(45deg);
    }
}

/* Анимация */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Опциональные стили для кнопок и ссылок внутри аккордеона */
.accordion-content button,
.accordion-content a {
    text-align: left;
    padding: 8px 0;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.accordion-content button:hover,
.accordion-content a:hover {
    opacity: 0.7;
}

@media (max-width: 1270px) {
   .help-button {
      margin-top: -400px !important;
   }
}

.help-button .help-left h2 {
   color: #FFF;
   font-family: "SF Pro Display";
   font-size: 55px;
   font-style: normal;
   font-weight: 700;
   line-height: 66px;
   /* 120% */
}

.help-button .help-left p {
   color: #FFF;
   font-family: "SF Pro Text";
   font-size: 24px;
   font-style: normal;
   margin-top: 45px;
   font-weight: 500;
   line-height: 31.2px;
   /* 130% */
}

.help-button .help-left {
   max-width: 650px;
   width: 100%;
}

.help-ridth img {

   border-radius: 160px;
}

.help-ridth__button {
   width: 175.222px;
   position: relative;
   height: 175.222px;
   background-color: #FF0033;
   border-radius: 50%;
   display: flex;
   top: 511px;
   left: 41px;
   justify-content: center;
   align-items: center;
   font-size: 35px;
   font-weight: 900;
   color: white;
}

/* Основные стили контейнера */
.help-ridth__animated {
   position: relative;
   width: 400px;
   height: 400px;
   margin: 50px auto;
}

/* Стили для изображения-фона */
.help-ridth__animated img {
   position: absolute;
   width: 100%;
   height: 100%;
   object-fit: contain;
   z-index: 1;
}

/* Стили кнопки HELP (ваши оригинальные + немного адаптации) */
.help-ridth__button {
   width: 175.222px;
   position: relative;
   height: 175.222px;
   background-color: #FF0033;
   border-radius: 50%;
   display: flex;
   top: -263px;
   left: -86px;
   justify-content: center;
   align-items: center;
   font-size: 35px;
   font-weight: 900;
   color: white;
   z-index: 10;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow:
      0 0 30px rgba(255, 0, 51, 0.6),
      0 0 60px rgba(255, 0, 51, 0.3),
      inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Эффект при наведении на кнопку */
.help-ridth__button:hover {
   transform: scale(1.05);
   box-shadow:
      0 0 40px rgba(255, 0, 51, 0.8),
      0 0 80px rgba(255, 0, 51, 0.4),
      inset 0 0 30px rgba(255, 255, 255, 0.3);
   animation: button-pulse 1.5s ease-in-out infinite;
}

/* Пульсация кнопки при наведении */
@keyframes button-pulse {

   0%,
   100% {
      transform: scale(1.05);
   }

   50% {
      transform: scale(1.08);
   }
}

.help-animation-container {
   top: 762px;
   left: -42px;
   width: 175.222px;
   height: 175.222px;
   transform: translate(-50%, -50%);
   z-index: 5;
}

/* Стили для расходящихся кругов */
.help-ripple {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   border-radius: 50%;
   border: 2px solid transparent;
   animation: help-ripple-animation 3s linear infinite;
   pointer-events: none;
}

/* Создаем 6 колец с разными задержками */
.help-ripple:nth-child(1) {
   width: 175.222px;
   height: 175.222px;
   border-color: rgba(255, 0, 51, 0.6);
   animation-delay: 0s;
}

.help-ripple:nth-child(2) {
   width: 175.222px;
   height: 175.222px;
   border-color: rgba(255, 0, 51, 0.5);
   animation-delay: 0.5s;
}

.help-ripple:nth-child(3) {
   width: 175.222px;
   height: 175.222px;
   border-color: rgba(255, 0, 51, 0.4);
   animation-delay: 1s;
}

.help-ripple:nth-child(4) {
   width: 175.222px;
   height: 175.222px;
   border-color: rgba(255, 0, 51, 0.3);
   animation-delay: 1.5s;
}

.help-ripple:nth-child(5) {
   width: 175.222px;
   height: 175.222px;
   border-color: rgba(255, 0, 51, 0.2);
   animation-delay: 2s;
}

.help-ripple:nth-child(6) {
   width: 175.222px;
   height: 175.222px;
   border-color: rgba(255, 0, 51, 0.1);
   animation-delay: 2.5s;
}

/* Анимация расхождения и затухания */
@keyframes help-ripple-animation {
   0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
      border-width: 2px;
   }

   50% {
      opacity: 0.4;
      border-width: 1px;
   }

   100% {
      transform: translate(-50%, -50%) scale(2);
      opacity: 0;
      border-width: 0;
   }
}

/* Дополнительный эффект свечения вокруг кнопки */
.help-glow {
   position: absolute;
   top: 531px;
   left: 83px;
   width: 300px;
   height: 300px;
   transform: translate(-50%, -50%);
   background: radial-gradient(circle at center,
         rgba(255, 0, 51, 0.2) 0%,
         transparent 70%);
   border-radius: 50%;
   filter: blur(20px);
   z-index: 0;
   animation: help-glow-pulse 3s ease-in-out infinite;
}

@keyframes help-glow-pulse {

   0%,
   100% {
      opacity: 0.3;
      transform: translate(-50%, -50%) scale(1);
   }

   50% {
      opacity: 0.5;
      transform: translate(-50%, -50%) scale(1.1);
   }
}

.dn {
   display: none;
}

/* Контролы для управления анимацией */
.help-controls {
   position: fixed;
   bottom: 20px;
   right: 20px;
   background: rgba(0, 0, 0, 0.8);
   color: white;
   padding: 15px;
   border-radius: 10px;
   z-index: 1000;
}

.help-controls h3 {
   margin: 0 0 10px 0;
   font-size: 14px;
}

.help-controls button {
   background: #FF0033;
   color: white;
   border: none;
   padding: 5px 10px;
   margin: 2px;
   border-radius: 5px;
   cursor: pointer;
   font-size: 12px;
}

.help-controls button:hover {
   background: #ff3366;
}

/* Сообщение при клике */
.help-message {
   position: fixed;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   background: rgba(0, 0, 0, 0.9);
   color: white;
   padding: 30px;
   border-radius: 15px;
   text-align: center;
   display: none;
   z-index: 1000;
   animation: message-fade 3s ease-out;
   border: 2px solid #FF0033;
}

@keyframes message-fade {
   0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(0.8);
   }

   20% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
   }

   80% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
   }

   100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(1.1);
   }
}

/* Адаптивность */
@media (max-width: 768px) {
   .help-ridth__animated {
      width: 300px;
      height: 300px;
   }

   .help-ridth__animated {
      top: 219px !important;
      left: 171px !important;
   }

   .help-ridth__animated {
      top: 268px;
   }

   .help-ridth img {
      margin-top: 300px;
   }

   .global-btn a {
      left: 82px !important;
      top: 1px !important;
   }


   .help-ridth__button {
      width: 100px;
      height: 100px;
      font-size: 18px;
   }

   .help-main__ridth #registerBtn {
      left: -30px !important;
      top: -165px !important;
   }

   .help-animation-container {
      display: none;
   }

   .map .global__item {
      transform: translate(-1%, 178%);
   }

   /* .help-animation-container,
   .help-glow {
      top: 400px;
      left: 62px;
   } */

   .help-ripple:nth-child(1),
   .help-ripple:nth-child(2),
   .help-ripple:nth-child(3),
   .help-ripple:nth-child(4),
   .help-ripple:nth-child(5),
   .help-ripple:nth-child(6) {
      width: 130px;
      height: 130px;
   }
}


@media (max-width: 1000px) {
   * {
      border-style: solid;
   }
}

/* Стили для аккордеона на мобильных */
@media (max-width: 900px) {
   .footer-row2 {
      flex-direction: column;
   }

   .footer-row2__item {
      flex-direction: column;
   }

   .footer-row2__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
      cursor: pointer;
      user-select: none;
   }

   .footer-row2__title {
      font-weight: bold;
      text-decoration: none;
      color: inherit;
   }

   .footer-row2__toggle {
      font-size: 20px;
      transition: transform 0.3s ease;
   }

   .footer-row2__content {
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-left: 15px;
   }

   .footer-row2__content a {
      padding: 5px 0;
      text-decoration: none;
      color: inherit;
   }

   /* Активный элемент аккордеона */
   .footer-row2__item.active .footer-row2__content {
      max-height: 500px;
      /* Достаточно большое значение */
      opacity: 1;
      padding-bottom: 15px;
   }

   .footer-row2__item.active .footer-row2__toggle {
      transform: rotate(45deg);
      /* Меняем + на × */
   }
}

/* Стили для десктопа (шире 900px) */
@media (max-width: 901px) {
   .footer-row2__header {
      display: none;
   }

   .footer-row2__content {
      display: flex !important;
      flex-direction: column;
      opacity: 1 !important;
      max-height: none !important;
   }

   .footer-row2__item a {
      margin-top: 5px !important;
      font-size: 16px !important;
      line-height: 23px !important;
   }

   .footer-row3 p {
      margin-top: 5px !important;
   }

   .footer-row3__item2 a {
      margin-left: 5px;
   }

   .header__content {
      padding-right: 30px;
   }

   .global__opicanie p {
      font-size: 18px !important;
   }
}

@media (max-width: 1000px) {
   .footer-row2 {
      flex-direction: row;
   }

   header {
      max-width: 1000px;
      width: 80%;
      margin: 0;
   }

   header .header__container {
      width: 100%;
      margin: 0;
   }

   .global-btn a {
      width: 146px;
      height: 146px;
   }

   .missia__content {
      display: flex !important;
      flex-direction: row !important;
      position: relative !important;
      top: 200px !important;
      padding-right: 100px !important;
   }

   .help-button {
      padding: 0 30px 160px 30px;
   }

   .why__title {
      width: 100%;
   }

   .footer-row3__item1 a {
      margin-left: 6px;
   }

   .global__content {
      display: flex;
      justify-content: space-between;
      align-items: center;
   }

   .help-animation-container {
      top: 572px;
      left: 68px;
   }

   .faq {
      margin: 50px 0 29px 0 !important;
   }

   .tt {
      left: -100px;
      top: 34px;
   }

   .help-main__ridth #registerBtn {
      left: 104px;
      top: -109px;
   }

   .site-footer {
      margin-top: 50px;
   }

   .help-main {
      padding: 0 30px;
   }

   .footer-row1 {
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
   }

   .map {
      background-position-y: top !important;
   }

   .help {
      padding-bottom: 90px;
   }

   .video-container {
      transform: translate(0%, -86%) scale(1);
   }

   .help-header {
      padding: 0 30px;
   }

   .global__item span {
      font-size: 14px;
   }

   .footer-row1 {
      border: none;
   }

   .footer-row2 {
      margin-top: 40px;
      margin-bottom: 20px;
   }

   .footer-row1__social {
      margin: 30px auto 0 auto;
   }

   #why__tab__two {
      margin-top: 5px;
   }

   .footer-row1 {
      margin-top: 50px;
   }

   .map .global__item {
      transform: translate(127%, 8%);
   }
}

@media (max-width: 900px) {
   .help-main__left h2 {
      width: 60%;
      font-size: 35px;
      line-height: 33px;
   }

   .help-main__left p {
      font-size: 18px;
      line-height: 22.2px;
   }

   .help-main__ridth #registerBtn {
      left: 110px;
      top: -145px;
      font-size: 16px;
      height: 20px;
      width: 200px;
   }

   .help-main__ridth div a::before {
      width: 220px;
      height: 64px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
   }

   .global-btn a span {
      font-size: 12px;
   }

   .global-btn a svg {
      width: 25px;
   }

   .global-btn a {
      width: 130px !important;
      height: 130px !important;
   }

   .help-header__item p {
      font-size: 14px !important;
      margin-left: 5px;
   }

   .help-button {
      margin-top: -423px !important;
   }

   .help-left {
      margin-top: 250px;
   }

   .help-left h2 {
      font-size: 28px !important;
   }

   .help-left p {
      font-size: 18px !important;
      margin-top: 5px !important;
      line-height: 22.2px !important;
   }

   /* .help-ridth__button {
      width: 135.222px;
      height: 135.222px;
      top: -243px;
      left: -66px;
   } */
}

@media (max-width: 870px) {
   .footer-row1 div {
      margin-top: 20px !important;
   }


   .footer-row1 {
      justify-content: center;
   }

   .footer-row2 {
      margin-top: 150px;
   }

   .help-ridth__animated {
      display: none;
   }

   .help-main__ridth #registerBtn {
      left: 10px;
   }

   .help-ridth img {
      margin-top: 300px;
   }
}

@media (max-width: 770px) {
   .why__top h2 {
      font-size: 28px !important;
      text-align: center;
   }

   .why__desp p {
      font-size: 18px !important;
      margin-top: 5px !important;
      line-height: 22.2px !important;
   }

   .help-main__ridth #registerBtn {
      left: -100px !important;
      top: -179px !important;
   }

   .fab {
      width: 44px;
      height: 44px;
      font-size: 20px;
      top: 12px;
      left: 12px;
   }

   .m-zoomstack {
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: fixed;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1000;
   }

   .m-zoomstack button {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, .12);
      background: #fff;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .15);
      font-size: 22px;
      font-weight: 700;
   }

   .m-chips {
      display: flex;
      gap: 10px;
      justify-content: space-between;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 120px;
      z-index: 1000;
   }

   .m-chips button {
      flex: 1;
      padding: 10px 12px;
      border-radius: 12px;
      border: 1px solid rgba(0, 0, 0, .12);
      background: #fff;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
      font-weight: 700;
   }

   .m-search {
      display: flex;
      gap: 10px;
      background: #fff;
      border-radius: 12px;
      padding: 2px 4px;
      border: 1px solid rgba(0, 0, 0, .12);
      box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 65px;
      z-index: 1000;
   }

   .m-search input {
      flex: 1;
      border: 0;
      outline: 0;
      font-size: 14px;
      line-height: 1;
   }

   /* Мобильная кнопка поиска */
   .m-search button {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      border: 1px solid rgba(0, 0, 0, .1);
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0;
   }

   .m-search button img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
   }

   .m-tabbar {
      display: flex;
      gap: 8px;
      justify-content: space-evenly;
      padding: 8px 10px;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 16px;
      z-index: 1000;
   }

   .m-tabbar button {
      flex: 1;
      border: 0;
      background: #fff;
      border-radius: 12px;
      padding: 10px 6px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .12);
      font-size: 12px;
      font-weight: 700;
      border: 1px solid rgba(0, 0, 0, .08);
      color: #0f172a;
      opacity: .85;
   }

   .m-tabbar .on {
      background: #e9f6e9;
      border-color: #bfe6c5;
   }

   .leaflet-control-zoom {
      display: none !important;
   }

   .sos-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      top: 12px;
      right: 12px;
      z-index: 1050;
      width: 56px;
      height: 56px;
      background: #e02424;
      color: #fff;
      font-weight: 800;
      font-size: 16px;
      border: none;
      border-radius: 50%;
      box-shadow: 0 8px 20px rgba(224, 36, 36, 0.5);
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-touch-callout: none;
   }

   .sos-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 10px 25px rgba(224, 36, 36, 0.6);
   }

   /* Кнопка "Назад" на мобильной (над поиском) */
   .m-chips .back-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      background-color: #007aff;
      color: #fff;
      font-weight: 700;
      border-radius: 12px;
      border: none;
      box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
      animation: backPulse 2s infinite ease-in-out;
      transition: transform 0.2s;
      font-size: 14px;
      padding: 8px 12px;
      text-decoration: none;
   }

   /* Эффект дыхания/пульсации */
   @keyframes backPulse {

      0%,
      100% {
         transform: scale(1);
         box-shadow: 0 0 10px rgba(0, 122, 255, 0.5);
      }

      50% {
         transform: scale(1.08);
         box-shadow: 0 0 20px rgba(0, 122, 255, 0.8);
      }
   }

   /* Легкое увеличение при нажатии */
   .m-chips .back-btn:active {
      transform: scale(1.1);
   }

   .leaflet-top.leaflet-left {
      top: 50% !important;
      left: auto !important;
      right: 20px !important;
      transform: translateY(-50%);
   }

   .leaflet-control-zoom {
      box-shadow: none !important;
      border: none !important;
      background: transparent !important;
   }

   .leaflet-control-zoom a {
      display: block;
      background: #fff !important;
      color: #333 !important;
      font-weight: bold;
      width: 36px;
      height: 36px;
      line-height: 34px;
      text-align: center;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 0 !important;
      margin-bottom: 10px;
      transition: transform 0.2s, background 0.2s;
   }

   .leaflet-control-zoom a:hover {
      transform: scale(1.1);
      background: #f5f5f5 !important;
   }

   .leaflet-control-zoom a:last-child {
      margin-bottom: 0;
   }
}

@media (max-width: 600px) {
   .global__btn {

      margin-top: -100px !important;
   }

   .global-btn a {
      margin-top: -298px;
   }

   .missia__content {
      padding-right: 0 !important;
   }

   .global-btn a::before {
      width: 150px;
      height: 150px;
   }

   .help-main {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-direction: column;
   }

   .map .global__item .global__btn {
      top: 217px;
      left: -36px;
   }

   .start__btn {
      margin-top: 0;
   }

   .help-main__ridth #registerBtn {
      position: relative;
      top: -228px !important;
      left: 118px !important;
      margin: 0 !important;
   }

   .tt {
      left: -100px;
      top: -186px;
   }

   .missia {
      margin-top: -350px;
   }

   .global .global__btn a svg {
      display: none !important;
   }

   .global .global__btn {
      top: 201px !important;
      margin-left: 197px !important;
   }

}

@media (max-width: 550px) {
   .global .global-btn a {
      top: 21px !important;
      margin-left: -86px !important;

   }
}

@media (max-width: 480px) {
   .help-ridth img {
      display: none;
   }

   .help-button .help-left h2 {
      font-size: 31px !important;
      font-weight: 100;
   }

   .help-button .help-left p {
      width: 320px;
      font-size: 12px;
      line-height: 1.4;
   }

   .video-container {
      transform: translate(0%, -17%) scale(1) !important;
   }

   .modal {
      width: calc(100% - 28px);
      padding: 16px;
      border-radius: 10px;
   }

   .global .global-btn a {
      margin-top: -140px;
      margin-left: -165px !important;
   }

   .global-btn a::before {
      border-radius: 50%;
      width: 120px !important;
      height: 120px !important;
   }

   .missia__column {
      display: none !important;
   }

   .map .global__item .global__btn {
      top: 77px;
      left: -3px;
   }

   .help-header div p {
      line-height: 11.2px;
      white-space: nowrap;
   }


   .modal h3 {
      font-size: 16px;
   }

   .text-animate-blur h2 {
      text-align: center;
      padding-left: 0 !important;
   }

   .missia__container {
      position: relative;
      top: -42px;
   }

   .modal p {
      font-size: 13px;
   }

   * {
      padding: 0 10px;
   }

   .footer-row1 .footer-row1__social div {
      margin-left: 10px;
   }

   .footer-row2__item:first-child {
      border-top: 0 !important;
   }

   .global__desp {
      margin-top: 5px !important;
   }

   .global__opicanie p {
      margin-top: 50px !important;
   }

   .help-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      padding: 0 10px !important;
   }


   .help-main__left h2 {
      width: 73%;
      font-size: 32px;
      text-align: center;
      line-height: 30px;
      padding-left: 0;
   }

   .tt {
      left: 200px;
      top: -346px;
   }

   .help-main__left {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 440px;
      margin-left: 0px;
   }

   .help-main__ridth #registerBtn {
      top: 0;
      left: 0;
   }

   .help-left {
      margin-top: 370px !important;
   }

   .help-main {
      padding-left: 0px;
   }

   .help-main {
      padding: 0;
   }



   .missia__desp p {
      text-align: center;
      width: 100%;
   }

   .help-main__ridth #registerBtn {
      position: relative;
      width: 46%;
      top: -405px !important;
      left: 601px !important;
   }

   .help-main__ridth div a::before {
      width: 378px;
   }

   .help-main__left p {
      width: 100%;
   }


   .start__btn {
      left: -393px;
      margin: 0;
      padding: 0;
      top: 141px;
   }

   .header__content {
      padding-right: 0px;
   }


   .help-button .help-left p {
      width: 100%;
      text-align: center;
   }

   .why__desp p {
      text-align: center;
   }

   .missia__title h2 {
      font-size: 38px;
      text-align: center !important;
   }

   .help-left h2 {
      font-size: 38px !important;
   }

   .site-footer {
      padding: 0 20px !important;
   }

   .global-btn a {
      margin-top: 3px;
      margin-left: -69px;
   }

   .help-button .help-left h2 {
      /* margin-left: 47px; */
      text-align: center !important;
   }

   .help-button {
      margin-right: 0;
   }

   .footer-row1 {
      flex-direction: row;
      gap: 20px;
      align-items: center;
      text-align: center;
   }

   .footer-row1__logo,
   .footer-row1__apps,
   .footer-row1__social {
      width: 100%;
      justify-content: center;
   }

   .footer-row3 {
      padding: 15px;
   }

   .footer-row3 a {
      font-size: 11px;
      margin-left: 2px;
   }

   .footer-row3__item1,
   .footer-row3__item2,
   .footer-row3__item3 {
      font-size: 12px;
      line-height: 1.4;
   }

   .mt-50 {
      margin-top: 80px !important;
   }
}

@media (max-width: 400px) {
   .missia__desp p {
      width: 350px;
   }

   .help-button .help-left p {
      width: 353px;
      text-align: center;
   }

   .help-main-left {
      padding: 0 20px;
   }

   .help-button .help-left h2 {
      font-size: 29px !important;
   }

   .help-button .help-left p {
      width: 322px;
   }

   .help-ridth {
      display: none !important;
   }

   .map {
      background-size: contain;
      height: 254px;
      padding-bottom: 0;
   }

   .map .global__item a svg {
      display: none;
   }

   .map .global__item {
      transform: translate(10px, -40px);
   }

   .help-button .help-left p {
      width: 320px;
      font-size: 12px !important;
      line-height: 1.4 !important;
   }

   .help-button {
      padding: 0 30px 40px 30px;
   }
}

@media (max-width: 370px) {
   .missia__desp p {
      width: 320px;
      margin-left: 6px;
      font-size: 12px;
      line-height: 1.4;
   }

   .why__tabs div p {
      font-size: 14px;
   }

   .spoller-faq__title h3 {
      font-size: 12px;
      line-height: 1;
   }

   .help-main__ridth #registerBtn {
      position: relative;
      width: 36%;
      top: -405px !important;
      left: 643px !important;
   }

   .help-main__ridth div a::before {
      width: 298px;
   }

   .help-main__left h2 {
      font-size: 27px;
   }

   .global__opicanie p {
      width: 320px !important;
      font-size: 12px !important;
      line-height: 1.4 !important;
   }

   .global .global-btn a span {
      font-size: 9px !important;
   }

   .text-animate-blur h2 {
      font-size: 31px;
   }

   .why__desp p {
      width: 320px !important;
      font-size: 12px !important;
      line-height: 1.4 !important;
   }

   .help-main__left h2 {
      font-size: 33px;
   }

   .help-main__left p {
      width: 320px;
      font-size: 12px;
      line-height: 1.4;
   }

   .global .global__btn {
      top: 317px !important;
      margin-left: 82px !important;
   }

   .map .global-btn a {
      width: 80px !important;
      height: 80px !important;
   }

   .global .global-btn a span {
      font-size: 11px !important;
   }

   .global .global-btn a {
      height: 80px !important;
      width: 80px !important;
   }
}


.help-ridth__fon {
   background-image: url('../image/jpg/Rectangle.jpg');
   width: 100%;
}

