@font-face {
  font-family: Gilroy-Regular; /* Имя шрифта */
  src: url(../fonts/Gilroy-Regular.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
  font-family: Gilroy-Bold; /* Имя шрифта */
  src: url(../fonts/Gilroy-Bold.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
  font-family: Gilroy-Semibold; /* Имя шрифта */
  src: url(../fonts/Gilroy-Semibold.ttf); /* Путь к файлу со шрифтом */
}
@font-face {
  font-family: Gilroy-Medium; /* Имя шрифта */
  src: url(../fonts/Gilroy-Medium.ttf); /* Путь к файлу со шрифтом */
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
p {
  line-height: 115%;
}
body {
  display: grid;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 75px 0 0 0;
  background-color: #0c0101;
}
header {
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
  display: grid;
  justify-items: center;
  background-color: rgba(12, 1, 1, 0.8);
}
nav {
  display: grid;
  grid-auto-flow: column;
}
section {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
}
main {
  display: grid;
  grid-auto-flow: row;
}
footer {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  justify-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.section_wrapper {
  width: 100%;
  display: grid;
  justify-items: center;
}
.container {
  position: relative;
  width: 100%;
  max-width: 1412px;
}
.container_grid {
  display: grid;
}
.justify_content_between {
  justify-content: space-between;
}
.justify_items_center {
  justify-items: center;
}
.justify_items_start {
  justify-items: start;
}
.grid_flow_column {
  grid-auto-flow: column;
}
.grid_flow_row {
  grid-auto-flow: row;
}
.align_items_center {
  align-items: center;
}
.align_content_center {
  align-content: center;
}

.header_logo img:nth-child(2) {
  display: none;
}
@media (max-width: 998px) {
  .header_logo img:nth-child(1) {
    display: none;
  }
  .header_logo img:nth-child(2) {
    display: block;
  }
}
.header_group {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  justify-content: space-between;
}
nav {
  display: grid;
  grid-auto-flow: column;
  gap: 32px;
  justify-content: end;
  transition: 0.5s;
}
nav a {
  font-family: Gilroy-Regular;
  font-size: 20px;
  text-decoration: none;
  color: #fff;
}

@media (max-width: 1400px) {
  nav {
    gap: 26px;
  }
  nav a {
    font-size: 16px;
  }
}
@media (max-width: 998px) {
  nav {
    gap: 26px;
  }
  nav a {
    font-size: 22px;
  }
}
nav a:hover {
  color: #f59d01;
}

.video_wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.video_group {
  width: 100%;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.video_group video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
}
.main_content_group {
  display: grid;
  justify-items: center;
  grid-auto-flow: row;
  gap: 43.91px;
  padding-bottom: 55px;
  position: relative;
  z-index: 1;
}
.logor-center {
  margin: 29px 0 0 0;
}
.main_title_group {
  display: grid;
  grid-auto-flow: row;
  justify-items: center;
  border-radius: 24px;
  padding: 60.47px 125px 0 141px;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1256px;
}
@media (max-width: 1300px) {
  .main_title_group {
    /* max-width: 1050px; */
  }
}
h1 {
  color: #fff;
  text-align: center;
  margin: 0;
  font-family: Gilroy-Regular;
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;
  font-weight: normal;
  line-height: 175%;
}
h1 > span {
  font-family: Gilroy-Bold;
  font-size: 60px;
}
.second_title {
  color: #fff;
  font-size: 42px;
  font-family: Gilroy-Regular;
}
.main_title_list {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr 1fr;
  color: #fff;
  gap: 64.5px;
  padding: 0;
  margin: 61.73px 0 44px 0;
  align-items: start;
  font-size: 24px;
}
.main_title_list > li {
  display: grid;
  grid-auto-flow: row;
  justify-items: center;
  font-family: Gilroy-Semibold;
}
.main_list_date {
  font-family: Gilroy-Semibold;

  color: #fff;
}
.main_list_time {
  font-family: Gilroy-Semibold;
}
.main_list_address {
  font-family: Gilroy-Regular;
  font-size: 20px;
  padding-bottom: 9px !important;
}
@media (max-width: 998px) {
  .main_list_address {
    font-size: 16px;
  }
}
.main_title_list > li > span {
  padding: 0 0 5px 0;
  margin: 0 0 5px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid;
  border-image: url(../img/line.png);
  border-image-slice: 3;
}
.main_title_btn {
  background: linear-gradient(rgba(228, 4, 37, 1), rgba(245, 157, 1, 1));
  color: #fff;
  font-family: Gilroy-Semibold;
  padding: 15px 41px;
  border-radius: 21px;
  font-size: 22px;
  margin-bottom: -25px;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.main_title_btn::after {
  content: url(../img/arrow_left.svg);
  position: absolute;
  right: -70%;
  top: 65%;
  transform: translate(0px, -50%);
}
.main_title_btn::before {
  content: url(../img/arrow_right.svg);
  position: absolute;
  left: -70%;
  top: 65%;
  transform: translate(0px, -50%);
}
.main_title_btn:hover {
  background: rgba(194, 186, 171, 1);
  color: rgba(228, 4, 37, 1);
}

.program_section {
  margin-top: -186px;
}
.conference_section {
  background-image: url(../img/zbg.png);
  overflow: hidden;
  padding-bottom: 186px;
  background-repeat: no-repeat;
  background-size: 100%;
}
@media (max-width: 500px) {
  .conference_section {
    background-image: url(../img/bbb.png);
    background-position: top center;
    background-size: 500px;
  }
}
.conference_section > .container {
  z-index: 2;
}
.conference_group {
  display: grid;
  grid-auto-flow: row;
  padding: 49px 20px 149px 20px;
}
.conference_group p {
  color: #fff;
}
p {
  font-family: Gilroy-Regular;
  font-size: 24px;
}
@media (max-width: 998px) {
  .conference_group p {
    font-size: 18px;
  }
}
h2 {
  font-size: 38px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-family: Gilroy-Bold;
  margin-bottom: 0;
  margin-top: 49px;
}
@media (max-width: 500px) {
  h2 {
    font-size: 28px;
  }
}
h2.h2_left {
  text-align: left;
}

.img_deco {
  position: absolute;
  width: 100%;
  top: 160px;
}
.footer_deco {
  position: absolute;
  width: 100%;
  bottom: 0;
  opacity: 0;
}

.download_program {
  justify-self: center;
  background-color: rgba(228, 4, 37, 1);
  color: #fff;
  font-family: Gilroy-Semibold;
  font-size: 18px;
  padding: 11px 18px;
  text-decoration: none;
  border-radius: 16px;
  margin-top: 22px;
}
.download_program:hover {
  background: rgba(194, 186, 171, 1);
  color: rgba(228, 4, 37, 1);
}
.conference_program_group {
  display: grid;
  grid-auto-flow: row;
  margin-top: 30px;
}
@media (max-width: 1500px) {
  .conference_program_group {
    margin-top: 0;
  }
}
.conference_program_group h2 {
  margin-top: 0;
}

.conference_list {
  display: grid;
  grid-auto-flow: row;
  padding: 0;
  margin: 0;
  gap: 16px;
  margin-top: 25px;
}
.conference_list > li {
  display: grid;
  color: #c2baab;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: 35px 83px;
  border-radius: 42px;
  gap: 69px;
}
.conference_date {
  color: #f59d01;
  font-size: 20px;
  font-family: Gilroy-Semibold;
}
.conference_content {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: start;
  gap: 212px;
}
.border_conf_r .conference_content p,
.border_conf_l .conference_content p {
  color: #fff;
}
.conference_list > li p {
  margin: 0;
}
.conference_list > li p > span {
  font-size: 20px;
  color: #f59d01;
}
@media (max-width: 998px) {
  .conference_list > li p > span {
    font-size: 16px;
    color: #f59d01;
    padding-top: 10px;
    display: block;
    line-height: 110%;
  }
}
.border_conf_r {
  border: 2px solid transparent;
  background:
    linear-gradient(#0c0101, #0c0101) padding-box,
    linear-gradient(45deg, #f59d01, #e40425) border-box;
  /* border: 1px solid;
    border-image: linear-gradient(to right, #F59D01, #E40425);
    border-image-slice: 1;
    background-clip: padding-box;
    color: #fff!important; */
}

.border_conf_l {
  border: 2px solid transparent;
  background:
    linear-gradient(#0c0101, #0c0101) padding-box,
    linear-gradient(45deg, #e40425, #f59d01) border-box;
  /* color: #fff!important;
    border: 1px solid;
    border-image: linear-gradient(to left, #F59D01, #E40425);
    border-image-slice: 1;
    background-clip: padding-box; */
}

.conference_open {
  background-color: #f59d01;
  color: #0c0101;
  font-size: 18px;
  font-family: Gilroy-Semibold;
  text-decoration: none;
  padding: 11px 40px;
  padding-bottom: 10px;
  border-radius: 16px;
}
.conference_open:hover {
  background: rgba(194, 186, 171, 1);
  color: rgba(228, 4, 37, 1);
}

.partners-section {
  margin-top: 30px;
}
@media (max-width: 998px) {
  .partners-section {
    margin-top: 10px;
  }
}
.partners_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 0;
  margin: 43px 0 73px 0;
}
.partners_list > a {
  background-color: rgba(228, 4, 37, 0.1);
  width: 334px;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: 29px 24px;
  border-radius: 24px;
  position: relative;
  min-height: 109px;
}
@media (max-width: 1500px) {
  .partners_list > a {
    width: 300px;
  }
}
@media (max-width: 1350px) {
  .partners_list > a {
    width: 270px;
  }
}
.partners_list > a > img {
  /* height: 29px; */
}
.partners_list > a:nth-child(odd) {
  background-color: rgba(228, 4, 37, 0.1);
}
.partners_list > a:nth-child(even) {
  background-color: rgba(245, 157, 1, 0.1);
}
.partners_list > a:nth-child(odd)::after {
  content: url(../img/info.svg);
  position: absolute;
  right: 14px;
  top: 14px;
}
.partners_list > a:nth-child(even)::after {
  content: url(../img/info_orange.svg);
  position: absolute;
  right: 14px;
  top: 14px;
}

.gallery_container {
  max-width: 100vw;
  padding: 0px 20px;
}

.gallery_group {
  display: grid;
  gap: 20px;
  /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr; */
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
}
.gallery_group img {
  height: 16.5vw;
  max-height: 315px;
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 1300px) {
  .gallery_group img {
    /* height: 200px; */
  }
}
.gallery_group img:nth-child(1) {
  grid-column: 1/3;
  width: 26%;
}
.gallery_group img:nth-child(2) {
  grid-column: 3/5;
  width: 14%;
}
.gallery_group img:nth-child(3) {
  grid-column: 5/7;
  width: 22%;
}
.gallery_group img:nth-child(4) {
  grid-column: 7/10;
  width: calc(38% - 60px);
}
.gallery_group img:nth-child(5) {
  grid-column: 1/2;
  width: 14%;
}
.gallery_group img:nth-child(6) {
  grid-column: 2/4;
  width: 22%;
}
.gallery_group img:nth-child(7) {
  grid-column: 4/6;
  width: 14%;
}
.gallery_group img:nth-child(8) {
  grid-column: 6/8;
  width: 23.5%;
}
.gallery_group img:nth-child(9) {
  width: calc(26.5% - 80px);
}

.section_bg {
  /* background-image: url(../img/sphere.png); */
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: 0;
  background-size: 55%;
  position: relative;
  /* z-index: 1; */
  /* overflow: hidden; */
}
.section_bg .sphere {
  position: absolute;
  max-width: 70%;
  top: 30%;
  z-index: -1;
  left: 50%;
  transform: translate(-50%);
}
@media (max-width: 700px) {
  .section_bg .sphere {
    top: 20%;
    display: none;
    max-width: 95%;
  }
}
.section_bg .sphere img {
  width: 100%;
  transition: 0.2s;
}

.map {
  border-radius: 24px;
  overflow: hidden;
}
.map iframe {
  height: 100%;
}

.contacts-section {
  margin-top: 30px;
}
@media (max-width: 998px) {
  .contacts-section {
    margin-top: 15px;
  }
}

.contacts_group {
  display: grid;
  grid-template-columns: 472px 1fr;
  margin-top: 43px;
  gap: 24px;
}
@media (max-width: 998px) {
  .contacts_group {
    margin-top: 22px;
    gap: 20px;
  }
}
.contacts_content {
  background-color: rgba(245, 157, 1, 1);
  padding: 65px 85px;
  padding-bottom: 30px;
  border-radius: 42px;
  display: grid;
  grid-auto-flow: row;
}
.contacts_list {
  padding: 0;
  margin: 0;
  display: grid;
  grid-auto-flow: row;
  gap: 25px;
}
.contacts_list > li {
  list-style-type: none;
  border-bottom: 1px solid;
  border-image: url(../img/line.png);
  border-image-slice: 3;
  font-size: 20px;
  color: rgba(12, 1, 1, 1);
  font-family: Gilroy-Semibold;
  padding-bottom: 9px;
  position: relative;
  padding-left: 33px;
}
.contacts_list > li span {
  display: flex;
  flex-direction: column;
}
.contacts_list > li b {
  font-size: 16px;
  font-weight: 300;
  font-family: Gilroy-Regular;
}
.contacts_list > li:nth-child(1)::before {
  content: url(../img/icons/ic_date.svg);
  position: absolute;
  left: 0;
}
.contacts_list > li:nth-child(2)::before {
  content: url(../img/icons/ic_geo.svg);
  position: absolute;
  left: 0;
}
.contacts_list > li:nth-child(3)::before {
  content: url(../img/icons/ic_time.svg);
  position: absolute;
  left: 0;
}

.contacts_content > p {
  color: rgba(228, 4, 37, 1);
  font-size: 22px;
  font-family: Gilroy-Medium;
}
.contact_btn {
  background-color: rgba(228, 4, 37, 1);
  color: #fff;
  font-size: 22px;
  padding: 21px 59px;
  border-radius: 21px;
  margin-top: 40px;
  text-align: center;
  font-family: Gilroy-Semibold;
  cursor: pointer;
}
@media (max-width: 1400px) {
  .contact_btn {
    margin-top: 30px;
  }
}
.contact_btn:hover {
  background: rgba(194, 186, 171, 1);
  color: rgba(228, 4, 37, 1);
}
.contact_phone_group {
  display: grid;
  grid-auto-flow: column;
  padding: 0;
  margin: 0;
  gap: 7px;
  grid-auto-flow: row;
}
.contact_phone_group > li {
  list-style-type: none;
  position: relative;
  padding: 0 0 0 33px;
}
.contact_phone_group > li:nth-child(1)::before {
  content: url(../img/icons/ic_phone.svg);
  position: absolute;
  left: 0;
}
.contact_phone_group > li:nth-child(2)::before {
  content: url(../img/icons/ic_mail.svg);
  position: absolute;
  left: 0;
}
.contact_phone_group a {
  color: rgba(12, 1, 1, 1);
  font-size: 20px;
  text-decoration: none;
  font-family: Gilroy-Semibold;
}

.footer_img img:nth-child(2) {
  display: none;
}
@media (max-width: 700px) {
  .footer_img img:nth-child(2) {
    display: block;
    width: 190px;
  }
  .footer_img img:nth-child(1) {
    display: none;
  }
}

.footer_logo {
  display: grid;
  grid-auto-flow: row;
  margin: 100px 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  justify-self: center;
  padding: 24px 51px;
  border-radius: 24px;
  text-align: center;
  z-index: 1;
  background-image: url(../img/glass.png);
  background-size: 160%;
  background-position: center center;
}
@media (max-width: 1400px) {
  .footer_logo {
    margin: 60px 0;
  }
}
.footer_logo img {
  width: 362px;
  justify-self: center;
  margin-bottom: 30px;
}
@media (max-width: 700px) {
  .footer_logo img {
    margin-bottom: 14px;
  }
}
.footer_logo a {
  color: rgba(245, 157, 1, 1);
  font-family: Gilroy-Regular;

  font-size: 18px;
  margin-bottom: 8px;
}
@media (max-width: 998px) {
  .footer_logo a {
    font-size: 16px;
  }
}
.footer_logo span {
  font-family: Gilroy-Regular;
  color: rgba(245, 157, 1, 1);
  font-size: 14px;
  opacity: 0.5;
}

.speacers {
  width: 100vw;
  overflow: hidden;
  margin-top: 60px;
}

.speacers .container {
  margin-left: auto;
  margin-right: auto;
}

.slider {
  position: relative;
  display: grid;
  height: auto;
  gap: 46px;
  margin-top: 50px;
}
.swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.slider-container {
  max-width: min(100vw, 1412px);
}
.mySwiper {
  overflow: visible;
}
@media (max-width: 950px) {
  .mySwiper {
    max-width: 600px;
  }
  .mySwiper .swiper-wrapper {
    flex-direction: column;
    gap: 34px;
  }
  .swiper-slide {
    height: auto;
  }
  .slide_image {
    position: relative !important;
    max-width: 120px;
    top: -5px !important;
    margin-top: -13px;
  }
  .swiper-slide .slide_image img {
    border-radius: 24px !important;
  }
  .slide_content_group > span {
    font-size: 20px !important;
  }
  .slide_content_group > p {
    font-size: 16px !important;
    padding: 0px 15px;
    padding-top: 5px;
  }
}
.swiper-button-next::after {
  content: url(../img/icons/ic_slide_r.svg);
}
.swiper-button-prev::after {
  content: url(../img/icons/ic_slide_l.svg);
}
.swiper-button-next:hover::after {
  content: url(../img/right.png);
}
.swiper-button-prev:hover::after {
  content: url(../img/left.png);
}
.swiper-button-next {
  position: relative !important;
}
.swiper-button-prev {
  position: relative !important;
}
.slider_navigation {
  position: relative;
  display: flex;
  gap: 36px;
  /* grid-auto-flow: column; */
  /* justify-items: center; */
  justify-content: center;
  margin-top: 0px;
  height: 50px;
}
@media (max-width: 950px) {
  .slider_navigation {
    display: none;
  }
}
.slider_navigation > div {
  /* height: auto !important; */
  position: relative !important;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  /* justify-content: center;
  align-items: center; */
  border-radius: 24px;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  /* padding: 12px; */
}
.slide_wrapper {
  background: rgba(194, 186, 171, 1);
  border-radius: 24px;
  position: relative;
  width: 100%;
  /* /* flex: 1 1 auto; */
  height: 100%;
}

.swiper-slide .slide_image {
  display: block;
  width: 130px;

  position: absolute;
  left: -12px;
  top: -15px;
}
.swiper-slide .slide_image::before {
  position: absolute;
  bottom: 0;
  transform: translate(-50%, 50%);
  left: 50%;
  content: "";
  background-image: url(../img/elements.png);
  width: 80%;
  aspect-ratio: 2.2/1;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-slide .slide_image img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 36px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.slide_position {
  font-family: Gilroy-Bold;
  position: absolute;
  top: 11px;
  right: 8px;
  border-left: 2px solid #0c0101;
  border-bottom: 2px solid #0c0101;
  border-radius: 0 0 0 17px;
  padding: 0 13px 5px 16px;
  color: rgba(228, 4, 37, 1);
  font-size: 19px;
}
.slide_content_group {
  display: grid;
  padding: 70px 10px 26px 130px;
  /* padding: 45px 10px 10px 131px; */
  grid-auto-flow: row;
  text-align: left;
}
.slide_content_group > span {
  font-size: 28px;
  /* font-size: 19px; */
  font-family: Gilroy-Bold;
}
.slide_content_group > p {
  font-size: 20px;
  /* font-size: 14px; */
  font-family: Gilroy-Regular;
  margin: 0;
}

.menu_btn {
  display: none;
  cursor: pointer;
  width: 40px;
}
.close_menu {
  cursor: pointer;
}
.nav_logo_group {
  display: none;
  width: 100%;
  justify-content: space-between;
  grid-auto-flow: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.nav_logo_group > .mobile_logo {
  width: 193px;
}

.modal_wrapper {
  position: fixed;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
  width: 100%;

  justify-items: center;
  align-items: center;
  top: 0;
  overflow: auto;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.modal_wrapper._active {
  opacity: 1;
  pointer-events: all;
}
.modal_block {
  display: grid;
  grid-auto-flow: row;
  background-color: #fff;
  border-radius: 32px;
  padding: 60px 100px 45px 100px;
  position: relative;
  width: 90%;
  max-width: 800px;
}
@media (max-width: 500px) {
  .modal_block {
    width: 100%;
    border-radius: 0;
  }
}
.close {
  position: absolute;
  top: 23px;
  right: 20px;
  width: 24px;
  height: 20px;
  cursor: pointer;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
}
.modal_block_title {
  text-align: center;
  font-size: 42px;
  font-family: Gilroy-Bold;
}
.modal_block p {
  font-size: 18px;
  font-family: Gilroy-Regular;
  margin: 0;
  text-align: center;
}

form {
  display: grid;
  grid-auto-flow: row;
  margin: 21px 0 0 0;
  gap: 15px;
  justify-items: start;
}
.modal_block form {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .modal_block form {
    margin-top: 20px;
  }
}
.input-wp {
  width: 100%;
  position: relative;
}
.input-wp._error input {
  border-color: #e40425;
}
.input-wp._ready::before {
  opacity: 1;
}
.input-wp::before {
  position: absolute;
  top: 50%;
  transform: translate(0px, -50%);
  left: 0;
  content: "";
  background-image: url(../img/good.svg);
  width: 12px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  transition: 0.3s;
}
form input {
  border: 0;
  border-bottom: 1px solid rgba(12, 1, 1, 0.1);
  padding: 10px 20px;
  font-family: Gilroy-Regular;
  font-size: 16px;
}
form input[type="text"] {
  width: 100%;
}
form > button[type="submit"] {
  background: linear-gradient(rgba(228, 4, 37, 1), rgba(245, 157, 1, 1));
  color: #fff;
  font-family: Gilroy-Semibold;
  padding: 16px 41px;
  border-radius: 21px;
  font-size: 22px;
  border: 0;
  cursor: pointer;
  position: relative;
  text-align: center;
  margin-top: 15px;
  margin-left: 20px;
}
@media (max-width: 600px) {
  form > button[type="submit"] {
    order: 8;
    width: 100%;
    margin: 0;
    margin-top: 15px;
  }
}
form > button[type="submit"]:hover {
  background: rgba(194, 186, 171, 1);
  color: rgba(228, 4, 37, 1);
}
label {
  margin: 10px 0 0 0;
  font-family: Gilroy-Regular;
  color: rgba(12, 1, 1, 0.3);
}
form select {
  border: 0;
  font-family: Gilroy-Regular;
  font-size: 16px;
  margin-bottom: 20px;
}
.checkbox_group {
  /* display: grid;
  grid-auto-flow: column;
  margin: 10px 0 0 0; */
  margin-top: 20px;
}
.checkbox_group::before {
  display: none;
}
.checkbox_group input {
  display: none;
}
.checkbox_group label {
  padding-left: 22px;
  position: relative;
  display: block;
}
.checkbox_group._error label::before {
  border-color: red;
}
.checkbox_group label::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";

  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #c2baab;
}
.checkbox_group input:checked + label::before {
  background-image: url(../img/green.svg);
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

.checkbox_group p {
  width: 100%;
  text-align: left;
  font-size: 14px;
  margin-left: 5px;
  font-family: Gilroy-Regular;
  color: #0c0101;
}
.checkbox_group p a {
  font-weight: 600;
  text-decoration: underline;
  color: inherit;
  font-family: Gilroy-Bold;
}

.real-select {
  display: none;
}
.custom-select {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500%;
  font-family: Gilroy-Regular;
}
.select-selected {
  cursor: pointer;
  max-width: max-content;
  display: flex;
  gap: 10px;
  align-items: center;
}
.select-selected::before {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/good.svg);
  width: 12px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.select-selected::after {
  position: relative;
  top: 0;
  left: 0;
  content: "";
  background-image: url(../img/list.svg);
  width: 12px;
  height: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.custom-select.active .select-selected::after {
  transform: rotate(180deg);
}
.form-label {
  padding-left: 23px;
}
.custom-select .select-options {
  position: absolute;
  background: #fff;
  width: 100%;
  display: none;
}
.custom-select.active .select-options {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  gap: 7px;
}
.custom-select.active .select-options div {
  transition: 0.3s;
  cursor: pointer;
}
.custom-select.active .select-options div:hover {
  opacity: 0.7;
}
@media (max-width: 1536px) {
  .main_title_group {
    padding: 60.47px 43px 0 43px;
  }
  .section_bg {
    background-size: 65%;
  }
  .slide_content_group {
    padding: 65px 10px 26px 131px;
  }
  .slide_content_group > span {
    font-size: 28px;
  }
  .slide_content_group > p {
    font-size: 20px;
  }
}
@media (max-width: 1412px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 1150px) {
  .nav_logo_group {
    display: grid;
  }
  nav {
    position: absolute;
    top: 0;
    left: 0;
    /* margin: -100% 0 0 0; */
    width: 100%;
    z-index: 2;
    background-color: rgba(12, 1, 1, 1);
    grid-auto-flow: row;
    justify-content: unset;
    text-align: center;
    padding: 28px;
    transform: translate(0px, -100%);
  }
  .menu_btn {
    display: grid;
  }
}
@media (max-width: 960px) {
  .section_bg {
    background-image: none;
  }
  .img_deco {
    top: 262px;
    width: 170%;
  }
  .main_content_group > .logor-center {
    display: none;
  }
  .main_title_group {
    justify-items: start;
  }
  h1 {
    text-align: left;
  }
  .main_title_list {
    justify-items: start;
    grid-auto-flow: row;
    gap: 20px;
    grid-template-columns: 1fr;
    width: 100%;
  }
  .main_title_list > li > span {
    text-align: left;
  }
  .main_title_list > li {
    justify-items: start;
  }

  @media (max-width: 998px) {
    .main_title_list > li {
      width: 100%;
    }

    .main_sect-revers {
      display: flex !important;
      flex-direction: column-reverse;
    }
    .main_sect-revers span {
      border-top: 1px solid;
      border-bottom: none !important;
      padding-top: 5px !important;
      padding-bottom: 0 !important;
    }
  }
  .main_title_btn {
    justify-self: center;
  }
  .conference_list > li {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }
  .conference_content {
    grid-auto-flow: row;
    gap: 14px;
    justify-content: start;
    justify-items: start;
  }
  .conference_content p {
    font-size: 22px;
  }

  .partners_list {
    display: flex;
    grid-auto-flow: row;
    justify-content: unset;
    gap: 20px;
    margin-bottom: 0;
  }
  .partners_list a {
    width: calc(50% - 10px);
  }

  .gallery_group {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr 1fr 1fr; */
  }
  .gallery_group img:nth-child(1) {
    grid-column: 1/3;
  }
  .gallery_group img:nth-child(2) {
    grid-column: 3/5;
  }
  .gallery_group img:nth-child(3) {
    grid-column: 1/4;
  }
  .gallery_group img:nth-child(4) {
    grid-column: 4/5;
  }
  .gallery_group img:nth-child(5) {
    grid-column: 1/5;
  }
  .gallery_group img:nth-child(6) {
    grid-column: 1/2;
  }
  .gallery_group img:nth-child(7) {
    grid-column: 2/5;
  }
  .gallery_group img:nth-child(8) {
    grid-column: 1/3;
  }
  .gallery_group img:nth-child(9) {
    grid-column: 3/5;
  }
  .partners_list {
    gap: 8px;
  }
  .partners_list a {
    width: 100%;
    min-height: auto;
    padding: 13px;
    min-height: 65px;
  }
  .contacts_group {
    grid-template-columns: 1fr;
  }
  .map {
    height: 334px;
  }
  .contacts_content {
    padding: 32px;
  }
  .slide_content_group {
    padding: 0 0 20px 0;
    text-align: center;
  }
  .slide_wrapper {
    display: grid;
    grid-auto-flow: row;
    justify-items: center;
    text-align: center;
  }
  .swiper-slide img {
    left: unset;
    position: relative;
  }
  .main_title_group {
    padding: 20px;
  }
}

@media (max-width: 700px) {
  .gallery_group {
    margin-top: 20px;
    gap: 12px;
  }
  .gallery_container {
    /* padding: 0; */
  }
  .gallery_group img {
    height: 42vw;
  }
  .gallery_group img:nth-child(1) {
    grid-column: 1/3;
    width: calc(50% - 6px);
    order: 1;
  }
  .gallery_group img:nth-child(2) {
    grid-column: 3/5;
    order: 3;
    width: calc(70% - 6px);
  }
  .gallery_group img:nth-child(3) {
    grid-column: 1/4;
    order: 7;
    width: calc(70% - 6px);
  }
  .gallery_group img:nth-child(4) {
    grid-column: 4/5;
    order: 2;
    width: calc(50% - 6px);
  }
  .gallery_group img:nth-child(5) {
    grid-column: 1/5;
    order: 4;
    width: calc(30% - 6px);
  }
  .gallery_group img:nth-child(6) {
    grid-column: 1/2;
    order: 8;
    width: calc(50% - 6px);
  }
  .gallery_group img:nth-child(7) {
    grid-column: 2/5;
    order: 6;
    width: calc(30% - 6px);
  }
  .gallery_group img:nth-child(8) {
    grid-column: 1/3;
    order: 9;
    width: calc(50% - 6px);
  }
  .gallery_group img:nth-child(9) {
    grid-column: 3/5;
    order: 5;
    width: 100%;
  }
}
@media (max-width: 640px) {
  .modal_block {
    padding: 70px 15px;
    padding-bottom: 45px;
  }
  .video_group {
    padding: 0;
    padding-top: 20px;
  }
  .video_wrapper {
    padding: 0 20px;
  }
  .footer_logo img {
    width: 100%;
  }
  .main_title_btn::before {
    display: none;
  }
  .main_title_btn::after {
    display: none;
  }
  .main_title_btn {
    width: 100%;
  }

  .img_deco {
    top: 208px;
  }
  .main_title_list {
    margin: 32px 0;
  }
  .conference_group {
    padding: 49px 0 60px 0;
  }
  .footer_logo {
    margin: 30px 0;
  }
  h1 {
    font-size: 32px;
    line-height: 150%;
  }
  h1 > span {
    font-size: 40px;
  }
  .second_title {
    font-size: 28px;
    margin-top: 12px;
  }
}
@media (max-width: 550px) {
  .img_deco {
    top: auto;
    bottom: 20%;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 24px;
  }
  h1 > span {
    font-size: 36px;
    margin-top: 10px;
    display: block;
  }
  .second_title {
    font-size: 24px;
  }
}

.popup-thanks .modal_block {
  min-height: 700px;
  padding: 40px;
}

.modal_thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  color: #13c336;
  font-family: Gilroy-Bold;
}
@media (max-width: 998px) {
  .popup-thanks .modal_block {
    min-height: 100vh;
    padding: 40px;
  }
  .modal_thanks {
    font-size: 28px;
  }
}

.popup-info {
  font-family: Gilroy-Regular;
  color: #0c0101;
}
.popup-info .modal_block {
  background: #f59d01;
  padding: 60px 50px;
}
@media (max-width: 998px) {
  .popup-info .modal_block {
    padding: 60px 25px;
    min-height: 100vh;
  }
}

.text-desc-block__title {
  font-weight: 700;
  font-size: 42px;
  margin: 0px;
  font-family: Gilroy-Bold;
}

@media (max-width: 998px) {
  .text-desc-block__title {
    font-size: 32px;
  }
}
.text-desc-block__subtitle {
  margin-top: 7px;
  font-size: 24px;
  font-family: Gilroy-Semibold;
}
@media (max-width: 998px) {
  .text-desc-block__subtitle {
    font-size: 20px;
  }
}
.text-desc-block__text {
  margin-top: 30px;
  font-size: 24px;
}
@media (max-width: 998px) {
  .text-desc-block__text {
    font-size: 16px;
    margin-top: 20px;
  }
}

.partners_list a img {
  transition: 0.3s;
}
@media (max-width: 600px) {
  .partners_list a img {
    transition: 0.3s;
    scale: 0.8;
  }
}
.partners_list a:hover img {
  opacity: 0.5;
}
