:root {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;

  color: #000;
  margin: 0;
  /* 1920_KSS_DKR-25 */




}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
  padding: 0;
  margin: 0;
}

ul {
  list-style-type: none;
}


a {
  font-family: inherit;
  cursor: pointer;
  color: #000;
}

button,
input[type='submit'] {
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: none;
}

.button {
  display: flex;
  padding: 16px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 2px;
  color: #FFF;
  background: #F25E0A;

  border-radius: 40px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s all;
}

/* .button__orange {
  width: 384px;
}

@media (max-width:450px) {
  .button__orange {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
} */

.button:hover {
  background: rgb(255, 214, 31);
}

#myIframe {
  min-width: 100%;
}

.online__button {
  margin: 0 auto;
}

.online-text {
  font-size: 24px;
  padding: 6px 0px;
  color: white;
}

.container {
  max-width: 1217px;
  margin: 0 auto;
}

.min_container {
  max-width: 879px;
  margin: 0 auto;
}

@media (max-width:1216px) {
  .min_container {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.section-title {
  /* font-family: 'Inter'; */
  /* font-style: normal; */
  /* font-weight: 700; */
  font-size: 52px;
  line-height: 130%;
  text-align: center;
  background: linear-gradient(89.85deg, #F9EBB4 -2.29%, #FFFFFF 64.59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-bottom: 54px;
  padding-top: 54px;
}


.section-title>span {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  color: #b4da62;
}

@media (max-width:550px) {
  .section-title {
    font-size: 24px;
  }

  .section-title>span {
    font-size: 30px;
  }
}

.thanks-title {
  color: #4b9c57;
  font-size: 28px;
}

.topline {
  /* Topline Block */
  --topline-bg-color: #333232;

  /* Logo */
  --topline-logo-width: 252px;
  --topline-logo-height: 22px;
  padding: 11px 0px;
  --topline-logo-width-mobile: 126px;
  --topline-logo-height-mobile: 24px;

  background-color: var(--topline-bg-color);
}

.topline__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  padding: 6px 15px;
}

.topline__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topline__logo-img {
  width: var(--topline-logo-width);
  height: var(--topline-logo-height);
  object-fit: contain;
}

@media (max-width: 576px) {
  .topline__logo-img {
    width: var(--topline-logo-width-mobile);
    height: var(--topline-logo-height-mobile);
  }
}

#panelcontainer {
  z-index: 10;
  height: 32px;
}

.modal {
  /* Modal Block */
  --modal-all-texts-color: inherit;
  --modal-bg-color: #fff;

  /* Image */
  --modal-img-width: 40px;
  --modal-img-height: 40px;
  --modal-img-width-mobile: 40px;
  --modal-img-height-mobile: 40px;

  /* Title */
  --modal-title-fz: 32px;
  --modal-title-fw: 700;
  --modal-title-fz-mobile: 32px;
  --modal-title-fw-mobile: 700;

  /* Text */
  --modal-text-fz: 18px;
  --modal-text-fw: 400;
  --modal-text-fz-mobile: 18px;
  --modal-text-fw-mobile: 400;

  /* Close Button */
  --modal-close-button-color: #000;

  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal--visible {
  display: flex;
}

.modal__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 640px;
  /* padding: 150px 80px; */
  color: var(--modal-all-texts-color);
  text-align: center;
  background-color: var(--modal-bg-color);
}

.modal__inner-cd {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 640px;
  height: 380px;
  padding: 150px 80px;
  color: var(--modal-all-texts-color);
  text-align: center;
  background-color: #EEDEC6;
}

@media (max-width: 450px) {
  .modal__inner-cd {
    width: 100%;
    height: 40%;
  }
}




@media (max-width: 768px) {
  .modal__inner {
    width: 90%;
    /* padding: 100px 40px; */
  }
}

@media (max-width: 576px) {
  .modal__inner {
    width: 100%;
  }
}

.modal__img {
  width: var(--modal-img-width);
  height: var(--modal-img-height);
  margin-bottom: 20px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .modal__img {
    width: var(--modal-img-width-mobile);
    height: var(--modal-img-height-mobile);
  }
}

.modal__title {
  margin-bottom: 20px;
  font-size: var(--modal-title-fz);
  font-weight: var(--modal-title-fw);
}

@media (max-width: 576px) {
  .modal__title {
    font-size: var(--modal-title-fz-mobile);
    font-weight: var(--modal-title-fw-mobile);
  }
}

.modal__text {
  font-size: var(--modal-text-fz);
  font-weight: var(--modal-text-fw);
}

@media (max-width: 576px) {
  .modal__text {
    font-size: var(--modal-text-fz-mobile);
    font-weight: var(--modal-text-fw-mobile);
  }
}

.modal__close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-color: var(--modal-close-button-color);
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
}

.modal__close-button::before {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal-close-button-color);
  transform: rotate(45deg);
}

.modal__close-button::after {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal-close-button-color);
  transform: rotate(135deg);
}



.modal2 {
  /* Modal2 Block */
  --modal2-all-texts-color: inherit;
  --modal2-bg-color: #fff;

  /* Image */
  --modal2-img-width: 40px;
  --modal2-img-height: 40px;
  --modal2-img-width-mobile: 40px;
  --modal2-img-height-mobile: 40px;

  /* Title */
  --modal2-title-fz: 32px;
  --modal2-title-fw: 700;
  --modal2-title-fz-mobile: 32px;
  --modal2-title-fw-mobile: 700;

  /* Text */
  --modal2-text-fz: 18px;
  --modal2-text-fw: 400;
  --modal2-text-fz-mobile: 18px;
  --modal2-text-fw-mobile: 400;

  /* Close Button */
  --modal2-close-button-color: #000;

  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal2--visible {
  display: flex;
}

.modal2__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 640px;
  /* padding: 150px 80px; */
  color: var(--modal2-all-texts-color);
  text-align: center;
  background-color: var(--modal2-bg-color);
}

.modal2__inner-cd {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 640px;
  padding: 150px 80px;
  color: var(--modal2-all-texts-color);
  text-align: center;
  background-color: #EEDEC6;
}

@media (max-width: 450px) {
  .modal2__inner-cd {
    width: 100%;
    height: 40%;
  }
}

@media (max-width: 768px) {
  .modal2__inner {
    width: 90%;
    /* padding: 100px 40px; */
  }
}

@media (max-width: 576px) {
  .modal2__inner {
    width: 100%;
  }
}

.modal2__img {
  width: var(--modal2-img-width);
  height: var(--modal2-img-height);
  margin-bottom: 20px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .modal2__img {
    width: var(--modal2-img-width-mobile);
    height: var(--modal2-img-height-mobile);
  }
}

.modal2__title {
  margin-bottom: 20px;
  font-size: var(--modal2-title-fz);
  font-weight: var(--modal2-title-fw);
}

