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

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

body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background: linear-gradient(267.13deg, #F4E4CB -11.22%, #B4A190 126.58%);
  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;
  text-decoration: none;
  cursor: pointer;
}

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;
}

.hidden {
  display: none;
}

/* .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: #000;

  /* Logo */
  --topline-logo-width: 126px;
  --topline-logo-height: 24px;
  --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 {
  padding-bottom: 88px;
}

@media (max-width:450px) {
  .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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 34px;
}

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

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__title {
  font-weight: 800;
  font-size: 70px;
  line-height: 120%;
  background: linear-gradient(90deg, #F9EBB4 -9.15%, #FFFFFF 81.02%);
  padding-bottom: 26px;
  padding-top: 62px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

}


@media (max-width:550px) {
  .header__title {
    font-size: 33.81px;
    padding-bottom: 9px;
    padding-top: 24px;
  }
}

.header__title>span {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  color: #f6c953;
}

.header__title__stream {
  font-weight: 800;
  font-size: 50px;
  line-height: 120%;
  color: #222222;
  padding-bottom: 50px;
}


@media (max-width:550px) {
  .header__title__stream {
    font-size: 22px;
    padding-bottom: 0px;
  }
}

.header__title__stream>span {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  color: #f6c953;
}

.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;
  }
}

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

/*main*/
.main {}

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

.main__inner {
  position: relative;
}

.main__header {
  width: 65%;
  padding-top: 50px;
}

.main__header>.button {
  padding: 16px 40px;
}

