:root {
	--black: #1e1e1e;
	--grey: #d9d9d9;
	--dark-grey: #46484b;
	--grey-light-button: #5e6166;
	--blue-1: #e3eeff;
	--white: #fff;
	--blue: #98c1ff;
	--blue-2: #ecf4ff;
	--button-blue: #275ec7;
	--ultra-light-blue: #f5f9ff;
	--dark-blue: #000521;
	--grey-text: #818181;
	--hover-blue: #3856a1;
	--dark-blue-button: #171c37;
	--fon: #fafcff;
	--dark-grey: #1e1e1e;
}

:root {
  --font-family: "Open Sans", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Manrope", sans-serif;
  --font3: "Montserrat", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  font-family: var(--font-family);
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  color: var(--fon);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}
html.overflow-hidden {
  overflow: hidden;
}
a {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
ul li {
  list-style: none;
}
button {
  border: none;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
html.scroll-hidden {
  overflow: hidden;
}
html.scroll-hidden body {
  overflow-y: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
  -webkit-overflow-scrolling: none;
  overscroll-behavior: none;
}
::-webkit-scrollbar {
  height: 5px;
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--dark-blue-button);
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  background: var(--white);
}

.container {
  width: 1400px;
  margin: 0 auto;
}
section h2 {
  text-align: center;
}

.-white {
  color: var(--white);
}
.-light-blue {
  color: var(--blue-2);
}
.-dark {
  color: var(--dark-blue-button);
}
.-black {
  color: var(--black);
}
.-fon {
  color: var(--fon);
}

.button {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  border-radius: 8px;
  padding: 12px 56px;
  width: fit-content;
  cursor: pointer;
  transition: all .2s ease;
}
.button-white {
  background-color: var(--fon);
  color: var(--dark-blue-button);
}
.button-white:not(._register-close):hover {
  background-color: var(--button-blue);
  color: var(--white);
}
.button-border {
  border: 1px solid var(--fon);
  color: var(--fon);
}
.button-border:hover {
  background-color: var(--white);
  color: var(--dark-blue-button);
}
.button-dark {
  border: 1px var(--white) solid;
  background-color: var(--dark-blue-button);
  color: #FFF;
}
.button-dark:hover {
  border-color: var(--dark-blue-button);
  background-color: var(--fon);
  color: var(--dark-blue-button);
}

h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 109%;
  hyphens: manual;
  -moz-hyphens: manual;
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
}
h2 {
  font-weight: 600;
  font-size: 48px;
}

.mt-4 {
  margin-top: 4px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-18 {
  margin-top: 18px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-38 {
  margin-top: 38px;
}
.mt-40 {
  margin-top: 40px;
}
.mt-48 {
  margin-top: 48px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-100 {
  margin-top: 100px;
}

#speakers, #schedule {
  padding-top: 170px;
  margin-top: -170px;
}
#schedule {
  position: relative;
  z-index: 1;
}
#form-anchor {
  padding-top: 220px;
  margin-top: -120px;
}

br.text-paragraph {
  display: block;
  margin: 4px 0;
  content: " ";
}