@media (max-width: 576px) {
  .modal2__title {
    font-size: var(--modal2-title-fz-mobile);
    font-weight: var(--modal2-title-fw-mobile);
  }
}

.modal2__text {
  font-size: var(--modal2-text-fz);
  font-weight: var(--modal2-text-fw);
}

@media (max-width: 576px) {
  .modal2__text {
    font-size: var(--modal2-text-fz-mobile);
    font-weight: var(--modal2-text-fw-mobile);
  }
}

.modal2__close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-color: var(--modal2-close-button-color);
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
}

.modal2__close-button::before {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal2-close-button-color);
  transform: rotate(45deg);
}

.modal2__close-button::after {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal2-close-button-color);
  transform: rotate(135deg);
}


.modal3 {
  /* modal3 Block */
  --modal3-all-texts-color: inherit;
  --modal3-bg-color: #fff;

  /* Image */
  --modal3-img-width: 40px;
  --modal3-img-height: 40px;
  --modal3-img-width-mobile: 40px;
  --modal3-img-height-mobile: 40px;

  /* Title */
  --modal3-title-fz: 32px;
  --modal3-title-fw: 700;
  --modal3-title-fz-mobile: 32px;
  --modal3-title-fw-mobile: 700;

  /* Text */
  --modal3-text-fz: 18px;
  --modal3-text-fw: 400;
  --modal3-text-fz-mobile: 18px;
  --modal3-text-fw-mobile: 400;

  /* Close Button */
  --modal3-close-button-color: #000;

  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding-right: 15px;
  padding-left: 15px;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal3--visible {
  display: flex;
}

.modal3__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-height: 475px;
  color: var(--modal3-all-texts-color);
  text-align: center;
  background-color: var(--modal3-bg-color);
}

@media (max-width: 768px) {
  .modal3__inner {
    width: 90%;
  }
}

@media (max-width: 576px) {
  .modal3__inner {
    width: 100%;
  }
}

.modal3__img {
  width: var(--modal3-img-width);
  height: var(--modal3-img-height);
  margin-bottom: 20px;
  object-fit: contain;
}

@media (max-width: 576px) {
  .modal3__img {
    width: var(--modal3-img-width-mobile);
    height: var(--modal3-img-height-mobile);
  }
}

.modal3__title {
  margin-bottom: 20px;
  font-size: var(--modal3-title-fz);
  font-weight: var(--modal3-title-fw);
}

@media (max-width: 576px) {
  .modal3__title {
    font-size: var(--modal3-title-fz-mobile);
    font-weight: var(--modal3-title-fw-mobile);
  }
}

.modal3__text {
  font-size: var(--modal3-text-fz);
  font-weight: var(--modal3-text-fw);
}

@media (max-width: 576px) {
  .modal3__text {
    font-size: var(--modal3-text-fz-mobile);
    font-weight: var(--modal3-text-fw-mobile);
  }
}

.modal3__close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-color: var(--modal3-close-button-color);
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
}

.modal3__close-button::before {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal3-close-button-color);
  transform: rotate(45deg);
}

.modal3__close-button::after {
  position: absolute;
  top: 47%;
  left: 18%;
  width: 20px;
  height: 2px;
  content: '';
  background-color: var(--modal3-close-button-color);
  transform: rotate(135deg);
}



/*header*/

.header {}

@media (max-width:576px) {
  .header {
    padding-bottom: 42px;
  }
}

.header-online {
  padding-bottom: 24px;
}

.header-container {
  position: relative;
}

.header-img--mobile {
  position: absolute;
  right: 0;
  top: 25%;
}

@media (min-width:550px) {
  .header-img--mobile {
    display: none;
  }
}

.header__inner {}

.header__upper {
  position: relative;
  background-color: #C6CFDA;
  -webkit-box-shadow: 0 21px 80px rgba(122, 117, 117, .05), 0 2px 10.0172px rgba(122, 117, 117, .025);
  box-shadow: 0 21px 80px rgba(122, 117, 117, .05), 0 2px 10.0172px rgba(122, 117, 117, .025)
}

@media screen and (max-width:450px) {
  .header__upper {}
}

.header__container--upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 22px 10px
}

@media screen and (max-width:450px) {
  .header__container--upper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

.header__logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}


.header__logo-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.header__logo-list-item:not(:last-child) {
  margin-right: 40px
}

.header__logo-img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 150px;
  height: 40px
}

@media screen and (max-width:576px) {
  .header__logo-img {
    width: 70%;
    height: 70%;
  }
}

@media screen and (max-width:450px) {
  .header__burger-img {
    display: block
  }
}

.header__burger-img {
  display: none
}

@media screen and (max-width:450px) {
  .header__burger-img {
    display: block
  }

  .header__burger-img rect {
    fill: var(--color-accent)
  }
}

@media screen and (max-width:450px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, .96)
  }
}

.header__nav--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.header__nav-close {
  display: none
}

@media screen and (max-width:450px) {
  .header__nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 30;
    display: block;
    width: 40px;
    height: 40px
  }
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: .05em
}

@media screen and (max-width:450px) {
  .header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 26px;
    font-weight: 700
  }
}

.header__menu-item {
  cursor: pointer;
  color: #444444;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}

.header__menu-item:hover {
  text-decoration: underline;
  text-underline-offset: 3px
}

.header__menu-item:not(:last-child) {
  margin-right: 34px
}

@media screen and (max-width:450px) {
  .header__menu-item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 50px
  }
}

.header__info-wrapper {
  z-index: 120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: .03em
}

.header__date-wrapper {
  margin-right: 20px
}

.header__date {
  z-index: 20;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;

  /* or 21px */
  /* Text secondary */
  color: #444444;
}

@media screen and (max-width:576px) {
  .header__date {
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: .03em
  }
}

.header-font-subtitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: #444444;
}


@media screen and (max-width:576px) {
  .header-font-subtitle {
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: .03em
  }
}

.header__date-mode {
  z-index: 20;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #444444;
}


@media screen and (max-width:576px) {
  .header__date-mode {
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 600;
    line-height: 130%;
    letter-spacing: .03em
  }
}

.header__date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.header__container--lower {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%
}

@media screen and (max-width:450px) {
  .header__container--lower {
    height: auto;
    padding-left: 25px;
  }
}

.header__lower {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-top: 69px
}

@media screen and (max-width:1536px) {
  .header__lower {
    padding-bottom: 150px
  }
}

@media screen and (max-width:450px) {
  .header__lower {
    -webkit-box-flex: initial;
    -ms-flex-positive: initial;
    flex-grow: initial;
    padding-top: 80px;
    padding-bottom: 0
  }
}

.header__left {
  position: relative;
  width: 68%
}

@media screen and (max-width:450px) {
  .header__left {
    width: auto
  }
}

.header__decor-elem-img {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg)
}

.header__right {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 32%
}