@media (max-width: 1100px) {
  .main__header {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .main__header {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

.main__header-title>ul {
  display: flex;
  gap: 50px;
  padding-left: 25px;
}

@media (max-width:450px) {
  .main__header-title>ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}

.main__header-title>ul>li {
  color: var(--Text-secondary, #444);
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  list-style-image: url(../img/main/Calendar.svg);
}

.main__header-title>ul>li:nth-child(2) {
  list-style-image: url(../img/main/Location.svg);
}

.main__header-title>ul>li:nth-child(3) {
  list-style-image: url(../img/main/Online.svg);
}

.main__header-subtitle {
  gap: 50px;
  padding-top: 35px;
  padding-bottom: 35px;
}

.main-subtitle {
  color: var(--Text-secondary, #444);
  font-size: 22px;
  line-height: 140%;
}

.main-subtitle:last-child {
  padding-top: 10px;
  font-style: normal;
  font-weight: 400;
}

.main__button-section {
  display: flex;
  gap: 10px;
  justify-content: center;
}

@media (max-width:450px) {
  .main__button-section {
    flex-direction: column;
  }
}

.header__lower__inner {
  display: flex;
  gap: 22px;
}

@media (max-width:550px) {
  .header__lower__inner {
    gap: 15px;
  }
}

.button__header {
  max-width: 241px;
  width: 100%;
}

.main__button {
  border-radius: 40px;
  padding: 16px;
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  text-align: center;
}

@media (max-width:550px) {
  .main__button {
    font-size: 11px;
    line-height: 150%;
    padding: 8px;
    max-width: 170px;
  }
}

@media (max-width:450px) {
  .button__header:first-child{
    max-width: 132px;
  }

  .button__header:last-child{
    max-width: 144px;
  }
}

.main__button--green {
  background-color: #F25E0A;
  color: #fff;
}

.main__button--yellow {
  background-color: #F9ECB5;
  color: #6F4F45;
}

.main-sticker {
  position: absolute;
  right: 25%;
  top: -15%;
  z-index: 1;
}

.main-img {
  position: absolute;
  right: -2%;
  top: -10%;
}

.main__footer-img {
  padding-top: 26px;
}

@media (max-width:1280px) {
  .main-img {
    right: 0%;
  }
}

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

  .main-sticker {
    right: 5%;
    top: -10%;
    width: 150px;
  }
}

@media (max-width:450px) {
  .main-sticker {
    right: 0;
    top: -6%;
    width: 125px;
  }
}

.main__middle {
  padding-top: 100px;
}

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

.main__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(250px, 488px));
  grid-gap: 31px;
}

@media (max-width: 980px) {
  .main__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .main__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.main__card {
  padding: 32px;
  padding-bottom: 48px;
  border-radius: 2px;
  border: 0px solid rgba(221, 221, 222, 0.00);
  background: #F7F5F3;
  border-top: 14px solid #c3de89;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

@media (max-width:550px) {
  .main__card {
    padding: 24px;
  }
}

.main__card:nth-child(2) {
  border-top: 14px solid #fbd269;
}

.main__card:nth-child(3) {
  border-bottom: 14px solid #C3DE89;
}

.main__card-upper {}

.main__card-num {
  font-weight: 800;
  font-size: 32px;
  line-height: 130%;
  text-align: center;
  color: #222;
  padding-bottom: 41px;
}

@media (max-width: 576px) {
  .main__card-num {
    font-size: 17px;
    line-height: 130%;
    padding-bottom: 18px;
    text-align: center;
  }
}

.main__card-lower {
  padding-bottom: 35px;
}

@media (max-width:550px) {
  .main__card-lower {
    padding-bottom: 16px;
  }
}

.main__card-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #222;
}

@media (max-width: 576px) {
  .main__card-text {
    text-align: center;
    font-size: 12px;
    line-height: 150%;
  }
}

.main__card-text2 {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.02em;
  color: #222;
  padding-bottom: 20px;
}

@media (max-width: 576px) {
  .main__card-text2 {
    text-align: center;
    font-size: 12px;
    line-height: 150%;
  }
}


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

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

.main__link {
  display: inline-flex;
  padding: 16px 40px;
  text-decoration: none;
  border: none;
}

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

.main__footer {
  /* padding-top: 6px; */
  border: 2px solid #fff;
  padding: 0 34px 0 46px;
}

@media (max-width:550px) {
  .main__footer {
    padding-top: 6px;
  }
}

@media (max-width:450px) {
  .main__footer {
    padding-left: 0px;
    padding-right: 0px;
  }
}

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

@media (max-width:1280px) {
  .main__footer-inner {
    padding: 20px 0px;
  }
}

.main__footer-content {
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  margin: auto 0;
}

@media (max-width:550px) {
  .main__footer-content {
    padding-left: 0px;
  }
}

.main__footer-title {
  font-family: var(--second-family);
  font-weight: 800;
  font-size: 48px;
  line-height: 120%;
  color: #222;
}

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

@media (max-width:550px) {
  .main__footer-title {
    font-size: 32px;
    line-height: 120%;
  }

  .main__footer-title>span {
    font-family: "Pacifico", cursive;
    font-size: 38px;
  }
}

.main__footer-subtitle {
  font-weight: 400;
  font-size: 24px;
  line-height: 125%;
  color: #6F4F45;
  max-width: 625px;
}


@media (max-width:550px) {
  .main__footer-subtitle {
    font-size: 12px;
    line-height: 125%;
    padding-left: 0px;
    letter-spacing: -0.07em;
  }
}

.main__footer-subtitle>span {
  font-weight: 700;
}

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

.main__footer-imgmobile{
  display: none;
}

@media (max-width:450px) {
  .main__footer-imgmobile {
    display: block;
  }
}

/******/

/*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 {
  padding-bottom: 73px;
}

@media (max-width:550px) {
  .program {
    padding: 24px 0px;
    padding-bottom: 60px;
  }
}

.program__inner {
  position: relative;
}

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

.program__inner>ul {
  padding-bottom: 41px;
  background: linear-gradient(180deg, rgba(249, 236, 181, 1) 0%, rgba(239, 165, 102, 1) 100%) 0% 0% / 18% 97% no-repeat,
    linear-gradient(90deg, rgba(222, 205, 183, 1) 0%, rgba(197, 179, 160, 1) 100%) 18% 0% / 100% 100% no-repeat;
  border: 2px solid #fff;
  margin-bottom: 62px;
}

@media (max-width:450px) {
  .program__inner>ul {
    background: linear-gradient(180deg, rgba(249, 236, 181, 1) 0%, rgba(239, 165, 102, 1) 100%) 0% 0% / 14.2% 98% no-repeat,
    linear-gradient(90deg, rgba(222, 205, 183, 1) 0%, rgba(197, 179, 160, 1) 100%) 14.2% 0% / 100% 100% no-repeat;
    padding-bottom: 16px;
    margin-bottom: 23px;
  }
}

@media (max-width:550px) {
  .program__block {
    padding-top: 10px;
  }

  .program__block:first-child{
    padding-top: 22px;
  }
}

.program__block-content:nth-child(0) {
  align-items: center;
}

.program__block-content {
  display: flex;
  align-items: flex-start;
  border-radius: 4px;
}

@media (max-width:550px) {
  .program__block-content {
    gap: 19px;
    padding-bottom: 32px;
  }
}

.program__time {
  /* max-width: 215px; */
  width: 17.7%;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  color: #6F4F45;
  text-align: center;
  /* border-top: 4px solid #e2e2e2; */
  padding-top: 49px;
  z-index: 2;
}

@media (max-width:450px) {
  .program__time {
    padding-top: 0px;
    width: 14.2%;
    font-size: 12px;
    font-weight: 700;
  }
}

.program__name--block {
  /* max-width: 615px; */
  width: 56.7%;
  padding-left: 10px;
  padding-right: 14px;
  padding-top: 49px;
}

@media (max-width:450px) {
  .program__name--block {
    padding-top: 0px;
    width: 85.8%;
  }
}


.program__name {
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  color: #6F4F45;
}

.program__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 32px;
  list-style-type: disc;
  padding-left: 23px;
}

.program__list--item {
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #6F4F45;
}

@media (max-width:450px) {
  .program__list--item {
    font-size: 10px;
    line-height: 120%;
  }
}


.program__speaker--img {
  padding-top: 22px;
  padding-bottom: 14px;
}

@media (max-width:550px) {
  .program__name {
    font-weight: 700;
    font-size: 10px;
    border-top: none;
    padding: 0;
  }

  .program__description {}
}

.program__speaker {
  /* max-width: 250px; */
  width: 25.5%;
  /* border-top: 4px solid #e2e2e2; */
  padding: 49px 10px 0 0;
}

.program__speakerinner {
  border-left: 1px solid #6F4F45;
  padding-left: 29px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

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

.program__speaker_inner {
  display: flex;
  gap: 19px;
  align-items: flex-start;
}

.program__description {
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
}

.program__speaker--name {
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  color: #6F4F45;
}

.program__speaker--name span {
  font-weight: 600;
}

.program__speaker--position {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  text-align: left;
  color: #6F4F45;
}

.program__speaker--position span {
  font-size: 16px;
}

.reveal-content {
  display: none;
  /* Изначально скрываем содержимое блока */
  border-radius: 4px;
  border: 2px solid var(--Secondary-white, #DDDDDE);
  background: rgba(195, 222, 137, 0.40);
  margin-top: 23px;
}

.reveal-text {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  /* 31.2px */
  padding: 28px 56px;
}

/* Стили для анимации/выдвижения блока */
.reveal-content.revealed {
  display: block;
  animation: reveal 0.5s ease;
}

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

.reveal-img {
  display: flex;
  align-items: center;
  transform: rotate(-90deg);
  width: 46.726px;
  height: 62px;
  margin-right: 16px;
  transition: 0.3s all;
  cursor: pointer;
}

@media (max-width:450px) {
  .reveal-img {
    margin-right: 0px;
  }

  .reveal-text {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    /* 31.2px */
    padding: 16px 32px;
  }

}

.rotate-90 {
  transform: rotate(0deg);
  /* Применяем поворот изображения на 90 градусов */
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button__program__bottom {
  max-width: 279px;
  width: 100%;
}

@media (max-width:450px) {
  .button__program__bottom {
    padding: 12px 23px;
    margin: 0 auto;
    text-align: center;
  }
}





/********/

/*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;
}

.slider {
  /* Navigation */
  --slider-navigation-buttons-size: 54px;
  --slider-navigation-buttons-size-mobile: 40px;

  /* Pagination */
  --slider-pagination-bullets-size: 12px;
  --slider-pagination-inactive-bullets-bg-color: #000;
  --slider-pagination-active-bullet-bg-color: #B4DA62;

  background-color: var(--slider-bg-color);


  position: relative;
}

.slider__container {
  backdrop-filter: blur(2px);
  box-sizing: border-box;
  border: 2px solid #FFFFFF;

}

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

.slider__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  /* 41.6px */
}

.slider__wrapper {
  position: relative;
  padding: 50px 58px;

}

@media (max-width: 768px) {
  .slider__wrapper {
    padding-right: 0;
    padding-left: 0;
  }
}


.swiper {
  display: grid;
  width: 100%;
  padding: 10px;
  padding-bottom: 60px;
}

@media (max-width: 768px) {
  .swiper {
    padding: 0;
    padding-bottom: 60px;
    margin-top: 0;
  }
}

.swiper-slide {
  box-sizing: border-box;
  color: var(--slider-slide-all-texts-color);
  user-select: none;
  background-color: var(--slider-slide-bg-color);
  transition: 0.2s transform ease;
  margin-right: 16px;
}

@media (any-hover: hover) {
  .swiper-slide:hover {
    transition: 0.2s transform ease;
    transform: scale(1.02);
  }
}

@media (max-width: 576px) {
  .swiper-slide {
    margin-bottom: 20px;
    transition: none;
  }
}

.slider__speakers-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slider__upper {
  height: 50%;
}

.slider__periods {
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
  color: var(--slider-slide-periods-color);
}

.slider__date,
.slider__time {
  padding: 8px 12px;
  background-color: var(--slider-slide-periods-bg-color);
  border-radius: 30px;
}

.slider__title-wrapper {
  padding-bottom: 20px;
}

.slider__speakers-name {
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  padding-top: 16px;
}

.slider__speakers-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  padding-top: 8px;
}


.slider__lower {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 50%;
}

.slider__speakers {
  padding-top: 20px;
  padding-bottom: 40px;
}

.slider__speakers-img {
  object-fit: cover;
  flex-shrink: 0;
}

.slider__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 30px;
  font-size: var(--slider-slide-button-text-fz);
  font-weight: var(--slider-slide-button-text-fw);
  line-height: 130%;
  color: var(--slider-slide-button-text-color);
  background-color: var(--slider-slide-button-bg-color);
}

