:root {
  --font-family: "Roboto", sans-serif;
  --content-width: 1200px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  /* colors */
  --header: #101010;
  --main-text: #1e1e1e;
  --hi-light-cold: #0258ff;
  --hi-light-warm: #fcac12;
  --grey-tone-1: #2b2b2b;
  --grey-tone-2: #5e5e5e;
  --grey-tone-3: #8a8a8a;
  --grey-tone-4: #d7d7d7;
  --bg-cold-tone: #eef4fb;
  --bg-grey-tone: #f5f5f5;
  --sool-tone-1: #2e3239;
  --cold-tone-2: #50575e;
  --cold-tone-3: #7c848d;
  --cold-tone-4: #e1e6eb;
  --cold-txt-buttom: #eef4fb;
  --white: #fff;
  /* transition time*/
  --short: 0.3s;
  --middle: 0.5s;
}

/* stylelint-disable */
@font-face {
  font-family: "Roboto";
  src: url("/fonts/RobotoLight.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/RobotoRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("/fonts/RobotoMedium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Bebas Neue";
  src: url("/fonts/BebasNeueRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Bootstrap Icons";
  src: url("/fonts/bootstrap-icons.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  overflow-anchor: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
}

img {
  margin: 0;
  padding: 0;
  /*max-width: 100%;*/
  height: auto;
  font-size: 0;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.is-hidden {
  display: none !important;
}

.hidden {
  visibility: hidden;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.container {
  padding: 0 30px;
}
/*стандартные кнопки*/
.pg-btn {
  border-radius: 10px;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.pg-btn-p30 {
  padding: 12px 30px;
}
.pg-btn-p34 {
  padding: 12px 34px;
}
.pg-btn-p40 {
  padding: 12px 40px;
}
.pg-btn-p50 {
  padding: 12px 50px;
}

.pg-title {
  color: var(--header);
  font-size: 52px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media (max-width: 991px) {
  .pg-title {
    font-size: 32px;
  }
}
.pg-title span {
  color: var(--hi-light-cold);
}

.pg-title-lc {
  margin-bottom: 0;
  color: var(--header);
  font-size: 48px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  line-height: 70px;
}
@media (max-width: 1200px) {
  .pg-title-lc {
    font-size: 32px;
  }
}

.pg-desc {
  margin-bottom: 50px;
  color: var(--grey-tone-1);
  font-size: 28px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 42px;
}
@media (max-width: 991px) {
  .pg-desc {
    font-size: 16px;
    line-height: 24px;
  }
}

.header__top {
  height: 80px;
  padding: 18px 0;
  background-image: url("/img/header/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 991px) {
  .header__top {
    height: 60px;
  }
}

.header__bottom {
  font-size: 24px;
}
.cabinet-menu {
  position: absolute;
  top: 100px;
  right: 20px;
  max-height: calc(-61px + 100vh);
  max-width: calc(-8px + 100vw);
  padding: 20px 20px;
  border-radius: 20px;
  background-color: var(--white);
  box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, 0.26);
  z-index: 100;
  transition: opacity 0.1s ease 0.02s;
  opacity: 0;
  visibility: hidden;
}

.cabinet-menu-show {
  opacity: 1;
  visibility: visible;
}

.cabinet-menu__wrap {
  position: relative;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cabinet-menu__mail {
  color: var(--grey-tone-2);
  text-align: center;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.cabinet-menu__close-btn {
  position: absolute;
  top: -5px;
  right: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: var(--grey-tone-3);
  transition: color var(--short) ease-line;
}

.cabinet-menu__close-btn:hover {
  color: var(--grey-tone-1);
}

.cabinet-menu__avatar-wrap {
  position: relative;
}

.cabinet-menu__avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  color: #eef4fb;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-color: #7a91ab;
}
.cabinet-menu__btn-wrap {
   display: flex;
   gap: 20px;
 }
.cabinet-menu__btn {
  padding: 6px 10px;
  border-radius: 100%;
  background-color: var(--bg-cold-tone);
  transition: box-shadow var(--short) ease-in-out;
  box-shadow: 0 0 0 transparent;
  outline: none;
}
.cabinet-menu__btn:hover {
   background-color: var(--cold-tone-4);
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
 }

.cabinet-menu__btn:focus {
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.2); /* двойная тень при фокусе */
 }

.cabinet-menu__btn:active {
   transform: scale(0.95);
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
 }

.cabinet-menu__text {
  color: var(--header, #101010);
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .cabinet-menu__text {
    font-size: 16px;
  }
}
.navbar-collapse {
  width: 200px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-basis: auto;
}

.navbar-nav {
  flex-direction: row;
  align-items: center;
}

.navbar-nav .dropdown-menu {
  position: absolute;
}

.btn-show-events__text {
  display: inline;
}

.btn-show-events__icon {
  display: none;
}

.btn-cabinet__icon {
  display: none;
}

@media (max-width: 1399px) {
  .search-form.show {
    position: absolute;
    top: 15px;
    height: 50px;
    z-index: 10;
    display: block;
  }
}

@media (max-width: 991px) {
  .header__top {
    height: 60px;
  }
  .btn-show-events__text {
    display: none;
  }
  .btn-show-events__icon {
    display: inline;
  }
  .btn-cabinet__text {
    display: none;
  }
  .btn-cabinet__icon {
    display: inline;
  }
  .btn-cabinet-mob {
    display: flex;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 0;
    text-align: center;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
  }
  .search-form.show {
    top: 0 !important;
  }
  .search-form.show {
    max-width: 200px;
  }
  .navbar-collapse {
    position: absolute;
    justify-content: flex-start;
    gap: 20px;
    top: 5px;
    left: -100%;
    width: 65%;
    background-color: #fff;
    transition: left 0.1s;
  }
  .navbar-expand-lg .navbar-toggler:focus + .navbar-collapse,
  .navbar-expand-lg .navbar-toggler:hover + .navbar-collapse,
  .navbar-collapse.show {
    left: 7%;
  }
}

@media (max-width: 567px) {
  .navbar-expand-lg .navbar-toggler:focus + .navbar-collapse,
  .navbar-expand-lg .navbar-toggler:hover + .navbar-collapse,
  .navbar-collapse.show {
    left: 9%;
  }
}

.banner__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner__item {
  color: var(--white);
  font-family: Bebas Neue;
  font-size: 40px;
  line-height: 40px;
  align-items: center;
}
.banner__item span {
  color: var(--hi-light-warm);
}
@media (max-width: 992px) {
  .banner__item {
    font-size: 24px;
    line-height: 24px;
  }
}
@media (max-width: 576px) {
  .banner__item-reg {
    display: none;
  }
}

.search-form {
  display: none;
}
.search-form.show {
  display: block;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--cold-tone-3);
  --bs-dropdown-link-hover-color: (--grey-tone-2);
  --bs-dropdown-link-active-color: var(--grey-tone-3);
}
.dropdown-toggle::after {
  display: none;
}
.dropdown-toggle::before {
  font-family: "Bootstrap Icons", sans-serif;
  content: "\f282";
  display: inline-block;
  margin-right: 8px;
}
.dropdown-toggle:hover::before {
  color: var(--cold-tone-3);
}

.dropdown-menu {
  padding: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.dropdown-item-header {
  display: flex;
  padding: 20px;
  color: #fff;
  font-family: Roboto;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: var(--cold-tone-3);
}
.dropdown-item-header:before {
  content: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'> <path d='M17 8.92615C17.0011 8.75532 16.9667 8.58612 16.8989 8.42932C16.8311 8.27252 16.7314 8.13155 16.6061 8.01538L10.356 2.25066C9.59001 1.54419 8.40998 1.54419 7.64403 2.25066L1.39387 8.01538C1.26861 8.13155 1.1689 8.27252 1.1011 8.42932C1.03329 8.58612 0.998872 8.75532 1.00003 8.92615V15.7692C1.00003 16.0957 1.1297 16.4087 1.36051 16.6395C1.59132 16.8703 1.90437 17 2.23079 17H15.7692C16.0956 17 16.4087 16.8703 16.6395 16.6395C16.8703 16.4087 17 16.0957 17 15.7692V8.92615Z' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/> </svg>");
  display: inline-block;
  margin-right: 14px;
}

.dropdown-menu.accordion {
  --bs-accordion-border-color: var(--white);
  --bs-accordion-active-color: var(--grey-tone-1);
  --bs-accordion-btn-color: var(--grey-tone-3);
  --bs-accordion-active-bg: none;
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-btn-padding-y: 8px;
  --bs-accordion-btn-padding-x: 16px;
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3e%3cpath d='M8.40002 12.6001L14.2629 18.9959C14.6592 19.4283 15.3408 19.4283 15.7372 18.9959L21.6 12.6001' stroke='%237C848D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3e%3cpath d='M8.40002 12.6001L14.2629 18.9959C14.6592 19.4283 15.3408 19.4283 15.7372 18.9959L21.6 12.6001' stroke='%232B2B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
.dropdown-item-btn {
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.dropdown-item-btn:hover {
  color: var(--grey-tone-1);
}
.dropdown-item {
  --bs-dropdown-link-color: var(--cold-tone-3);
  --bs-dropdown-link-active-color: var(--grey-tone-1);
  --bs-dropdown-link-active-bg: var(--cold-tone-4);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: inline-block;
}
.dropdown-item:hover,
.dropdown-item:focus {
  --bs-dropdown-link-hover-bg: var(--cold-tone-4);
}
.accordion-body {
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}

.btn-bd-primary {
  --bs-btn-font-weight: 600;
  --bs-btn-color: var(--bs-white);
  --bs-btn-bg: var(--bd-violet-bg);
  --bs-btn-border-color: var(--bd-violet-bg);
  --bs-btn-hover-color: var(--bs-white);
  --bs-btn-hover-bg: shade-color(red, 10%);
  --bs-btn-hover-border-color: shade-color(red, 10%);
  --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
  --bs-btn-active-color: var(--bs-btn-hover-color);
  --bs-btn-active-bg: shade-color(red, 20%);
  --bs-btn-active-border-color: shade-color(red, 20%);
}

.btn-cabinet {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.btn-cabinet__avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--grey-tone-1);
}
.btn-cabinet__name {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.btn-cabinet__name span {
  color: var(--main-text);
}

.btn-lang {
  color: var(--cold-tone-3);
  font-size: 24px;
  font-weight: 500;
  --bs-btn-border-color: none;
  --bs-btn-hover-color: var(--cold-tone-2);
  --bs-btn-active-color: var(--cold-tone-2);
  --bs-btn-active-bg: var(--bg-cold-tone);
}

.btn-pg-primary {
  --bs-btn-font-size: 20px;
  padding: 12px 40px;
}

.btn-pg-dark {
  padding: 12px 50px;
}
@media (max-width: 575px) {
  .btn-pg-dark {
    width: 100%;
  }
}
.nav {
  --bs-nav-link-color: var(--cool-tone-1);
  --bs-nav-link-font-size: 20px;
  --bs-nav-link-font-family: Roboto;
  --bs-nav-nav-link-font-style: normal;
  --bs-nav-link-font-weight: 400;
  --bs-nav-link-hover-color: var(--hi-light-cold);
  display: flex;
  align-items: center;
}
.nav-link {
  color: var(--cool-tone-1);
  font-family: Roboto;
}
.nav-link.active{
  font-size: 40px;
}

.pg-card {
  min-height: 440px;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  --bs-card-cap-bg: none;
}
.pg-card-blue {
  background: linear-gradient(
      0deg,
      rgba(2, 88, 255, 0.4) 0%,
      rgba(2, 88, 255, 0.4) 100%
    ),
    url("/img/card/card-bg.png") center/cover no-repeat,
    var(--hi-light-cold) 50%;
}
.pg-card-grey {
  background: linear-gradient(
      0deg,
      rgba(245, 245, 245, 0.6) 0%,
      rgba(245, 245, 245, 0.6) 100%
    ),
    url("/img/card/card-bg.png") center/cover no-repeat, var(--bg-grey-tone) 50%;
}
.pg-card__header {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0;
  margin-bottom: 72px;
  border: none;
}
.pg-card__header span {
  display: block;
  text-align: center;
  font-size: 30px;
  font-family: Bebas Neue;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.pg-card__header-light {
  color: var(--white);
}
.pg-card__header-dark {
  color: var(--grey-tone-1);
}
.pg-card__date {
  padding: 8px 8px 0;
  border-radius: 8px;
}
.pg-card__date-light {
  border: 1px solid var(--bg-cold-tone);
}
.pg-card__date-dark {
  border: 1px solid var(--grey-tone-1);
}
.pg-card__body {
  display: flex;
  flex-direction: column;
  font-family: Roboto;
}
.pg-card__body-light {
  color: var(--white);
}
.pg-card__body-dark {
  color: var(--grey-tone-1);
}
.pg-card__title {
  margin-bottom: 12px;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
}
.pg-card__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.pg-card__btn-wrap{
  margin-top: auto;
  display: flex;
  gap: 4px;
  flex-direction: column;
}
.pg-card__btn {
  margin-top: auto;
  width: 100%;
}

.pg-slider-container {
  position: relative;
}
.swiper-slide{
  overflow: hidden;
}
.pg-slider-btn-prev,
.pg-slider-btn-next {
  position: absolute;
  top: 36%;
  width: 60px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--grey-tone-1);
  cursor: pointer;
  transition: var(--middle) ease;
}
.pg-slider-btn-prev.swiper-button-disabled,
.pg-slider-btn-next.swiper-button-disabled {
  opacity: 0;
}
.pg-slider-btn-prev:hover,
.pg-slider-btn-next:hover {
  color: var(--grey-tone-2);
}
.pg-slider-btn-prev:active,
.pg-slider-btn-next:active {
  color: var(--grey-tone-3);
}
.pg-slider-btn-prev i,
.pg-slider-btn-next i {
  display: inline-block;
  font-size: 50px;
}

.pg-slider-btn-next {
  right: -60px;
}

.pg-slider-btn-prev {
  left: -60px;
}

.pg-slider-fraction {
  color: var(--main-text);
  font-size: 14px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  line-height: 14px;
  align-self: center;
}

.pg-slider-bullets {
  position: relative;
}
.pg-slider-bullets.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
  width: auto;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--grey-tone-1);
  background: var(--white);
  opacity: 1;
  transition: var(--middle) ease;
}
.swiper-pagination-bullet:hover {
  background-color: var(--grey-tone-2);
}

.swiper-pagination-bullet-active {
  background: var(--grey-tone-1);
  border: 1px solid var(--grey-tone-1);
}
.benefits {
  padding: 50px 0;
}

.benefits__slider {
  margin-bottom: 30px;
  border-radius: 30px;
  background: var(--bg-grey-tone);
}

.benefits__list {
  padding: 85px 0;
}

.benefits__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefits__img {
/*  padding: 18px; */
	padding: 14px 26px;
  margin-bottom: 24px;
  background-color: var(--white);
  border-radius: 20px;
  font-size: 46px;
}
.benefits__text {
  text-align: center;
  color: var(--main-text, #1e1e1e);
  font-size: 24px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}
.benefits__num_done{
  font-size: 28px ;
  color: var(--hi-light-cold);
}

.lines {
  padding: 50px 0;
}
.lines__wrap {
  overflow: hidden;
  white-space: nowrap;
}
.lines__text {
  font-family: Roboto;
  color: var(--main-text);
  font-weight: 400;
  line-height: 68.575px;
}
@media (max-width: 767px) {
  .lines__text {
    line-height: 40px;
    margin-bottom: 0;
  }
}
.lines__text-large {
  font-size: 60px;
  transform: translateX(-15%);
}
@media (max-width: 767px) {
  .lines__text-large {
    font-size: 40px;
  }
}
.lines__text-small {
  font-size: 36px;
  transform: translateX(-10%);
}
@media (max-width: 767px) {
  .lines__text-small {
    font-size: 24px;
  }
}
.lines__text span {
  color: var(--grey-tone-3);
}

.speakers {
  margin-bottom: 70px; }
.speakers__wrap {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 60px;
  border-radius: 30px;
  background: var(--bg-cold-tone); }
.speakers__img-wrap {
  position: relative;
  width: 344px;
  height: 418px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url("/img/speakers/img-wrap-bg.png");
}
.speakers__image-container {
  position: absolute;
  border-radius: 50%;
  overflow: hidden; }
.speakers__image-container-center {
  top: 32%;
  left: 30%;
  width: 156px;
  height: 156px; }
.speakers__img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%); }
.speakers__image-container-top, .speakers__image-container-bottom {
  width: 115px;
  height: 115px; }
.speakers__image-container-top::after, .speakers__image-container-bottom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 88, 255, 0.7);
  mix-blend-mode: screen;
  z-index: 1; }
.speakers__image-container-top {
  top: 0%;
  left: 61%; }
.speakers__image-container-bottom {
  top: 72%;
  left: 6%; }
@media (max-width: 991px) {
  .speakers__wrap {
    align-items: center;
    flex-direction: column-reverse; } }
@media (max-width: 767px) {
  .speakers__image-container-center {
    width: 123px;
    height: 123px; }
  .speakers__image-container-top, .speakers__image-container-bottom {
    width: 102px;
    height: 102px; }
}

.best-presentations {
  padding: 50px 0;
}
.best-presentations__list {
  box-sizing: border-box;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .best-presentations__list {
    margin-bottom: 0;
  }
}
.best-presentations__item {
  height: calc((100% - 30px) / 2) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid var(--grey-tone-3);
}
.best-presentations__item:not(:last-child) {
  margin-bottom: 30px;
}
.best-presentations__item:before {
  height: 56px;
  content: url("/img/best-presentations/stared.svg");
}
@media (max-width: 1199px) {
  .best-presentations__item:before {
    display: none;
  }
}
.best-presentations__item:after {
  content: url("/img/best-presentations/stared.svg");
  width: 35px;
  height: 35px;
  position: absolute;
  top: 10px;
  right: 30px;
  display: none;
}
@media (max-width: 1199px) {
  .best-presentations__item:after {
    display: block;
  }
}
@media (max-width: 767px) {
  .best-presentations__item {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.best-presentations__text {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 20px;
  color: var(--grey-tone-1);
  font-size: 22px;
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  line-height: 30px;
}
@media (max-width: 991px) {
  .best-presentations__text {
    font-size: 16px;
  }
}
.best-presentations__pagination {
  display: none;
}
@media (max-width: 767px) {
  .best-presentations__pagination {
    display: flex;
    justify-content: space-between;
  }
}

.person {
  display: flex;
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  align-items: center;
  justify-content: center;
}
.person__avatar {
  display: flex;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  align-items: center;
  justify-content: center;
  color: var(--grey-tone-1);
  text-align: center;
  font-size: 48px;
  overflow: hidden;
  border-radius: 50%;
  background-color: var(--bg-grey-tone);
  margin-right: 30px;
}
@media (max-width: 991px) {
  .person__avatar {
    font-size: 34px;
  }
}
.person__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1199px) {
  .person__avatar {
    width: 70px;
    height: 70px;
  }
}
.person__info {
  width: 200px;
  display: flex;
  flex-direction: column;
  margin-right: 40px;
}
@media (max-width: 991px) {
  .person__info {
    width: auto;
    margin-right: 20px;
  }
}
.person__status {
  margin-bottom: 8px;
  color: var(--grey-tone-3);
  font-size: 16px;
}
@media (max-width: 991px) {
  .person__status {
    font-size: 12px;
  }
}
.person__name {
  color: var(--main-text);
  font-size: 20px;
}
@media (max-width: 991px) {
  .person__name {
    font-size: 16px;
  }
}
.person__company {
  color: var(--grey-tone-3);
  font-size: 20px;
}
@media (max-width: 991px) {
  .person__company {
    font-size: 16px;
  }
}
.lang {
  padding: 0 60px;
  border-left: 1px solid var(--grey-tone-3);
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey-tone-3);
}
@media (max-width: 991px) {
  .lang {
    padding: 0 20px;
  }
}
.lang__title {
  margin-bottom: 8px;
  font-size: 16px;
}
@media (max-width: 991px) {
  .lang__title {
    font-size: 12px;
  }
}
.lang__item {
  font-size: 20px;
}
@media (max-width: 991px) {
  .lang__item {
    font-size: 16px;
  }
}
.lang__link {
  color: var(--hi-light-cold);
}

.partnership__wrap {
  padding: 60px;
  border-radius: 30px;
  background-image: url("/img/partnership/partnership_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.past-events {
  padding: 80px 0;
}
.past-events__header {
  display: flex;
  /*justify-content: space-between;*/
  /*align-items: center;*/
  flex-direction: column;
}
@media (max-width: 767px) {
  .past-events__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.past-events__list {
  margin-bottom: 30px;
}
.past-events__pagination {
  display: none;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .past-events__button-next,
  .past-events__button-prev {
    display: none;
  }
  .past-events__pagination {
    display: flex;
  }
}

.organizer {
  padding: 100px 0;
  background-color: var(--bg-cold-tone);
}
.organizer__desc {
  font-size: 18px;
}
@media (max-width: 767px) {
  .organizer {
    padding: 50px 0;
  }
  .organizer__desc {
    font-size: 16px;
  }
}

/*footer*/
.footer {
  position: sticky;
  top: 100vh;
  color: var(--grey-tone-3);
  background-color: var(--main-text);
  padding: 32px 0;
}
.footer__logo {
  margin-bottom: 35px;
}
.footer__caption {
  display: block;
  color: var(--grey-tone-3);
  font-size: 24px;
  text-transform: uppercase;
}
.footer__title {
  font-size: 58px;
  color: var(--white);
}
.footer__title span {
  color: var(--hi-light-cold);
}
.footer__subtitle {
  margin-bottom: 14px;
  color: var(--grey-tone-3, #8a8a8a);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
}
.footer__links-wrap {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer__link {
  cursor: pointer;
  flex-shrink: 0;
  color: var(--grey-tone-2, #5e5e5e);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}
.footer__link:hover {
  color: var(--grey-tone-4);
}
.footer__link:active {
  color: var(--bg-grey-tone);
}
.footer__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer__contacts_link {
  color: var(--grey-tone-3, #8a8a8a);
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}

.socials__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.socials__item {
  display: flex;
  align-items: center;
}
.socials__item:hover {
  color: var(--grey-tone-4);
}
.socials__item:active {
  color: var(--bg-grey-tone);
}
.socials__item:before {
  display: block;
  content: "";
  height: 24px;
  margin-right: 10px;
}
.socials__item-vk:before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2726%27 height=%2726%27 viewBox=%270 0 26 26%27 fill=%27none%27%3E%3Cg clip-path=%27url%28%23clip0_450_8441%29%27%3E%3Cpath fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M1.82765 1.82765C0 3.65531 0 6.59685 0 12.48V13.52C0 19.4032 0 22.3447 1.82765 24.1724C3.65531 26 6.59685 26 12.48 26H13.52C19.4032 26 22.3447 26 24.1724 24.1724C26 22.3447 26 19.4032 26 13.52V12.48C26 6.59685 26 3.65531 24.1724 1.82765C22.3447 0 19.4032 0 13.52 0H12.48C6.59685 0 3.65531 0 1.82765 1.82765ZM4.38757 7.90839C4.5284 14.6684 7.90839 18.7309 13.8342 18.7309H14.1701V14.8634C16.3476 15.0801 17.9942 16.6726 18.655 18.7309H21.7317C20.8867 15.6542 18.6658 13.9534 17.2791 13.3034C18.6658 12.5017 20.6158 10.5517 21.0816 7.90839H18.2866C17.6799 10.0534 15.8818 12.0034 14.1701 12.1876V7.90839H11.375V15.4051C9.64167 14.9717 7.45339 12.8701 7.35589 7.90839H4.38757Z%27 fill=%27%238A8A8A%27/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id=%27clip0_450_8441%27%3E%3Crect width=%2726%27 height=%2726%27 fill=%27white%27/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.socials__item-youtube:before {
  content: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2736%27 height=%2726%27 viewBox=%270 0 36 26%27 fill=%27none%27%3E%3Cpath d=%27M35.6414 5.61011C35.6414 5.61011 35.2898 3.06137 34.207 1.94224C32.8359 0.469314 31.3031 0.462094 30.6 0.375451C25.5656 -2.13755e-07 18.007 0 18.007 0H17.993C17.993 0 10.4344 -2.13755e-07 5.4 0.375451C4.69688 0.462094 3.16406 0.469314 1.79297 1.94224C0.710156 3.06137 0.365625 5.61011 0.365625 5.61011C0.365625 5.61011 0 8.6065 0 11.5957V14.3971C0 17.3863 0.358594 20.3827 0.358594 20.3827C0.358594 20.3827 0.710156 22.9314 1.78594 24.0505C3.15703 25.5235 4.95703 25.4729 5.75859 25.6318C8.64141 25.9134 18 26 18 26C18 26 25.5656 25.9856 30.6 25.6173C31.3031 25.5307 32.8359 25.5235 34.207 24.0505C35.2898 22.9314 35.6414 20.3827 35.6414 20.3827C35.6414 20.3827 36 17.3935 36 14.3971V11.5957C36 8.6065 35.6414 5.61011 35.6414 5.61011ZM14.872 17.4829C14.604 17.6256 14.2805 17.4313 14.2805 17.1277V8.0803C14.2805 7.77611 14.605 7.58189 14.8731 7.72561L23.3408 12.265C23.6243 12.417 23.6237 12.8238 23.3397 12.9749L14.872 17.4829Z%27 fill=%27%238A8A8A%27/%3E%3C/svg%3E");
}
.socials__item-telegram:before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width=%2726%27 height=%2726%27 fill=%27%238A8A8A%27 class='bi bi-telegram' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0M8.287 5.906c-.778.324-2.334.994-4.666 2.01-.378.15-.577.298-.595.442-.03.243.275.339.69.47l.175.055c.408.133.958.288 1.243.294.26.006.549-.1.868-.32 2.179-1.471 3.304-2.214 3.374-2.23.05-.012.12-.026.166.016.047.041.042.12.037.141-.03.129-1.227 1.241-1.846 1.817-.193.18-.33.307-.358.336a8.154 8.154 0 0 1-.188.186c-.38.366-.664.64.015 1.088.327.216.589.393.85.571.284.194.568.387.936.629.093.06.183.125.27.187.331.236.63.448.997.414.214-.02.435-.22.547-.82.265-1.417.786-4.486.906-5.751a1.426 1.426 0 0 0-.013-.315.337.337 0 0 0-.114-.217.526.526 0 0 0-.31-.093c-.3.005-.763.166-2.984 1.09z'/%3E%3C/svg%3E");
}
@media (max-width: 1199px) {
  .footer__caption {
    font-size: 20px;
  }
  .footer__title {
    font-size: 48px;
  }
  .footer__point {
    display: none;
  }
}
@media (max-width: 767px) {
  .footer__title {
    margin-bottom: 32px;
  }
  .footer__links-wrap {
    margin-bottom: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__socials {
    align-items: flex-start;
    order: 1;
    margin-bottom: 32px;
  }
  .footer__contacts {
    order: 2;
    margin-bottom: 32px;
  }
  .socials__list {
    justify-content: flex-start;
  }
  .socials__item {
    font-size: 24px;
    margin-right: 24px;
  }
}

/*registration page*/
.registration {
  padding: 50px 0;
  background: var(--bg-cold-tone);
}
/*
.registration__item {
  border-radius: 26px;
  margin-bottom: 40px;
  overflow: hidden;
  background-color: var(--white);
}
*/
.registration__item-header {
  padding: 66px 50px;
}
.registration__item-body {
  padding: 10px 50px 80px;
}
.registration__btn-show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  width: 100%;
  border: none;
  color: var(--header);
  font-size: 40px;
}
.registration__btn-show:after {
  content: "";
  width: 64px;
  height: 64px;
  margin-left: 27px;
  flex-shrink: 0;
  background-image: url("/img/registration/btn-icon.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: inline-block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  transition: -webkit-transform var(--middle) ease;
  transition: transform var(--middle) ease;
  transition: transform var(--middle) ease, -webkit-transform var(--middle) ease;
}
.registration__btn-show:hover:after {
  background-image: url("/img/registration/btn-icon-hover.svg");
}
.registration__btn-show.collapsed:after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  transition: -webkit-transform var(--middle) ease;
  transition: transform var(--middle) ease;
  transition: transform var(--middle) ease, -webkit-transform var(--middle) ease;
}
.registration__btn-add {
  display: flex;
  align-items: center;
  padding: 0;
  color: var(--grey-tone-1);
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
}
.registration__btn-add:before {
  content: url("/img/registration/btn-add.svg");
  margin-right: 24px;
  width: 100px;
}
.registration__btn-save {
  padding: 12px 50px;
  margin-top: auto;
}
.registration__btn-upload {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding: 8px 16px;
  text-align: right;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}
.registration__btn-upload:before {
  content: "";
  background-image: url("/img/registration/upload-report.svg");
  background-size: cover;
  background-position: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 6px;
}
.registration__btn-new-report {
  color: var(--grey-tone-3);
  font-size: 28px;
  font-weight: 400;
  line-height: 36px;
  padding: 62px 50px;
  width: 100%;
  text-align: left;
  border-radius: 26px;
  border: 2px solid var(--grey-tone-4);
}
.registration__btn-new-report:hover,
.registration__btn-new-report:active {
  border-color: var(--grey-tone-3);
}
.registration__btn-new-report:hover svg circle,
.registration__btn-new-report:active svg circle {
  fill: var(--bg-cold-tone);
}
.registration__btn-new-report:hover svg path,
.registration__btn-new-report:active svg path {
  fill: var(--hi-light-cold);
}
.registration__caption {
  color: var(--grey-tone-1);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px;
}
.registration__checkbox {
  color: var(--grey-tone-3);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.registration select,
.registration input,
.registration textarea {
  color: var(--grey-tone-3);
  border-color: var(--bg-grey-tone);
  background-color: var(--bg-grey-tone);
}
.registration select:hover,
.registration select:focus,
.registration input:hover,
.registration input:focus,
.registration textarea:hover,
.registration textarea:focus {
  box-shadow: none;
  background-color: var(--bg-grey-tone);
  border-color: var(--grey-tone-4);
}
.registration select.bg-cold,
.registration input.bg-cold,
.registration textarea.bg-cold {
  background-color: var(--bg-cold-tone);
}
.registration input[type="checkbox"] {
  background-color: var(--bg-cold-tone);
}
.registration .form-check-input:checked[type="checkbox"] {
  border-color: var(--cold-tone-3);
  --bs-form-check-bg-image: url("/img/registration/checked-icon.svg");
  background-size: 10px 8px;
}
.registration__label {
  font-family: Roboto;
  color: var(--grey-tone-3);
}
.registration textarea.form-control,
.registration textarea.form-control.focus {
  padding: 30px;
}

.form-floating label {
  left: 16px;
}

.form-floating > .form-select {
  padding-bottom: 0.5rem;
}

#inputPresentationLink::-webkit-input-placeholder {
  padding-left: 35px;
  background-image: url("/img/registration/presentation-link-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

#inputPresentationLink::placeholder {
  padding-left: 35px;
  background-image: url("/img/registration/presentation-link-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

@media (max-width: 767px) {
  .registration__item-header {
    padding: 40px 25px;
  }
  .registration__item-body {
    padding: 10px 25px 60px;
  }
  .registration__btn-show {
    font-size: 25px;
  }
  .registration__btn-show:after {
    width: 50px;
    height: 50px;
  }
  .registration__btn-save {
    width: 100%;
  }
  .registration__btn-upload {
    justify-content: center;
    width: 100%;
  }
  .registration__btn-new-report {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .registration__caption {
    font-size: 16px;
  }
}

/*avatars color*/
.avatar-cold-light {
  background-color: #eef4fb;
  color: #7a91ab;
}

.avatar-cold-dark {
  color: #eef4fb;
  background-color: #7a91ab;
}

.avatar-grey-light {
  color: var(--grey-tone-1);
  background-color: var(--grey-tone-4);
}

.avatar-grey-dark {
  color: var(--grey-tone-4);
  background-color: var(--grey-tone-1);
}
.avatar-pink-light {
  color: rgba(0, 0, 0, 0.3);
  background-color: #f5e7e7;
}
.avatar-pink-dark {
  color: rgba(0, 0, 0, 0.3);
  background-color: #f0c4e4;
}


.postrelease {
  padding: 50px 0;
}

.postrelease__text{
  margin-bottom: 0;
  max-width: 85%;
}

.speaker {
  display: flex;
  gap: 30px;
  align-items: center;
}
.speaker__avatar {
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 100%;
  overflow: hidden;
  color: #eef4fb;
  align-items: center;
  text-align: center;
  font-family: Roboto;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  background-color: #7a91ab;
}
.speaker__info {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.speaker__name {
  color: var(--main-text);
  font-family: Roboto;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.speaker__company {
  color: var(--main-text);
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.speaker__status {
  color: var(--grey-tone-3);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media (max-width: 1399px) {
  .speaker__info {
    width: 200px;
  }
}
@media (max-width: 1199px) {
  .speaker {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .speaker__avatar {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  .speaker__name {
    font-size: 20px;
  }
  .speaker__company {
    font-size: 20px;
  }
}
/*cookie styles*/
#cookie_note {
  display: none;
  position: fixed;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  width: 80%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.cookie__text {
  width: 80%;
  margin: 0;
  font-size: 0.7rem;
  text-align: left;
  color: black;
}

.cookie__link {
  color: var(--hi-light-warm);
}
@media (min-width: 576px) {
  #cookie_note.show {
    display: flex;
  }
}

@media (max-width: 575px) {
  #cookie_note.show {
    display: block;
    text-align: left;
  }
}

.alert-text {
  font-size: 14px;
  font-weight: bold;
  color: #b90000;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(128, 128, 128, 0.5);
}
.agreement{
  font-size: 12px;
  color: var(--grey-tone-2);
}
.toggle-password {
  position: relative;
}

.toggle-button {
  color: var(--grey-tone-2);
  position: absolute;
  top: 20px;
  right: 15px;
  opacity: 0.5;
}

.message-box {
  display: none;
  position: fixed;
  min-width: 400px;
  bottom: 0;
  right: 0;
  transform: translate(-50%, -50%);
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  max-width: 300px;
  z-index: 1;
}
.message-close{
  position: absolute;
  font-size: 24px;
  color: var(--grey-tone-4);
  top: 3px;
  right:3px;
  transition: color var(--short) ease;
  &:hover, &:focus{
    color: var(--grey-tone-3);
  }
  &:active{
    color: var(--grey-tone-1);
  }
}
.confirm-button {
  margin: 0 auto;
  font-size: 14px;
  display: none;
}
.error-message {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.info-message {
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
  color: #0c5460;
}

.splash-message {
  background-color: #cce5ff;
  border: 1px solid #b8daff;
  color: #004085;
}
.confirm-message{
  background-color: var(--white);
}
.message-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  text-align: left;
  border-radius: 10px;
}
.message-title{
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.message-text{
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
}