@media screen and (max-width:450px) {
  .header__right {
    width: auto
  }
}

.header__right-picture {
  position: absolute
}

@media screen and (max-width:576px) {
  .header__right-picture {
    display: none
  }
}

.header__picture-source {
  -o-object-fit: contain;
  object-fit: contain;
  width: 418px;
  height: 338px
}

.header__img {
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (max-width:576px) {
  .header__img {
    display: none
  }
}

.text-accent-span {
  color: var(--color-accent)
}

.header__title {
  margin-bottom: 30px;
  width: 80%;
  font-weight: 700;
  font-size: 44px;
  line-height: 130%;
  /* or 57px */

  /* Text secondary */
  color: #444444;


}

@media screen and (max-width:450px) {
  .header__title {
    font-size: 35px;
    line-height: 41px
  }
}

.header__text {
  width: 75%;
  margin-bottom: 34px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: .02em
}

@media screen and (max-width:450px) {
  .header__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: .02em
  }
}

.header__button {
  position: relative;
  padding-right: 60px
}

.header__button::before {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 22px;
  height: 12px;
  content: url(../img/header/white-arrow-right.svg);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

@media screen and (max-width:450px) {
  .header__button::before {
    display: none
  }
}

@media screen and (max-width:450px) {
  .header__button {
    width: 100%;
    padding-right: 40px
  }
}

nav {
  display: flex;
  gap: 18px;
  list-style: none;
  align-items: center;
}

@media (max-width:550px) {
  nav {
    display: none;
  }
}

.nav__links {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: right;
  color: #6F4F45;
}

.header__center {
  padding-top: 50px;
  display: flex;
}

@media (max-width:450px) {
  .header__center {
    justify-content: center;
    padding-top: 32px;
  }
}

.header__top-center {
  display: flex;
  gap: 37px;
  padding: 24px 32px;
  border: 2px solid #fff;
  max-width: 580px;
}

@media (max-width:450px) {
  .header__top-center {
    gap: 8px;
    padding: 14px 14px;
  }
}

.header-top-title {
  font-size: 24px;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 130%;
  color: #fff;
}

@media (max-width:450px) {
  .header-top-title {
    font-size: 12.54px;
  }
}

.header-top-title span {
  color: #F25E0A;
}


.header__subtitle {
  font-weight: 500;
  font-size: 32px;
  line-height: 130%;
  letter-spacing: 0.6px;
  color: #fff;
  padding-bottom: 58px;

}

@media (max-width:550px) {
  .header__subtitle {
    font-size: 15.46px;
    max-width: 250px;
    padding-bottom: 32px;
  }
}

.header__subtitle>span {
  font-weight: 400;
}

.header--center--left {
  max-width: 590px;
  width: 100%;
}

.header__center--right {
  padding-right: 21px;
}

@media (max-width:550px) {
  .header__center--right {
    display: none;
  }
}

.header__right_photo {
  position: absolute;
  top: 28%;
  right: -3%;
}

.header__inner-online {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  padding-bottom: 24px;
}

.header__content {
  margin-top: 40px;
  margin-bottom: 101px;
  align-items: center;
  gap: 50px;
}

.header-title {
  color: var(--White, #FFF);
  font-size: 86px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  /* 111.8px */
  text-transform: uppercase;
  padding-top: 26px;
}

@media (max-width:1280px) {
  .header-title {
    font-size: 7vw;
    text-align: center;
  }

  .header__content {
    gap: 15px;
  }
}

@media (max-width:450px) {
  .header-title {
    font-size: 42px;
    text-align: center;
  }
}

.header-line {
  background-color: #FFF;
  color: #FFF;
  height: 100px;
  width: 2px;
}

.header-img {
  width: 135px;
  height: auto;
}

@media (max-width:450px) {
  .header-line {
    display: none;
  }

  .header__content {
    flex-direction: column;
  }
}

.webinar-features__arrow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: arrowBounce 2.5s infinite;
  background-color: #32303044;
  border-radius: 20px;
}


@keyframes arrowBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-4px);
  }
}

.webinar-features__quote-line {
  position: absolute;
  left: 50%;
  top: 5%;
  bottom: 0;
  /* width: 4px; */
  /* color: #d42b2b44; */
  background: #4444;
  border-radius: 2px;
  width: 3px;
  height: 120px;
}

/***********/

/*callback*/

.callback {
  /* Callback Block */
  --callback-offset-top: 80px;
  --callback-offset-bottom: 80px;
  --callback-offset-top-mobile: 60px;
  --callback-offset-bottom-mobile: 60px;
  --callback-all-texts-color: #444;


  /* Logo Image */
  --callback-logo-width: 200px;
  --callback-logo-height: 50px;
  --callback-logo-width-mobile: 150px;
  --callback-logo-height-mobile: 30px;

  /* Title */
  --callback-title-fz: 32px;
  --callback-title-fw: 700;
  --callback-title-fz-mobile: 24px;
  --callback-title-fw-mobile: 700;

  /* Lead */
  --callback-lead-fz: 24px;
  --callback-lead-fw: 400;
  --callback-lead-fz-mobile: 18px;
  --callback-lead-fw-mobile: 400;

  /* Decoration Image */
  --callback-picture-width: 300px;
  --callback-picture-height: 300px;
  --callback-picture-width-mobile: 200px;
  --callback-picture-height-mobile: 200px;

  /* Button */
  --callback-button-fz: 18px;
  --callback-button-fw: 400;
  --callback-button-fz-mobile: 16px;
  --callback-button-fw-mobile: 400;
  --callback-button-color: #1F292D;
  --callback-button-bg-color: #FBD269;

  /* Legal Text */
  --callback-legal-fz: 14px;
  --callback-legal-fw: 400;
  --callback-legal-fz-mobile: 14px;
  --callback-legal-fw-mobile: 400;

  color: var(--callback-all-texts-color);
  background-color: var(--callback-bg-color);
}

.callback__container {
  padding: 57px 72px 61px 30px;
  background-color: #E4E9ED;
}

@media (max-width: 576px) {
  .callback__container {
    padding: 15px 5px;
  }
}

@media (max-width: 576px) {
  .callback__container {
    padding: 30px 20px 30px 11px;
  }
}

.callback__upper {
  display: flex;
  padding-bottom: 30px;
  position: relative;
}

