.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 101;
}
.modal-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 45px 60px;
  border-radius: 20px;
  background-color: var(--white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 800px;
  max-height: 80%; /* Максимальная высота модального окна */
  overflow-y: auto; /* Включаем вертикальный скроллинг при необходимости */
}

.modal-content::-webkit-scrollbar {
  width: 10px; /* Ширина скроллбара */
}

.modal-content::-webkit-scrollbar-thumb {
  background-color: darkgrey; /* Цвет бегунка скроллбара */
  border-radius: 5px; /* Радиус скругления бегунка */
}

.modal-content::-webkit-scrollbar-track {
  background-color: lightgrey; /* Цвет трека скроллбара */
  border-radius: 5px; /* Радиус скругления трека */
}
.close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1;
  cursor: pointer;
}
.modal-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  line-height: 38px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 15px;
}
.modal-content span {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 30px;
}
.modal-content h6 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-black);
  margin-bottom: 15px;
}
.modal-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 35px;
}
.modal-content ul li {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 21px;
  font-weight: 500;
  color: var(--primary-black);
  margin-bottom: 4px;
}
@media (max-width: 991.98px) {
  .modal-content {
    width: 90%;
    padding: 25px 35px;
  }
  .modal-content h2 {
    font-size: 26px;
    line-height: 31px;
  }
  .modal-content h6 {
    font-size: 18px;
  }
  .modal-content span {
    font-size: 20px;
    line-height: 23px;
  }
  .modal-content ul {
    margin-bottom: 10px;
  }
  .modal-content ul li {
    margin-bottom: 4px;
  }
}
