:root {
  --clr-next: rgb(0, 184, 182);
  --clr-next_hover: rgb(0, 139, 137);
  --clr-next_blue: rgb(0, 151, 149);
  --clr-main: rgb(231, 100, 27);
  --clr-main_hover: rgb(240, 129, 40);
}

@font-face {
  font-family: "Montserrat";
  font-weight: normal;
  src: url("fonts/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-weight: bold;
  src: url("fonts/Montserrat-Bold.ttf") format("truetype");
}

body {
  font-family: "Montserrat", sans-serif !important;
  font-size: 17px !important;
  overflow-x: hidden;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}

/* === USEFUL ELEMENTS === */
/* CONTAINERS */
.sec-container {
  padding: 1.5vw 0;
}
.center-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.gray-container {
  background-color: #ebebeb;
}
/* BUTTONS */
.main-btn {
  display: block;
  text-align: center;
  position: relative;
  margin: 20px auto;
  padding: 10px 20px;
  background-color: var(--clr-main);
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  width: fit-content;
  font-size: 20px;
  transition: all 0.3s ease;
  min-width: 280px;
}
.main-btn:hover {
  text-decoration: none;
  color: #fff;
  background-color: var(--clr-main_hover);
  transform: scale(1.1);
  opacity: 90%;
}
.main-btn:active {
  transform: scale(0.9);
  text-decoration: none;
  color: #fff;
  background-color: var(--clr-main_hover);
  opacity: 95%;
}
.main-btn:focus {
  text-decoration: none;
  color: #fff;
  background-color: var(--clr-main_hover);
}
.main-btn:visited {
  text-decoration: none;
  color: #fff;
  background-color: var(--clr-main);
}
.small-btn {
  font-size: 14px;
  min-width: 180px;
}
.dot-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 40px;
  min-width: 30px;
  margin: 0;
  padding: 0;
}
.dot-btn span {
  width: 3px;
  height: 3px;
  background-color: #fff;
  border-radius: 50%;
  margin: 0 2px;
  padding: 0;
}
.link-btn {
  display: block;
  text-decoration: none;
  padding: 5px;
  font-size: 18px;
  color: #000;
  transition: all 0.3s ease;
  cursor: pointer;
}
.link-btn:hover {
  font-size: 20px;
  text-decoration: none;
  color: #000;
}
.link-btn:active {
  font-size: 16px;
  text-decoration: none;
  color: #000;
}
.link-btn:visited {
  color: #000;
  text-decoration: none;
}
.link-btn:focus {
  color: #000;
  text-decoration: none;
}
/* IMAGES */
.img-fluid {
  width: 90%;
  height: auto;
  margin: 5px auto;
}
.rounded-img {
  width: 100%;
  border-radius: 15px;
}
/* FEEDBACK */
.comments {
  position: relative;
  margin: 0 auto;
  padding: 30px 0;
  width: clamp(270px, 70vw, 1200px);
}
.comments h2 {
  margin-bottom: 20px;
}
.comment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 8px;
}
.comment-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.comment-img {
  width: 90%;
  max-width: 450px;
  min-width: 250px;
  height: auto;
  border-radius: 20px;
  margin-bottom: 20px;
}
.comment-text-wrap {
  display: flex;
  justify-content: center;
}
.comment-text {
  padding: 20px;
  padding-top: 0;
  width: clamp(270px, 65vw, 600px);
  height: fit-content;
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
}
.comment-text .name {
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}
.comment-text .position {
  color: #666;
  margin-bottom: 10px;
}
.comment-text .text {
  color: #444;
  line-height: 1.5;
}
.carousel-control {
  background: rgba(0, 0, 0, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
  position: absolute;
  top: 50%;
}
.carousel-control:hover {
  background: rgba(0, 0, 0, 0.5);
}
.carousel-control .glyphicon {
  color: #fff;
}
.carousel-control.left {
  left: -20px;
}
.carousel-control.right {
  right: -20px;
}
#all-comments {
  margin-top: 20px;
}
.all-comments {
  padding: 20px;
}
/* ACCORDION */
.accordion-item {
  border-bottom: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.accordion-item:last-child {
  border-bottom: none;
}
.accordion-header {
  width: 100%;
  padding: 15px;
  background-color: var(--clr-next);
  color: #fff;
  border: none;
  text-align: center;
  cursor: pointer;
  font-size: clamp(16px, 1.8, 20px);
  transition: background-color 0.3s;
}
.accordion-header.faqs {
  text-align: left;
  background-color: var(--clr-main);
  font-size: 20px;
}
.accordion-header:hover {
  background-color: var(--clr-main_hover);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #fff;
  padding: 0 15px;
}
.accordion-content div {
  margin: 20px 0;
}
.accordion-content div,
.accordion-content p {
  font-size: clamp(14px, 2vw, 16px);
}
.accordion-content img {
  max-width: 300px;
}
/* MODAL WINDOW */
.modal-next {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 95vw;
  max-width: 1000px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.modal-plan {
  padding: 0;
  padding-bottom: 10px;
  width: 95vw;
  max-width: 1000px;
}
.modal-trigger {
  cursor: pointer;
}
.modal-title {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: bold;
  margin-bottom: 10px;
}
.modal-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 5px;
  margin-bottom: 2px;
}
.modal-content div p {
  margin-bottom: 7px;
}
.modal-content div p + ul {
  margin-top: -2px;
}
.close-button-next {
  position: fixed;
  right: 3vw;
  top: 1vh;
  color: #e9e9e9;
  float: right;
  font-size: clamp(50px, 5vw, 200px);
  font-weight: bold;
  cursor: pointer;
}
.close-button-next:hover,
.close-button-next:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
/* INSCRIPTIONS */
.inform-inscription {
  margin: 15px 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 24px;
}
/* DROPDOWN */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-toggle {
  display: none;
}
.dropdown-content {
  display: none;
  padding: 10px;
}
.dropdown-toggle:checked + .dropdown-content {
  display: block;
}

/* === MAIN PAGE === */
/* ABOUT */
.about > .row {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}
.about h2 {
  font-size: clamp(20px, 2vw, 28px);
}
/* PROPOSALS */
.proposals,
.proposals .col-sm-6 {
  padding: 0;
}
.proposals .col-sm-6 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.proposals h2 {
  text-align: center;
  margin-bottom: 15px;
}
.proposals-item {
  height: clamp(350px, 40vw, 645px);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.prop-first {
  background-image: url("/upload/medialibrary/a5b/g3rue7oibzxvpu587lch2sq5rt57edeo/Industrija-mody-mart25-foto-_katya_mozina-134.jpg");
}
.prop-second {
  background-image: url("/upload/medialibrary/6e0/c9ju0yhjpyvbziqe2dbnd2jue90wuy3f/roznichnaja_prodazha.jpg");
}
.proposals-text {
  width: 300px;
  height: 300px;
  box-shadow: 2px 2px 5px #313131;
  bottom: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* FORMATS */
.formats {
  min-height: 600px;
}
.format-wrap {
  display: flex;
  justify-content: center;
  min-height: fit-content;
}
.format-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 245px;
  margin: 5px;
}
.format-img-container {
  display: flex;
  justify-content: center;
}
.format-item img {
  margin: 10px;
  width: 245px;
}
.format-title {
  font-weight: bold;
  font-size: 18px;
}
.format-btn {
  margin: 0;
}
/* NEWS */
.news {
  background-color: #ebebeb;
}
.news .container {
  display: flex;
  flex-direction: column;
}
/* PHOTO */
.foto .container {
  display: flex;
  flex-direction: column;
}
.foto .row-top,
.foto .row-bottom {
  display: flex;
  justify-content: center;
}
.foto .row-bottom {
  margin-bottom: 20px;
}
.foto .row-top a,
.foto .row-bottom a {
  padding: 5px;
}
.foto img {
  width: 100%;
}
/* PLACE */
.place {
  background-color: #ebebeb;
  overflow: hidden;
  padding: 0;
}
.place h2 {
  margin: 10px 0;
}
.address {
  padding: 2vw 20px;
}
.place-inform {
  display: flex;
  flex-direction: column;
  text-align: right;
}
.place .map-wrap {
  filter: grayscale(100%);
}
.place iframe {
  width: 100%;
  margin-bottom: -6px;
}
/* PARTNERS */
.partners {
  padding: 70px 25px;
}
.offic-line {
  border: 1px solid #ff0000;
  position: relative;
  margin-bottom: 50px;
}
.offic-items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.offic-items img {
  align-self: center;
  margin: 10px 5px;
}
.offic-line:after {
  content: "WITH OFFICIAL SUPPORT:";
  display: block;
  background-color: white;
  position: absolute;
  font-size: 30px;
  top: -22px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 15px;
  width: 535px;
  text-align: center;
}
.part-line,
.part-line-next {
  border: 1px solid silver;
  position: relative;
  margin: 80px 0 70px;
}
.part-line:after {
  content: "EXHIBITION PARTNERS:";
  display: block;
  background-color: white;
  position: absolute;
  font-size: 30px;
  top: -22px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 15px;
  width: 370px;
  text-align: center;
}
.part-line-next:after {
  content: "ПАРТНЕРЫ ФОРУМА:";
  display: block;
  background-color: white;
  position: absolute;
  font-size: 30px;
  top: -22px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 15px;
  width: 370px;
  text-align: center;
}
.part-slides {
  visibility: hidden;
  width: 95%;
  margin: 0 auto;
  padding: 0;
}
.part-slides li {
  padding: 5px 0;
}
.part-slides li img {
  box-shadow: 1px 2px 5px black;
  display: block;
  margin: 0 auto;
  transition: 0.3s;
  filter: grayscale(100%);
}
.part-slides li img:hover {
  box-shadow: none;
  filter: grayscale(0%);
}
.partners .slick-prev:before,
.partners .slick-next:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  transform: rotate(45deg);
}
.partners .slick-prev:before {
  border-bottom: 5px solid black;
  border-left: 5px solid black;
}
.partners .slick-next:before {
  border-top: 5px solid black;
  border-right: 5px solid black;
}
@media screen and (max-width: 1199px) {
  .offic-items {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .offic-line:after {
    font-size: 20px;
    width: 370px;
    top: -16px;
  }
  .part-line:after {
    font-size: 20px;
    width: 260px;
    top: -16px;
  }
}
@media screen and (max-width: 500px) {
  .offic-line:after {
    font-size: 14px;
    width: 255px;
    padding: 0 5px;
    top: -10px;
  }
  .part-line:after {
    font-size: 14px;
    width: 180px;
    padding: 0 5px;
    top: -10px;
  }
}

/* === PAGE PARTICIPATION === */
/* PARTICIPATION */
.participation {
  display: flex;
  flex-direction: column;
}
.participation h1 {
  text-align: center;
  margin-bottom: 0;
}
.participation .inform-inscription {
  margin-top: 5px;
  margin-bottom: 20px;
}
.participation-inform {
  position: relative;
  background-color: #ebebeb;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.participation-inform p {
  display: block;
  padding: 15px 0;
}
.participation-img {
  background: url("/upload/medialibrary/685/tfjecn9i7i25yey38d3vqlmttgmp4e70/participation.jpg") center/cover no-repeat;
}
.participation a {
  margin-top: 25px;
}
/* PRESENTATION */
.presentation {
  display: flex;
  flex-direction: column;
}
.presentation h2 {
  margin-bottom: 20px;
}
.presentation-block {
  margin: 10px;
}
.presentation-block-inform {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.presentation-block-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 15px;
}
.presentation-block-title {
  font-size: 19px;
}
.pres-img-1 {
  background-image: url("/upload/medialibrary/653/n4aihvu96hvb1xes6skx8k2owkj1vki2/presentation_1.jpg");
}
.pres-img-2 {
  background-image: url("/upload/medialibrary/896/grj4asvbda0zf86hce2lo4g4crxtcqxm/presentation_2.jpg");
}
.pres-img-3 {
  background-image: url("/upload/medialibrary/6c2/d6senv8h6aefb2dw7w9g8d4w0hv2vnxi/presentation_3.jpg");
}
.visitors-pres-img-1 {
  background-image: url("/upload/medialibrary/f03/k0af6ajjz10mp612n7u9t88zz4y7pfy1/presentation_1.jpg");
}
.visitors-pres-img-2 {
  background-image: url("/upload/medialibrary/c79/010ewd4x3dgbw2cssm0s44wy6m3x5cfi/presentation_2.jpg");
}
.visitors-pres-img-3 {
  background-image: url("/upload/medialibrary/4e4/5spomg9x0gwj01om1v48w7jvx1uoa0z4/presentation_3.jpg");
}
.presentation a {
  margin-top: 25px;
}
/* EFFICIENCY */
.efficiency h2 {
  margin-bottom: 20px;
}
.efficiency-img-wrap {
  background: url("/upload/medialibrary/963/dzq4en3zx8ioxv1nr9by5sl4eakqk1j9/efficiency.jpg") center/cover no-repeat;
}
.efficiency-inform {
  background-color: #ebebeb;
  border-radius: 15px;
  padding: 20px;
}
.efficiency .main-btn {
  margin-top: 25px;
}
/* STATE SUPPORT */
.state-support-inform {
  position: relative;
  background-color: #ebebeb;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
.state-support-inform p {
  display: block;
  padding: 15px 0;
}

/* === PAGE VISITORS === */
/* VISITORS ABOUT */
.visitors-about {
  background-image: url("/upload/medialibrary/40e/3zyno4nymd9mcnhz6xfzl03sih0oe49a/visitors_main_img.jpg");
  background-position: bottom;
  background-attachment: fixed;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  padding: 2vw;
}
.visitors-about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 200;
}
.visitors-about-inform {
  font-size: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 90vw;
  max-width: 1000px;
  color: #fff;
  z-index: 300;
}
/* VISITORS NEXT */
.visitors-next-text h2 {
  padding-right: 10px;
  font-size: 36px;
  line-height: 120%;
  text-align: right;
}
.visitors-next.container-fluid {
  padding-right: 0;
}
.visitors-next-img.row {
  margin-right: 0;
  padding-right: 0;
}
.visitors-next-img.col-md-6 {
  margin: 0;
  padding: 0;
}
.visitors-next-img-wrap {
  position: relative;
  min-height: 500px;
  background-image: url("/upload/medialibrary/ff0/es270s06k0z6kz0rcss5nirqg3upo8kp/next.jpg");
  background-position: center;
  color: #fff;
}
.visitors-next-img {
  max-height: 100%;
  overflow: hidden;
}
.visitors-next-about-title {
  font-size: clamp(20px, 2vw, 26px);
}
.visitors-next-about-text {
  position: relative;
  z-index: 300;
  font-size: 18px;
}
/* USEFUL LINKS */
.container-fluid.useful-links {
  padding-left: 0;
}
.col-md-6.useful-links-img {
  padding: 0;
  margin: 0;
}
.row.useful-links-img {
  padding-left: 0;
  margin-left: 0;
}
.useful-links-img-wrap {
  min-height: 650px;
  background-image: url("/upload/medialibrary/8d9/rwvbhj271rrrkbxejq76ej5yccgvhj2j/useful_links.jpg");
  background-position: top;
  color: #fff;
  padding: 30%;
}
.useful-links-inform {
  font-size: 18px;
  padding: 30px;
}

/* === PAGE NEXT === */
/* MAIN NEXT STYLES */
.next_block_title {
  margin-top: 4vh;
  margin-bottom: 4vh;
}
.next_h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.next_about {
  margin-bottom: 3vh;
}
.next_about_container {
  display: flex;
  min-height: 350px;
  max-height: 65vh;
  overflow: hidden;
}
.next_about_cols {
  height: 100%;
  padding-left: 5%;
}
.next_said_img {
  display: flex;
  max-width: 100%;
  padding: 1%;
  background-color: var(--clr-next);
  justify-content: center;
  border-radius: 15px;
}
.next_said_img::after {
  content: " ";
  position: absolute;
  top: 20px;
  right: -120px;
  width: 10vw;
  height: 14vh;
  background-color: rgba(84, 84, 84, 0.3);
  border-radius: 8px;
}
.next_said_img > img {
  width: 90%;
  margin: 5%;
}
.next_about_content {
  width: 80%;
  margin-left: auto;
}
.next_about_img_wrap {
  height: 50%;
  display: flex;
  overflow: hidden;
  margin: auto;
}
.next_about_content::before {
  content: " ";
  position: absolute;
  bottom: 60%;
  left: 30px;
  height: 50px;
  width: 50px;
  background-color: var(--clr-next);
  border-radius: 5px;
}
.next_about_content::after {
  content: " ";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10vw;
  height: 14vh;
  background-color: rgba(84, 84, 84, 0.3);
  z-index: 1;
  border-radius: 8px;
}
.next_about_img_wrap > img {
  height: 100%;
  width: auto;
  object-fit: cover;
}
.content_image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.next_title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(18px, 3svw, 25px);
}
.next_title_center {
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}
.next_title_red {
  color: var(--clr-next_red);
}
/* NEXT BUTTON */
.next-btn-container {
  display: flex;
  justify-content: center;
}
.next-btn {
  min-width: 240px;
  margin: 5px;
  padding: 15px 30px;
  background-color: var(--clr-next);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.next-btn:hover {
  background-color: var(--clr-next_hover);
  transform: scale(1.05);
}
.next-btn:active {
  background-color: var(--clr-next_hover);
  transform: scale(0.95);
}
/* NEXT LINK */
.next-link {
  color: var(--clr-next);
  transition: font-size 0.3s, color 0.3s;
}
.next-link:hover {
  color: var(--clr-next);
  text-decoration: none;
  font-size: 18px;
}
/* NEXT NOMINATIONS */
.next-nominations-img {
  border-radius: 10px;
}
/* NEXT WINNERS */
.next-winner-wrap {
  background-color: var(--clr-next);
  margin: 5px auto;
  padding: 10px;
  border-radius: 10px;
  width: min(900px, 100%);
  display: flex;
  align-items: center;
}
.next-winner-wrap img {
  border-radius: 15px;
  width: 70%;
  height: auto;
}
.next-winner-text {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
  padding: 10px;
}
.next-winner-text img {
  border-radius: 50%;
  width: clamp(120px, 20vw, 150px);
  height: auto;
  margin-bottom: 10px;
}
/* NEXT INFORMATION */
.next-information {
  height: fit-content;
}
.next-information-wrap {
  display: flex;
  height: fit-content;
}
.next-information-iframe-wrap {
  width: 60%;
  height: 100%;
  padding: 10px;
}
.next-information-content {
  width: 40%;
}
.next-information iframe {
  border-radius: 15px;
  width: 100%;
  height: 100%;
}
.next-information p {
  font-size: clamp(14px, 1.5vw, 16px);
}
.next-information h4 {
  font-size: clamp(16px, 2vw, 20px);
}
/* NEXT CAROUSEL */
.next-carousel-container {
  position: relative;
  width: 70vw;
  overflow: hidden;
  border-radius: 10px;
  padding: 10px;
}
.next-carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.next-carousel-item {
  min-width: 100px;
  margin-right: 10px;
}
.next-carousel-item img {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}
.next-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--clr-next);
  opacity: 0.5;
  border: none;
  color: white;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.next-carousel-control:hover {
  background-color: var(--clr-next_hover);
}
.next-carousel-control.prev {
  left: 10px;
}
.next-carousel-control.next {
  right: 10px;
}

/* === PAGE GALLERY === */
.photos .slider-for img {
  margin: 10px auto;
  box-shadow: 1px 2px 5px black;
  max-height: clamp(200px, 50vh, 500px);
  max-width: 90vw;
}
.photos .slider-nav {
  max-width: 960px;
  margin: 10px auto;
}
.photos .slider-nav img {
  padding: 0 5px;
  cursor: pointer;
  max-height: 120px;
}
.photos .slider-for div,
.photos .slider-nav div {
  outline: none;
  display: flex;
  align-items: center;
}

/* === PAGE PROGRAM === */
/* PROGRAM TITLE */
.program-title {
  position: relative;
  overflow: hidden;
  height: clamp(100px, 20vw, 250px);
}
.program-circle {
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  background-color: #df3929;
  position: absolute;
  top: -25%;
  left: 12%;
}
.program-triangle {
  width: 55vw;
  height: 14vw;
  clip-path: polygon(20% 0%, 66% 0, 100% 90%, 0 75%);
  background-color: #4b6389;
  position: absolute;
  top: 0;
  left: -20%;
}
.program-line {
  width: 2.5vw;
  height: 25vw;
  transform: rotate(60deg);
  background-color: #f6c35a;
  position: absolute;
  top: -5%;
  left: -2%;
}
.program-title h2 {
  display: block;
  margin-left: 2vw;
  margin-top: 4vw;
  font-size: clamp(16px, 4vw, 40px);
  font-weight: bold;
  line-height: 130%;
}
/* PROGRAM */
.program-date {
  position: relative;
  margin-bottom: 20px;
}
.program-date::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4b6389;
  position: absolute;
  left: 0;
  bottom: -5px;
}
.program-date p {
  font-size: 32px;
  font-weight: bold;
}
.program-item {
  margin: 15px auto;
  width: 85%;
}
.program-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.program-img img {
  width: 90%;
  max-width: 200px;
  border-radius: 50%;
}
.program-time {
  font-size: 20px;
  font-weight: bold;
}
label.link-btn {
  font-weight: normal;
}
/* ABOUT PROGRAM */
.about-program h2 {
  margin-bottom: 15px;
}
/* SPEAKERS FEEDBACK */
.speakers-feedback .comment-text {
  height: 250px;
  width: clamp(270px, 65vw, 1000px);
}
/* Деловая программа */
.forum-prog td {
  vertical-align: top;
  padding: 5px;
}
.forum-prog td:first-child {
  width: 10%;
}
.del-prog-date {
  font-weight: bold;
  color: #472b66;
}
.del-prog-main {
  margin-bottom: -5px;
}

