@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --dark-color: rgb(58, 58, 58);
  --light-color: rgb(99, 93, 85);

}

* {
  font-family: "Inter", serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
}

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

body {
  overscroll-behavior: none;
}

html {
  scroll-behavior: smooth;
}


.volume {
  position: absolute;
  width: 150px;
  height: 150px;
  top: calc(50% - 70px);
  left: calc(50% - 70px);
  z-index: 1;
  background: rgba(0, 0, 0, .7);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  animation: pulse 1s linear infinite;
  display: none;
}

.volume i {
  color: #fff;
}

.volume p {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding-top: 15px;
  margin-bottom: -10px;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}



/* header */
.header {
  padding: 40px 0;
  position: relative;

}

.menu-container {
  display: none;
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.logo {
  text-transform: uppercase;
  font-size: 25px;
  color: #000;

}

nav {}

nav ul {
  font-size: 14px;
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;

}

nav ul li {}

nav ul li a {
  text-transform: uppercase;
  color: #000;
  padding: 10px;
  transition: .2s all linear;

}

nav ul li a:hover {
  background: var(--dark-color);
  color: #fff;
}

/* promo */

.promo {
  padding-bottom: 100px;


}

.promo__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 30px;

}

.promo__content {
  width: 50%;

}

.promo__title {
  font-size: 40px;
  line-height: 120%;
  font-weight: 400;

}

.promo__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-weight: 300;
  font-size: 20px;
  margin-top: 50px;
  line-height: 150%;

}

.btn {
  display: inline-block;
  margin-top: 50px;
  padding: 15px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border: none;
  cursor: pointer;
  background-image: linear-gradient(0.249turn, var(--light-color) 0%, var(--dark-color) 100%);
}

.btn:hover {
  background-image: linear-gradient(0.249turn, var(--light-color) 0%, var(--light-color) 100%);
}

.promo__video {
  width: 50%;


}

/* about */
.about {
  background-image: url(../images/6789.png);
  background-size: cover;
  background-position: top;
  padding: 100px 0;

}

.about__top {
  display: flex;
  align-items: flex-start;
  gap: 10px;

}

.title {
  font-size: 30px;
  font-weight: 400;

}

.about__title {
  width: 30%;

}

.about__descr {
  width: 70%;
  font-weight: 300;
  font-size: 20px;

  line-height: 150%;


}

.about__items {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 10px;

}

.about__item {
  width: 33%;
  background: var(--dark-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  gap: 10px;
  color: #fff;

}

.about__icon {}

.about__icon img {
  width: 70px;

}

.about__item-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;

}

.about__item-text {
  text-align: center;
  font-size: 300;

}

.about__text {
  margin: 0 auto;
  margin-top: 20px;
  width: 70%;
  text-align: center;
  font-size: 16px;

}

.marquee {
  width: 100%;
  /* Ширина контейнера */
  overflow: hidden;
  /* Скрытие выходящего текста */
  white-space: nowrap;
  box-sizing: border-box;
  /* Учет padding в ширине */
  background: var(--dark-color);
  color: #fff;
  font-size: 20px;
  padding: 25px 0;
  font-weight: 200;
  position: relative;
  height: 80px;
}

/* Текст */
.marquee-content {
  display: inline-block;
  padding-left: 100%;



}

.marquee-content:first-child {
  animation: marquee 250s linear infinite;
}


/* Анимация */
@keyframes marquee {
  from {
    transform: translateX(0%);
    /* Начальная позиция */
  }

  to {
    transform: translateX(-100%);
    /* Полный уход текста за левую границу */
  }
}

/* quiz */
.quiz {
  padding-bottom: 50px;
}

.quiz__wrapper {
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  /* Равномерная тень */
  border-radius: 10px;


}

.quiz__top {
  font-size: 20px;
  text-transform: uppercase;
  padding: 0 0 20px;

}

.quiz__question {
  display: flex;
  gap: 50px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;



}

.quiz__title {
  width: 50%;
  font-size: 25px;

  font-weight: 500;
  top: 45px;

}

.quiz__options {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border 0.3s ease, background-color 0.3s ease;
  border: 2px solid transparent;
  padding: 10px;
  border-radius: 5px;



}

.quiz__form {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

label {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background-color: #f5f5f5;
  border: 0px solid #000000;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 200;
text-align: left;

}

.quiz__middel-quastion input {
  cursor: pointer;

  border: 1px solid var(--dark-color)
}

.quiz__bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;

}

.quiz__bottom-step {
  font-size: 14px;
  font-weight: 300;
  color: #0000006a;

}

.quiz__bottom-btns {
  display: flex;
  gap: 10px;

}

.quiz__bottom-btns button {
  padding: 15px;
  border-radius: 4px;
  display: flex;
  color: #fff;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;

}

.quiz__bottom-btns button img {
  width: 20px;
}

.quiz__bottom-btns button:first-child {
  background: #fff;
  border: 1px solid var(--dark-color)
}

.quiz__bottom-btns button:last-child {
  border: none;
  background-image: linear-gradient(0.249turn, var(--light-color) 0%, var(--dark-color) 100%);
}

