@import "normalize.min.css";
@import "normative.css";

@font-face {
  font-family: "Manrope";
  src:
    url("/static/fonts/Manrope-ExtraBold.woff") format("woff"),
    url("/static/fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src:
    url("/static/fonts/Manrope-Bold.woff") format("woff"),
    url("/static/fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src:
    url("/static/fonts/Manrope-SemiBold.woff") format("woff"),
    url("/static/fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src:
    url("/static/fonts/Manrope-Medium.woff") format("woff"),
    url("/static/fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src:
    url("/static/fonts/Manrope-Regular.woff") format("woff"),
    url("/static/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: normal;
  font-display: swap;
}
:root {
  --font-Jost: "Jost", sans-serif;
  --font-Helios: "HeliosCondC", sans-serif;
  --black: #000;
  --dark: #2f2f2f;
  --white: #fff;
  --grey: #585858;
  --light-grey: #ececec;
  --orange: #cb4603;
  --mid-orange: #ff7f00;
  --light-orange: #ff5b05;
}
* {
  box-sizing: border-box;
}
ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin: 0 0 20px;
  padding: 0;
  line-height: 1.4em;
}
[data-href] {
  cursor: pointer;
}
body {
  font-size: 20px;
  font-family: "Manrope", sans-serif;
  color: #181818;
  line-height: 1.4;
  background-color: #fff;
  font-weight: normal;
}
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  position: relative;
  flex: 1;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.agree-popup {
  font-family: "Manrope", sans-serif;
}
.container {
  max-width: 1325px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}
.contact-elem {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 40px;
  min-height: 32px;
  line-height: 1.1em;
}
.contact-elem--tel {
  white-space: nowrap;
}
.contact-elem--adr {
  flex-wrap: wrap;
  column-gap: 5px;
}
.contact-elem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 32px;
}
.contact-elem--adr::before {
  background: url("/static/img/landing/adr-icon.svg") center center / 100% auto
    no-repeat;
}
.contact-elem--tel::before {
  background: url("/static/img/landing/tel-icon.svg") center center / 100% auto
    no-repeat;
}
.contact-elem--adr span {
  display: inline-block;
}
@media screen and (max-width: 480px) {
  .contact-elem {
    padding-left: 36px;
    min-height: 26px;
  }
  .contact-elem::before {
    width: 22px;
    height: 26px;
  }
}
.menu-toggle {
  display: none;
  display: none;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  padding: 0 4px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.menu-toggle span {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  background-color: #fff;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
}
.menu-toggle span::before {
  top: -12px;
  transition: top 0.3s;
}
.menu-toggle span::after {
  bottom: -12px;
  transition: bottom 0.3s;
}
.menu-toggle.active span {
  background: transparent;
}
.menu-toggle.active span::before {
  top: 0;
  transform: rotate(-45deg);
  transition: transform 0.3s;
}
.menu-toggle.active span::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: transform 0.3s;
}
@media screen and (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
}

/* header */
header {
  position: relative;
  background: linear-gradient(to right, #ff5a00, #ffa95b);
  padding: 20px 0;
}
.header {
  display: grid;
  align-items: end;
  grid-template-columns: 250px 1fr;
  grid-template-rows: 1fr auto;
  column-gap: 20px;
  row-gap: 40px;
}
.logo img {
  display: block;
}
.header .logo {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/3;
}
.header .logo-billet {
  display: none;
  position: absolute;
  text-align: center;
  font-size: 20px;
  color: var(--white);
  background-color: var(--orange);
  font-weight: 700;
  top: 16%;
  left: 75%;
  width: 200px;
  padding: 5px;
  border-radius: 10px;
}
.header_links {
  margin-left: auto;
}
.header_nav {
  margin-bottom: 10px;
}
.header_menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 10px;
  font-weight: 600;
}
.header_menu li {
  transform: skewX(-17deg);
  background-color: var(--grey);
  color: var(--white);
  border-radius: 8px;
  transition: background 0.2s;
  box-shadow: 0px 10px 5px 0px rgba(44, 44, 44, 0.55);
}
.header_menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  text-align: center;
  padding: 5px 20px;
  line-height: 1.1em;
  transform: skewX(17deg);
  transition: 0.1s;
}
.header_menu li.active,
.header_menu li:hover {
  background-color: var(--white);
  color: #181818;
}
.header_menu li:hover a {
  text-shadow: none;
}
.header_links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 10px;
}
.header_links__elem {
  background-color: var(--white);
  color: var(--orange);
  transform: skewX(-17deg);
  font-weight: 600;
  border-radius: 8px;
}
.header_links__elem span {
  position: relative;
  display: block;
  transform: skewX(17deg);
  padding: 10px 20px 10px 60px;
}
.header_links__elem span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.header-mail span::before {
  background-image: url("/static/img/landing/header-mail.svg");
}
.header-tel span::before {
  background-image: url("/static/img/landing/header-tel.svg");
  background-size: 80%;
}
.menu-toggle {
  display: none;
  align-items: center;
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0 auto;
  border: none;
  background: transparent;
  transform: skewX(-17deg);
}
.menu-toggle > span {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 12px;
  border-radius: 3px;
  background: var(--grey);
  color: var(--grey);
}
.menu-toggle > span::before,
.menu-toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: currentColor;
  left: 0;
  border-radius: 3px;
}
.menu-toggle > span::before {
  top: -16px;
  transition: top 0.3s;
}
.menu-toggle > span::after {
  bottom: -16px;
  transition: bottom 0.3s;
}
.menu-toggle.is-active > span {
  background: transparent !important;
}
.menu-toggle.is-active > span::before {
  top: 0;
  transform: rotate(-45deg);
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}
.menu-toggle.is-active > span::after {
  bottom: 0;
  transform: rotate(45deg);
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}
@media screen and (max-width: 1480px) {
  .header {
    grid-template-columns: 220px 1fr;
    column-gap: 30px;
    row-gap: 20px;
  }
  .header_links {
    column-gap: 15px;
  }
  .header_links__elem span {
    padding: 6px 15px 6px 50px;
  }
}
@media screen and (max-width: 1280px) {
  .header {
    grid-template-columns: 150px 1fr;
    column-gap: 15px;
    row-gap: 10px;
    font-size: 20px;
  }
  .header_links__elem span {
    padding: 5px 5px 5px 35px;
  }
  .header_links__elem span::before {
    left: 10px;
    width: 20px;
    height: 20px;
    background-size: contain;
  }
}
@media screen and (max-width: 1080px) {
  header {
    padding-top: 5px;
    padding-bottom: 15px;
  }
  .header {
    grid-template-columns: 120px 1fr;
  }
  .header .logo {
    grid-row: initial;
  }
  .header_nav {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 992px) {
  .header {
    grid-template-columns: 250px 1fr;
    grid-template-rows: initial;
  }
  .header_nav {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: linear-gradient(to right, #ff5a00, #ffa95b);
    padding: 10px 15px 40px;
    z-index: 4;
  }
  .header_menu {
    flex-direction: column;
    align-items: stretch;
    row-gap: 10px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .header_menu li a {
    padding: 2px 10px;
    min-height: 40px;
  }
  .header_links {
    flex-direction: column;
    align-items: flex-end;
  }
  .header-mail {
    order: 1;
  }
  .header .logo {
    grid-row: 1 / 3;
  }
  .header .logo-billet {
    display: block;
  }
  .menu-toggle {
    display: flex;
  }
}
@media screen and (max-width: 600px) {
  .header {
    grid-template-columns: 220px 1fr;
    font-size: 18px;
  }
  .header .logo-billet {
    font-size: 18px;
    top: 12%;
    left: 70%;
    width: 200px;
  }
  .header-mail {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .header {
    grid-template-columns: 37.5vw 1fr;
    font-size: 4.4vw;
  }
  .header .logo-billet {
    font-size: 3.33vw;
    top: 10%;
    left: 70%;
    width: 37.5vw;
    padding: 1.04vw;
  }
  .header_links {
    row-gap: 1.67vw;
  }
  .header_links__elem span {
    padding: 0.5vw 1vw 0.5vw 7.5vw;
  }
  .header_links__elem span::before {
    left: 2vw;
    width: 3.75vw;
    height: 3.75vw;
  }
  .menu-toggle {
    width: 8.33vw;
    height: 8.33vw;
  }
  .menu-toggle > span {
    height: 1.67vw;
  }
  .menu-toggle > span::before {
    top: -2.5vw;
  }
  .menu-toggle > span::after {
    bottom: -2.5vw;
  }
  .header_menu li a {
    padding: 5px 10px;
    min-height: initial;
  }
}
/* end header */

/* footer */
footer {
  background-color: var(--grey);
  color: var(--white);
}
.footer {
  display: grid;
  grid-template-columns: 275px auto auto;
  align-items: start;
  column-gap: 20px;
  row-gap: 40px;
  padding-top: 35px;
  padding-bottom: 50px;
}
.footer_menu {
  grid-column: 2/4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  font-weight: 600;
  padding: 10px 0;
}
.footer_menu li {
  transform: skewX(-17deg);
  background-color: #7f7f7f;
  color: var(--white);
  border-radius: 8px;
}
.footer_menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  text-align: center;
  padding: 5px 15px;
  line-height: 1.1em;
  transform: skewX(17deg);
  transition: 0.1s;
}
.footer_menu li.active,
.footer_menu li:hover {
  background-color: var(--white);
  color: #181818;
}
.footer .logo {
  grid-row: 1/3;
  max-width: 275px;
}
.footer .logo img {
  margin: 0 auto;
}
.footer_contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 10px;
  text-align: left;
}
.footer_contact {
  position: relative;
  display: block;
  padding-left: 40px;
  font-weight: 700;
}
.footer_contact::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
}
.footer_contact--tel::before {
  background-image: url("/static/img/landing/header-tel.svg");
  background-size: 80%;
}
.footer_contact--mail::before {
  background-image: url("/static/img/landing/header-mail.svg");
}
.footer_copy {
  color: #b4b4b4;
  font-size: 14px;
}
.footer_copy a {
  display: block;
}
.footer_copy a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1280px) {
  .footer {
    grid-template-columns: 245px auto auto;
    column-gap: 15px;
    row-gap: 25px;
    padding-top: 25px;
    padding-bottom: 35px;
  }
  .footer .logo {
    max-width: 240px;
  }
}
@media screen and (max-width: 1080px) {
  .footer {
    grid-template-columns: 220px auto auto;
    row-gap: 10px;
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 30px;
  }
  .footer_contacts {
    column-gap: 15px;
  }
}
@media screen and (max-width: 992px) {
  .footer {
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 25px;
  }
  .footer_menu li a {
    min-height: 48px;
    font-size: 15px;
    padding: 5px 10px;
  }
}
@media screen and (max-width: 860px) {
  .footer_menu {
    grid-column: 1/-1;
    order: -1;
  }
  .footer {
    grid-template-columns: 180px auto;
    align-items: center;
  }
  .footer_copy {
    order: 1;
    text-align: right;
  }
  .footer .logo {
    grid-row: 2 / 4;
  }
}
@media screen and (max-width: 768px) {
  .footer_menu li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  .footer_menu {
    display: none;
  }
  .footer .logo {
    grid-row: 1 / 3;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    grid-template-columns: 100%;
  }
  .footer_contacts {
    justify-content: flex-start;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .footer_copy {
    text-align: center;
  }
  .footer .logo {
    max-width: initial;
    grid-row: initial;
  }
}
/* end footer */

.landing h2 {
  font-weight: 800;
  font-size: 40px;
  text-align: center;
  margin: 25px 0 45px;
  line-height: 1.2em;
}
@media screen and (max-width: 1280px) {
  .landing h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 1140px) {
  .landing h2 {
    font-size: 34px;
  }
}
@media screen and (max-width: 992px) {
  .landing h2 {
    font-size: 30px;
    line-height: 1.2em;
    margin: 15px 0 35px;
  }
}
@media screen and (max-width: 768px) {
  .landing h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 480px) {
  .landing {
    font-size: 18px;
  }
  .landing h2 {
    font-size: 22px;
  }
}
.landing_intro {
  width: 100%;
  max-width: 1920px;
  background: url("/static/img/landing/landing-hero.jpg") center center / cover
    no-repeat;
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  padding-top: 65px;
  padding-bottom: 60px;
}
.landing_intro__sub {
  font-weight: 800;
  margin-bottom: 22px;
}
.landing_intro__theme {
  margin-bottom: 12px;
}
.landing_intro__title {
  text-align: center;
  color: #cb4603;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1em;
  margin: 0 0 50px;
}
@media screen and (max-width: 1280px) {
  .landing_intro {
    font-size: 34px;
    padding-top: 55px;
    padding-bottom: 65px;
  }
  .landing_intro__title {
    font-size: 48px;
    margin: 0 0 45px;
  }
}
@media screen and (max-width: 1140px) {
  .landing_intro__title {
    font-size: 44px;
  }
}
@media screen and (max-width: 992px) {
  .landing_intro {
    font-size: 32px;
    padding-top: 40px;
    padding-bottom: 50px;
  }
  .landing_intro__sub {
    margin-bottom: 20px;
  }
  .landing_intro__title {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .landing_intro {
    font-size: 28px;
  }
  .landing_intro__title {
    font-size: 34px;
  }
}
@media screen and (max-width: 600px) {
  .landing_intro {
    font-size: 26px;
    padding-top: 30px;
    padding-bottom: 45px;
  }
  .landing_intro__title {
    font-size: 28px;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 480px) {
  .landing_intro__sub {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .landing_intro {
    font-size: 22px;
  }
  .landing_intro__title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

.landing-times {
  position: relative;
  display: grid;
  grid-template-columns: 42% 57%;
  justify-content: space-between;
  font-size: 23px;
  background-color: #cb4603;
  border-radius: 80px;
  color: #fff;
  text-align: left;
  margin: 45px 25px 25px;
}
.landing-times::before,
.landing-times::after {
  content: "";
  position: absolute;
  top: -15px;
  width: 77px;
  height: 80px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.landing-times::before {
  left: -25px;
  background-image: url("/static/img/landing/landing-time_l.png");
}
.landing-times::after {
  right: -25px;
  background-image: url("/static/img/landing/landing-time_r.png");
}
.landing-time_date,
.landing-time_time {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 35px 30px 30px 165px;
  min-height: 62px;
}
.landing-time_date::before,
.landing-time_time::before {
  content: "";
  position: absolute;
  left: 55px;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
}
.landing-time_date::before {
  background: url("/static/img/landing/landing-time_calendar.svg") center
    center / 100% no-repeat;
}
.landing-time_time::before {
  background: url("/static/img/landing/landing-time_clock.svg") center center /
    100% no-repeat;
}
.landing-time_time {
  background-color: #ff7c00;
  border-radius: 80px;
}
.landing-time_billet {
  display: inline-block;
  font-size: 36px;
  background-color: #fff;
  color: #181818;
  border-radius: 40px;
  font-weight: 700;
  line-height: 1.2em;
  line-height: 1.2em;
  padding: 8px 20px;
  margin-bottom: 5px;
}
.landing-time_desc {
  display: block;
  padding-left: 20px;
}
@media screen and (max-width: 1280px) {
  .landing-time_date,
  .landing-time_time {
    padding: 30px 25px 25px 150px;
  }
}
@media screen and (max-width: 1140px) {
  .landing-times {
    font-size: 22px;
    margin: 0 15px;
  }
  .landing-times::before,
  .landing-times::after {
    width: 70px;
    height: 74px;
  }
  .landing-times::before {
    left: -18px;
  }
  .landing-times::after {
    right: -18px;
  }
  .landing-time_date,
  .landing-time_time {
    padding: 25px 25px 20px 120px;
  }
  .landing-time_date::before,
  .landing-time_time::before {
    left: 40px;
    width: 58px;
    height: 58px;
  }
  .landing-time_billet {
    font-size: 32px;
    padding: 5px 15px;
  }
}
@media screen and (max-width: 992px) {
  .landing-times {
    font-size: 20px;
    margin: 30px 5px 0;
  }
  .landing-times::before,
  .landing-times::after {
    width: 60px;
    height: 66px;
  }
  .landing-time_date,
  .landing-time_time {
    padding: 20px 20px 15px 100px;
  }
  .landing-time_date::before,
  .landing-time_time::before {
    left: 30px;
    width: 50px;
    height: 50px;
  }
  .landing-time_billet {
    font-size: 26px;
    padding: 5px 10px;
  }
  .landing-time_desc {
    display: block;
    padding-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .landing-times {
    grid-template-columns: 100%;
    border-radius: 35px;
  }
  .landing-time_date,
  .landing-time_time {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 25px;
  }
  .landing-times::before,
  .landing-times::after {
    width: 45px;
    height: 50px;
  }
  .landing-times::before {
    left: -12px;
  }
  .landing-times::after {
    right: -12px;
  }
}
@media screen and (max-width: 480px) {
  .landing-times {
    border-radius: 25px;
    font-size: 18px;
    margin: 0;
  }
  .landing-times::before,
  .landing-times::after {
    display: none;
  }
  .landing-time_date,
  .landing-time_time {
    border-radius: 15px;
    padding-left: 74px;
  }
  .landing-time_date::before,
  .landing-time_time::before {
    left: 15px;
    width: 40px;
    height: 40px;
  }
  .landing-time_billet {
    font-size: 22px;
    border-radius: 10px;
  }
  .landing-time_desc {
    padding-left: 5px;
  }
}
.landing_who {
  padding: 60px 0 40px;
}
.landing_who ul {
  display: grid;
  grid-template-columns: repeat(3, 32%);
  justify-content: space-between;
  row-gap: 30px;
  padding: 5px 15px 0;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 20px;
}
.landing_who ul li {
  position: relative;
  padding: 110px 20px 30px;
  text-align: center;
  line-height: 1em;
}
.landing_who ul li::before {
  content: "";
  position: absolute;
  display: block;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 15px;
  transform: skewX(-15deg);
  background-color: #e5e5e5;
}
.landing_who ul li::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 40px;
  background: url("/static/img/landing/landing_who_check.svg") center center /
    100% no-repeat;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1280px) {
  .landing_who {
    padding: 45px 0 40px;
  }
  .landing_who ul {
    grid-template-columns: repeat(3, 32%);
    padding-top: 5px;
  }
  .landing_who ul li {
    padding: 95px 10px 30px;
    border-radius: 10px;
  }
  .landing_who ul li::after {
    top: 30px;
  }
}
@media screen and (max-width: 1140px) {
  .landing_who ul {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .landing_who {
    padding-top: 35px;
  }
  .landing_who ul li {
    font-size: 22px;
    padding: 70px 5px 25px;

    line-height: 1.2em;
  }
  .landing_who ul li::after {
    width: 52px;
    height: 34px;
    top: 15px;
  }
}
@media screen and (max-width: 600px) {
  .landing_who {
    padding: 20px 0 15px;
  }
  .landing_who ul {
    grid-template-columns: 100%;
    row-gap: 15px;
    padding-top: 0px;
    margin-bottom: 10px;
  }
  .landing_who ul li {
    padding: 25px 5px 25px 80px;
    text-align: left;
  }
  .landing_who ul li::after {
    width: 48px;
    height: 30px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 400px) {
  .landing_who ul li {
    padding: 20px 5px 20px 80px;
    font-size: 18px;
  }
}

.landing_preffs {
  padding: 45px 0 60px;
  background-color: #f0f3f9;
}
.landing_preffs__list {
  display: grid;
  grid-template-columns: 29% 29% 40%;
  justify-content: space-between;
  row-gap: 20px;
  font-size: 22px;
  padding-top: 15px;
  margin-bottom: 40px;
}
.landing_preffs__list li:first-child {
  grid-column: 1/-1;
}
.landing_preffs__elem {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 200px;
  padding: 30px 30px 30px 100px;
  color: #fff;
  border-radius: 20px;
}
.landing_preffs__elem--1,
.landing_preffs__elem--4 {
  background: linear-gradient(-145deg, #9a8bc0, #71609c);
}
.landing_preffs__elem--2 {
  background: linear-gradient(-145deg, #f5a503, #d89229);
}
.landing_preffs__elem--3 {
  background: linear-gradient(-145deg, #9096d0, #686db4);
}
.landing_preffs__elem::before {
  content: "";
  position: absolute;
  width: 56px;
  height: 60px;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.landing_preffs__elem--1::before {
  background: url("/static/img/landing/landing_preffs_01.svg") center center /
    96% no-repeat;
}
.landing_preffs__elem--2::before {
  background: url("/static/img/landing/landing_preffs_02.svg") center center /
    94% no-repeat;
}
.landing_preffs__elem--3::before {
  background: url("/static/img/landing/landing_preffs_03.svg") center center /
    90% no-repeat;
}
.landing_preffs__elem--4::before {
  background: url("/static/img/landing/landing_preffs_04.svg") center center /
    100% no-repeat;
}
@media screen and (max-width: 1280px) {
  .landing_preffs {
    padding: 35px 0 50px;
  }
  .landing_preffs__list {
    padding-top: 0;
  }
  .landing_preffs__elem {
    min-height: 180px;
    padding: 20px 20px 20px 100px;
  }
}
@media screen and (max-width: 992px) {
  .landing_preffs__list {
    grid-template-columns: 49% 49%;
  }
  .landing_preffs__elem {
    min-height: 145px;
  }
  .landing_preffs__elem::before {
    left: 26px;
  }
  .landing_preffs__elem:last-child {
    grid-column: 1/-1;
  }
}
@media screen and (max-width: 768px) {
  .landing_preffs__list {
    font-size: 20px;
  }
  .landing_preffs__elem {
    min-height: 120px;
    padding: 15px 15px 15px 80px;
  }
  .landing_preffs__elem::before {
    width: 50px;
    height: 54px;
    left: 15px;
  }
}
@media screen and (max-width: 600px) {
  .landing_preffs {
    padding: 25px 0 40px;
  }
  .landing_preffs__list {
    grid-template-columns: 100%;
    font-size: 18px;
    row-gap: 15px;
    margin-bottom: 20px;
  }
  .landing_preffs__elem {
    min-height: 90px;
  }
}
@media screen and (max-width: 480px) {
  .landing_preffs__list {
    font-size: 16px;
  }
  .landing_preffs__elem {
    padding-left: 70px;
  }
  .landing_preffs__elem::before {
    width: 40px;
    height: 44px;
  }
}
.landing_expert {
  padding: 50px 0;
}
.landing_expert__row {
  align-items: flex-start;
  row-gap: 25px;
  margin-bottom: 20px;
}
.landing_expert__display {
  position: relative;
  width: 49%;
  max-width: 650px;
  padding: 0 25px;
}
.landing_expert__display::before {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 80%;
  border-radius: 20px;
  background-color: #ff7c00;
  opacity: 0.3;
  z-index: -1;
}
.landing_expert__display img {
  display: block;
  border-radius: 20px;
  margin: 0 auto;
}
.landing_expert__text {
  width: 48%;
  max-width: 600px;
  padding-top: 40px;
}
.landing_expert__name {
  position: relative;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.3em;
  padding-bottom: 20px;
  margin-bottom: 25px;
}
.landing_expert__name::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 5px;
  background-color: #6166af;
  border-radius: 5px;
}
.landing_expert__post {
  font-size: 26px;
}
@media screen and (max-width: 1280px) {
  .landing_expert {
    padding: 40px 0;
  }
  .landing_expert__text {
    padding-top: 20px;
  }
}
@media screen and (max-width: 1140px) {
  .landing_expert__name {
    font-size: 32px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .landing_expert__post {
    font-size: 24px;
  }
}
@media screen and (max-width: 992px) {
  .landing_expert__name {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .landing_expert {
    padding: 25px 0;
  }
  .landing_expert__display {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }
  .landing_expert__text {
    width: 100%;
    max-width: initial;
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .landing_expert__name {
    font-size: 26px;
  }
  .landing_expert__post {
    font-size: 20px;
  }
  .landing_expert__display {
    padding: 0 15px;
  }
  .landing_expert__display::before {
    border-radius: 15px;
  }
}

.landing_programm {
  padding: 65px 0;
  background: linear-gradient(to right, #ffebd6, #fff7e7);
}
.landing_programm .landing-times {
  margin-top: 80px;
}
.landing_programm ol {
  counter-reset: program;
  padding: 30px 0 0;
  margin: 0 0 60px;
  font-weight: 600;
  list-style: none;
}
.landing_programm ol > li {
  counter-increment: program;
  position: relative;
  margin-bottom: 40px;
  border-radius: 10px;
  line-height: 1.2em;
  padding-left: 70px;
  min-height: 60px;
}
.landing_programm ol > li > span {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60px;
  z-index: 1;
  padding: 5px 20px 5px 0px;
}
.landing_programm ol > li > span::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 0;
  width: calc(100% + 70px);
  height: 100%;
  z-index: -1;
  background-color: #fff;
  border-radius: 10px;
  transform: skewX(-15deg);
}
.landing_programm ol > li::before {
  content: counter(program);
  position: absolute;
  left: 18px;
  top: -15px;
  font-size: 64px;
  font-weight: 600;
  color: #cb4603;
  opacity: 0.5;
  line-height: 1em;
  z-index: 2;
}
.landing_programm ol ol {
  counter-reset: pr;
  padding: 20px 0 0;
  margin: 0;
}
.landing_programm ol > li li {
  counter-increment: pr;
  background: none;
  position: relative;
  display: block;
  min-height: initial;
  margin-bottom: 5px;
  padding: 0 0 0 40px;
  list-style: none;
}
.landing_programm ol > li li::before {
  content: counter(program) "." counter(pr);
  font-size: 20px;
  position: absolute;
  color: #ff7c00;
  opacity: 1;
  line-height: inherit;
  left: 0;
  top: 0;
}
@media screen and (max-width: 1280px) {
  .landing_programm {
    padding-top: 50px;
  }
  .landing_programm ol {
    padding-top: 15px;
    margin-bottom: 40px;
  }
  .landing_programm ol > li {
    margin-bottom: 35px;
  }
  .landing_programm .landing-times {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .landing_programm ol > li {
    min-height: 50px;
    padding-left: 55px;
    margin-bottom: 26px;
  }
  .landing_programm ol > li::before {
    left: 10px;
    top: -10px;
    font-size: 52px;
  }
  .landing_programm ol > li > span {
    min-height: 50px;
    padding: 8px 10px 8px 0px;
  }
  .landing_programm ol > li > span::before {
    left: -55px;
  }
  .landing_programm ol ol {
    padding-top: 10px;
  }
  .landing_programm ol > li li {
    padding-left: 32px;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .landing_programm .landing-times {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .landing_programm {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .landing_programm ol {
    padding-top: 5px;
    margin-bottom: 30px;
  }
  .landing_programm ol > li {
    padding-left: 48px;
  }
  .landing_programm ol > li::before {
    font-size: 46px;
  }
  .landing_programm ol > li li {
    padding-left: 0;
    font-size: 16px;
  }
  .landing_programm ol > li li::before {
    left: -32px;
  }
}
.landing_call {
  padding: 70px 0;
}
.call-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 30px;
  min-height: 245px;
  background: linear-gradient(to right, #585858, #adadad);
  border-radius: 20px;
  font-weight: 500;
  color: #fff;
  padding: 30px 80px 10px 20px;
}
.call-block_text {
  position: relative;
  text-align: center;
  padding-left: 55px;
  font-size: 36px;
}
.call-block_text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 45px;
  background: url("/static/img/landing/call-block_arr.svg") center center / 100%
    no-repeat;
}
.call-block_text b {
  display: inline-block;
  font-weight: 800;
}
.l-btn {
  position: relative;
  display: block;
  text-align: center;
  border: none;
  font-weight: 700;
  font-size: 24px;
  padding: 15px 25px;
  color: #fff;
  background: linear-gradient(to right, #ff5b05, #ff7c00);
  transform: skewX(-15deg);
  border-radius: 8px;
  box-shadow: 2px 8px 4px 0px rgba(88, 88, 88, 0.5);
  cursor: pointer;
}
.l-btn span {
  position: relative;
  display: block;
  padding-right: 40px;
  transform: skewX(15deg);
}
.l-btn span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 26px;
  background: url("/static/img/landing/l-btn.svg") center center / 100%
    no-repeat;
}
@media screen and (max-width: 1280px) {
  .landing_call {
    padding: 60px 0;
  }
  .call-block {
    min-height: 220px;
    padding: 20px;
  }
}
@media screen and (max-width: 1140px) {
  .call-block {
    min-height: 180px;
    font-size: 26px;
    row-gap: 20px;
  }
  .call-block_text {
    position: relative;
    padding-left: 45px;
    font-size: 32px;
  }
  .call-block_text::before {
    width: 36px;
    height: 38px;
  }
  .l-btn {
    font-size: 20px;
    padding: 12px 20px;
  }
  .l-btn span::before {
    width: 28px;
    height: 20px;
  }
}
@media screen and (max-width: 992px) {
  .call-block_text {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .landing_call {
    padding: 40px 0;
  }
  .call-block_text {
    font-size: 26px;
    padding-left: 38px;
    line-height: 1.2em;
  }
  .call-block_text::before {
    width: 28px;
    height: 30px;
  }
  .l-btn {
    font-size: 18px;
    padding: 10px 15px;
  }
  .l-btn span {
    padding-right: 34px;
  }
  .l-btn span::before {
    width: 24px;
    height: 18px;
  }
  .call-block_text b {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .landing_call {
    padding: 30px 0;
  }
  .call-block_text {
    font-size: 22px;
  }
}
.landing_form {
  padding: 75px 0 60px;
  background: url("/static/img/landing/landing-form.jpg") center center / cover
    no-repeat;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.form-entry {
  display: block;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 22px 10px 22px 25px;
}
.form-entry:hover,
.form-entry:active,
.form-entry:focus {
  border-color: #cb4603;
  outline: none;
}
.contact-form_content {
  padding-top: 40px;
}
.contact-form_inputs {
  display: grid;
  grid-template-columns: repeat(3, 32.5%);
  justify-content: space-between;
  margin-bottom: 55px;
}
.contact-form_entries {
  display: grid;
  grid-template-columns: repeat(3, 32.5%);
  justify-content: space-between;
  row-gap: 25px;
  margin-bottom: 35px;
}
.contact-form_entries textarea {
  min-height: 120px;
  align-self: stretch;
  resize: none;
  grid-column: 3/4;
  grid-row: 1/3;
}
.contact-form_controls {
  display: grid;
  grid-template-columns: 65% 32.5%;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 15px;
}
.agreement {
  position: relative;
  display: block;
  font-size: 16px;
}
.agreement + .agreement {
  margin-top: 15px;
}
.agreement input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.agreement span {
  position: relative;
  display: block;
  padding-left: 52px;
}
.agreement span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  background-color: #fff;
  border-radius: 10px;
  background-position: center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.agreement input:checked + span::before {
  background-image: url("/static/img/landing/check.svg");
}
.agreement small {
  display: block;
  font-size: 15px;
  color: #7e7e7e;
  line-height: 1.3em;
}
.agreement a {
  text-decoration: underline;
}
.agreement a:hover {
  text-decoration: none;
}
@media screen and (max-width: 1280px) {
  .landing_form {
    padding: 50px 0 45px;
  }
  .contact-form_content {
    padding-top: 0;
  }
  .contact-form_inputs {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 1140px) {
  .form-entry {
    padding: 16px 10px 16px 20px;
  }
}
@media screen and (max-width: 992px) {
  .contact-form_content {
    font-size: 18px;
  }
  .agreement {
    font-size: 15px;
  }
  .agreement small {
    font-size: 14px;
  }
  .contact-form_inputs {
    row-gap: 20px;
    margin-bottom: 20px;
  }
  .contact-form_entries {
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form_inputs,
  .contact-form_entries {
    grid-template-columns: repeat(2, 49%);
  }
  .contact-form_inputs .form-entry:last-child,
  .contact-form_entries textarea {
    grid-column: 1 / -1;
    grid-row: initial;
  }
  .contact-form_controls {
    grid-template-columns: 100%;
  }
  .contact-form .l-btn {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 600px) {
  .landing_form {
    padding: 35px 0 40px;
  }
  .form-entry {
    padding: 14px 5px 14px 15px;
  }
  .contact-form_btn {
    padding: 14px 6px;
    font-size: 18px;
    max-width: 300px;
  }
  .agreement span {
    padding-left: 36px;
  }
  .agreement span::before {
    width: 28px;
    height: 28px;
  }
}
@media screen and (max-width: 480px) {
  .contact-form_content {
    font-size: 16px;
  }
  .contact-form_inputs,
  .contact-form_entries {
    grid-template-columns: 100%;
    row-gap: 15px;
    margin-bottom: 15px;
  }
  .agreement {
    font-size: 14px;
  }
  .agreement small {
    font-size: 13px;
  }
}
.landing_place {
  padding: 60px 0 75px;
}
.landing_place__online {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 30px 10px 280px;
  border-radius: 20px;
  background-color: #ffefdf;
  min-height: 215px;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.landing_place__online::before {
  content: "";
  position: absolute;
  left: 75px;
  top: 65px;
  width: 150px;
  height: 98px;
  background: url("/static/img/landing/landing_place.svg") center center / 100%
    no-repeat;
}
.landing_place__online-title {
  font-size: 36px;
  color: #cb4603;
  font-weight: 800;
  margin-bottom: 5px;
}
.landing_place__online p {
  margin-bottom: 0;
}
.landing_place__map iframe {
  display: block;
}
@media screen and (max-width: 1280px) {
  .landing_place {
    padding: 50px 0 65px;
  }
  .landing_place__online {
    padding: 20px 20px 15px 220px;
    min-height: 200px;
    font-size: 22px;
  }
  .landing_place__online::before {
    left: 40px;
    top: 55px;
  }
  .landing_place__online-title {
    font-size: 34px;
  }
}
@media screen and (max-width: 992px) {
  .landing_place__online {
    font-size: 20px;
    padding-left: 180px;
  }
  .landing_place__online::before {
    width: 120px;
    height: 82px;
    left: 30px;
    top: 45px;
  }
  .landing_place__online-title {
    font-size: 30px;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 768px) {
  .landing_place__online {
    font-size: 18px;
    padding: 30px 15px 30px 130px;
    min-height: initial;
  }
  .landing_place__online::before {
    width: 90px;
    height: 64px;
    left: 20px;
    top: 35px;
  }
  .landing_place__online-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .landing_place__online {
    font-size: 16px;
    padding: 120px 10px 20px 10px;
    min-height: initial;
    text-align: center;
  }
  .landing_place__online::before {
    width: 120px;
    height: 82px;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
  }
  .landing_place__online-title {
    font-size: 24px;
  }
}
.landing_anounces {
  padding: 60px 0 120px;
  background-color: #e1e7fb;
}
.seminars-slider__wrap {
  position: relative;
  padding: 20px 0;
}
.seminars-slider {
  overflow: hidden;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 90px;
  border-radius: 5px;
  background-color: #fff;
  z-index: 1;
  transition: 0.1s;
  cursor: pointer;
  box-shadow: 0 0 6px 1px rgba(104, 109, 180, 0.2);
}
.seminars-slider-prev {
  left: -5px;
}
.seminars-slider-next {
  right: -5px;
}
@media screen and (min-width: 1501px) {
  .seminars-slider-prev {
    left: -85px;
  }
  .seminars-slider-next {
    right: -85px;
  }
}
.seminars-slider-prev::before,
.seminars-slider-next::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/static/img/landing/arrow_right.svg") center center / 40%
    no-repeat;
}
.seminars-slider-next::before {
  transform: scale(-1, 1);
}
.seminars-slider .swiper-slide {
  height: auto;
}
@media screen and (max-width: 1500px) {
  .landing_anounces {
    padding: 50px 0 80px;
  }
  .seminars-slider__wrap {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 1140px) {
  .landing_anounces {
    padding: 40px 0 60px;
  }
  .seminars-slider__wrap {
    padding: 15px 30px;
  }
  .slider-btn {
    width: 50px;
    height: 70px;
  }
}
@media screen and (max-width: 600px) {
  .landing_anounces {
    padding: 30px 0 50px;
  }
  .seminars-slider__wrap {
    padding: 15px 20px;
  }
  .slider-btn {
    width: 40px;
    height: 60px;
  }
}
@media screen and (max-width: 480px) {
  .seminars-slider__wrap {
    padding: 0px;
  }
  .slider-btn {
    display: none;
  }
}
.seminar {
  display: grid;
  grid-template-columns: 56% 40%;
  justify-content: space-between;
  font-size: 18px;
  padding: 30px 20px 40px;
  border-radius: 20px;
  background-color: #fff;
  height: 100%;
}
.seminar_train {
  display: flex;
  flex-direction: column;
  padding-left: 25px;
  padding-top: 15px;
}
.seminar_train__sub {
  font-size: 1.39em;
  text-transform: uppercase;
  font-weight: 700;
  color: #686db4;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.seminar_title {
  font-size: 1.77em;
  line-height: 1.05em;
  font-weight: 700;
  margin-bottom: 15px;
  min-height: 150px;
}
.seminar_dates {
  display: grid;
  grid-template-columns: 43% 56%;
  justify-content: space-between;
  align-items: center;
  background-color: #f5a503;
  border-radius: 10px;
  margin-top: auto;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.seminar_date {
  font-size: 2em;
  background-color: #686db4;
  padding: 5px;
  border-radius: 10px;
  font-weight: 700;
}
.seminar_time {
  font-size: 1.39em;
  padding: 5px;
  line-height: 1em;
}
.seminar_expert {
  padding-left: 25px;
  padding-top: 8px;
  border-left: 1px solid #686db4;
}
.seminar_expert img {
  display: block;
  border-radius: 5px;
  margin-bottom: 10px;
}
.seminar_expert__sub {
  text-transform: uppercase;
  color: #f5a503;
  font-size: 1.22em;
  margin-bottom: 5px;
}
.seminar_expert__name {
  font-size: 1.22em;
  font-weight: 800;
  margin-bottom: 5px;
}
.seminar_expert__desc {
  line-height: 1.1em;
  margin: 0;
}
@media screen and (max-width: 1280px) {
  .seminar {
    padding: 25px 15px 35px;
    grid-template-columns: 56% 41%;
    font-size: 17px;
  }
  .seminar_train {
    padding-left: 10px;
  }
  .seminar_expert {
    padding-left: 15px;
  }
}
@media screen and (max-width: 1140px) {
  .seminar {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 899px) {
  .seminar {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .seminar {
    font-size: 2.34vw;
  }
  .seminar_title {
    min-height: initial;
  }
}
@media screen and (max-width: 600px) {
  .seminar {
    font-size: 2.6vw;
    padding: 20px 15px 25px;
  }
  .seminar_train {
    padding-left: 5px;
  }
  .seminar_expert {
    padding-left: 10px;
  }
  .seminar_date,
  .seminar_time {
    padding: 2px;
  }
}
@media screen and (max-width: 480px) {
  .seminar {
    font-size: 16px;
    grid-template-columns: 100%;
    padding: 15px 10px 25px 20px;
    row-gap: 15px;
  }
  .seminar_train {
    padding-left: 0px;
  }
  .seminar_expert {
    padding-top: 10px;
    padding-left: 0px;
    border-left: none;
    border-top: 1px solid #686db4;
  }
}

.landing_arhives {
  padding: 45px 0 55px;
}
.landing_arhives__list {
  display: grid;
  grid-template-columns: repeat(2, 49%);
  justify-content: space-between;
  row-gap: 20px;
  padding-top: 10px;
  margin-bottom: 40px;
}
.landing_arhives__elem {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 635px;
  color: #fff;
}
.landing_arhives__elem::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, transparent, #181818);
}
.landing_arhives__elem img {
  display: block;
}
.landing_arhives__text {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 20px 30px 40px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
}
.landing_arhives__date {
  color: #f7a600;
}
.landing_arhives__title {
  font-size: 27px;
  line-height: 1.1em;
}
.landing_arhives__more {
  display: block;
  text-align: center;
  text-decoration: underline;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .landing_arhives {
    padding: 35px 0 55px;
  }
  .landing_arhives__list {
    padding-top: 0;
  }
  .landing_arhives__text {
    padding: 10px 10px 20px 30px;
    font-size: 18px;
  }
  .landing_arhives__title {
    font-size: 25px;
  }
}
@media screen and (max-width: 992px) {
  .landing_arhives__text {
    padding: 10px 10px 15px 20px;
    font-size: 16px;
  }
  .landing_arhives__title {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .landing_arhives__list {
    grid-template-columns: auto;
    justify-content: center;
  }
  .landing_arhives__text {
    padding: 10px 10px 20px 30px;
    font-size: 18px;
  }
  .landing_arhives__title {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .landing_arhives__list {
    margin-bottom: 20px;
  }
  .landing_arhives__text {
    padding: 10px 10px 15px 20px;
    font-size: 16px;
  }
  .landing_arhives__title {
    font-size: 23px;
  }
  .landing_arhives__more {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .landing_arhives {
    padding-top: 25px;
  }
  .landing_arhives__elem {
    border-radius: 15px;
  }
  .landing_arhives__text {
    padding: 5px 5px 10px 15px;
  }
  .landing_arhives__title {
    font-size: 20px;
  }
}

.order-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(30, 30, 30, 0.85);
  z-index: 20;
  padding: 15px;
  font-size: 18px;
}
.order-modal_inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  border-radius: 30px;
  padding: 50px 30px 70px;
  background:
    url("/static/img/landing/order-modal.png") right bottom / auto no-repeat,
    #fff;
}
.order-modal_close {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 20px;
  top: 15px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: url("/static/img/landing/cross.svg") center center / 60% no-repeat;
}
.order-modal_title {
  color: #cb4603;
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  margin: 0 0 35px;
}
.order_content {
  display: grid;
  grid-template-columns: 48% 50%;
  justify-content: space-between;
  row-gap: 50px;
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}
.order_reqs {
  padding-top: 30px;
  align-self: flex-start;
}
.order_reqs ul li {
  display: flex;
  column-gap: 10px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.order_reqs ul li span {
  min-width: 135px;
  color: #808080;
}
.order_seminar {
  background-color: #ececec;
  border-radius: 15px;
  padding: 30px 40px 50px;
}
.order_sub {
  display: block;
  color: #808080;
}
.order_name {
  font-weight: 700;
  margin: 5px 0 20px;
}
.order_seminar__row {
  display: grid;
  grid-template-columns: 65px 1fr;
  column-gap: 10px;
  margin-bottom: 20px;
}
.order-price {
  font-weight: 700;
  font-size: 22px;
}
.order-promocode {
  padding-top: 5px;
}
.order-promocode_row {
  display: flex;
  padding: 6px 7px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #808080;
  margin-bottom: 25px;
}
.order-promocode_row input {
  width: 100%;
  border: none;
  padding: 10px;
}
.order-promocode_btn {
  background-color: #181818;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  border-radius: 8px;
  flex-shrink: 0;
}
.order_controls {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
}
.order-agreement {
  font-size: 13px;
  max-width: 290px;
}
.order-agreement a {
  color: #686db4;
}
.order-agreement a:hover {
  text-decoration: underline;
}
.order-added {
  padding-top: 25px;
}
.order-added p {
  margin-bottom: 5px;
}
.order-added p b {
  text-transform: uppercase;
}
@media screen and (min-width: 1281px) {
  .order .l-btn {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 1280px) {
  .order-modal_inner {
    position: relative;
    width: 100%;
    max-width: 980px;
    margin: auto;
    border-radius: 25px;
    padding: 30px 30px 35px;
  }
  .order-modal_title {
    font-size: 36px;
    margin: 0 0 25px;
  }
  .order_content {
    row-gap: 30px;
  }
  .order_reqs {
    padding-top: 10px;
  }
  .order_reqs ul li {
    margin-bottom: 14px;
  }
  .order_seminar {
    padding: 20px 25px 30px;
  }
  .order-promocode_btn {
    padding: 10px 15px;
  }
}
@media screen and (max-width: 992px) {
  .order_content {
    grid-template-columns: 50% 48%;
  }
  .order-modal_title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .order_reqs {
    padding-top: 0;
  }
  .order-promocode {
    padding-top: 0;
  }
  .order-added {
    padding-top: 10px;
  }
  .order_reqs ul li {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 900px) {
  .order_content {
    grid-template-columns: 100%;
    row-gap: 15px;
  }
  .order-modal_inner {
    border-radius: 15px;
    padding: 20px 20px 25px;
  }
  .order-modal_close {
    width: 36px;
    height: 36px;
    right: 10px;
    top: 10px;
  }
  .order_reqs ul li {
    margin-bottom: 10px;
  }
  .order_name {
    margin: 5px 0 10px;
  }
  .order-promocode_row {
    margin-bottom: 15px;
  }
  .order_seminar__row {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 600px) {
  .order-modal {
    font-size: 16px;
  }
  .order-modal_title {
    font-size: 26px;
    line-height: 1.2em;
    padding: 0 20px;
  }
  .order-agreement {
    max-width: initial;
  }
  .order .l-btn {
    margin: 0 auto;
  }
  .order-price {
    font-size: 20px;
  }
  .order_reqs ul li span {
    min-width: 115px;
  }
}
@media screen and (max-width: 480px) {
  .order_seminar {
    padding: 15px 15px 20px;
  }
  .order-modal_title {
    font-size: 22px;
  }
}

.payment-status {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.payment-status_card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 12px 30px rgba(47, 47, 47, 0.08);
}

.payment-status_icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.payment-status_icon--fail {
  background: #fee2e2;
}

.payment-status_title {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.15;
  margin: 0 0 10px;
}

.payment-status_lead {
  color: #585858;
  font-size: 18px;
  margin: 0 0 12px;
}

.payment-status_hint {
  color: #808080;
  font-size: 15px;
  margin: 0 0 34px;
}

.payment-status_actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.payment-status_link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 26px;
  border: 2px solid var(--grey);
  border-radius: 8px;
  color: var(--grey);
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  transition: all 0.2s ease;
}

.payment-status_link-btn:hover,
.payment-status_link-btn:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  outline: none;
}

@media screen and (max-width: 600px) {
  .payment-status {
    padding: 35px 0;
  }

  .payment-status_card {
    padding: 24px 16px;
    border-radius: 14px;
  }

  .payment-status_lead {
    font-size: 16px;
  }

  .payment-status_link-btn {
    width: 100%;
    font-size: 18px;
  }
}