/* === PAGE NEWS === */
/* RELEASES */
.releases {
  position: relative;
  min-height: 600px;
}
.releases > .container {
  padding-left: 0;
}
.releases-img {
  min-height: 670px;
}
.releases-text h2 {
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 120%;
  text-align: right;
}
.releases-img-wrap {
  position: relative;
  min-height: 600px;
  background-image: url("/upload/medialibrary/d98/v1embpmj09yrspjf94jbqyywqk4pv0vt/releases_img.jpg");
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

/* слайдер */
#slider {
  opacity: 1;
}
#slider .item {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 2s;
}
#slider .item img {
  width: 100%;
}
#slider .item.active {
  position: relative;
  opacity: 1;
}

@media (max-width: 991px) {
  /* Поколение Next */
  .next_about_container {
    max-height: 100vh;
    min-height: auto;
  }
  .next_said_img {
    display: none;
  }
  .next_about_cols {
    padding-left: 0;
  }
  .next_about_content {
    width: 100%;
  }
  .next_about_content::before,
  .next_about_content::after {
    display: none;
  }
  /* NEXT WINNERS */
  .next-winner-wrap {
    flex-direction: column;
  }
.next-winner-wrap img {
  width: 98%;
}
  .next-winner-text {
    flex-direction: row;
    width: 100%;
  }
  .next-winner-text img {
    margin-bottom: 0;
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  /* === MAIN PAGE === */
  /* PHOTO */
  .foto .row-top {
    flex-wrap: wrap;
  }
  .foto .row-top img {
    width: auto;
    max-width: 100%;
  }

  /* === VISITORS === */
  /* VISITORS NEXT */
  .visitors-next.container-fluid {
    padding-left: 0;
  }
  .visitors-next-img {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .visitors-next-img-wrap {
    min-height: 0;
  }
  .visitors-next-img-wrap:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 200;
  }
  .visitors-next-text {
    position: relative;
    z-index: 300;
    color: #fff;
    padding: 10%;
  }
  .visitors-next-text h2 {
    text-align: left;
  }
  /* USEFUL LINKS */
  .container-fluid.useful-links {
    padding: 1.5vw 0;
    max-width: 540px;
  }
  .useful-links-inform {
    padding: 0;
  }

  /* === PAGE NEWS === */
  /* RELEASES */
  .releases {
    min-height: fit-content;
    position: relative;
  }
  .releases-img {
    min-height: fit-content;
  }
}

@media (max-width: 700px) {
  /* NEXT INFORMATION */
  .next-information-wrap {
    flex-direction: column;
  }

  .next-information-content {
    width: 90vw;
    padding: 10px;
  }
}

@media (max-width: 500px) {
  .next-winner-text {
    flex-direction: column;
  }
  .next-winner-text img {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

@media (max-width: 425px) {
  /* Поколение Next */
  .next_about_content_imgs {
    display: none;
  }
}
