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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  color: #0c0e0d;
}

ul[class],
ol[class] {
  list-style: none;
}

a {
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article>*+* {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

input,
select,
button {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
  color: inherit;
  border: 0;
  padding: 0;
}

textarea,
input,
select {
  outline: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding-top: 120px;
}

.link {
  color: #1474db;
  transition: opacity 0.3s;
  opacity: 1;
}

.link--underline {
  border-bottom: 1px solid #1474db;
}

.link:hover {
  opacity: 0.8;
}

.link--inherit {
  color: inherit;
}

b .link--underline {
  border-width: 2px;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 32px;
  background: #ffffff;
  border-bottom: 1px solid #cdced3;
  transform: translateY(0%);
  transition: transform 0.3s;
  z-index: 10;
}

.header--hidden {
  transform: translateY(-100%);
}

.header__logo {
  height: 48px;
}

.lang {
  display: flex;
  position: absolute;
  top: 8px;
  margin: 0 7px;
}

.lang__item {
  font-weight: 500;
  font-size: 13px;
  color: #d7dade;
  text-decoration: none;
  line-height: 16px;
  display: block;
  padding: 3px;
  border: 1px solid #d7dade;
}

.lang__item--active {
  background: #d7dade;
  color: #0c0e0d;
}

.sub-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: #0c0e0d;
  padding: 12px 0;
}

.sub-menu__wrap {
  display: flex;
  justify-content: right;
}

.sub-menu__item {
  position: relative;
  padding: 0 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.sub-menu__item:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 14px;
  right: 0;
  background: #d7dade;
  opacity: 0.4;
}

.sub-menu__item:last-child:after {
  content: none;
}

.sub-menu__item:last-child {
  padding-right: 0;
}

.sub-menu__link {
  color: #d7dade;
  text-decoration: none;
  transition: opacity 0.2s;
}

.sub-menu__link__news {
  color: #1474db;
}

.sub-menu__link:hover {
  opacity: 0.8;
}

.sub-menu--mobile {
  display: none;
}

.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 16px;
}

.header__mobile-icons {
  display: none;
}

.menu {
  display: flex;
}

.menu__item {
  padding: 0 14px;
}

.menu__item:last-child {
  padding-right: 0;
}

.menu__link {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #757575;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.menu__link--active,
.menu__link:hover {
  color: #313131;
}

.menu__link--icon {
  color: #1474db;
  padding-right: 34px;
}

.menu__link--active:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -28px;
  height: 4px;
  background: #1474db;
}

.menu__link-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.text-center {
  text-align: center;
}

.h1 {
  font-weight: 700;
  font-size: 28px;
  line-height: 154%;
  margin-bottom: 20px;
}

.sub-title {
  font-size: 21px;
  line-height: 145%;
  margin-bottom: 24px;
}

.btn {
  display: inline-block;
  color: #ffffff;
  font-size: 21px;
  line-height: 145%;
  padding: 13px 24px;
  background: linear-gradient(0deg, #1474db, #1474db), #ffffff;
  border-radius: 34px;
  text-decoration: none;
  cursor: pointer;
}

.btn--full {
  width: 100%;
}

.block {
  padding-top: 40px;
}

.block--no-air {
  padding-top: 0;
}

.block--secondary {
  padding-top: 16px;
}

.block--air-btm {
  padding-bottom: 65px;
}

.img-wrap {
  border-radius: 36px;
  margin-top: 64px;
}

.img-wrap img {
  border-radius: 36px;
}

.block--main .img-wrap {
  margin-top: 40px;
}

.img-mobile {
  display: none;
}

.h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 154%;
  padding: 24px 0 20px;
}

.cols {
  display: flex;
}

.cols--air-up {
  margin-top: 64px;
}

.cols__item--first {
  width: 36.3%;
  margin-right: 6.2%;
}

.cols__item--second {
  width: 57.5%;
}

.cols__item--centered {
  display: flex;
  align-items: center;
}