@media (max-width: 768px) {
  .callback__upper {
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .callback__upper {
    padding-bottom: 25px;
  }
}

.callback__upper-left {
  width: 65%;
}

.plat__text{
  padding-top: 18px;
}

.plat__content{
  width: 49%;
}

@media (max-width: 768px) {
  .callback__upper-left {
    width: 100%;
  }
}

.callback__logo-img {
  display: block;
  width: var(--callback-logo-width);
  height: var(--callback-logo-height);
  object-fit: contain;
  margin-bottom: 24px;
}

@media (max-width: 576px) {
  .callback__logo-img {
    width: var(--callback-logo-width-mobile);
    height: var(--callback-logo-height-mobile);
  }
}






.callback__lead {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  /* or 26px */
  letter-spacing: -0.03em;

  /* Text secondary */
  color: #444444;


}

@media (max-width: 576px) {
  .callback__lead {
    font-size: var(--callback-lead-fz-mobile);
    font-weight: var(--callback-lead-fw-mobile);
  }
}

@media (max-width: 450px) {
  .callback__lead {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    padding-bottom: 0px;
  }
}


.callback__upper-right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35%;
  position: relative;
}

.plat__content2{
  justify-content: flex-end;
  width: 50%;
}

@media (max-width: 768px) {
  .callback__upper-right {
    width: 100%;
  }
}

.callback__picture {
  position: absolute;
  top: 0%;
  right: 0;
}


.callback__picture--mobile {
  position: absolute;
  top: -40%;
  right: 0;
}

@media (min-width:550px) {
  .callback__picture--mobile {
    display: none;
  }
}

@media (max-width:550px) {
  .callback__picture {
    display: none;
  }
}

.callback__picture-img {
  object-fit: contain;
}

@media (max-width: 576px) {
  .callback__picture-img {
    width: var(--callback-picture-width-mobile);
    height: var(--callback-picture-height-mobile);
  }
}

.callback__form {
  display: grid;
  gap: 20px;
  margin-bottom: 22px;
  grid-template-columns: 286px 269px 269px 218px;
}

@media (max-width: 576px) {
  .callback__form {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}

.callback__form--hidden {
  display: none !important;
}

.callback__input {
  padding: 16px 24px;
  font-size: 18px;
  border: 0px solid #222;
  border-radius: 15px;
}

@media (max-width: 576px) {
  .callback__input {
    border: 1px solid #222;
    border-radius: 10px;
  }
}

@media (max-width: 450px) {
  .callback__input {
    font-size: 16px;
  }
}

.callback__input::placeholder {
  color: #a7a9ac;
}

.callback__button {

  /* Auto layout */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 125%;
  gap: 10px;
  color: #FFF;
  /* Подробнее */
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  background: linear-gradient(90.02deg, #73A0BC 0.01%, #EC7FA5 133.93%);
  border-radius: 10px;

}

@media (max-width: 576px) {
  .callback__button {
    font-size: var(--callback-button-fz-mobile);
    font-weight: var(--callback-button-fw-mobile);
    width: 100%;
    height: 180%;
  }
}

.callback__legal {
  font-size: 12px;
  font-weight: 400;
  color: #6F4F45;
  line-height: 130%;
}

@media (max-width: 576px) {
  .callback__legal {
    font-size: var(--callback-legal-fz-mobile);
    font-weight: var(--callback-legal-fw-mobile);
    text-align: left;
  }
}

.callback__legal--hidden {
  display: none;
}

.callback__legal-link {
  color: #6F4F45;
  text-decoration: underline;
  font-weight: 500;
}

.callback__message {
  display: none;
  margin-top: 14px;
  margin-bottom: 14px;
}

.callback__message--visible {
  display: block;
}

.callback__message--success {
  font-size: 28px;
  color: #4b9c57;
}

.callback__form--hidden .callback__message--success {
  display: block !important;
  position: relative;
}

.callback__form--hidden .callback__message--success {
  position: static;
  margin: 20px auto;
  text-align: center;
  color: #28a745;
  font-weight: bold;
}

.callback__message--error {
  font-size: 20px;
  color: #dc291e;
}

/* features */


.features__container {
  display: -webkit-box;
  display: -ms-flexbox;
  position: relative;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 190px;
  padding-bottom: 72px;
}


.features__title {
  max-width: 29%;
  margin-bottom: 44px;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  text-align: center;
  color: #444444;
}

@media screen and (max-width:576px) {
  .features__title {
    max-width: 80%;
    font-size: 35px;
    line-height: 41px
  }
}

.features__descr-wrapper {
  position: relative;
}

.features__descr-wrapper::before {
  position: absolute;
  bottom: 0;
  left: 14px;
  width: 1px;
  height: 0px;
  content: "";
  background-color: #b4bec8
}

.features__descr-wrapper::after {
  position: absolute;
  top: 0;
  right: 14px;
  width: 1px;
  height: 0px;
  content: "";
  background-color: #b4bec8
}



.features__text {
  position: relative;
  max-width: 780px;
  padding-right: 50px;
  padding-left: 50px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  font-size: 20px;
  line-height: 130%;
  /* or 26px */
  text-align: center;
  padding-bottom: 20px;

  /* Text secondary */
  color: #444444;


}

.features__subtext {
  position: relative;
  max-width: 780px;
  padding-right: 50px;
  padding-left: 50px;
  font-weight: 400;
  line-height: 27px;
  text-align: center;
  font-size: 20px;
  line-height: 130%;
  /* or 26px */
  text-align: center;

  /* Text secondary */
  color: #444444;
}

.features__text::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url(../img/features/quotes-left.svg);
  background-repeat: no-repeat
}

.features__text::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url(../img/features/quotes-right.svg);
  background-repeat: no-repeat
}

.features__button {
  margin-bottom: 60px
}

@media screen and (max-width:450px) {
  .features__button {
    display: none
  }
}

.features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #b4bec8
}

.features__list-item {
  position: relative;
  text-align: center
}