/* CUSTOM CHECKBOX */
input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: initial;
  -moz-appearance: initial;
  border: none !important;
  padding: 0 !important;
}
.custom-checkbox-container {
  cursor: pointer;
}
.custom-checkbox-input {
  position: absolute;
  height: 0;
  width: 0;
  cursor: pointer;
}
.custom-checkbox-container label {
  font-size: 14px;
  cursor: pointer;
}
.custom-checkbox-input::before {
  content: "";
  background-image: url("../../img/event/checkbox.svg");
  display: flex;
  position: relative;
  width: 20px;
  height: 20px;
  top: 3px;
  transition: all 0.2s ease;
}
.custom-checkbox-container:hover .custom-checkbox-input::before {
  background-image: url("../../img/event/checkbox-hover.svg");
}
.custom-checkbox-input:checked::before {
  background-image: url("../../img/event/checkbox-active.svg");
}
.custom-checkbox-container:hover .custom-checkbox-input:checked:before {
  background-image: url("../../img/event/checkbox-active.svg");
}
.custom-checkbox-container label {
  padding-left: 32px;
}
/* CUSTOM RADIO */
.custom-radio-input {
  position: absolute;
  height: 0;
  width: 0;
  cursor: pointer;
}
.custom-radio-input::before {
  content: "";
  background-image: url("../../img/event/radio.svg");
  display: flex;
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  top: 3px;
  transition: all 0.2s ease;
}
.custom-radio-container:hover .custom-radio-input::before {
  background-image: url("../../img/event/radio-hover.svg");
}
.custom-radio-input:checked::before {
  background-image: url("../../img/event/radio-active.svg");
}
.custom-radio-container:hover .custom-radio-input:checked:before {
  background-image: url("../../img/event/radio-active.svg");
}
.custom-radio-container label {
  padding-left: 32px;
  cursor: pointer;
}
/* CUSTOM INPUT */
.custom-input  {
  position: relative;
  display: flex;
  flex-direction: column;
}
.custom-input input {
  background-color: var(--white);
  border: 1px solid var(--grey);
  border-radius: 7px;
  padding: 15px 14px;
  font-size: 16px;
  line-height: 105%;
  margin-top: 10px;
  z-index: 1;
}
.custom-input input::placeholder {
  color: var(--grey-text);
}
.custom-input input.error {
  border-color: #FF2F2F;
}
.custom-input .input-error-msg {
  height:10px;
  margin-top: -15px;
  font-weight: 400;
  font-size: 10px;
  line-height: 105%;
  color: #FF2F2F !important;
  z-index: 0;
  opacity: 0;
  transition: all .2s linear;
}
.custom-input input.error + .input-error-msg {
  margin-top: 4px;
  opacity: 1;
}
.custom-input label {
  font-weight: 600;
  font-size: 16px;
  line-height: 105%;
  color: var(--black);
}
/* MODAL */
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.modal.active {
  display: flex;
}
.modal .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-blue-button);
  opacity: .75;
}
.modal__wrapper {
  position: relative;
  height: 100%;
  max-height: 727px;
  padding: 50px 420px 50px 50px;
  background-color: var(--dark-blue-button);
  border-radius: 32px;
  z-index: 1;
  overflow: hidden;
}
.modal__wrapper .content {
  position: relative;
  height: 100%;
  padding: 32px 40px;
  border: 0px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.22);
  z-index: 1;
}
.modal__wrapper img {
  position: absolute;
  bottom: 0;
  right: 50px;
  height: 100%;
}
.modal__blur {
  position: absolute;
  top: 10%;
  left: 5%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: var(--button-blue);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
}
.modal__close {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 50px;
  height: 50px;
  padding: 11px;
  border-radius: 8px;
  cursor: pointer;
}
.modal__close svg {
  width: 100%;
  height: 100%;
}
.modal__close::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .15;
  background-color: var(--white);
  border-radius: 8px;
  transition: opacity .2s ease;
}
.modal__close:hover::before {
  opacity: .20;
}
.modal .content .name {
  font-weight: 600;
  font-size: 48px;
}
.modal .content .status {
  font-weight: 600;
  font-size: 24px;
}
.modal .content .about {
  font-weight: 300;
  font-size: 20px;
}

