.footer__tos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer__link {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: normal;
}

@media (max-width: 540px) {
  .mob-none {
    display: none;
  }
  .footer__tos {
    flex-direction: column;
  }
  .footer__link {
    margin-bottom: 7px;
  }
}

.popups {
  display: none;
}
.popups {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.7);
  padding: 50px;
  overflow-y: scroll;
}
.popups-body {
  background: #fff;
  padding: 50px;
  position: relative;
}
.close-popups {
  position: absolute;
  width: 25px;
  height: 25px;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.close-popups img {
  width: 100%;
}
@media (max-width: 767px) {
  .popups {
      padding: 20px;
  }
  .popups-body {
      padding: 20px;
  }
}

@media (max-width: 540px) {
  .popups {
      padding: 5px;
  }
  .popups-body {
    padding: 50px 20px;
  }
}

.block_more_info p,
.block_more_info ul li {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 10px;
  color: #000000;
}

@media (max-width: 540px) {
  .block_more_info p,
  .block_more_info ul li {
    font-size: 14px;
    line-height: 20px;
  }
}

.block_more_info ul li {
  list-style: circle;
}
.block_more_info ul {
  padding-inline-start: 40px;
}


.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }

  50% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
  }

  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
  }
}

.nw {
display: flex;
justify-content: center;
align-items: center;
column-gap: 10px; 
font-size: 14px;
text-align: left;
margin-top: 15px !important;

}