.features__list-item:first-child::after {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 38px;
  height: 22px;
  content: url(../img/features/arrow-long-right-grey.svg);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

@media screen and (max-width:450px) {
  .features__list-item:first-child::after {
    top: 30%;
    right: -40px
  }
}

.features__list-item:nth-child(2)::after {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 38px;
  height: 22px;
  content: url(../img/features/arrow-long-right-grey.svg);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

@media screen and (max-width:450px) {
  .features__list-item:nth-child(2)::after {
    top: 30%;
    right: -40px
  }
}

.features__list-item:not(:last-child) {
  margin-right: 150px
}

@media screen and (max-width:450px) {
  .features__list-item:not(:last-child) {
    margin-right: 26px
  }
}

.features__list-item--two-items:nth-child(2)::after {
  display: none;
  content: ""
}

.featers__list-num {
  font-size: 69px;
  font-weight: 600;
  line-height: 134.5%;
  letter-spacing: .05em
}

@media screen and (max-width:450px) {
  .featers__list-num {
    font-size: 22px;
    line-height: 94.5%
  }
}

.features__list-explain {
  letter-spacing: .05em
}

.text-accent-span {
  color: #4289B9;
}

.features-decor {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15%;
}

@media (max-width: 576px) {
  .features-decor {
    display: none;
  }
}

.features-decor1 {
  position: absolute;
  z-index: 2;
  top: 55%;
  left: 80%;
}

@media (max-width: 576px) {
  .features-decor1 {
    display: none;
  }
}


/******/

/*test*/
.test {
  padding-top: 60px;
  padding-bottom: 60px;
}

.test__title {
  color: #222;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  padding-bottom: 16px;
}

.test__subtitle {
  color: var(--Text-secondary, #444);
  font-size: 20px;
  line-height: 140%;
  padding-bottom: 24px;
}

.test__title,
.test__subtitle {
  display: flex;
  justify-content: center;
}

.test__button-block {
  display: flex;
  justify-content: end;
}

.test__button {
  max-width: 300px;
  display: flex;
  margin: 0 auto;
  color: white;
  cursor: pointer;
}

.question__block {}

.question__main {
  padding: 16px 24px;
}

.question__main>ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.question__main>ul>li {
  color: var(--Text-secondary, #444);
  font-size: 20px;
  line-height: 140%;
  border-radius: 16px;
}

.ans__correct {
  background-color: #C3DE89;
  border: 3px solid #3dc32b;
}

.ans__false {
  background-color: #FEA880;
  border: 3px solid red;
}

.test__counter {
  font-size: 28px;
}

.explanationText {
  color: var(--Text-secondary, #444);
  font-size: 18px;
  line-height: 140%;
  padding-bottom: 12px;
}

/******/
/*advice*/
.advice {
  padding: 77px 0 50px 0;
}

@media (max-width:450px) {
  .advice {
    padding-top: 0px;
  }
}

.advice__container {
  position: relative;
}

.advice__img {
  position: absolute;
  pointer-events: none;
  bottom: 0;
  right: 0;
}

.advice__inner {
  padding: 48px 57px 60px 57px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  background-color: #C5B3A0;
}

.advice__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #6F4F45;
}

.advice__subtitle {
  max-width: 695px;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #6F4F45;
}

.advice__button {
  max-width: 279px;
  width: 100%;
  background-color: #F25E0A;
  padding: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}


@media (max-width:550px) {
  .advice__inner {
    padding: 19px 5px 17px 5px;
    gap: 5px;
  }

  .advice__title {
    font-size: 12.97px;
  }

  .advice__subtitle {
    font-size: 9.73px;
    letter-spacing: 0.02em;
  }

  .advice__img {
    display: none;
  }

  .advice__button {
    font-size: 12px;
    margin: 5px;
    padding: 10px;
    max-width: 144px;
  }
}

/*********/


/*program*/

.program__container {
  padding-bottom: 90px
}

@media screen and (max-width:576px) {
  .program__container {
    padding-bottom: 100px;
    padding-left: 25px;
  }
}

.program__upper {
  padding-bottom: 47px;
  padding-top: 72px;
}

@media screen and (max-width:576px) {
  .program__upper {
    padding-bottom: 40px
  }
}

.program__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  color: #444444;
}

@media screen and (max-width:450px) {
  .program__title {
    font-size: 24px
  }
}

.program__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.program__list {
  width: 100%;
}

.program__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  /* Rectangle 5282 */
  background: #FFFFFF;
  border: 1px solid #4289B9;
  border-radius: 10px;

}

@media screen and (max-width:450px) {
  .program__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.program__list-item:not(:last-child) {
  margin-bottom: 20px
}

.program__list-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20%
}

@media screen and (max-width:450px) {
  .program__list-item-left {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 10px
  }
}

.program__list-item-right {
  width: 80%
}

@media screen and (max-width:450px) {
  .program__list-item-right {
    width: 100%
  }
}

.program__list-item-time {
  color: #4289B9;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

.program__list-item-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 130%;
}

.program-title-color {
  color: #4289B9;
}

/********/

/*speakers*/
.speakers {
  padding: 77px 0px 90px 0px;
  background: #E4E9ED;
  text-align: center;
}

.speakers__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  margin-bottom: 54px;
  color: #444444;
}

.speakers__title span {
  color: #4289B9;
}

.speakers__list {
  display: flex;
  justify-content: center;
  gap: 235px;
  flex-wrap: wrap;
}

.speakers__item {
  max-width: 280px;
}

.speakers__photo {
  width: 229px;
  height: 229px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 38px;
  background: #FFF;
}

.speakers__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speakers__name {
  font-weight: 700;
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.speakers__position {
  font-size: 20px;
  line-height: 130%;
  color: #555;
}

/********/
/*package*/
.package {
  padding: 98px 0 104px;
  background: #FFFFFF;
}

.package__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  /* identical to box height, or 47px */
  /* Text secondary */
  color: #444444;
  padding-bottom: 49px;
}

.package__title span {
  color: #4289B9;
}

.package__content {
  width: 100%;
  background: #E4E9ED;
  border-radius: 10px;
  padding: 100px 272px 70px 168px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 104px;
}

.package__list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  line-height: 130%;
  /* or 26px */
  /* Text secondary */
  color: #444444;


}

.package__list li {
  position: relative;
  padding-left: 50px;
  margin-bottom: 40px;
}

.package__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4289B9;
  font-size: 28px;
  font-weight: bold;
}

/* Форма */
.package__form {
  flex: 1;
  min-width: 320px;
}

.package__inputs {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 24px;
}

@media screen and (max-width:576px) {
  .package__inputs {
    display: flex;
    flex-direction: column;
  }
}

.package__inputs input {
  height: 55px;
  padding: 0 37px;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  font-size: 16px;
}

.package__btn {
  padding: 0 56px;
  height: 55px;
  background: linear-gradient(90.02deg, #73A0BC 0.02%, #EC7FA5 134.61%);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
}

.package__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(112, 73, 241, 0.3);
}

.package__footer {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 14px;
  align-items: center;
  color: #000;
}

@media screen and (max-width:576px) {
  .package__footer {
    display: flex;
    flex-wrap: nowrap;
  }
}

.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.checkbox input {
  display: none;
}

.checkbox__button a {
  text-decoration: underline;
}

.checkbox span {
  width: 20px;
  height: 20px;
  border: 2px solid #7049F1;
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
}

.checkbox input:checked+span::after {
  content: '✓';
  position: absolute;
  color: #7049F1;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.package__secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  padding-left: 30%;
}

@media (max-width: 576px) {
  .package__secure {
    padding-left: 3%;
  }
}

/* Адаптив */
@media (max-width: 992px) {
  .package__content {
    padding: 40px;
    gap: 50px;
  }

  .speakers__list {
    gap: 40px;
  }
}

@media (max-width: 768px) {

  .speakers__title,
  .package__title {
    font-size: 24px;
    padding-left: 25px;
  }

  .package__content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .speakers {
    padding: 80px 0;
  }

  .package {
    padding: 80px 0;
  }
}

/********/