header {
  position: relative;
  width: 100%;
  height: 867px;
}
/* navbar */
.header-wrapper {
  position: fixed;
  top: 50px;
  left: 50%;
  height: 100px;
  transform: translateX(-50%);
  z-index: 2;
}
nav {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 80px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-radius: 32px;
  overflow: hidden;
  transition: all .2s linear;
}
nav.logo {
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.13);
}
nav.info {
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  background: var(--dark-blue-button);
}
nav.logo .nav-left-wrapper {
  transform: translateY(25%);
}
nav.info .nav-left-wrapper {
  transform: translateY(-25%);
}
.nav-left-wrapper {
  height: 200px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  transition: transform .2s linear;
}
.nav-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-info > div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-info img {
  user-select: none;
}
.nav-info p {
  font-size: 18px;
  font-weight: 600;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-list__item {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  transition: color .2s ease;
}
.nav-list__item:hover {
  color: #3856A1;
}
.mob-burger, .mobile-menu, .mobile-menu__bg {
  display: none;
}


/* banner */
.header-banner {
  position: relative;
  padding-top: 336px;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.header-banner__title, .header-banner .info-card {
  z-index: 1;
  position: relative;
}
.header-banner .info-card {
  width: 600px;
  padding: 52px 40px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.22);
  border-radius: 32px;
}
.header-banner .info-card__rows {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.header-banner .info-card__rows-item {
  display: flex;
  align-items: start;
  gap: 24px;
}
.header-banner .info-card__rows-item p {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
}
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 867px;
  background-color: #000521;
  overflow: hidden;
}
.header-bg video {
  display: block;
  opacity: .5;
  width: 100%;
}
.header-bg__mobile {
  display: none;
}

/* speakers */
.speakers-swiper {
  overflow: visible;
}
.swiper-slide {
  transition: opacity .2s ease;
  opacity: .5;
  height: inherit;
}
.swiper-slide.speakers__list-card .content {
  transform: scale(0.9) translate(-5%, -5%);
}
.swiper-slide .about {
  display: none;
}
.swiper-slide.speakers__list-card {
  padding: 42px 32px 94px;
  height: 512px;
  overflow: hidden;
}
.swiper-slide-active, .swiper-slide-next {
  opacity: 1;
  height: auto;
}
.swiper-slide-active .about, .swiper-slide-next .about {
  display: block;
}
.swiper-slide-active.speakers__list-card, .swiper-slide-next.speakers__list-card {
  padding: 42px 32px;
  height: 564px;
}
.swiper-slide-active.speakers__list-card .content, .swiper-slide-next.speakers__list-card .content {
  transform: scale(1) translate(0,0);
}
.swiper-wrapper {
  align-items: flex-end;
}
.speakers__list-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--dark-blue-button);
  border-radius: 32px;
}
.speakers__list-card .content {
  max-width: 440px;
}
.speakers__list-card .content-title {
  font-weight: 700;
  font-size: 24px;
}
.speakers__list-card .content-status {
  font-size: 20px;
}
.speakers__list-card .content-name {
  font-weight: 600;
  font-size: 24px;
}
.speakers__list-card .content-descr, .speakers__list-card .content-descr li {
  font-weight: 300;
  font-size: 20px;
  max-width: 380px;
}
.speakers__list-card .content-descr li  {
  list-style: disc;
}
.speakers__list-card .content-descr.-full {
  display: block;
}
.speakers__list-card .content-descr.-short {
  display: none;
}
.speaker-photo {
  position: absolute;
  bottom: 0;
  right: -3%;
  height: calc(100% - 74px);
}
.speakers__list-card > *:not(.speaker-blur) {
  z-index: 2;
}
.speaker-blur {
  position: absolute;
  right: 80px;
  top: 80px;
  background-color: var(--button-blue);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  z-index: 1;
} 


.dark-block {
  background-color: var(--dark-blue);
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 8px;
}
.dark-block .blur {
  position: absolute;
  top: 15%;
  right: 0%;
  height: 750px;
  width: 750px;
  background-color: var(--button-blue);
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
}
/* schedule */
.schedule__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.schedule__list-item {
  display: flex;
  gap: 40px;
}
.schedule__list-item .time {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 52px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  font-weight: 600;
  font-size: 48px;
  line-height: 90%;
}
.schedule__list-item .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  padding: 40px 40px 40px 24px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
.schedule__list-item .content h3 {
  font-weight: 600;
  font-size: 24px;
}
.schedule__list-item .content p {
  font-weight: 300;
  font-size: 20px;
}
.schedule__list-item .content p br {
  display: block;
  margin: 10px 0;
  content: " ";
}

/* request */
.request {
  position: relative;
  
}
.request-wrapper {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 50px 79px;
  background-color: var(--white);
  border-radius: 32px;
  z-index: 1;
  overflow: hidden;
}
.request *:not(.button) {
  color: var(--dark-blue-button);
}
.request .title {
  font-weight: 600;
  font-size: 42px;
  line-height: 124%;
}
.request-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.request-form .col-100 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.request__access {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../img/event/access-form.jpg');
  background-size: cover;
  background-position: center;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 38px;
  transform: translateY(-120%);
  transition: transform .4s ease;
}
.request__access.active {
  transform: translateY(0);
}
.request__access .title {
  color: var(--fon);
  font-weight: 600;
  font-size: 42px;
  line-height: 124%;
}
.request__access .text {
  padding: 0 20px;
  color: var(--fon);
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  max-width: 480px;
}

