@import "../assets/fonts/circe.css";
* {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "Circe Regular", sans-serif;
  color: #fff;
  text-decoration: none;
  box-sizing: border-box;
}

body {
  background-color: #1e1e1e;
  overflow-x: hidden;
  line-height: 1.8;
}

.column {
  width: 1170px;
  margin: 0 auto;
}

.mt {
  margin-top: 100px;
}

.h2 {
  font-family: "Circe ExtraBold", sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}

.logo {
  font-family: "Circe ExtraBold", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
}

.logo__span {
  color: #d47d2a;
}

.li__icon {
    max-width: 40px;
}

.text-light {
  font-family: "Circe Light", sans-serif;
  font-size: 18px;
  font-weight: 350;
  line-height: 1.8;
}

.text-bold {
  font-family: "Circe Bold", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
}

.btn {
  font-family: "Circe Bold", sans-serif;
  font-size: 20px;
  line-height: 110%;
  text-transform: uppercase;
  color: #1e4202;
  border: none;
  border-radius: 15px;
  background: #d47d2a;
  padding: 20px 40px;
  cursor: pointer;
  text-align: center;
}
.btn:hover {
  transform: translate(-1px, -1px);
}
.btn:active {
  transform: translate(1px, 1px);
  box-shadow: inset 3px 3px 0px 0px #1e4202;
  box-sizing: border-box;
}

.flex-center {
  display: flex;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.header {
  margin-top: 20px;
  justify-content: space-between;
  margin-bottom: 40px;
}


.lang {
    position: relative;
    display: inline-block;
}


.lang select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px 40px 8px 20px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 15px;
    color: #fff;
    outline: none;
    font-size: 16px;
}

.lang::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("../assets/images/svg/arrow-down.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.lang select:hover {
    opacity: 0.8;
}


.lang select::-ms-expand {
    display: none;
}

.lang select option {
  font-family: "Circe Light", sans-serif;
  font-size: 16px;
  font-weight: 350;
  text-transform: capitalize;
  color: #fff;
  background: #1e1e1e;
}

.title__name {
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 30px;
  padding: 10px 40px; 
  margin-bottom: 20px;
  text-align: center;
}
.title__h1 {
  font-family: "Circe ExtraBold", sans-serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 110%;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.title__h1 span {
  color: #bb6617;
  font-size: 61px;
}
.title__ul {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  margin-bottom: 70px;
  margin-top: 30px;
}
.title__li {
  align-items: start;  
  gap: 10px;
}
.title .curse {
  padding: 5px 20px;
}
.title .mb {
  margin-bottom: 20px;
}
.title__p {
  margin-bottom: 40px;
  text-align: center;
}
.title__wrap-1 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 30px;
  grid-template-areas: "item-1 item-2 item-3 item-4";
  align-items: start;
}
.title__wrap-2 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px 30px;
  grid-template-areas: "item-1 item-2 item-3" "item-1 item-4 item-4";
}
.title .item-1 {
  grid-area: item-1;
}
.title .item-2 {
  grid-area: item-2;
}
.title .item-3 {
  grid-area: item-3;
}
.title .item-4 {
  grid-area: item-4;
  background: none;
}
.title__card {
  gap: 5px;
  padding: 20px;
  background-color: #18222b;
  border-radius: 20px;
}
.title__card__name {
  font-size: 16px;
}
.title__card__li {
  font-family: "Circe Regular", sans-serif;
  font-weight: 400;
}

.subtitle {
  display: grid;
  grid-template-columns: 0.6fr 0.9fr;
  gap: 100px;
}

.curses {
  gap: 30px;
}
.curses__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.curses .gap40 {
  gap: 40px;
}
.curses .gap80 {
  gap: 80px;
}

.curses__wrap.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.curses__card {
  border-radius: 20px;
  background-color: #18222b;
  padding: 20px 26px;
  justify-content: space-between;
}
.curses__header {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.curses__price {
  border-radius: 30px;
  background: #263543;
  margin-bottom: 20px;
  padding: 6px 15px;
}

.result {
  gap: 30px;
}
.result header {
  justify-content: center;
  margin-bottom: 30px;
}
.result header p {
  cursor: pointer;
}
.result header p::after {
  content: url("../assets/images/svg/arrow-right.svg");
  margin-left: 10px;
}
.result__wrap {
  display: flex;
  gap: 42px;
  justify-content: center;
}
.result__li div {
  gap: 25px;
}
.result__li div .h2 {
  color: #dd812a;
  position: relative;
}
.result__li div .h2::before {
  bottom: 0;
  width: 50px;
  height: 20px;
  background-color: #18222b;
}

.advantages__wrap {
  margin-top: 30px;
  gap: 40px;
}

.advantages__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.advantages__card {
  border-radius: 20px;
  background: rgb(24, 34, 43);
  gap: 10px;
  padding: 20px;
}
.advantages__header {
  gap: 10px;
}
.advantages__header p {
  text-transform: uppercase;
  text-align: left;
}

.form {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 180px;
}
.form__wrap {
  gap: 15px;
}
.form__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  text-align: left;
  color: #fff;
  border-radius: 15px;
  background: rgb(38, 53, 67);
  padding: 15px;
  border: none;
}
.form__pull {
  display: none;
  width: 100%;
  height: 100%;
  background: #d47d2a;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
}
.form__pull p {
  color: #1e4202;
  font-size: 20px;
}
.form .active {
  display: flex;
}
.form .an_active {
  display: none;
}