/*experts*/
.experts {
  /* Advantages Block */
  --experts-offset-top: 80px;
  --experts-offset-bottom: 80px;
  --experts-offset-top-mobile: 60px;
  --experts-offset-bottom-mobile: 60px;
  --experts-all-texts-color: inherit;
  --experts-bg-color: inherit;

  /* Title */
  --experts-title-fz: 32px;
  --experts-title-fw: 700;
  --experts-title-fz-mobile: 24px;
  --experts-title-fw-mobile: 700;

  /* Lead */
  --experts-lead-fz: 24px;
  --experts-lead-fw: 400;
  --experts-lead-fz-mobile: 18px;
  --experts-lead-fw-mobile: 400;

  /* Card Image */
  --experts-card-img-width: 72px;
  --experts-card-img-height: 72px;
  --experts-card-img-width-mobile: 48px;
  --experts-card-img-height-mobile: 48px;

  /* Card Text */
  --experts-card-text-fz: 18px;
  --experts-card-text-fw: 400;
  --experts-card-text-fz-mobile: 16px;
  --experts-card-text-fw-mobile: 400;

  /* Link */
  --experts-link-fz: 18px;
  --experts-link-fw: 400;
  --experts-link-fz-mobile: 16px;
  --experts-link-fw-mobile: 400;
  --experts-link-color: #fff;

  color: var(--experts-all-texts-color);
  background-color: var(--experts-bg-color);

  padding-top: 50px;
  padding-bottom: 94px;
}

.experts__container {
  padding-top: var(--experts-offset-top);
  padding-bottom: var(--experts-offset-bottom);
}

@media (max-width: 576px) {
  .experts__container {
    padding-top: var(--experts-offset-top-mobile);
    padding-bottom: var(--experts-offset-bottom-mobile);
  }
}

.experts__upper {
  padding-bottom: 30px;
}

.experts__title {
  width: 80%;
  margin-bottom: 20px;
  font-size: var(--experts-title-fz);
  font-weight: var(--experts-title-fw);
  line-height: 130%;
}

@media (max-width: 768px) {
  .experts__title {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .experts__title {
    font-size: var(--experts-title-fz-mobile);
    font-weight: var(--experts-title-fw-mobile);
  }
}

.experts__lead {
  width: 80%;
  font-size: var(--experts-lead-fz);
  font-weight: var(--experts-lead-fw);
  line-height: 130%;
}

@media (max-width: 768px) {
  .experts__lead {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .experts__lead {
    font-size: var(--experts-lead-fz-mobile);
    font-weight: var(--experts-lead-fw-mobile);
  }
}

.experts__central {
  padding-top: 42px;
}

.experts__cards {
  padding-bottom: 40px;
}

.experts__card>img {
  width: 100%;
}

/* 
@media (max-width: 768px) {
  .experts__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
} */

@media (max-width: 576px) {
  .experts__card {}
}

.experts__picture {
  display: block;
  margin: 0 auto;
  background-color: #DFE9F6;
}

.experts__picture-img {
  display: block;
  width: var(--experts-card-img-width);
  height: var(--experts-card-img-height);
  object-fit: contain;
}

@media (max-width: 576px) {
  .experts__picture-img {
    width: var(--experts-card-img-width-mobile);
    height: var(--experts-card-img-height-mobile);
  }
}

.experts__lower {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

@media (max-width: 576px) {
  .experts__lower {
    padding-top: 30px;
  }
}

.experts__card-lower {
  text-align: center;
  padding-top: 16px;
}

.experts__card-name {
  color: #222;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}

.experts__card-info {
  color: #444;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  padding-top: 8px;
}


/*********/

/*bonus*/
.bonus {
  background: #E4E9ED;
  margin-bottom: 101px;
}

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

  padding: 65px 0px;
  border-radius: 12px;
  gap: 120px;
}

@media (max-width: 576px) {
  .bonus__block-wrapper {
    padding: 40px 25px;
    gap: 0px;
  }
}


.bonus__text-content {

  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  /* or 26px */
  letter-spacing: -0.03em;

  /* Text secondary */
  color: #444444;
}


.bonus__text-content p {
  padding-bottom: 23px;
}

.bonus__text-content h2 {
  padding-bottom: 18px;
  font-size: 36px;
  line-height: 130%;
  /* identical to box height, or 47px */

  /* Text secondary */
  color: #444444;


}

.bonus__text-content h2 span {
  color: #4289B9;
}

.bonus__text-content ul {
  list-style-type: disc;
  padding-left: 21px;
  padding-bottom: 20px;
}

.bonus__text-content li {
  padding-bottom: 15px;
}

.bonus__btn {
  background: linear-gradient(90.02deg, #73A0BC 0.02%, #EC7FA5 134.61%);
  color: #fff;
  padding: 18px 40px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  /* Подробнее */
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
}

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

.bonus__visuals img {}

@media (max-width: 576px) {
  .bonus__visuals img {
    display: none;
  }
}

/*******/

/*access*/
.access {}

.access__inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 67px 57px;
  position: relative;
  /* Rectangle 2596 */

  background: #C5B3A0;

}

@media (max-width:550px) {
  .access__inner {
    padding: 32px 0px;
  }
}

@media (max-width:450px) {
  .access__inner {
    padding: 32px 14px;
  }
}

.access--img {
  position: absolute;
  right: 0;
  top: 12%;
  right: 5%;
}

@media (max-width:550px) {
  .access--img {
    display: none;
  }
}

.access__title {
  padding-bottom: 38px;
  max-width: 692px;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #6F4F45;
}

@media (max-width:550px) {
  .access__title {
    padding-bottom: 6px;
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;

  }
}

.access__subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  max-width: 650px;
  font-family: sans-serif;
  color: #6F4F45;


}

@media (max-width:550px) {
  .access__subtitle {
    font-weight: 400;
    font-size: 12px;
    line-height: 130%;



  }
}

.access__list {
  padding-top: 32px;
  padding-bottom: 41px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style-type: disc;
  color: #FFF;
}

@media (max-width: 450px) {
  .access__list {
    list-style-type: disc !important;
    gap: 4px;
    padding: 24px 14px;
  }



  .access__list li:nth-child(1) {}
}

.access__list-link {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 200%;
  text-decoration-line: underline;
  color: #FFFFFF;

}


@media (max-width:550px) {
  .access__list-link {
    font-weight: 400;
    font-size: 14px;
  }
}

@media (max-width:450px) {
  .access__list-link {

    font-weight: 400;
    font-size: 10px;
    line-height: 200%;
    text-decoration-line: underline;
    color: #FFFFFF;


  }
}

.access__button {}

@media (max-width:550px) {
  .access__button {
    display: none;
  }
}

@media (min-width:550px) {
  .access__button--mobile {
    display: none;
  }
}




.access__button--mobile {
  padding: 12px 32px;
  background: #F25E0A;
  border-radius: 22.3809px;
  font-weight: 400;
  font-size: 12px;
  line-height: 130%;
  text-align: center;
  letter-spacing: -0.05em;
  color: #FFFFFF;
}

.access__button_bottom {
  max-width: 531px;
  width: 100%;
}

/********/



/*callback*/




/**********/

/*footer*/
.footer {
  /* Footer Block */
  --footer-offset-top: 80px;
  --footer-offset-bottom: 80px;
  --footer-offset-top-mobile: 60px;
  --footer-offset-bottom-mobile: 60px;
  --footer-all-text-color: inherit;
  --footer-bg-color: inherit;

  /* Logo Image 1 */
  --footer-logo-img-1-width: 110px;
  --footer-logo-img-1-height: 40px;
  --footer-logo-img-1-width-mobile: 110px;
  --footer-logo-img-1-height-mobile: 40px;

  /* Logo Image 2 */
  --footer-logo-img-2-width: 110px;
  --footer-logo-img-2-height: 40px;
  --footer-logo-img-2-width-mobile: 110px;
  --footer-logo-img-2-height-mobile: 40px;

  /* Copyright Text */
  --footer-copy-fz: 12px;
  --footer-copy-с: 400;
  --footer-copy-fz-mobile: 16px;
  --footer-copy-fw-mobile: 400;
  /* © Актион-диджитал, М */




  /* Legal Text */
  --footer-legal-fz: 16px;
  --footer-legal-fw: 400;
  --footer-legal-fz-mobile: 16px;
  --footer-legal-fw-mobile: 400;

  /* Phone Number Link */
  --footer-tel-fz: 20px;
  --footer-tel-fw: 700;
  --footer-tel-fz-mobile: 20px;
  --footer-tel-fw-mobile: 700;

  /* Phone Call Info Text */
  --footer-info-fz: 16px;
  --footer-info-fw: 400;
  --footer-info-fz-mobile: 16px;
  --footer-info-fw-mobile: 400;

  /* Social Images */
  --footer-socials-img-size: 32px;
  --footer-socials-img-size-mobile: 32px;

  color: #fff;
  background-color: #333232;
}

.footer__container {
  padding-top: var(--footer-offset-top);
  padding-bottom: var(--footer-offset-bottom);
  padding-left: 14px;
}

@media (max-width: 576px) {
  .footer__container {
    padding-top: var(--footer-offset-top-mobile);
    padding-bottom: var(--footer-offset-bottom-mobile);
  }
}

.footer__upper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 40px;
  padding-bottom: 34px;
}

@media (max-width: 576px) {
  .footer__upper {
    row-gap: 10px;
    padding-bottom: 20px;
  }
}

.footer__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 576px) {
  .footer__logo-link {
    margin: 16px;
    margin-left: 0;
  }
}