.box {
  padding: 32px;
  border: 1px solid #d7dade;
  border-radius: 36px;
  margin: 64px -1px;
}

.box--up {
  margin-top: 44px;
}

.box--warning {
  position: relative;
  padding: 36px 94px 36px 36px;
}

.box--warning:before {
  position: absolute;
  content: "";
  right: 42px;
  top: 42px;
  width: 36px;
  height: 36px;
  background: url("../svg/icon-warning.svg") center no-repeat;
}

.box--invert {
  background: #1474db;
  color: #ffffff;
}

.box .cols__item--first {
  margin-left: -5px;
}

/* Убран отступ сверзу у текста в синем блоке на главной  */
.text-block+.text-block {
  /* margin-top: 32px; */
}

.text-block--air {
  margin: 20px 0;
}

.text-block--big {
  font-size: 32px;
}

.text-block--map {
  padding-top: 55px;
}

.text-block--city {
  position: relative;
  font-size: 64px;
  line-height: 1;
}

.text-block--city:before {
  position: absolute;
  content: "";
  left: 100px;
  top: -105px;
  background: url("../svg/icon-tele.svg") left top no-repeat;
  background-size: contain;
  width: 475px;
  height: 108px;
}

.num {
  /*display: inline-block;*/
  font-size: 72px;
  line-height: 80px;
  width: 130px;
}

.num--wide {
  letter-spacing: 0.13em;
}

hr {
  margin: 32px 0;
  border: 0;
  border-top: 1px solid #d7dade;
}

.hr--thin {
  margin: 0;
}

.text-light {
  color: #757575;
}

.program {
  margin-bottom: 32px;
}

.program__list {
  position: relative;
  max-height: 1256px;
  overflow: hidden;
  padding-left: 45px;
  margin-left: -45px;
}

.program__list--open {
  max-height: none;
}

.program__time {
  line-height: 145%;
}

.program__item {
  position: relative;
  margin-bottom: 32px;
}

.program__item:before {
  content: "";
  position: absolute;
  width: 28px;
  height: 38px;
  left: -38px;
  top: -16px;
  background: url("../svg/icon-program.svg") right center no-repeat;
  background-size: 28px 38px;
}

.program__item:after {
  content: "";
  position: absolute;
  left: -40px;
  top: 16px;
  width: 2px;
  height: calc(100% + 34px);
  background: #d7dade;
}

.program__item:last-child:after {
  content: none;
}

.program__theme {
  font-weight: 700;
  font-size: 28px;
  line-height: 154%;
}

*+.program__text {
  margin-top: 10px;
}

*+.program__theme {
  margin-top: 32px;
}

.program__more {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 188px;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0) 0%,
      #ffffff 72.57%);
}

.program__more-text {
  position: absolute;
  display: inline-block;
  bottom: 13px;
  left: 45px;
  font-size: 24px;
  line-height: 145%;
  color: #1474db;
  cursor: pointer;
}

.program__more-text:after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url("../svg/icon-arrow-down.svg") no-repeat;
}

.speakers {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

.speakers__item {
  width: calc(16.66666% - 24px);
  margin: 0 12px 24px;
  padding: 16px 16px 24px;
  border: 1px solid #d7dade;
  border-radius: 36px;
}

.speakers__photo {
  border-radius: 20px;
  margin-bottom: 12px;
}

.speakers__photo img {
  width: 100%;
  border-radius: 18px;
}

.speakers__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  margin-bottom: 12px;
}

.speakers__info {
  font-size: 15px;
  line-height: 155%;
}

.map {
  padding: 24px 32px 32px;
  border: 1px solid #d7dade;
  border-radius: 36px;
}

.map+.map {
  margin-top: 24px;
}

.map__text {
  margin-bottom: 12px;
}

.map__canvas {
  height: 289px;
}

.map__canvas iframe {
  border-radius: 20px;
}