/* gallery */
.gallery-anchor {
  display: grid;
  grid-template-rows: 382px 382px;
  gap: 20px;
}
.gallery-row-top, .gallery-row-bottom {
  height: 100%;
  width: auto;
  display: flex;
  gap: 20px;
}
.marquee {
  height: 100%;
  display: flex;
  gap: 20px;
}
.marquee img {
  border-radius: 8px;
  width: 575px;
}
.gallery-row-top .marquee {
  animation: toprow 40s linear infinite;
}
.gallery-row-bottom .marquee {
  animation: bottomrow 40s linear infinite;
}
@keyframes toprow {
  0% {
    transform: translateX(calc(-100% - 20px));
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bottomrow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px));
  }
}


/* map */
.map {
  width: 100vw;
  display: flex;
  height: 540px;
}
.map__init {
  position: relative;
}
.map__init .filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  pointer-events: none;
}
.map__contact > *:not(.blur) {
  position: relative;
  z-index: 1;
}
.map__init, .map__contact {
  width: 50%;
}
.map__contact {
  position: relative;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  background-color: var(--dark-blue);
  overflow: hidden;
}
.map__contact .title{
  font-weight: 600;
  font-size: 36px;
  line-height: 122%;
}
.map__contact a, .map__contact p {
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
}
.map__contact .blur {
  position: absolute;
  bottom: -70%;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background-color: var(--button-blue);
  border-radius: 50%;
  filter: blur(120px);
  opacity: .5;
}
/* yamap */
.ymaps3x0--layer.ymaps3x0--marker-layer {
  position: absolute;
  z-index: 2;
}
.ymaps3x0--graphics-layer, .ymaps3x0--marker img {
  cursor: pointer;
  transform: translate(-50%, -100%);
}
.ymaps3x0--map-copyrights {
  display: none !important;
}
.ymaps3x0--controls_right.ymaps3x0--controls_center {
  justify-content: end !important;
  padding: 40px;
}
.ymaps3x0--control-button {
  transition: all .1s ease;
}
.ymaps3x0--control-button:active {
  background-color: var(--blue-1);
}

/* footer */
footer {
  padding: 30px 0;
}
.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__menu a {
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;  
  transition: color .2s ease;
}
.footer__menu a:hover {
  color: var(--hover-blue);
}


@media screen and (max-width: 1440px) {
  br.xxl-display {
    display: none;
  }
  header {
    height: auto;
    padding-bottom: 40px;
  }
  .container {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
  }
  .header-bg {
    height: 100%;
  }
  .header-bg video {
    width: auto;
    height: 100%;
  }
  .header-banner {
    padding-top: 220px;
    flex-direction: column;
    gap: 48px;
  }
  
  .speakers__list-card .content {
    max-width: 340px;
  }
  .speakers__list-card .content-name {
    font-size: 20px;
  }
  .speakers__list-card .content-descr,.speakers__list-card .content-descr li {
    font-size: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    top: 0;
  }
  nav {
    position: relative;
    border-radius: 0 0 32px 32px;
    padding: 0 60px;
    z-index: 3;
  }
  .nav-info {
    display: none;
  }
  .mob-burger {
    display: block;
  }

  .modal .content .name {
    font-size: 32px;
  }
  .modal .content .status {
    font-size: 20px;
  }
  .modal__wrapper .content {
    height: 100%;
    max-height: 550px;
    overflow-y: scroll;
    scrollbar-width: 0;
  }
  .modal__wrapper .content::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .request-wrapper {
    padding: 32px;
  }
}