.quiz__options {
  border: 2px solid transparent;
  padding: 10px;
  border-radius: 5px;
  transition: border 0.3s ease;
}

.quiz__options.error {
  border: 2px solid red;
  background-color: rgba(255, 0, 0, 0.1);
}

.quiz__form {}

.quiz__form-wrapper {
  /*display: flex;
  gap: 50px;*/
text-align: center;
}

.quiz__form-content {
  /*width: 50%;*/
  padding-bottom: 30px;
}

.quiz__form-title {
  font-size: 25px;
  font-weight: 500;

}

.quiz__form-descr {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 200;

}

.input__text {
  width: 100%;
  height: 100%;
  border: none;
  background: transparent;
}

.input__text:focus {
  outline: none;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;


}

form button {
  padding: 15px;
  border-radius: 4px;

  color: #fff;

  font-weight: 500;
  font-size: 18px;
  border: none;
  cursor: pointer;
  background-image: linear-gradient(0.249turn, var(--light-color) 0%, var(--dark-color) 100%);
  margin-top: 15px;
}

form input {
  padding: 20px;
  background-color: #f5f5f5;
  border: 0px solid #000000;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 200;
}

.quiz__form-wrapper input {
  margin-bottom: 15px;
  width: 300px;
}

form input:focus {
  outline: none;
}

form div {
  font-size: 15px;
  font-weight: 200;

}

/* table */
.table {
  padding: 100px;
  background-image: url(../images/3r893.png);
  background-size: cover;
  background-position: top;

}

.table__wrapper {}

.table__inner {
  height: 600px;
  overflow: scroll;
  border-radius: 10px;
  scrollbar-width: thin;
}

.table__inner::-webkit-scrollbar {
  display: none;
  /* Для Chrome, Safari и других браузеров на основе WebKit */
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;


}

thead {
  position: sticky;
  top: 0;
}