.text-wrap+.text-wrap {
  margin-top: 8px;
}

.link-doc {
  margin-top: 32px;
}

.link-doc--no-air {
  margin-top: 8px;
}

.link--icon img {
  display: inline-block;
  vertical-align: middle;
}

.btn-wrap--air {
  margin-top: 40px;
}

.footer {
  background: #0c0e0d;
  padding: 30px 10px;
  font-size: 16px;
  line-height: 19px;
  color: #d7dade;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 15px;
  margin-bottom: 15px;
}

.footer__socials-item {
  max-width: 40px;
  max-height: 40px;
}

.dropdown__title {
  cursor: pointer;
}

.dropdown__icon {
  display: inline-block;
  height: 30px;
  margin-bottom: -8px;
  transition: transform 0.3s;
}

.dropdown--opened .dropdown__icon {
  transform: rotate(-180deg);
}

.dropdown__text {
  display: none;
  margin-top: 8px;
}

.fancybox-bg {
  background: rgba(64, 70, 83, 0.3);
}

button.fancybox-button.fancybox-close-small {
  width: 50px;
  height: 50px;
  right: 25px;
  top: 35px;
}

.popup {
  position: absolute;
  width: 100%;
  max-width: 456px;
  margin: 0;
  padding: 40px;
  background: #ffffff;
  border-radius: 36px;
  opacity: 0;
  height: 1px;
  transform: translateX(-100%);
  visibility: hidden;
  pointer-events: none;
}

.fancybox-container .popup {
  position: relative;
  opacity: 1;
  height: auto;
  pointer-events: auto;
  visibility: visible;
  overflow: visible;
  transform: translateX(0);
}

.popup__header {
  display: none;
}

.popup__content {
  font-size: 16px;
  line-height: 160%;
}

.popup__text+.popup__text,
.popup__input {
  margin-top: 16px;
}

.popup__error,
.popup__success {
  display: none;
}

.popup__check img {
  width: 36px;
}

.popup__check img,
.popup__warning img {
  display: inline-block;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

.input {
  width: 100%;
  height: 56px;
  padding: 23px 20px 7px;
  font-family: inherit;
  font-size: 16px;
  line-height: 56px;
  font-weight: 400;
  background: #f7f7f7;
  color: #39393d;
  border: 1px solid #d7dade;
  border-radius: 30px;
  box-shadow: none;
  transition: all 0.1s linear;
}

.input#place {
  padding: 0px 20px 0px;
}

.input-wrap {
  position: relative;
}

.label {
  position: absolute;
  font-size: 16px;
  line-height: 22px;
  color: #86868a;
  top: 16px;
  left: 20px;
  font-weight: 300;
  transition: all 0.3s;
}

.input-wrap .input:focus+.label,
.input-wrap.filled .input+.label {
  font-size: 14px;
  transform: translateY(-11px);
}

.checkbox {
  display: block;
}

.checkbox__input {
  display: none;
}

.checkbox__label {
  cursor: pointer;
}

.checkbox__custom {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  background: #f7f7f7;
  border: 1px solid #d7dade;
  border-radius: 2px;
}

.checkbox__input:checked+.checkbox__custom {
  background: url("../svg/icon-checkbox.svg") center no-repeat;
  border-color: #1474db;
}

.checkbox__text {
  display: inline-block;
  vertical-align: top;
  max-width: calc(100% - 35px);
}

.label-radio {
  margin-bottom: 4px;
}

.radio-wrap {
  display: block;
}

.radio-wrap .radio {
  display: inline-flex;
  margin-right: 24px;
}

.radio__input {
  display: none;
}

.radio__label {
  cursor: pointer;
}

.radio__custom {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  background: #f7f7f7;
  border: 1px solid #d7dade;
  border-radius: 50%;
}

.radio__input:checked+.radio__custom {
  border: 6px solid #1474db;
}

.radio__text {
  display: inline-block;
  vertical-align: top;
  max-width: calc(100% - 35px);
}