.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);
}

.swiper-pagination-bullet {
  width: var(--slider-pagination-bullets-size);
  height: var(--slider-pagination-bullets-size);
  background-color: var(--slider-pagination-inactive-bullets-bg-color);
}

.swiper-pagination-bullet-active {
  width: var(--slider-pagination-bullets-size);
  height: var(--slider-pagination-bullets-size);
  background-color: var(--slider-pagination-active-bullet-bg-color) !important;
}


/*********/

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

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

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

  /* Card Number */
  --bonus-card-num-fz: 40px;
  --bonus-card-num-fw: 700;
  --bonus-card-num-fz-mobile: 30px;
  --bonus-card-num-fw-mobile: 700;

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

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

  color: var(--bonus-all-texts-color);
  background-color: #F7F5F3;
  padding-top: 64px;
  padding-bottom: 100px;
}

.bonus__container {
  padding-top: var(--bonus-offset-top);
  padding-bottom: var(--bonus-offset-bottom);
}

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

.bonus__upper {
  padding-bottom: 30px;
}

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

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

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

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

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

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

.bonus__central {
  padding-bottom: 42px;
}

.bonus__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 33px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .bonus__cards {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}

@media (max-width:400px) {
  .bonus__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bonus__card {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 2px;
  border: 0px solid rgba(221, 221, 222, 0.00);
  background: #FFF;
  border-bottom: 14px solid #FEA880;
}

.bonus__card:nth-child(2),
.bonus__card:nth-child(6) {
  border-bottom: 14px solid #C3DE89;
}

.bonus__card:nth-child(3),
.bonus__card:nth-child(4) {
  border-bottom: 14px solid #FBBB69;
}


@media (max-width: 576px) {
  .bonus__card {
    padding: 10px;
  }
}

.bonus__card-upper {
  display: flex;
  align-items: center;
  height: 125px;
}

.bonus__card-lower {
  padding-left: 42px;
  padding-right: 42px;
  padding-bottom: 34px;
}

@media (max-width:450px) {
  .bonus__card-lower {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.bonus__card-text {
  color: #444;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
}

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

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

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

.bonus__link {
  display: inline-flex;
  padding: 16px 40px;
  font-size: var(--bonus-link-fz);
  font-weight: var(--bonus-link-fw);
  color: var(--bonus-link-color);
  text-decoration: none;
  background-color: var(--bonus-link-bg-color);
  border: none;
}

@media (max-width: 576px) {
  .bonus__link {
    font-size: var(--bonus-link-fz-mobile);
    font-weight: var(--bonus-link-fw-mobile);
  }
}

/*******/

/*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%;
}

/********/

/*tg*/
.tg {
  /* tg Block */
  --tg-offset-top: 59px;
  --tg-offset-bottom: 71px;
  --tg-offset-top-mobile: 60px;
  --tg-offset-bottom-mobile: 60px;
  --tg-all-texts-color: #000;
  --tg-bg-color: inherit;

  /* Logo */
  --tg-logo-width: 150px;
  --tg-logo-height: 50px;
  --tg-logo-width-mobile: 150px;
  --tg-logo-height-mobile: 50px;

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

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

  /* Link */
  --tg-link-fz: 18px;
  --tg-link-fw: 400;
  --tg-link-fz-mobile: 16px;
  --tg-link-fw-mobile: 400;
  --tg-link-color: #fff;
  --tg-link-bg-color: #62358c;

  /* Picture */
  --tg-picture-width: 400px;
  --tg-picture-height: 300px;
  --tg-picture-width-mobile: 300px;
  --tg-picture-height-mobile: 200px;

  color: var(--tg-all-texts-color);
  background-color: var(--tg-bg-color);
  padding-top: 94px;
  padding-bottom: 205px;
}

@media (max-width:1080px) {
  .tg {
    padding-top: 47px;
  }
}

@media (max-width:550px) {
  .tg {
    padding-top: 24px;
    padding-bottom: 48px;
  }
}

.tg__container {
  position: relative;
  display: flex;
  align-items: center;
  padding: 75px 63px;
  border: 2px solid #FFFFFF;
}

@media (max-width: 450px) {
  .tg__container {
    padding-left: 17px;
    padding-right: 17px;
    margin: 0px 15px;
  }
}

@media (max-width: 576px) {
  .tg__container {
    padding-top: 0;

    padding-bottom: var(--tg-offset-bottom-mobile);
    padding-bottom: 0px;
    flex-direction: column-reverse;
  }
}

.tg__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 58%;
}

@media (max-width: 768px) {
  .tg__left {
    width: 100%;
    padding-bottom: 0px;
  }
}


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

.tg__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

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

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

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


}

@media (max-width: 576px) {
  .tg__title {
    font-size: 12px;
    line-height: 130%;
    padding-bottom: 20px;
  }
}

.tg__lead {
  font-family: sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #6F4F45;
  left: calc(50% - 629px/2 - 228.5px);
  padding-bottom: 30px;
}

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

.tg__link {
  display: inline-flex;
  padding: 16px 40px;
  font-size: var(--tg-link-fz);
  font-weight: var(--tg-link-fw);
  color: var(--tg-link-color);
  text-decoration: none;
  background-color: var(--tg-link-bg-color);
  border: none;
}

@media (max-width: 576px) {
  .tg__link {
    font-size: var(--tg-link-fz-mobile);
    font-weight: var(--tg-link-fw-mobile);
  }
}

.tg__right {
  display: flex;
  align-items: end;
  justify-content: end;
  width: 50%;
}

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

.tg__picture-img {
  position: absolute;
  object-fit: contain;
  left: 71%;
  top: 10%;

}

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

/****/

/*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 55px;
  background-color: #C5B3A0;
}

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

@media (max-width: 450px) {
  .callback__container {
    padding: 30px 20px 38px 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%;
}

@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__title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  color: #6F4F45;
}

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

@media (max-width: 450px) {
  .callback__title {
    font-weight: 700;
    font-size: 12px;
    line-height: 130%;
  }
}

.callback__lead {
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  color: #6F4F45;
  padding-bottom: 45px;
}

@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: 12px;
    line-height: 130%;
    padding-bottom: 0px;
  }
}


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

@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;
  }
}

.callback__form--hidden {
  display: none;
}

.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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background-color: #F25E0A;
  border-radius: 15px;
}

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

.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__message--error {
  font-size: 20px;
  color: #dc291e;
}


/*location*/
.location {
  background-color: #FCFCFC;
}

.map {
  background-color: #333;
  filter: grayscale(1);
}

.map_mobile {
  display: none;
  filter: grayscale(1);
}

.location-container {
  position: relative;
}

.location__inner {
  display: flex;
  color: #fff;
  margin: auto 0;
  position: absolute;
  top: 20%;
  left: 30%;
  z-index: 10;
}

.location__left {
  background-color: #333232;
}

.location__left-container {
  padding-left: 64px;
  padding-top: 72px;
  padding-right: 32px;
}

@media (max-width:450px) {
  .location__left-container *{
    display: none;
    padding-top: 0px;
  }
}




.location__upper>ul>li {
  color: #DDDDDE;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

.location__upper>ul>li:last-child {
  display: flex;
}

.location__link {
  text-decoration: underline;
  color: #DDDDDE;
}

.location-title {
  padding-bottom: 12px;
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
}

.location__lower {
  padding-top: 64px;
}

.location__lower-title {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
  padding-bottom: 8px;
}

.location__lower-subtitle {
  padding-bottom: 8px;
}

.location__lower-subtitle,
.location__lower>ul {
  color: #DDDDDE;
  font-size: 18px;
  font-weight: 400;
  line-height: 130%;
}

@media (max-width:1024px) {
  .location__inner {
    margin: auto;
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
  }

  .map {
    display: none;
  }

  .map_mobile {
    display: block;
  }


  .location__left {
    width: 100%;
  }

  .location-container {
    display: flex;
    flex-direction: column-reverse;
    background-color: #333;
  }

  .location__right {
    display: none;
  }

  .location__left-container {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    padding: 32px 32px;
  }

  .location__lower {
    padding-top: 0px;
  }
}

@media (max-width:550px) {
  .location__left-container {
    display: flex;
    flex-direction: column;
    padding: 32px 32px;
  }
}


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

/*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: 16px;
  --footer-copy-fw: 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%;
}

.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) {
    
  .decor__style {
  display: none !important;
}
.decor__style2 {
  display: none !important;
}
.decor__style3 {
  display: none !important;
}
.decor__style4 {
 display: none !important;
}
.decor__style5 {
  display: none !important;
}
.decor__style6 {
 display: none !important;
}
.decor__style7 {
  display: none !important;
}
.decor__style8 {
  display: none !important;
}
.decor__style9 {
 display: none !important;
}
.decor__style10 {
  display: none !important;
}
.decor__style11 {
  display: none !important;
}
.decor__style12 {
  display: none !important;
}
.decor__style13 {
  display: none !important;
}
.decor__style77 {
  display: none !important;
 }

}

.modal__title-cd {
  font-family: sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  /* or 38px */
  text-align: center;
  font-feature-settings: 'pnum' on, 'lnum' on;
  width: 452px;
  color: #F25E0A;
  padding-bottom: 25px;

}

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

.modal__subtitle-cd{
width: 400px;
font-family: sans-serif;
font-weight: 400;
font-size: 20px;
line-height: 26px;
/* or 130% */
text-align: center;
font-feature-settings: 'pnum' on, 'lnum' on;
color: #6F4F45;
padding-bottom: 37px;
}

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


.modal__tg-link {
  width: 495px;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  /* identical to box height, or 162% */
  text-align: center;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #8B8A8A;

}

@media (max-width: 450px) {
.modal__tg-link {
  font-size: 10px;
}
}

.modal__tg-link a {
  width: 495px;
  text-decoration-line: underline;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  /* identical to box height, or 162% */
  text-align: center;
  font-feature-settings: 'pnum' on, 'lnum' on;

  color: #8B8A8A;
}

@media (max-width: 450px) {
.modal__tg-link a {
  font-size: 10px;
}
}

@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;
  }
  
}



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