.footer {
  background-color: #18222b;
  padding-top: 40px;
  padding-bottom: 50px;
  gap: 30px;
}
.footer__wrap {
  display: flex;
  gap: 42px;
  margin-bottom: 15px;
}
.footer__links {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__docs {
  display: flex;
  gap: 62px;
}
.footer__docs .doc {
  text-decoration-line: underline;
}

.program__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 30px;
}
.program__card {
  gap: 20px;
}
.program__header {
  gap: 20px;
}
.program__count {
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 30px;
  box-sizing: border-box;
}
.program__h3 {
  font-family: "Circe Regular", sans-serif;
  font-size: 24px;
  color: #d47d2a;
  font-weight: 400;
}
.program section p {
  margin-bottom: 10px;
  font-family: "Circe Light", sans-serif;
  font-size: 18px;
  font-weight: 350;
  line-height: 130%;
}
.program section strong {
  font-family: "Circe Regular", sans-serif;
  font-weight: 400;
}
.program section li {
  list-style: inside;
  font-family: "Circe Light", sans-serif;
  font-size: 18px;
  font-weight: 350;
  line-height: 130%;
}
.program__btn {
  margin-top: 30px;
}

.faq {
  gap: 30px;
}
.faq__header {
  display: flex;
  justify-content: center;
}
.faq__wrap {
  font-family: "Circe Regular", sans-serif;
  font-size: 24px;
  font-weight: 400;
  gap: 20px;
  align-items: flex-start;
}
.faq__wrap details {
  position: relative;
  width: 100%;
}
.faq__wrap details::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 7px;
  padding: 0 12px;
  font-size: 28px;
  background-color: #18222b;
  border-radius: 50%;
}
.faq__wrap details:open::after {
  rotate: 45deg;
}
.faq__wrap summary {
  cursor: pointer;
}
.faq__text {
  font-size: 18px;
  padding: 20px;
  background-color: #18222b;
}

.p404 {
  justify-content: center;
}
.p404__img {
  width: 40vw;
}

.document h1 {
  font-family: "Circe Bold", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
}
.document p {
  font-family: "Circe Regular", sans-serif;
  font-size: 20px;
  font-weight: 350;
  line-height: 130%;
}
.document li {
  list-style: auto;
}
.document a {
  text-decoration: none;
}

.brand-slider {
    background-color: #d47d2a;  
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #333;
}

.brand-slider__inner {
    display: flex;
    gap: 30px;
    animation: scroll-left 20s linear infinite;
    width: max-content;
}

.brand-slider__item {
    flex-shrink: 0;
    height: 67px;
    width: auto;
}

.brand-slider__item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

/* Списки и отступы */
.document ol {
  margin: 20px 0;
  padding-left: 20px;
}

.document ol li {
  margin-bottom: 12px;
}

/* Таблицы */
.document table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  background: #18222b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.document table,
.document table td,
.document table th {
  border: 1px solid #4e6982;
}

.document table th {
  background: #4e6982;
  color: #fff;
  font-family: "Circe Bold", sans-serif;
  font-size: 16px;
  padding: 14px;
  text-align: center;
  text-transform: uppercase;
}

.document table td {
  padding: 12px 10px;
  text-align: center;
  font-family: "Circe Regular", sans-serif;
  font-size: 16px;
  color: #e0e0e0;
}

.document table tr:nth-child(even) {
  background-color: #1c2630;
}


/* Отступы между параграфами */
.document span {
  margin-bottom: 25px;
  font-size: 18px;
}

.paragraph-oferta {
  display: block;
  font-size: 18px;
  line-height: 170%;
  margin-top: 18px;
} 

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-25%); /* 🔹 100% / 4 копии = 25% */
    }
}


@media (width < 780px) {
  .column {
    width: auto;
    padding: 0 10px;
  }
  .header {
    margin-bottom: 30px;
  }
  .mt {
    margin-top: 80px;
  }
  .h2 {
    font-size: 26px;
  }
  .text-light {
    font-size: 15px;
  }
  .btn {
    font-size: 18px;
  }
  .title__h1 {
    font-size: 32px;
  }
  .title__h1 span {
    font-size: 32px;
  }
  .title__ul {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .title__p {
    margin-bottom: 30px;
  }
  .title__wrap-1, .title__wrap-2 {
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    gap: 10px 0px;
    grid-template-areas: "item-1" "item-2" "item-3" "item-4";
  }
  .title .item-4 {
    padding: 0;
  }
  .subtitle {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .curses {
    gap: 20px;
  }
  .curses .gap40,
  .curses .gap80 {
    gap: 20px;
  }
  .result header {
    margin-bottom: 20px;
  }
  .result__wrap {
    flex-direction: column;
    gap: 20px;
  }
  .advantages__wrap {
    margin-top: 20px;
    flex-direction: column;
  }
  .advantages__card {
    max-width: 340px;
  }
  .form {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer__wrap {
    flex-direction: column;
    margin-bottom: 10px;
    gap: 10px;
  }
  .footer__links {
    flex-direction: column-reverse;
    gap: 20px;
    align-items: center;
  }
  .footer__docs {
    gap: 0;
    justify-content: space-between;
    width: 100%;
  }
  .program__wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .program__count {
    font-size: 20px;
  }
  .result__wrap .result__li .h2 {
    font-size: 48px;
  }
  .result__wrap .result__li .text-light {
    font-size: 18px;
  }
  .faq__wrap {
    font-size: 18px;
  }
  .faq__text {
    font-size: 15px;
    padding: 10px;
  }

  .brand-slider__inner {
      animation: scroll-left 8s linear infinite;
  }

}/*# sourceMappingURL=style.css.map */


@media (max-width: 480px) {
    .brand-slider__inner {
        animation: scroll-left 8s linear infinite;
        gap: 20px !important; 
    }
    .brand-slider__item {
        height: 50px !important;
    }
}