.tile {
  display: flex;
  flex-wrap: wrap;
  margin: 40px -12px;
}

.tile__item {
  width: calc(33.3333% - 24px);
  margin: 0 12px 24px;
  padding: 16px 16px 24px;
  border: 1px solid #d7dade;
  border-radius: 36px;
}

.tile__img {
  height: 155px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 12px;
  border-radius: 20px;
}

.tile__title {
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 145%;
  color: #0c0e0d;
  margin-bottom: 12px;
  opacity: 1;
  transition: opacity 0.3s;
}

.tile__title:hover {
  opacity: 0.8;
}

.tile__text {
  font-size: 16px;
  line-height: 155%;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 16px -10px 0;
}

.gallery__item {
  display: block;
  width: calc(50% - 20px);
  height: 410px;
  margin: 0 10px 20px;
  border-radius: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.gallery__item--long {
  width: calc(100% - 20px);
  height: 520px;
}

.gallery__item--sm {
  height: 350px;
}

.gallery__item--lg {
  height: 610px;
}

.gallery__item--video {
  position: relative;
}

.gallery__item--video:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  border-radius: 12px;
}

.gallery__item--video:after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  background: url("../svg/icon-play.svg") center no-repeat;
  background-size: contain;
  opacity: 0.4;
  transition: opacity 0.3s;
}

.gallery__item--video:hover:after {
  opacity: 1;
}

.gallery__cols {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.gallery__col {
  width: calc(50% - 20px);
  margin: 0 10px;
}

.gallery__col .gallery__item {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.partners {
  /* display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  align-items: start; */
  margin-bottom: 32px;
}

.partners__item p {
  font-size: 16px;
  line-height: 155%;
  text-align: center;
}

.partners__item-img img {
  margin: 0 auto;
  max-height: 176px;
  padding: 26px 0;
}
.partners__item-img {
  margin: 0 10px;
}
#conference ul li {
  margin-bottom: 12px;
  margin-left: 25px;
}
#conference ul {
  margin-top: 0;
}

.dash-list {
  list-style-type: none;
  padding-left: 0;
}

.dash-list li::before {
  content: "";
  padding-right: 8px;
}

.download-block {
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
  border: 1px solid #d7dade;
}

.download-block .link {
  color: #1474db;
  font-weight: bold;
  text-decoration: none;
}

.download-block .link:hover {
  text-decoration: underline;
}

.img-text-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 32px;
}

.img-text-wrapper img {
  max-width: 50%; /* Set the image to take up a maximum of 50% of the container's width */
  margin-right: 20px;
}

.img-text-wrapper .text {
  flex: 1;
}
.hidden {
  display: none !important;
}
.link-doc__tabs {
  display: flex;
  gap: 0 12px;
}
.link-doc__tab {
  transition: 0.2s ease-in;
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 12px 12px 0 0;
  padding: 6px 12px;
}

