@charset "UTF-8";

:root {
  --primary-color: #BDAC96;
  --black: #000;
  --light-grey: #D9D9D9;
  --grey: #666;
  --headerHeight: 67px;
}
[bg="dark"] {
  background: #000!important;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Golos Text", sans-serif;
  font-size: 1.6rem;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: hidden;
}

[data-theme=dark] {
  color: #FCFCFC;
  background-color: var(--brown);
}

[data-theme=light] {
  color: #0F0F10;
  background-color: var(--primary-color);
}

a {
  background-color: transparent;
  text-decoration: none;
  display: inline-block;
  outline: none;
  color: inherit;
}

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

input[type=search]::-webkit-search-cancel-button {
  display: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}

button,
select,
input,
textarea {
  outline: none;
}

textarea {
  resize: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

ol,
ul {
  list-style: none;
}

[hidden] {
  display: none;
}

.bg {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.img-container,
.video-container {
  position: relative;
  display: block;
}

picture,
.img {
  display: block;
  width: 100%;
  height: 100%;
}

.object-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-fit-contain {
  -o-object-fit: contain!important;
     object-fit: contain!important;
}

.icon {
  display: inline-flex;
}

hr {
  border: none;
  height: 1px;
  margin: 3rem auto;
  background-color: var(--grey);
}

hr.full-width {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

hr.small {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

hr.light {
  background-color: #fff;
}

.hidden-scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sticky {
  position: sticky;
  top: 2.4rem;
}

.img-load img[data-src] {
  -webkit-filter: blur(0.2em);
          filter: blur(0.2em);
}

.img-load img {
  -webkit-filter: blur(0em);
          filter: blur(0em);
  transition: -webkit-filter 0.5s;
  transition: filter 0.5s;
  transition: filter 0.5s, -webkit-filter 0.5s;
}

h1,
.title-lg {
  font-size: 4.688vw;
  line-height: 1;
}

h2,
.title-md {
  font-size: 2.604vw;
}

h3,
.title-sm {
  font-size: 3rem;
}

h4,
.title-xs {
  font-size: 2.4rem;
}

h5 {
  font-size: 1.9rem;
}

.text-l {
  font-size: 2rem;
  line-height: 1.4;
}

.text-lg {
  font-size: 1.042vw;
}

.text-md {
  font-size: 1.6rem;
}

.text-sm {
  font-size: 14px;
}

.text-xs {
  font-size: 12px;
}

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

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

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

.text-uppercase {
  text-transform: uppercase;
}

.text-line-through {
  text-decoration: line-through;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.text-light * {
  color: #fff;
}

.currency-symbol::after {
  content: " ₸";
}

.big-num {
  font-size: 4.688vw;
}

.title {
  text-align: center;
}

.title:after {
  content: "";
  display: block;
  margin: 1rem auto;
  background: var(--primary-color);
  width: 40px;
  height: 2px;
}

.text-underline {
  text-decoration: underline;
}

.text h1,
.text h2,
.text .title-md,
.text h3,
.text h4,
.text h5 {
  margin-bottom: 3rem;
}

.text p:not(:last-child) {
  margin-bottom: 3rem;
}

.text .text-sm {
  margin-bottom: 8px;
}

.text small {
  color: #9DA6A6;
}

.text a:not([class]) {
  color: var(--primary-color);
  text-decoration: underline;
}

.text ul {
  list-style-type: disc;
  padding-left: 2rem;
}

.text ul:not(:last-child) {
  margin-bottom: 2.5rem;
}

.text ul li:not(:last-child) {
  margin-bottom: 1rem;
}

.text ul li::marker {
  color: var(--primary-color);
}

.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  position: relative;
  max-width: 90%;
}

.container-md {
  max-width: 1280px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.container-sm {
  max-width: 1024px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.container-xs {
  max-width: 680px;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

.section {
  padding-top: 6vw;
  padding-bottom: 6vw;
}

.section-md {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.image {
  display: block;
}

.bg-content {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.flex {
  display: flex;
  flex-flow: row wrap;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.row-reverse {
  flex-flow: row-reverse wrap;
}

.grid.row-reverse .text {
  order: 2;
}

.grid.row-reverse .image {
  order: 1;
}

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

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-20 {
  grid-gap: 20px;
}

.gap-40 {
  grid-gap: 40px;
}

.gap-vw {
  grid-gap: 3vw;
}

.pc:not(.flex) {
  display: block;
}

.mobile {
  display: none;
}

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

.btn-group .btn:not(:last-child) {
  margin-right: 2rem;
}

.btn {
  padding: 2rem 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  min-width: 15.625vw;
}

.btn-primary {
  color: #fff;
  background: var(--primary-color);
  border: 1px solid transparent;
}

.btn-primary:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.btn-primary.black {
  background: var(--black);
}

.btn-primary.btn-white {
  background-color: #fff;
  color: #000;
}

.btn-default {
  background: transparent;
  border: 1px solid var(--primary-color);
}

.btn-default.white {
  background-color: #fff;
  color: #000;
}

.btn-default.gray {
  color: #000;
  background: #DCDCDC;
}

.btn-default.black {
  border-color: var(--black);
}

.loading:not([href]) {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8' standalone='no'%3F%3E%3Csvg xmlns:svg='http://www.w3.org/2000/svg' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.0' width='160px' height='20px' viewBox='0 0 128 16' xml:space='preserve'%3E%3Cpath fill='%23ffffff' fill-opacity='0.42' d='M6.4,4.8A3.2,3.2,0,1,1,3.2,8,3.2,3.2,0,0,1,6.4,4.8Zm12.8,0A3.2,3.2,0,1,1,16,8,3.2,3.2,0,0,1,19.2,4.8ZM32,4.8A3.2,3.2,0,1,1,28.8,8,3.2,3.2,0,0,1,32,4.8Zm12.8,0A3.2,3.2,0,1,1,41.6,8,3.2,3.2,0,0,1,44.8,4.8Zm12.8,0A3.2,3.2,0,1,1,54.4,8,3.2,3.2,0,0,1,57.6,4.8Zm12.8,0A3.2,3.2,0,1,1,67.2,8,3.2,3.2,0,0,1,70.4,4.8Zm12.8,0A3.2,3.2,0,1,1,80,8,3.2,3.2,0,0,1,83.2,4.8ZM96,4.8A3.2,3.2,0,1,1,92.8,8,3.2,3.2,0,0,1,96,4.8Zm12.8,0A3.2,3.2,0,1,1,105.6,8,3.2,3.2,0,0,1,108.8,4.8Zm12.8,0A3.2,3.2,0,1,1,118.4,8,3.2,3.2,0,0,1,121.6,4.8Z'/%3E%3Cg%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M-42.7,3.84A4.16,4.16,0,0,1-38.54,8a4.16,4.16,0,0,1-4.16,4.16A4.16,4.16,0,0,1-46.86,8,4.16,4.16,0,0,1-42.7,3.84Zm12.8-.64A4.8,4.8,0,0,1-25.1,8a4.8,4.8,0,0,1-4.8,4.8A4.8,4.8,0,0,1-34.7,8,4.8,4.8,0,0,1-29.9,3.2Zm12.8-.64A5.44,5.44,0,0,1-11.66,8a5.44,5.44,0,0,1-5.44,5.44A5.44,5.44,0,0,1-22.54,8,5.44,5.44,0,0,1-17.1,2.56Z'/%3E%3CanimateTransform attributeName='transform' type='translate' values='23 0;36 0;49 0;62 0;74.5 0;87.5 0;100 0;113 0;125.5 0;138.5 0;151.5 0;164.5 0;178 0' calcMode='discrete' dur='1170ms' repeatCount='indefinite'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  text-indent: 300%;
  white-space: nowrap;
  overflow: hidden;
  pointer-events: none;
  transition: none;
}

.btn-icon {
  padding: 4px 16px 4px 4px;
}

.btn-icon svg {
  margin-right: 8px;
}

.btn-scroll {
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  bottom: 4.167vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-to-top {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.btn-to-top svg {
  margin-left: 8px;
}

.h-opacity {
  transition: opacity 0.3s;
}

.h-opacity:hover {
  opacity: 0.75;
}

.h-underline:hover {
  text-decoration: underline;
}

.h-color {
  transition: color 0.15s;
}

.h-color:hover {
  color: var(--primary-color);
}

.h-imgZoom,
.h-imgZoom .post__img {
  position: relative;
  overflow: hidden;
}

.h-imgZoom img {
  transition: 0.35s;
}

.h-imgZoom:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  background-color: #fff;
  font-size: 1.042vw;
  font-weight: 500;
  box-shadow: 0 0 3px rgba(0, 0, 0, .2);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  position: relative;

}

header.transparent {
  background-color: transparent;
  color: #fff;
}

header.transparent .logo {
  color: #fff;
}

header.is-show {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
header .logo svg {
  zoom: 85%;
}
header .logo {
  /* width: 10vw; */
  color: #000;
}

header .btn {
  font-size: 1.6rem;
  font-weight: 400;
  margin-right: 2vw;
}

header .nav__menu {
  justify-content: flex-start;
  font-weight: 500;
}

header .nav__link {
  margin-right: 3vw;
  margin-left: 3vw;
}

.nav__menu,
.nav__group {
  display: flex;
  justify-content: space-between;
}
.lang {
  position: relative;
  font-size: 1.8rem;
}
.dropdown__menu {
  position: absolute;
  display: none;
  top: -2rem
}
.dropdown__menu .link:last-child {
  margin-top: 1.8rem;
}
.dropdown__item {
  cursor: pointer;
}

.dropdown__item:hover .dropdown__menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer {
  padding: 2rem 0;
}

.carousel {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.carousel .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: width 0.5s;
  border-radius: 8px;
  background: var(--grey);
  opacity: 1;
}

.carousel .swiper-pagination-bullet-active {
  background: var(--grey);
  width: 4rem;
}

.carousel .swiper-button-prev,
.carousel .swiper-button-next {
  color: currentColor;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}

.carousel .swiper-button-prev::after,
.carousel .swiper-button-next::after {
  font-size: 1.6rem;
}

.sns-title {
  margin-bottom: 1.5rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1.2;
}

.sns {
  display: flex;
  align-items: center;
}

.sns .link {
  display: inline-flex;
  align-items: center;
}

.sns .link:not(:last-child) {
  margin-right: 3rem;
}

.tabs {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-flex;
  font-weight: 500;
  text-transform: uppercase;
  border-bottom: 1px solid;
  width: 100%;
  padding-bottom: 3rem;
}
.tabs .download {
  margin-left: auto;
}

.tab {
  cursor: pointer;
  position: relative;
}
.tab.active {
  color: var(--primary-color);
}
.tab.active::after {
  content: '';
  position: absolute;
  bottom: -3.1rem;
  width: 100%;
  left: 0;
  height: 3px;
  background-color: var(--primary-color);
  z-index: 1;
}
.time {
  align-items: center;
  color: var(--grey);
  display: flex;
  margin-bottom: .5rem;
}
.time::before {
  content: '';
  background: url(../img/svg/clock.svg) no-repeat center / contain;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 5px;
}
.tab-content {
  display: none;
  margin-top: 4rem;
}
.tab-content .flex-2 .col {
  width: 48%;
}
.tab-content  .text-group {
  flex: 1;
  text-wrap: balance;
}
.tab-content .item:not(:last-child) {
    margin-bottom: 3rem;
}
.tab-content .image {
  width: 6rem;
  height: 6rem;
  margin-right: 2rem;
}
.tab-content .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #f2f2f2
}
.tab-content .image.icon img{
  object-fit: contain;
  padding: 0 5px;
}
.tab-content.active {
  display: block;
}
#form .el-3 {
  mix-blend-mode: difference;
  right: 0;
}
.popup {
  padding: 4rem;
  max-width: 760px;
  display: none;
}

.popup .title-md,
.popup .title-sm {
  margin-bottom: 2.4rem;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 3.6rem;
}

.popup .form-row:not(:last-child) {
  margin-bottom: 2.4rem;
}

.popup .form-btn {
  width: 100%;
}

.popup .fancybox-close-small {
  padding: 4px;
  opacity: 1;
}
.popup .form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.popup .form .form-row{
  width: 48.5%
} 
.popup .form .form-row.full-width {
  width: 100%;
}
.form-container {
  color: #000;
}

.common-form {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 14px;
}

.common-form .form-row {
  width: calc(50% - 4rem);
  margin-right: 4rem;
}

.form-row {
  position: relative;
}

.form-row:not(:last-child) {
  margin-bottom: 3rem;
}

.form-row.full-width {
  width: 100%;
}

.form-label {
  display: block;
  position: relative;
  background: transparent;
  margin-bottom: 5px;
  z-index: 10;
  transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: transform 150ms ease-out, font-size 150ms ease-out;
  transition: transform 150ms ease-out, font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  pointer-events: none;
  font-size: 14px;
  font-weight: 500;
}

.form-field {
  width: 100%;
  border: 1px solid #ccc;
  color: var(--black);
  background: none;
  line-height: 5rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  transition: 0.3s ease;
  background: #fff;
}

.form-field:hover,
.form-field:focus {
  border-color: #000;
}

.form-msg {
  width: 100%;
  border: 0;
  border: 1px solid var(--black);
  color: var(--black);
  background: none;
  padding: 1rem 2rem;
  line-height: normal;
  background-image: linear-gradient(transparent, transparent calc(4rem - 1px), #000 0px);
  background-size: 100% 4rem;
}

.form-msg.form-msg-sm {
  height: 12rem;
}

.search-field {
  background: none;
  border: none;
}

.form-select {
  position: relative;
}

.form-select .icon {
  position: absolute;
  right: 1em;
  top: 5rem;
  pointer-events: none;
}

.form-select select {
  background: none;
  color: inherit;
  border: none;
  border-bottom: 1px solid;
  cursor: pointer;
}

.checkbox,
.radio {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
}

.checkbox a,
.radio a {
  text-decoration: underline;
  color: var(--primary-color);
}

.form-checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-checkbox + label {
  display: inline-flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  align-items: center;
}

.form-checkbox + label::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 2px;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  margin-right: 1.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}

.form-checkbox:not(:disabled):active + label::before {
  background-color: var(--black);
  border-color: var(--black);
}

.form-checkbox:checked + label::before {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iMTEiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEuNjc5IDQuNjg2bC0uOTUzLjkzLS40NzYuNDY1TDQuNzc0IDEwLjVsOC44MS04LjYwNUwxMi4xNTMuNWwtNy4zOCA3LjIxLTMuMDk1LTMuMDI0eiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
}

.form-checkbox:disabled + label::before {
  background-color: #fff;
}

.radio label {
  margin-left: 1rem;
  cursor: pointer;
}

.form-radio {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  background: #fff;
  width: 20px;
  height: 20px;
  color: var(--primary-color);
  border-color: var(--primary-color);
  background: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
}

.form-btn {
  width: 100%;
}

.color-main {
  color: var(--primary-color);
}

.color-grey {
  color: var(--grey);
}

.color-white {
  color: #fff;
}

[bg=white] {
  background-color: white;
}

[bg=black] {
  background-color: #000;
  color: #fff;
}

[bg=light] {
  background-color: var(--light-grey);
}

.page {
  flex: 1 1 auto;
}
.logos {
  position: absolute;
  width: 33vw;
  right: 0;
  top: 0;
}

.el {
  position: absolute;
  z-index: 1;
  display: block;
}
.el-2 {
  right: 0;
}
.el-3 {
  bottom: 0;
  right: 15vw;
}
.banner {
  position: relative;
  overflow: hidden;
  background: #000;
}

.banner .btn-primary {
  color: #000;
}

.banner .text-group {
  max-width: 60%;
  text-wrap: balance;
}

.banner .title-lg {
  margin-bottom: 3rem;

}

.banner .btn-group {
  margin-top: 5rem;
}

.banner .contacts {
  position: absolute;
  right: 0;
  bottom: 0;
}

.banner .contacts a {
  margin-bottom: 1rem;
  text-align: right;
  font-size: 1.042vw;
}

.banner .contacts span {
  width: 22rem;
  margin-right: 2rem;
}

.banner .container {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
}

.banner-content {
  display: flex;
  min-height: 75rem;
  height: 100vh;
  color: #fff;
  padding-top: 7rem;
}

.banner-content.center {
  align-items: center;

}

.bg-overlay {
  display: block;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
}

.bg-overlay.active {
  opacity: 1;
  z-index: 90;
}

.bg-content {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
}

.bg {
  position: relative;
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content-header {
  font-size: 1.563vw;
  margin-bottom: 3rem;
}

.content-header img {
  margin-right: 2rem;
}

.content {
  padding: 5rem;
}

#map {
  height: 100%;
}

.section__title {
  margin-bottom: 5rem;
}
.partners {
  grid-gap: 0rem 3rem;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  justify-content: center;
}
.partners .item {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .item img {
  max-width: 16rem;
  max-height: 10rem;
  object-fit: contain;
}

#about .container {
  align-items: center;
}
#numbers {
  padding-top: 5vw;
  padding-bottom: 5vw;
}
#numbers .text-l {
  text-align: center;
}
#numbers .item {
  max-width: 30%;
  text-align: center;
}

#numbers .item:nth-child(2) {
  max-width: 34rem;
}

.grid-half {
  display: grid;
  grid-template-columns: 35% 1fr;
  grid-gap: 4rem;
}
#speakers {
  position: relative;
  overflow: hidden;
}
.image-icon {
  padding: 3.125vw;
}
.carousel {
  width: 100vw;
  padding-right: 6vw;
}

.carousel .swiper-slide {
  max-width: 35rem;
  margin-right: 3vw;
}

.carousel .image {
  height: 20vw;
  min-height: 36rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;

}
.carousel .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel h3 {
  font-weight: 500;
  margin: 3rem 0 2rem;
}

.carousel .swiper-wrapper {
  align-items: stretch;
}
.carousel .color-grey {
  margin-bottom: 2rem;

}
.speaker .btn{
  margin-top: 2rem;
}
.slider-controls {
  position: relative;
  width: 12rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-controls .swiper-button-prev::after,
.slider-controls .swiper-button-next::after {
  font-size: 3rem;
}

.slider-controls .swiper-button-next {
  right: 0;
}

.v-sep {
  background-color: currentColor;
  height: auto;
  width: 1px;
  align-self: stretch;
  margin: 0 2vw;
}

#contacts {
  background-color: var(--primary-color);
  color: #fff;
}
#contacts .text-lg {
  line-height: 1.4;
}
#contacts .grid {
  align-items: center;
}

#contacts .item {
  height: 100%;
}

.item-padding {
  padding: 5.5vw;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pt-0 {
  padding-top: 0 !important;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pt-5 {
  padding-top: 5rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pt-8 {
  padding-top: 8rem;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-5 {
  padding-bottom: 5rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.4rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-8 {
  margin-bottom: 8rem;
}
.download {
  text-transform: uppercase;
}
.download img{
  margin-left: 1rem;
  width: 3.6rem;
  height: 3.6rem;
}
@media screen and (max-width: 1540px) {
  .container {
    max-width: 94%;
  }
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .pc {
    display: none;
  }

  .mobile {
    display: block;
  }

  h1,
  .title-lg {
    font-size: 2.4rem;
  }

  h2,
  .title-md {
    font-size: 2.4rem;
  }

  h3,
  .title-sm {
    font-size: 2rem;
  }

  h4,
  .title-xs {
    font-size: 1.6rem;
  }

  .text,
  .text-lg,
  .text-md,
  .text-sm,
  .text-xs {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .text h2,
  .text h3,
  .text h4,
  .text h5,
  .text p:not(:last-child) {
    margin-bottom: 2rem;
  }

  .common-form {
    display: flex;
    flex-wrap: wrap;
  }

  .common-form .form-row {
    width: 100%;
    margin-right: 0;
  }

  .form-btn.btn {
    width: 100%;
    padding: 2rem;
  }
  .partners {
    grid-template-columns: repeat(2,1fr);
    grid-gap: 0 2rem;
  }
  .partners .item img {
    max-width: 12rem;
  }
  header .logo {
    width: 10rem;
  }
  header .btn,
  header .nav__menu {
    display: none;
  }
  #map {
    height: 40rem;
  }
  .btn {
    padding: 1.5rem;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .tab-content .flex {
    flex-wrap: wrap;
  }
  .tab-content .flex-2 .col {
    width: 100%;
  }
  .tab-content .item:not(:last-child),
  .tab-content .flex-2 .col:not(:last-child) {
    margin-bottom: 2rem;
  }
  .content-header {
    font-size: 1.4rem;
  }
  .banner-content.center {
    align-items: flex-start;
  }
  .v-sep {
    margin: 0 2rem;
  }
  .btn-group{
    flex-direction: column;
  }

  .lang {
    font-size: 1.6rem;
  }
  .lang svg {
    margin-left: 5px;
  }
  .dropdown__item:hover .dropdown__menu {

    top: 2rem;
 
  }
  .dropdown__menu .link:last-child {
    margin-top: 0;
  }
  .btn-group .btn:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  .content-header img {
    width: 2rem;
  }
  .content-header .v-sep {
    display: none;
  }
  .content-header .flex:first-child {
    margin-bottom: 1rem;
  }
  .content-header {
    flex-direction: column;
  }
  .text-l {
    font-size: 1.4rem;
  }
  .banner .text-group {
    max-width: 100%;
  }
  .banner-content {
    min-height: auto;
    padding-top: 10rem;
  }
  .el-1 {
    width: 80%;
    bottom: 30%;
  }
  .el-2 {
    width: 50%;
    top: 0;
  }
  .el-3 {
    left: auto;
  }
  .banner .contacts {
    bottom: auto;
    top: 0;
    right: 2rem;
    display: none;
  }
  .banner .contacts a {
    font-size: 1.4rem;
  }
  .menu__group .lang {
    order: 2;
  }
  .menu.mobile {
    display: flex;
    order: 1;
  }

  .ct {
    filter: invert(1);
    margin-right: 2rem;
  }
  .header.transparent .ct {
    filter: none;
  }
  .btn {
    font-size: 14px;
  }
  .section,#numbers {
    padding: 4rem 0;
  }
  .big-num {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #numbers .flex {
    flex-direction: column;
  }
  #numbers .item {
    max-width: 100%;
  }
  #numbers .item:not(:last-child) {
    margin-bottom: 2rem;
  }
  .section-md {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .carousel .image {
    height: 32rem;
    min-height: auto;
  }
  .carousel {
    padding-right: 4rem;
  }
  .carousel h3 {
    margin: 2rem auto 1rem;
  }
  .carousel .color-grey {
    margin-bottom: 1rem;
  }
  .slider-controls {
    display: none;
  }
  .mb-5 {
    margin-bottom: 3rem;
  }
  hr {
    margin: 2rem auto;
  }
  .tab {
    text-wrap: balance;
    font-size: 1.6rem;
    text-align: center;
  }
  .tabs {
    padding-bottom: 2rem;
  }
  .tab.active::after {
    bottom: -2.1rem;
  }
  .time {
    font-size: 1.4rem;
  }
  .popup .title-md, .popup .title-sm {
    font-size: 2.4rem;
  }
  .popup .form {flex-wrap: wrap;}
  .popup .form .form-row {
    width: 100%;
  }
  .form-field {
    line-height: normal;
    line-height: 4.4rem;
  }
  .popup {
    padding: 3rem 2rem;
  }
  .popup .form-row:not(:last-child) {
    margin-bottom: 1.5rem;
  }
  .container-md {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .partners .item {
    width: auto;
  }
  header .logo svg {
    zoom: 60%;
  }
  .banner .title-lg {
    font-size: 2.8rem;
  }
}
.el-3 {
  mix-blend-mode: difference;
}
@media screen and (max-width: 640px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(1, 100%);
  }
}



.popup_bio {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* Adjust width as needed */
  max-width: 1200px; /* Set a maximum width */
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

.popup_bio .title {
  padding: 10px;
  background-color: #f0f0f0;
  border-bottom: 1px solid #ccc;
}

.popup_bio .content {
  display: flex;
  flex-direction: row;
}

.popup_bio .photo {
  flex: 0 0 30%; /* Set width of photo column */
  padding: 20px;
}

.popup_bio .photo img {
  max-width: 100%;
  height: auto;
}

.popup_bio .text {
  flex: 1; /* Take remaining space in row */
  padding: 20px;
}

@media (max-width: 768px) {
  /* Styles for tablets and smaller devices */
  .popup_bio {
    width: 90%; /* Adjust width for smaller screens */
    max-height: 80vh; /* Limit maximum height on mobile */
    overflow-y: auto; /* Enable vertical scroll on mobile */
  }

  .popup_bio .content {
    flex-direction: column; /* Stack photo and text vertically on mobile */
  }

  .popup_bio .photo,
  .popup_bio .text {
    flex: 1; /* Each takes full width in mobile view */
    padding: 10px; /* Reduce padding for mobile */
  }
}