@media screen and (max-width: 992px) {
  #speakers, #schedule {
    padding-top: 120px;
    margin-top: -120px;
  }
  #form-anchor {
    padding-top: 120px;
    margin-top: -20px;
  }
  .header-wrapper {
    width: 100%;
    padding: 0;
  }
  nav._active-menu{
    background: var(--dark-blue-button);
    border-radius: 0;
    z-index: 3;
  }
  .nav-list {
    display: none;
  }
  nav .nav-burger {
    cursor: pointer;
    display: block;
    height: 24px;
    position: relative;
    width: 30px;
    z-index: 11;
  } 
  nav .nav-burger span {
    width: 100%;
    height: 6px;
    position: absolute;
    left: 0;
    border: 2px var(--white) solid;
    border-radius: 10px;
    transition: transform .3s ease;
    top: 50%;
    transform: translateY(-50%);
  }
  nav .nav-burger:after, nav .nav-burger:before{
    content: "";
    width: 26px;
    height: 2px;
    position: absolute;
    left: 0;
    border: 2px var(--white) solid;
    border-radius: 10px;
    transition: all .3s ease;

  }
  nav .nav-burger:before {
    top: 0;
  }
  nav .nav-burger:after {
    bottom: 0;
  }
  nav .nav-burger.active {
    transform: translateX(5px);
  }
  nav .nav-burger.active span {
    border: none;
    background-color: var(--dark-blue-button);
    z-index: 2;
    transform: rotate(-45deg) translate(-36%, 6.5px);
    top: 0;
    width: 20px;
    height: 2px;
  }
  nav .nav-burger.active::before {
    background-color: #171c37;
    transform: rotate(-45deg) translate(-36%, 25%);
  }
  nav .nav-burger.active::after {
    background-color: #171c37;
    transform: rotate(45deg) translate(-35%, -25%);
  }
  .mobile-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--dark-blue-button);
    padding-bottom: 32px;
    border-radius: 0 0 32px 32px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all .4s ease;
    z-index: 2;
  }
  .mobile-menu._show {
    transform: translateY(0);
    opacity: 1;
  }
  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .mobile-menu__bg {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: var(--dark-blue-button);
    z-index: 1;
    opacity: .45;
  }
  .mobile-menu__bg._show {
    display: block;
  }

  .header-banner .info-card {
    width: 100%;
  }
  .header-banner .info-card__register {
    display: none;
  }

  .schedule__list-item {
    flex-direction: column;
    gap: 8px;
  }
  .schedule__list-item .time {
    width: 100%;
    justify-content: flex-start;
    font-size: 28px;
    padding: 16px 24px;
    border-radius: 8px;
  }
  .schedule__list-item .content {
    border-radius: 8px;
  }
  .schedule__list-item .content h3 {
    font-size: 20px;
  }
  .schedule__list-item .content p {
    font-size: 16px;
  }

  .request-form .col-100 {
    grid-template-columns: 1fr;
  }


  .map {
    flex-direction: column-reverse;
    height: auto;
  }
  .map__contact {
    width: 100%;
  }
  .map__init, .map__contact {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 34px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  nav {
    padding: 0 16px;
  }
  .nav-left svg {
    height: 23px;
    width: auto;
  }
  header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0;
  }
  .header-banner {
    padding-top: initial;
    gap: 32px;
  }
  .header-wrapper {
    height: 83px;
    padding: 0;
  }
  .header-bg {
    max-height: none;
  }
  .header-bg video {
    display: none;
  }
  .header-bg__mobile {
    display: block;
    height: 100%;
    background-image: url('../../../../local/assets/img/event/mobile-header-bg.webp');
    background-position: center;
    background-size: cover;
    opacity: .45;
  }
  .header-banner .info-card {
    padding: 32px 20px;
  }
  .header-banner .info-card__rows-item p {
    font-size: 16px;
  }
  .header-banner .info-card__rows-item img {
    width: 20px;
    height: 20px;
  }
  .header-banner .info-card__rows-item p br {
    display: none;
  }
  
  .speakers__list-card .content {
    max-width: 465px;
  }
  .speakers__list-card .content-descr,.speakers__list-card .content-descr li {
    max-width: 435px;
  }
  .speakers__list-card .content-descr.-full {
    display: none;
  }
  .speakers__list-card .content-descr.-short {
    display: block;
  }
  .speaker-photo {
    right: 0;
  }

  .request-wrapper {
    padding: 24px 12px;
    grid-template-columns: 1fr;
    border-radius: 8px;
  }
  .request .title {
    font-size: 24px;
    text-align: center;
  }
  .request-form {
    padding: 0 8px;
  }

  .map__contact {
    padding: 60px;
  }
}