.link-doc__tab--active {
  color: #fff;
  border-color: #1474db;
  background-color: #1474db;
}
@media screen and (max-width: 1300px) {
  .container {
    padding: 0 20px;
  }

  .menu__item {
    padding: 0 8px;
  }

  .speakers__item {
    width: calc(25% - 24px);
  }

  .text-block--map {
    padding-top: 50px;
  }

  .text-block--city:before {
    left: 105px;
    top: -75px;
    width: 325px;
    height: 90px;
  }

  .text-block--city {
    font-size: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .header__logo {
    height: 36px;
  }

  .lang {
    margin: 0;
  }

  .menu__link {
    font-size: 12px;
  }

  .menu__item {
    padding: 0 5px;
  }

  .menu__link--active:before {
    bottom: -24px;
  }

  .text-block--map {
    padding-top: 90px;
  }

  .text-block--city:before {
    top: -60px;
    width: 260px;
  }

  .text-block--city {
    font-size: 40px;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .page-wrapper {
    padding-top: 62px;
  }

  .container {
    padding: 0 20px;
  }

  .header {
    padding-top: 0;
  }

  .header__wrap {
    padding: 12px 0;
  }

  .header__logo {
    height: 36px;
  }

  .sub-menu {
    height: 100%;
    position: relative;
    padding: 0 0 60px;
  }

  .header__menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    right: 0;
    top: 0;
    height: 100vh;
    left: auto;
    width: 277px;
    background: #ffffff;

    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.2s;
    overflow: auto;
  }

  .header__menu--open {
    pointer-events: auto;
    transform: translateX(0%);

    -webkit-box-shadow: 0px 0px 30px 0px rgba(12, 14, 13, 0.3);
    -moz-box-shadow: 0px 0px 30px 0px rgba(12, 14, 13, 0.3);
    box-shadow: 0px 0px 30px 0px rgba(12, 14, 13, 0.3);
  }

  .header__mobile-icons {
    display: block;
    position: relative;
    z-index: 1;
  }

  .header__close-icon {
    display: none;
  }

  .menu {
    padding: 60px 0 30px;
    flex-wrap: wrap;
  }

  .menu__item {
    padding: 12px 20px;
    width: 100%;
  }

  .menu__item:last-child {
    padding-top: 33px;
  }

  .menu__link--active:before {
    content: none;
  }

  .menu__link {
    font-size: 16px;
    color: #313131;
  }

  .menu__link--icon {
    padding: 13px 20px 12px;
    background: linear-gradient(0deg, #1474db, #1474db), #ffffff;
    border-radius: 34px;
    line-height: 19px;
    color: #ffffff;
  }

  .menu__link-img {
    display: none;
  }

  .lang {
    right: 20px;
    top: 15px;
  }

  .sub-menu__wrap {
    justify-content: left;
    flex-wrap: wrap;
    padding: 20px 0;
    padding-right: 60px;
  }

  .sub-menu__item {
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
  }

  .sub-menu__item:after {
    content: none;
  }

  .sub-menu__item:last-child {
    margin-bottom: 0;
  }

  .block {
    padding-top: 20px;
  }

  .block--main {
    padding-top: 24px;
  }

  .h1 {
    font-size: 20px;
    line-height: 154%;
    margin-bottom: 16px;
  }

  .sub-title {
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 16px;
  }

  .btn {
    font-size: 16px;
    line-height: 19px;
    padding: 13px 20px 12px;
  }

  .img-wrap {
    border-radius: 20px;
    margin-top: 32px;
  }

  .img-wrap img {
    border-radius: 20px;
  }

  .img-desktop {
    display: none;
  }

  .img-mobile {
    display: block;
  }

  .block--main .img-wrap {
    margin-top: 32px;
  }

  .h2 {
    padding: 12px 0;
    font-size: 20px;
    line-height: 154%;
  }

  .cols {
    flex-wrap: wrap;
  }

  .cols--air-up {
    margin-top: 32px;
  }

  .cols__item--first {
    width: 100%;
    margin-right: 0;
    margin-bottom: 12px;
  }

  .cols__item--second {
    width: 100%;
  }

  .box {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 16px;
  }

  .box--warning {
    padding: 16px 44px 16px 16px;
  }

  .box--warning:before {
    right: 19px;
    top: 19px;
    width: 18px;
    height: 18px;
    background-size: contain;
  }

  .box .cols__item--first {
    margin-left: 0;
  }

  .box-pl {
    padding-left: 25%;
  }

  .img-text-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .img-text-wrapper img {
    margin-right: 0;
    margin-bottom: 10px;
    max-width: 100%;
  }

  .text-block+.text-block {
    margin-top: 12px;
  }

  .text-block--air {
    margin: 0;
  }

  .text-block--big {
    font-size: 16px;
    display: flex;
    align-items: center;
  }

  .text-block--city {
    font-size: 20px;
  }

  .text-block--map {
    padding-top: 45px;
  }

  .text-block--city:before {
    top: -90px;
    left: -85px;
    width: 325px;
    height: 75px;
  }

  .num {
    font-size: 40px;
    line-height: 30px;
    width: 80px;
  }

  hr {
    margin: 24px 0;
  }

  .program__list {
    max-height: 484px;
    margin-top: 12px;
    padding-left: 28px;
    margin-left: 0;
  }

  .program__item {
    margin-bottom: 24px;
  }

  .program__item:before {
    width: 16px;
    left: -26px;
    top: -22px;
  }

  .program__item:after {
    left: -28px;
    top: 10px;
    height: calc(100% + 26px);
  }

  *+.program__text {
    margin-top: 4px;
  }

  .program__theme {
    font-size: 16px;
    line-height: 154%;
  }

  *+.program__theme {
    margin-top: 24px;
  }

  .program__more {
    height: 148px;
  }

  .program__list--open {
    max-height: none;
  }

  .program__more-text {
    font-size: 16px;
    line-height: 145%;
    bottom: 0;
    left: 29px;
  }

  .program__more-text:after {
    right: -25px;
    width: 20px;
    height: 20px;
    background-size: contain;
  }

  .speakers {
    margin: 0 -6px;
  }

  .speakers__item {
    width: calc(50% - 12px);
    margin: 0 6px 12px;
    padding: 12px 12px 20px;
    border-radius: 20px;
  }

  .speakers__photo {
    border-radius: 8px;
  }

  .speakers__name {
    font-size: 16px;
    line-height: 154%;
  }

  .speakers__info {
    font-size: 14px;
    line-height: 150%;
  }

  .map {
    padding: 12px;
    border-radius: 20px;
  }

  .map+.map {
    margin-top: 12px;
  }

  .map__canvas {
    height: 140px;
  }

  .map__canvas iframe {
    border-radius: 8px;
  }

  .link-doc {
    margin-top: 24px;
  }

  .link-doc--no-air {
    margin-top: 8px;
  }

  .link--icon img {
    width: 20px;
  }

  .btn-wrap--air {
    margin-top: 16px;
  }

  .block--air-btm {
    padding-bottom: 35px;
  }

  .footer {
    padding: 13px 0;
    font-size: 12px;
    line-height: 150%;
  }

  .fancybox-slide {
    padding: 0;
  }

  button.fancybox-button.fancybox-close-small {
    right: 7px;
    top: 5px;
  }

  .popup {
    border-radius: 0;
    padding: 0 20px 24px 20px;
  }

  .popup__logo {
    height: 36px;
  }

  .popup__header {
    display: block;
    padding: 12px 20px;
    border-bottom: 1px solid #cdced3;
    margin: 0 -20px 16px;
  }

  .tile {
    margin: 12px 0 0;
  }

  .tile__item {
    width: 100%;
    margin: 0 0 12px;
    padding: 12px 12px 20px;
    border-radius: 20px;
  }

  .tile__img {
    height: 130px;
    border-radius: 8px;
  }

  .tile__title {
    font-size: 16px;
    line-height: 154%;
  }

  .tile__text {
    font-size: 14px;
    line-height: 150%;
  }

  .gallery {
    margin: 0;
  }

  .gallery__item {
    display: block;
    width: 100%;
    height: 180px;
    margin: 0 0 12px;
  }

  .gallery__item--long {
    width: 100%;
    height: 180px;
  }

  .gallery__item--sm {
    height: 180px;
  }

  .gallery__item--lg {
    height: 180px;
  }

  .gallery__col {
    width: 100%;
    margin: 0;
  }

  .partners {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .partners__item-img {
    max-width: 300px;
    margin: 0 auto;
  }
  .slick-dots li {
    margin: 0 3px !important;
  }
}

@media screen and (max-width: 359px) {
  .text-block--city:before {
    top: -84px;
    left: -72px;
    width: 275px;
    height: 75px;
  }
}