.footer__logo-img {
  object-fit: contain;
}

.footer__lower {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

@media (max-width: 576px) {
  .footer__lower {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .footer__left {
    padding-bottom: 30px;
  }
}

.footer__copy {
  margin-bottom: 20px;
  font-size: var(--footer-copy-fz);
  font-weight: var(--footer-copy-fw);
}

@media (max-width: 576px) {
  .footer__copy {
    margin-bottom: 14px;
    font-size: var(--footer-copy-fz-mobile);
    font-weight: var(--footer-copy-fw-mobile);
  }
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 400px;
  font-size: var(--footer-legal-fz);
  font-weight: var(--footer-legal-fw);
  line-height: 130%;
}

@media (max-width: 576px) {
  .footer__legal {
    font-size: var(--footer-legal-fz-mobile);
    font-weight: var(--footer-legal-fw-mobile);
  }
}

.footer__legal-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__central {
  align-self: flex-start;
}

.footer__tel {
  display: block;
  margin-bottom: 18px;
  font-size: var(--footer-tel-fz);
  font-weight: var(--footer-tel-fw);
  color: inherit;
}

@media (max-width: 576px) {
  .footer__tel {
    margin-bottom: 14px;
    font-size: var(--footer-tel-fz-mobile);
    font-weight: var(--footer-tel-fw-mobile);
  }
}

.footer__info-text {
  margin-bottom: 30px;
  font-size: var(--footer-info-fz);
  font-weight: var(--footer-info-fw);
}

@media (max-width: 576px) {
  .footer__info-text {
    font-size: var(--footer-info-fz-mobile);
    font-weight: var(--footer-info-fw-mobile);
  }
}

.footer__right {
  align-self: flex-start;
}

@media (max-width: 576px) {
  .footer__right {
    justify-content: flex-start;
  }
}

.footer__socials-list {
  display: flex;
  gap: 20px;
}

.footer__socials-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__socials-img {
  display: block;
  width: var(--footer-socials-img-size);
  height: var(--footer-socials-img-size);
  object-fit: contain;
}

@media (max-width: 576px) {
  .footer__socials-img {
    width: var(--footer-socials-img-size-mobile);
    height: var(--footer-socials-img-size-mobile);
  }
}

.stream__container {
  max-width: 990px;
  padding-bottom: 20px;
  margin: 0 auto
}

@media screen and (max-width:450px) {
  .stream__container {
    padding-right: 10px;
    padding-left: 10px
  }
}

.stream__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase
}

@media screen and (max-width:450px) {
  .stream__upper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.stream__upper-left,
.stream__upper-right {
  width: 50%;
  padding: 40px
}

@media screen and (max-width:450px) {

  .stream__upper-left,
  .stream__upper-right {
    width: 100%;
    padding: 25px
  }
}

.stream__upper-left {
  background-color: #e7f91f
}

.stream__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 38px;
  color: #503a89
}

.stream__descr {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  color: #e7f91f
}

.stream__materials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 60px;
  padding-bottom: 60px
}

.stream__materials-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px
}

.stream__button--materials {
  text-transform: uppercase;
  width: auto
}

.stream__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 60px
}

@media screen and (max-width:450px) {
  .stream__lower {
    padding-top: 40px
  }
}

.stream__frame {
  width: 100%;
  /* height: 558px; */
  margin-bottom: 40px;
  margin-top: 60px;
  -o-object-fit: cover;
  object-fit: cover
}

@media screen and (max-width:450px) {
  .stream__frame {
    /* height: 225px */
  }
}

.stream__guest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 40px
}