th,
td {
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

th {
  border: 0px solid #ddd;
  padding: 20px 0;
  font-weight: 300;
  /* background-color: #f4f4f4; */
  background: var(--light-color);
  color: #fff;
}

.status-in-progress {
  background-color: #eff7ff9e;
  color: #000000;
}

.status-completed {

  background-color: #f6fff3a2;
  color: #000000;

}

.status-not-found {
  background-color: #fde6e89b;
  color: #000000;
}

.table__title {
  margin-top: 20px;
  text-align: center;

}

.table__descr {
  width: 70%;
  margin: 20px auto 0;
  text-align: center;
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;

}

/* process */
.process {

  padding: 0 0 100px 0;

}

.process__wrapper {
  display: flex;
  gap: 50px;

}

.process__content {
  width: 50%;

}

.process__title {}

.process__descr {
  margin-top: 30px;


  font-weight: 300;
  font-size: 20px;
  line-height: 150%;

}

.process__items {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;


}

.process__item {
  display: flex;
  gap: 20px;


}

.process__item-left {
  width: 100px;
  height: 100px;

  font-weight: 500;
  font-size: 20px;
  color: #fff;
  padding: 0 9px;
  background: var(--dark-color);
  display: flex;
  justify-content: center;
  align-items: center;


}

.light {
  background: var(--light-color)
}

.process__item-right {
  width: 80%;
  display: flex;
  flex-direction: column;
  gap: 5px;

}

.process__item-right__title {
  font-weight: 700;
  font-size: 20px;

}

.process__item-right__text {}

/* popup */

.popup {
  position: fixed;
  /* inset: 0; */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* top: 50%;
    left: 50%; */
  /* transform: translate(-50%, -50%); */
  background-color: rgba(0, 0, 0, 0.442);
  display: flex;
  justify-content: center;
  align-items: center;


  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
}

/* Показываем попап */
.popup.show {
  opacity: 1;
  visibility: visible;
}

/* Контент внутри попапа */
.popup-content {
  background: #fff;
  position: relative;
  width: 800px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* border-radius: 10px; */
  padding: 20px;
}

.popup__bottom form {
  margin-top: 50px;
  width: 100%;
}

/* Кнопка закрытия */
.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 44px;
  font-weight: 200;
  color: #ffffff;
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

.footer {
  background: var(--dark-color);
  text-align: center;
  color: #fff;
  padding: 20px 0;
  text-transform: uppercase;
  font-size: 20px;
}

.mobile-menu {
  display: none;
}


.contact-block-cont{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.form-group{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-group label{
  background-color: #fff !important;
  padding: 0 !important;
  border: 0 !important;
}
.form-btn{
  width: 300px;
}
.volume-svg{
  width: 80px;
  height: 80px;
  fill: #fff;
}

.quiz__error {
  color: #dc3545;
  font-size: 14px;
  margin-top: 8px;
  display: none;
}

@media(max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  .logo {

    font-size: 20px;
  }

  nav ul {

    gap: 30px;
  }

  .title {
    font-size: 25px;

  }

  .about__descr {

    font-size: 16px;
  }

  .about__item {

    padding: 20px;
  }

  .about__item-title {

    font-size: 17px;
  }

  .about__item-text {

    font-size: 16px;
    font-weight: 300;
  }

  .about__items {
    margin-top: 30px;
  }

  .process__descr {

    font-size: 16px;
  }

  .process__item-right__title {

    font-size: 16px;
  }

  .process__item-right__text {
    font-size: 16px;
    font-weight: 300;
  }

  .quiz__modal {
    padding: 0 !important;
  }

  .process__item-left {

    font-size: 18px;
  }

  .process__wrapper {


    gap: 30px;
  }

  th,
  td {
    font-size: 13px;
    padding: 15px 0;
  }

  th {

    padding: 10px 0;
  }

  .table__inner {
    height: 650px;
  }

  .table__descr {

    margin: 10px auto 0;

    font-size: 16px;
  }

  .quiz__title {

    font-size: 20px;

  }

  label {

    padding: 10px;
  }

  .quiz__question {

    gap: 30px;
  }

  form input {
    padding: 12px;
  }
}

@media(max-width: 991px) {
  .container {
    max-width: 720px;
  }

  .main__nav {
    display: none;
  }


  .menu-container {
    position: relative;
    display: block;
  }

  /* Стили для гамбургера */
  .hamburger {
    position: absolute;

    background: var(--dark-color);


    top: 0px;
    left: 0px;
    padding: 10px;
    gap: 5px;
    /* width: 40px;
      height: 40px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 2;
  }

  .hamburger span {
    display: block;
    width: 30px;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  /* Стили для активного состояния гамбургера */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -7px);
  }

  /* Стили для мобильного меню */
  .mobile-menu {
    position: fixed;
    top: 42px;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: block;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  .mobile-menu ul {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 20px;
  }

  nav ul {
    gap: 0px;
  }

  .mobile-menu ul li {
    margin: 15px 0;
  }

  .mobile-menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 22px;
    font-weight: 700;
    display: block;
  }

  /* Стили для активного состояния меню */
  .mobile-menu.show {
    left: 0;
  }

  .header__wrapper {

    justify-content: center;
  }

  .header {
    padding: 10px 0 50px;
  }

  .promo__wrapper {
    flex-direction: column;
  }

  .promo__content {
    width: 100%;
  }

  .promo__title {

    text-align: center;
  }

  .promo__text {
    text-align: center;
    margin-top: 20px;
  }

  .promo__video {
    width: 100%;
  }

  .promo {
    padding-bottom: 50px;
  }

  .about {

    padding: 50px 0;
  }

  .about__top {
    flex-direction: column;
    gap: 10px;
  }

  .about__title {
    width: 100%;
  }

  .about__descr {
    width: 100%;
  }

  .about__items {
    flex-direction: column;
  }

  .about__item {
    width: 50%;
  }

  .about__items {

    align-items: center;
  }

  .process {
    padding: 50px 0;
  }

  .process__wrapper {
    flex-direction: column;
  }

  .process__content {
    width: 100%;
  }

  .process__descr {
    margin-top: 10px;
  }

  .process__items {
    width: 100%;
  }

  .table {
    padding: 50px 0;
  }

  th {
    padding: 10px 5px;
  }

  .table__descr {
    width: 100%;

  }

  .quiz {
    padding: 50px 0;
  }

  .quiz__wrapper {

    width: 100%;
    margin: 0 auto;
    padding: 20px;
  }

  .quiz__question {
    flex-direction: column;
  }

  .quiz__title {
    width: 100%;
    text-align: center;
  }

  .quiz__options {
    width: 100%;
  }

  .quiz__bottom-btns button {
    padding: 9px;
  }

  .quiz__top {
    font-size: 16px;
  }

  .quiz__form-wrapper {

    gap: 20px;
    flex-direction: column;
  }

  .quiz__form-content {
    width: 100%;
  }

  .quiz__form-title {
    text-align: center;
  }

  form {
    width: 100%;
  }

  .popup {
    padding: 20px;
    overflow: auto;
  }

  .popup__title {
    font-size: 18px;
  }

  .quiz__form-descr {
    margin-top: 10px;
    font-size: 12px;
  }

  .popup__bottom form {
    margin-top: 20px;
  }

  .close-button {

    top: -6px;
  }
}

@media(max-width: 767px) {
  .container {
    max-width: 540px;
  }

  .promo__title {
    font-size: 31px;
  }

  .promo__text {

    line-height: 120%;
  }

  .title {
    text-align: center;
  }

  .about__item {
    width: 100%;
  }

  .about__text {

    width: 100%;

  }

  th,
  td {

    padding: 15px 5px;
  }

  thead th {
    padding: 5px 5px;
    font-size: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}

@media(max-width: 540px) {
  .container {
    max-width: 100%;
  }
  .quiz__form-wrapper input{
    width: 100%;
  }
  .phone {
    width: 100%;
  }
  .iti{
    width: 100%;
  }
  .form-group{
    width: 100%;
  }
  .form-btn{
    width: 100%;
  }
}