.container {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 15px;
}

.intro {
    margin-top: 75px;
}

.intro_flex {
    display: flex;
}


.intro_l {
    width: 65%;
}

.intro_r {
    width: 35%;
}

.intro_img img {
    width: 100%;
}

.about {
    margin-top: 40px;
}

.about_flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.about_col {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1e2028;
    padding: 20px;
    border-radius: 23px;
    margin-bottom: 20px;
}

.about_img img {
    max-height: 75px;
    max-width: 75px;
    width: 75px;
    height: 75px;
}

.under {
    margin-top: 50px;
    margin-bottom: 100px;
}

.under p {
    text-align: center;
    margin-bottom: 30px;
}

.under button {
    all: unset;
    cursor: pointer;
    margin: 0 auto;
    text-align: center;
    background: #ffcd00;
    color: #000;
    padding: 25px 114px;
    font-size: 24px;
    font-weight: bold;
    border-radius: 21px;
}

/* Стиль модального окна */
.modal {
  display: none; 
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

/* Стиль содержимого модального окна */
.modal-content {
  position: relative;
  background-color: #11131c;
  margin: 10% auto;
  padding: 0;
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  color: white;
}

/* Заголовок модального окна */
.modal-header h2 {
  padding: 2px 16px;
  background-color: #11131c;
  color: white;
}

/* Тело модального окна */
.modal-body {padding: 2px 16px;     border-top: 4px solid #fff;}

/* Нижний колонтитул модального окна */
.modal-footer {
    padding: 2px 16px;
    background-color: #11131c;
    color: white;
    margin-top: 69px;
    margin-bottom: 24px;
    text-align: right;
}

.modal-open {
  overflow: hidden; /* Отключаем прокрутку */
  height: 100%; /* Фиксируем высоту, чтобы предотвратить прокрутку */
}

/* Кнопка закрытия */
.close {
  color: #aaa;
  position: absolute;
  top: 0;
  right: 16px;
  font-size: 35px;
  font-weight: bold;
  margin-top: 17px;
}

.close:hover,
.close:focus {
  color: white;
  text-decoration: none;
  cursor: pointer;
}

/* Стиль радио-кнопок и их меток */
input[type="radio"] {
  margin-right: 10px;
}

/* Стиль кнопки "Далее" */
.modal-button {
  background-color: #ffdd40;
  color: black;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 17px;
  border-radius: 5px;
}

.modal-button:hover {
  background-color: #e6c300;
}

.question {
    margin-top: 30px;
}

/* Стиль вопроса */
.question p {
  margin-bottom: 10px;
}

/* Стилизация текста в модальном окне */
.modal-body p {
  font-size: 20px;
      font-size: 28px;
}

.modal-header h2, .modal-body p {
  margin-left: 16px;
}

.shkala {
  --progress-width: 0%; /* CSS переменная для ширины */
}

.shkala:before {
  content: '';
  width: var(--progress-width); /* Используем CSS переменную */
  height: 4px;
  background: #e6c300;
  position: absolute;
  top: 77px;
  left: 0px;
  transition: .3s linear;
}


/* Скрываем стандартные радио-кнопки */
input[type="radio"] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

/* Создаем кастомные радио-кнопки */
input[type="radio"] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  margin-right: 30px; /* Расстояние между кастомными радио-кнопками */
  display: inline-block;
}

/* Стиль для круга */
input[type="radio"] + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  width: 20px; /* Размер внешнего круга */
  height: 20px; /* Размер внешнего круга */
  border: 2px solid white; /* Белая граница внешнего круга */
  border-radius: 50%;
  background-color: transparent;
}

/* Стиль для внутреннего круга (когда выбран) */
input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
}

.mobile_p {
    display: none;
}

/* Можно добавить анимацию для радио-кнопок */
input[type="radio"]:checked + label:before {
  background-color: transparent;
  transition: background-color 0.2s ease;
}

input[type="radio"]:checked + label:after {
  background-color: white;
  transition: background-color 0.2s ease;
}

/* Стиль при наведении */
input[type="radio"] + label:hover:before {
  background-color: rgba(255, 255, 255, 0.5);
}

.question-hidden {
  display: none;
}

input#phone.input, input#username.input {
    color: #fff;
}

@media (max-width: 1200px) {
.about_flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}
.intro_flex {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.intro_l h1 {
    line-height: 1.3;
    font-weight: normal;
    text-align: center;
}
    .intro_l p {
        display: none;
}
    .mobile_p {
        display: block;
        text-align: center;
    }
    .intro_l {
        width: 100%;
}
    .intro_r {
        width: 100%;
    }
.modal-content {
    position: relative;
    background-color: #11131c;
    margin: 10% auto;
    padding: 0;
    border: 1px solid #888;
    width: 90%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    color: white;
}
.form-container h2 {
    font-size: 30px;
}
.shkala:before {
    content: '';
    width: var(--progress-width);
    height: 4px;
    background: #e6c300;
    position: absolute;
    top: 76.5px;
    left: 0px;
    transition: .3s linear;
}
}