@media screen and (max-width:450px) {
  .stream__guest {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

@media screen and (max-width:450px) {
  .stream__guest-left {
    padding-bottom: 20px
  }
}

.stream__guest-text {
  font-size: 18px;
  font-weight: 500
}

@media screen and (max-width:450px) {
  .stream__guest-text {
    text-align: center
  }
}

.stream__guest-link {
  font-weight: 700;
  color: #503a89;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 30px
}

.stream__form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.slider__container {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  position: relative;
  height: 503px;
  border: 2px solid #FFFFFF;
  /* Настрой высоту */
}

.slider__title-cd {
  font-weight: 700;
  font-size: 52px;
  line-height: 130%;
  text-align: center;
  background: linear-gradient(89.85deg, #F9EBB4 -2.29%, #FFFFFF 64.59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding-bottom: 54px;
}

@media (max-width:450px) {
  .slider__title-cd {
    font-size: 20px;
  }
}

.slider__wrapper {
  position: relative;
  width: 100%;
  height: 70%;
  overflow: hidden;
}

@media (max-width:550px) {
  .slider__wrapper {
    height: 50%;
  }
}

.slider__item {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  transform: translate(-50%, -50%) scale(0.8);
  transition: transform 0.3s ease-in-out, left 0.3s ease-in-out, z-index 0.3s;
  z-index: 1;

}

@media (max-width:550px) {
  .slider__item {
    width: 100%;
  }
}

.slider--selected {
  transform: translate(-50%, -50%) scale(1);
  z-index: 3;
}

.slider__item.left,
.slider__item.right {
  z-index: 2;
  transform: translate(-50%, -50%) scale(0.9);
}

.slider__item.left {
  left: 30%;
}

.slider__item.right {
  left: 70%;
}

.slider__item img {
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease-in-out;
  /* Юридический форум-311_resized */
  opacity: 0.6;
  border-radius: 10px;
  display: block;
  border: 1px solid #FFFFFF;
  border-radius: 10px;


  border-radius: 10px;


}

@media (max-width:550px) {
  .slider__item img {
    width: 100%;
  }
}

.slider--selected img {
  filter: none;
  opacity: 1;
}


.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  border: none;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 4;
  font-size: 32px;

  /* Rectangle 102 */

  box-sizing: border-box;
  position: absolute;
  width: 28.33px;
  height: 28.33px;


}

@media (max-width:550px) {
  .btn {
    top: 45%;
  }
}

.next {
  right: 10px;
}

.prev {
  left: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  width: var(--slider-navigation-buttons-size);
  height: var(--slider-navigation-buttons-size);
  margin-top: -60px;
  background-color: var(--slider-navigation-buttons-bg-color);
  color: #F26F31 !important;
  border-radius: 50%;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 5px) !important;
  left: auto
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 5px) !important;
  right: auto
}

@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    top: auto;
    bottom: 0;
    width: var(--slider-navigation-buttons-size-mobile);
    height: var(--slider-navigation-buttons-size-mobile);
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0;
}

@media (max-width: 768px) {
  .swiper-button-prev {
    left: 38%;
  }
}

@media (max-width: 576px) {
  .swiper-button-prev {
    left: 30%;
  }
}

@media (max-width: 768px) {
  .swiper-button-next {
    right: 38%;
  }
}

@media (max-width: 576px) {
  .swiper-button-next {
    right: 30%;
  }
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 12px;
  height: 16px;
}

@media (max-width: 768px) {

  .swiper-button-prev svg,
  .swiper-button-next svg {
    width: 8px;
    height: 12px;
  }
}

.slider__button-path {
  fill: var(--slider-navigation-buttons-arrows-color);
}

.decor__style {
  position: absolute;
  z-index: 20;
  top: 10%;
  left: 11%;

}

.decor__style2 {
  position: absolute;
  z-index: 20;
  top: 81%;
  right: 8%;
}

.decor__style3 {
  position: absolute;
  z-index: 20;
  top: 18%;
  right: 27%;
}

.decor__style4 {
  position: absolute;
  z-index: 20;
  top: -21%;
  right: -6%;
}

.decor__style5 {
  position: absolute;
  z-index: 20;
  top: 12%;
  right: 29%;
}

.platnie__button {
  width: 200px;
  padding: 18px;
}

.packageplatnie {
  gap: 15px;
  justify-content: space-between;
  margin-right: 60px;
}

.platnie__btn {
  width: 300px;
  padding: 18px 60px;
  margin-left: 20px;
}

.packageplatn{
  padding: 18px 60px;
}

.decor__style6 {
  position: absolute;
  z-index: 20;
  top: 60%;
  right: 33%;
}

.decor__style77 {
  position: absolute;
  z-index: 21;
  top: 7%;
  right: 7%;
}

.decor__style7 {
  position: absolute;
  z-index: 20;
  bottom: -43%;
  right: 36%;
}

.decor__style8 {
  position: absolute;
  z-index: 20;
  bottom: -6%;
  left: -8%;
}

.decor__style9 {
  position: absolute;
  z-index: 20;
  bottom: 20%;
  right: 15%;
}

.decor__style10 {
  position: absolute;
  z-index: 20;
  bottom: -10%;
  right: -5%;
}

.decor__style11 {
  position: absolute;
  z-index: 20;
  bottom: 20%;
  left: 32%;
}

.decor__style12 {
  position: absolute;
  z-index: 20;
  bottom: -10%;
  right: -23%;
}

.decor__style13 {
  position: absolute;
  z-index: 20;
  top: -10%;
  right: 55%;
}

.decor__style14 {
  display: none;
}

@media (max-width: 450px) {
  .decor__style14 {
    display: inline;
    position: absolute;
    z-index: 20;
    right: 20%;
    top: 18%;
  }
}

.decor__style15 {
  display: none;
}

@media (max-width: 450px) {
  .decor__style15 {
    display: inline;
    position: absolute;
    z-index: 20;
    right: 6%;
    top: -8%;
  }
}

.decor__style16 {
  display: none;
}

@media (max-width: 450px) {
  .decor__style16 {
    display: inline;
    position: absolute;
    z-index: 20;
    right: 5%;
    top: 70%;
  }
}

.decor__style17 {
  display: none;
}

@media (max-width: 450px) {
  .decor__style17 {
    display: inline;
    position: absolute;
    z-index: 20;
    top: -15%;
    left: 4%;
  }
}

.decor__style18 {
  display: none;
}

@media (max-width: 450px) {
  .decor__style18 {
    display: inline;
    position: absolute;
    z-index: 20;
    top: 64%;
    left: 54%;
  }
}




@media (max-width: 450px) {
  .slider__container {
    height: 250px;
    /* Сильно уменьшаем высоту */
    border: none;


  }

  .slider__title-cd {
    font-size: 18px;
    padding-bottom: 1px;
  }

  .slider__wrapper {
    height: 70%;
  }

  .slider__item {
    width: 80% !important;
    max-width: 250px;
    opacity: 0;
    /* Скрываем все слайды по умолчанию */
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  /* Показываем только центральный слайд */
  .slider--selected {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) scale(1) !important;
    z-index: 3;
  }


  /* Скрываем боковые слайды полностью */
  .slider__item.left,
  .slider__item.right {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.8) !important;
  }

  .slider__item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Чтобы вся картинка была видна */
  }

  .btn {
    top: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .next {
    right: 5px;
  }

  .prev {
    left: 5px;
  }

  .experts {
    padding-bottom: 1px;
    padding-top: 34px;
  }

}

.hidden {
  display: none;
}

.visiblepakate {
  display: none;
}


/**********************/