@media screen and (max-width: 480px) {
  h2 {
    font-size: 24px;
  }
  .sm-mt-8 {
    margin-top: 8px;
  }
  .sm-mt-12 {
    margin-top: 12px;
  }
  .sm-mt-16 {
    margin-top: 16px;
  }
  .sm-mt-32 {
    margin-top: 32px;
  }

  br.text-paragraph {
    margin: 1px 0;
  }

  .speakers__list-card .button {
    padding: 6px 36px;
    font-size: 10px;
  }
  .request-form .button {
    width: 100%;
    font-size: 20px;
    padding: 12px 24px;
  }

  .custom-checkbox-container {
    display: flex;
  }
  .custom-checkbox-container label {
    position: relative;
    font-size: 14px;
    line-height: 110%;
    top: 3px;
  }

  /* .modal {
    padding: 16px;
  } */
  .modal__wrapper {
    height: auto;
    padding: 220px 10px 10px;
    border-radius: 16px;
    overflow: hidden;
  }
  .modal__wrapper .content {
    padding: 12px;
    border-radius: 8px;
  }
  .modal__wrapper img {
    right: 24px;
  }
  .modal .content .name {
    font-size: 18px;
  }
  .modal .content .status {
    font-size: 14px;
  }
  .modal .content .about {
    font-size: 12px;
  }
  .modal__close {
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal__blur {
    height: 150px;
    top: 10%;
    left: auto;
    right: 5%;
    filter: blur(30px);
  }


  .speakers-swiper .swiper-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .speakers-swiper .swiper-slide {
    opacity: 1;
  }
  .swiper-slide .about {
    display: block;
  }

  .speakers__list-card {
    padding: 16px 92px 32px 16px !important;
    height: auto !important;
    border-radius: 16px;
  }
  .speakers__list-card .content {
    position: relative;
    z-index: 2;
  }
  .swiper-slide.speakers__list-card .content {
    transform: none;
  }
  .speakers__list-card .content-title {
    font-size: 18px;
  }
  .speakers__list-card .content-status {
    font-size: 14px;
    font-weight: 600;
  }
  .speakers__list-card .content-name {
    font-size: 14px;
    font-weight: 400;
  }
  .speakers__list-card .content-descr,.speakers__list-card .content-descr li {
    max-width: 225px;
    font-size: 12px;
  }
  .speaker-photo {
    right: -20px;
    height: 235px;
  }
  .speaker-blur {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 5%;
    filter: blur(30px);
  }

  .dark-block {
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 0;
  }
  .dark-block .blur {
    width: 500px;
    height: 500px;
    top: 80px;
    right: auto;
    left: 10%;
  }

  .schedule__list {
    gap: 16px;
  }
  .schedule__list-item .time {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 12px;
  }
  .schedule__list-item .content {
    padding: 16px 12px;
	min-height: 140px;
  }
  .schedule__list-item .content h3 {
    font-size: 14px;
  }
  .schedule__list-item .content p {
    font-size: 12px;
  }

  #form-anchor {
    padding-top: 120px;
    margin-top: -88px;
  }
  .request__access {
    background-position: 75%;
  }

  .gallery-anchor {
    grid-template-rows: 120px 120px;
    gap: 6px;
  }
  .gallery-row-top, .gallery-row-bottom, .marquee {
    gap: 6px;
  }
	.marquee img {
	  border-radius: 8px;
	  width: 180px;
	}

  #map {
    height: 273px;
  }
  .map__contact {
    padding: 32px;
    align-items: center;
  }
  .map__contact > * {
    text-align: center;
  }
  .map__contact .blur {
    display: none;
  }
  .map__contact .title {
    font-size: 18px;
  }
  .map__contact a, .map__contact p {
    font-size: 14px;
  }

  .ymaps3x0--graphics-layer, .ymaps3x0--marker img {
    transform: translate(-50%, -85%) scale(.6);
  }
  .ymaps3x0--controls_right.ymaps3x0--controls_center {
    display: none;
  }

  footer {
    display: none;
  }
}
