@import url(../fonts/gilroy/stylesheet.css);
:root {
  --white: #fff;
  --white-20: rgba(255, 255, 255, 0.2);
  --white-50: rgba(255, 255, 255, 0.5);
  --black: #292929;
  --black-80: rgba(41, 41, 41, 0.8);
  --black-70: rgba(41, 41, 41, 0.7);
  --black-30: rgba(41, 41, 41, 0.3);
  --black-20: rgba(41, 41, 41, 0.2);
  --blue: #26B1F0;
  --purple: #5F22E0;
  --link-bad: #AC87FB;
  --link: #FF3AEB;
  --gradient: linear-gradient(166.46deg, #5F22E0 4.72%, #3703A5 90.3%);
  --gradient-blue: linear-gradient(174.46deg, #12D3ED -3.63%, #8D00FC 90.65%), linear-gradient(98.74deg, #1E76FB 14.47%, #3F00C4 87.71%), #C4C4C4;
  --error: #FF3A81;
  --btn: linear-gradient(166.46deg, #396DF2 4.72%, #6D0BCE 90.3%);
  --btnHover: linear-gradient(166.46deg, #6D0BCE 4.72%, #396DF2 90.3%);
  --bg: #F4F6FF;
  --bg2: #F3F2FB;
  --bg-purple: #4303C9;
  --border: #C4CAD9;
}
* {
  box-sizing: border-box;
  outline: none;
}
html {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex: auto;
  flex-direction: column;
  font-family: 'Raleway', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  line-height: 28px;
}
img {
  border: 0;
}
input,
textarea,
a,
button {
  outline: none;
}
a {
  color: var(--purple);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--purple);
  text-decoration: underline;
}
.dn {
  display: none;
}
.clr {
  clear: both;
}
.col {
  vertical-align: top;
  display: inline-block;
}
main {
  flex: auto;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--black);
  -webkit-box-shadow: 0 0 0 1000px var(--white) inset;
}
.p1 {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.p2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.p3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.min {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.b1 {
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
h1,
.h1 {
  font-size: 88px;
  line-height: 88px;
  font-family: 'Gilroy', sans-serif;
  text-transform: uppercase;
  margin-bottom: 56px;
  font-weight: bold;
}
h2,
.h2 {
  font-weight: 500;
  font-size: 45px;
  line-height: 62px;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
h3,
.h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.shadow {
  box-shadow: 0 4px 51px #4B3CFF;
}
.content {
  padding: 0 80px;
}
.logo {
  display: inline-block;
  background: url(../img/logo.svg) no-repeat center / contain;
  width: 199px;
  height: 37px;
}
.logo--2 {
  background-image: url(../img/logo2.png);
  width: 138px;
  height: 44px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  transition: all 0.3s ease;
}
header .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}
header.scroll {
  background-color: var(--bg);
}
header.full .header__btn {
  width: 265px;
  opacity: 1;
  margin-left: 56px;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header__left .logo--2 {
  position: relative;
}
.header__left .logo--2:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  width: 1px;
  height: 48px;
  background: var(--border);
}
.header__right {
  display: flex;
  align-items: center;
}
.header__btn {
  overflow: hidden;
  opacity: 0;
  width: 0;
  transition: all 0.3s ease;
}
.menu {
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.menu-item {
  color: var(--black-80);
  text-decoration: none;
}
.menu-item:hover,
.menu-item.active {
  color: var(--purple);
}
.section {
  background: no-repeat center / cover;
  padding: 160px 0;
  position: relative;
}
.section--brain {
  background-image: url(../img/pic/01.jpg);
  padding: 390px 0 110px;
}
.section--brain .phrase {
  position: absolute;
  top: 140px;
  left: 80px;
}
.section--brain .text {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  width: 610px;
}
.section--brain .time {
  position: absolute;
  top: 180px;
  right: 80px;
}
.section--brain .btns {
  text-align: center;
}
.section--about {
  background-image: url(../img/pic/02.jpg);
  height: 590px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--about .title {
  text-align: center;
}
.section--about .content {
  width: 800px;
  padding: 0;
}
.section--about .text {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.02em;
}
.section--what {
  background-image: url(../img/pic/03.jpg);
  padding: 120px 0 88px;
}
.section--what .ul {
  column-count: 2;
  column-gap: 50px;
}
.section--program {
  background-image: url(../img/pic/04.jpg);
  padding: 80px 0 40px;
}
.section--program .blocks {
  position: absolute;
  top: 230px;
  right: 67px;
}
.section--points {
  background: linear-gradient(180.08deg, #CBD6FF -81.63%, rgba(248, 247, 247, 0) 99.93%);
}
.section--points:after {
  background: url(../img/pic/points.png) no-repeat right top / contain;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 520px;
  z-index: -1;
}
.section--points .text {
  width: 650px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: -0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.section--points .text h3 {
  margin-top: 80px;
}
.section--points .blocks {
  position: absolute;
  top: 1100px;
  right: 66px;
  z-index: -1;
}
.section--points .block {
  background: var(--white);
  border-radius: 24px;
  position: absolute;
  right: 80px;
  top: 440px;
  border: 2px solid var(--purple);
  padding: 24px 32px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.section--points .block__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 40px;
  margin-bottom: 16px;
}
.section--ambassadors {
  background-image: url(../img/pic/05.jpg);
  padding: 80px 0 120px;
}
.section--partners {
  padding: 0 0 70px;
}
.section--phil {
  background-image: url(../img/pic/06.jpg);
  text-align: center;
  height: 400px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section--register {
  background-image: url(../img/pic/07.jpg);
  padding: 120px 0;
  text-align: center;
  transition: all 0.3s ease;
}
.section--register .text {
  width: 770px;
  margin: 0 auto;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.section--register .btns {
  margin-top: 32px;
}
.section--register.open {
  background-image: url(../img/pic/bg-form.jpg);
}
.section--contacts {
  background-image: url(../img/pic/08.jpg);
  padding: 120px 0;
}
.section--contacts .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section--contacts .text {
  font-weight: 500;
  font-size: 45px;
  line-height: 62px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 3.125vw;
  line-height: 4.30555556vw;
  width: 652px;
}
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  border: none;
  box-shadow: none;
  border-radius: 100px;
  background: var(--btn);
  height: 80px;
  padding: 0 66px;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn > span {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
}
.btn:hover {
  color: var(--white);
  text-decoration: none;
  background: var(--btnHover);
}
.btn--sm {
  height: 52px;
  padding: 0 40px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.title {
  color: var(--purple);
  font-size: 88px;
  line-height: 88px;
  font-family: 'Gilroy', sans-serif;
  text-transform: uppercase;
  margin-bottom: 56px;
  font-weight: bold;
  font-size: 6.11111111vw;
  line-height: 6.11111111vw;
  margin-bottom: 3.88888889vw;
}
.title--small {
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.52777778vw;
  line-height: 2.08333333vw;
  opacity: 0.6;
  color: var(--white);
  margin-bottom: 40px;
}
.text-white {
  color: var(--white);
}
.text-white a {
  color: var(--link);
}
.phrase {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 194px;
  line-height: 206px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.phrase > div:last-child {
  margin-top: -20px;
}
.time {
  font-weight: 500;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: var(--purple);
  border: 3px solid var(--purple);
  padding: 0 70px;
  height: 126px;
  display: flex;
  align-items: center;
  border-radius: 87px;
}
.time small {
  font-size: 50%;
  margin-top: -10px;
  display: block;
}
.arrow {
  display: inline-block;
  background: url(../img/arrow.svg) no-repeat center / contain;
  width: 24px;
  height: 12px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 60px;
}
.btns {
  margin-top: 40px;
}
.numbers {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 80px;
}
.number {
  width: 200px;
}
.number--big {
  width: 260px;
}
.number__num {
  font-weight: bold;
  font-size: 40px;
  line-height: 47px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  margin-bottom: 8px;
}
.number__title {
  font-size: 24px;
  line-height: 28px;
  text-transform: uppercase;
}
ul {
  padding: 0;
  margin: 0 0 0 20px;
}
ul + p {
  margin-top: 24px;
}
p {
  margin: 0;
  padding: 0;
}
p + p {
  margin-top: 24px;
}
.ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ul li {
  margin-bottom: 32px;
  position: relative;
  padding-left: 40px;
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
}
.ul li:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 24px;
  background: url(../img/li.png) no-repeat center / contain;
}
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 56px;
}
.top .title {
  margin-bottom: 0;
}
.top--end {
  align-items: flex-end;
  margin-bottom: 40px;
}
.top .text {
  width: 627px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.slider-navigation {
  display: flex;
  gap: 30px;
}
.slider-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.slider-btn img,
.slider-btn svg {
  width: 100%;
}
.slider-btn img path,
.slider-btn svg path {
  fill: var(--black);
  transition: all 0.3s ease;
}
.slider-btn:hover svg path {
  fill: var(--purple);
}
.slider-btn--white svg path {
  fill: var(--white);
}
.slider-btn--white:hover svg path {
  fill: var(--link);
}
.slider-next img,
.slider-next svg {
  transform: scaleX(-1);
}
.member {
  width: 300px;
}
.member__pic {
  height: 350px;
  width: 100%;
  background: no-repeat center / cover;
  margin-bottom: 24px;
}
.member__name {
  font-weight: bold;
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.66666667vw;
  line-height: 2.22222222vw;
  margin-bottom: 12px;
}
.member__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.tag {
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 3px solid var(--purple);
  border-radius: 50px;
}
.tag__text {
  font-weight: 600;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 2.08333333vw;
  line-height: 2.77777778vw;
  flex: 1;
}
.tag__tip {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../img/info.svg) no-repeat center / contain;
  cursor: pointer;
  position: relative;
}
.tag__tip:hover .tag__float {
  display: block;
}
.tag__float {
  position: absolute;
  display: none;
  z-index: 3;
  border: 3px solid var(--purple);
  background: var(--white);
  padding: 30px 50px;
  border-radius: 26px;
  font-size: 18px;
  line-height: 28px;
  width: 500px;
  top: 40px;
  right: 10px;
  font-family: 'Gilroy', sans-serif;
}
.icon {
  display: inline-block;
  line-height: 0;
  width: 32px;
  height: 32px;
}
.icon img,
.icon svg {
  width: 100%;
}
.icon img path,
.icon svg path {
  transition: all 0.3s ease;
}
.icon--small {
  width: 16px;
  height: 16px;
}
.link {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.link--white {
  color: var(--white);
}
.link:hover {
  color: var(--link);
  text-decoration: none;
}
.link:hover svg path {
  fill: var(--link);
}
.blocks {
  background: url(../img/pic/cubes.png) no-repeat center / contain;
  width: 129px;
  height: 106px;
}
.blocks--2 {
  width: 263px;
  height: 294px;
}
.contact {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 3px solid var(--white);
  height: 78px;
  padding: 0 32px;
  margin: 24px 0;
  border-radius: 50px;
}
.contact__icon {
  line-height: 0;
}
.contact__icon img {
  width: 32px;
}
.contact__text {
  font-weight: 500;
  font-size: 45px;
  line-height: 62px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 3.125vw;
  line-height: 4.30555556vw;
}
.funds {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 0;
}
.fund {
  width: 410px;
  background: var(--bg2);
  padding: 24px;
  cursor: pointer;
  position: relative;
  text-align: center;
  height: 365px;
  transition: all 0.3s ease;
}
.fund > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.fund__type {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  opacity: 0.6;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}
.fund__logo {
  overflow: hidden;
  transition: all 0.5s ease;
}
.fund__logo img {
  width: 250px;
  height: 150px;
  object-fit: contain;
}
.fund__btn {
  line-height: 0;
  margin-top: 32px;
}
.fund__btn svg {
  transition: all 0.3s ease;
}
.fund__btn svg path {
  fill: var(--black);
  transition: all 0.3s ease;
}
.fund__text {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  overflow: hidden;
  height: 0;
  color: var(--white);
  transition: all 0.5s ease;
}
.fund__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fund--blend .fund__logo img {
  mix-blend-mode: multiply;
}
.fund:hover .fund__btn svg path {
  fill: var(--purple);
}
.fund.active {
  z-index: 1;
  background: var(--bg-purple);
  box-shadow: 0 4px 51px #4B3CFF;
}
.fund.active .fund__type {
  color: var(--white);
}
.fund.active .fund__btn svg {
  transform: rotate(45deg);
}
.fund.active .fund__btn svg path {
  fill: var(--white);
}
.partner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 300px;
  background: var(--bg2);
  text-align: center;
  padding: 40px 30px;
  height: 390px;
}
.partner__img {
  margin-bottom: 30px;
}
.partner__img img {
  width: 210px;
  height: 130px;
  object-fit: contain;
}
.partner__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  opacity: 0.8;
}
.partner__link {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.02em;
}
.partner__link a {
  color: var(--black-70);
}
.partner__link a:hover {
  color: var(--purple);
  text-decoration: none;
}
.partner__url {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
  margin-bottom: 24px;
}
.partner--popup {
  background: transparent;
  width: auto;
  height: auto;
  padding: 0;
}
.partner--popup .partner__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
  text-align: left;
}
.partner--blend .partner__img img {
  mix-blend-mode: multiply;
}
.fancybox__backdrop {
  background: linear-gradient(157.71deg, rgba(255, 255, 255, 0.4) 0%, rgba(170, 189, 255, 0) 101.52%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.fancybox__content {
  background: var(--white);
  width: 550px;
  padding: 40px;
  border: 3px solid var(--purple);
  border-radius: 26px;
}
.fancybox__content .title {
  font-size: 60px;
  line-height: 60px;
}
.fancybox__content > .carousel__button.is-close {
  top: 35px;
  width: 32px;
  height: 32px;
  background: url(../img/close.svg) no-repeat center / contain;
  right: 40px;
}
.fancybox__content > .carousel__button.is-close svg {
  display: none;
}
.org {
  display: flex;
  gap: 40px;
  justify-content: center;
  text-align: left;
  color: var(--white);
  margin-bottom: 40px;
}
.org__pic {
  width: 380px;
}
.org__pic img {
  width: 100%;
}
.org__content {
  width: 450px;
}
.org__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.org__link {
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.38888889vw;
  line-height: 1.59722222vw;
  margin-top: 12px;
}
.org__link a {
  color: var(--white);
}
.org__link a:hover {
  color: var(--link);
  text-decoration: none;
}
.multiply {
  mix-blend-mode: multiply;
}
.obstetrics {
  display: flex;
  gap: 20px;
  align-items: center;
  text-align: left;
}
.obstetrics > div:first-child {
  width: 78px;
  height: 78px;
  background: var(--white);
  border-radius: 50%;
  line-height: 0;
}
.obstetrics > div:first-child img {
  height: 100%;
}
.obstetrics > div:last-child {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: var(--white);
}
.checkbox-outer {
  padding-left: 36px;
  position: relative;
  display: block;
}
.checkbox-outer .checkbox {
  position: absolute;
  top: -6px;
  left: 0;
}
.checkbox-outer .checkbox input {
  display: none;
}
.checkbox-outer .checkbox input + span {
  background: var(--white);
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
  border: 2px solid var(--purple);
  transition: all 0.3s ease;
}
.checkbox-outer .checkbox input + span:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/check.svg) no-repeat center / 16px auto;
  opacity: 0;
  transition: all 0.3s ease;
}
.checkbox-outer .checkbox input:checked + span:after {
  opacity: 1;
}
.form {
  width: 410px;
  margin: 32px auto 0;
  text-align: left;
  font-size: 12px;
  line-height: 22px;
}
.form-elem__error {
  display: none;
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
  margin: 8px 0 0 27px;
  color: var(--error);
}
.form-elem input {
  background: var(--white);
  width: 100%;
  height: 64px;
  font-family: 'Raleway', sans-serif;
  border: 2px solid var(--purple);
  box-shadow: none;
  padding: 0 40px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: var(--black);
  transition: all 0.3s ease;
}
.form-elem input::placeholder {
  color: var(--black-30);
}
.form__row {
  margin-bottom: 24px;
}
.form__row--mb {
  margin-bottom: 32px;
}
.form__row--mb-xl {
  margin-bottom: 56px;
}
.form__row--error .form-elem__error {
  display: block;
}
.form__row--error input {
  border-color: var(--error);
}
.form__row--error .checkbox input + span {
  border-color: var(--error);
}
.tip {
  position: relative;
  cursor: pointer;
  vertical-align: text-bottom;
}
.tip__float {
  position: absolute;
  display: none;
  z-index: 5;
  background: var(--white);
  border: 2px solid var(--purple);
  border-radius: 16px;
  padding: 16px;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
  top: 100%;
  left: 32px;
  width: 432px;
  text-align: left;
  font-style: normal;
}
.tip:hover .tip__float {
  display: block;
}
.tabs {
  display: flex;
  margin-top: 24px;
  gap: 16px;
  margin-bottom: 32px;
}
.tab {
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 40px;
  padding: 0 25px;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}
.tab:hover,
.tab.active {
  background: var(--white);
  color: var(--purple);
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent url(../img/down.svg) no-repeat right center / 24px auto;
  border: none;
  font-family: 'Raleway', sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  padding: 6px 0;
  font-feature-settings: 'pnum' on, 'lnum' on;
  box-shadow: none;
  border-radius: 0;
  color: var(--white);
  width: 730px;
  border-bottom: 2px solid var(--white);
}
option {
  color: var(--purple);
}
.scroll-block {
  height: 600px;
  position: relative;
  border-bottom: 2px solid var(--white-20);
}
.ps__rail-y {
  width: 8px;
  opacity: 1;
}
.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 1;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  background: transparent!important;
}
.ps__thumb-y {
  width: 8px;
  background: var(--white);
  right: 0;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  width: 8px;
  background: var(--white);
  right: 0;
}
.program-elem {
  display: flex;
  gap: 40px;
  color: var(--white);
  margin-bottom: 48px;
}
.program-elem:last-child {
  margin-bottom: 0;
}
.program-elem > div:nth-child(1) {
  width: 130px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.program-elem > div:nth-child(2) {
  width: 540px;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.program-elem > div:nth-child(3) {
  flex: 1;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.program-elem__status {
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.program-elem__status a {
  color: var(--link);
}
.program-elem__more {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
  margin-top: 16px;
}
.program-elem__more a {
  color: var(--white-50);
}
.program-elem__more a:hover {
  color: var(--blue);
  text-decoration: none;
}
.program-elem--head {
  opacity: 0.8;
  margin-top: 56px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.report {
  width: 750px;
  padding: 0;
}
.report__head {
  border-bottom: 1px solid var(--black-20);
  padding: 40px 40px 26px 40px;
  display: flex;
  gap: 24px;
}
.report__icon {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.report__icon .icon {
  width: 24px;
  height: 24px;
}
.report__row {
  display: flex;
  border-bottom: 1px solid var(--black-20);
}
.report__section {
  width: 284px;
  border-right: 1px solid var(--black-20);
  padding: 16px 24px 24px 40px;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.report__title {
  color: var(--purple);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
  margin-bottom: 8px;
}
.report__moderator {
  flex: 1;
  padding: 16px 40px 24px 24px;
}
.report__content {
  padding: 32px 40px 24px;
}
.report__theme {
  font-weight: bold;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.report__description {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}
.report__speaker {
  padding: 0 40px 40px;
}
.report__speaker .report__title {
  color: var(--black);
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 16px;
}
.human {
  display: flex;
  gap: 16px;
  width: 100%;
}
.human__pic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: no-repeat center / cover;
}
.human__content {
  flex: 1;
}
.human__name {
  font-weight: 800;
  font-size: 18px;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.human__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: unset;
}
.human--big .human__pic {
  width: 72px;
  height: 72px;
}
.human--big .human__name {
  margin-bottom: 8px;
}
.accordion {
  margin-top: 70px;
  border-top: 2px solid var(--link-bad);
}
.accordion-elem {
  border-bottom: 2px solid var(--link-bad);
}
.accordion-elem__head {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0;
  gap: 32px;
}
.accordion-elem__head:hover .accordion-elem__toggle .icon svg path {
  fill: var(--purple);
}
.accordion-elem__title {
  font-weight: 500;
  font-size: 45px;
  line-height: 62px;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.accordion-elem__toggle {
  line-height: 0;
}
.accordion-elem__toggle .icon {
  width: 40px;
  height: 40px;
}
.accordion-elem__toggle .icon svg {
  transition: all 0.3s ease;
}
.accordion-elem__toggle .icon svg path {
  transition: all 0.3s ease;
}
.accordion-elem__content {
  padding-bottom: 48px;
  padding-top: 12px;
  display: none;
  width: 630px;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.02em;
  font-feature-settings: 'pnum' on, 'lnum' on;
}
.accordion-elem.open .accordion-elem__toggle svg {
  transform: rotate(45deg);
}
body {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.p1 {
  font-size: 1.52777778vw;
  line-height: 2.08333333vw;
}
.p2 {
  font-size: 1.66666667vw;
  line-height: 2.22222222vw;
}
.p3 {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.min {
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
}
.b1 {
  font-size: 1.38888889vw;
  line-height: 1.59722222vw;
}
h1,
.h1 {
  font-size: 6.11111111vw;
  line-height: 6.11111111vw;
  margin-bottom: 3.88888889vw;
}
h2,
.h2 {
  font-size: 3.125vw;
  line-height: 4.30555556vw;
}
h3,
.h3 {
  font-size: 2.08333333vw;
  line-height: 2.77777778vw;
}
.shadow {
  box-shadow: 0 0.27777778vw 3.54166667vw #4B3CFF;
}
.content {
  padding: 0 5.55555556vw;
}
.logo {
  width: 13.81944444vw;
  height: 2.56944444vw;
}
.logo--2 {
  width: 9.58333333vw;
  height: 3.05555556vw;
}
header .content {
  height: 6.94444444vw;
}
header.full .header__btn {
  width: 18.40277778vw;
  margin-left: 3.88888889vw;
}
.header__left {
  gap: 4.16666667vw;
}
.header__left .logo--2:after {
  left: -2.08333333vw;
  height: 3.33333333vw;
}
.menu {
  gap: 2.77777778vw;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.section {
  padding: 11.11111111vw 0;
}
.section--brain {
  padding: 27.08333333vw 0 7.63888889vw;
}
.section--brain .phrase {
  top: 9.72222222vw;
  left: 5.55555556vw;
}
.section--brain .text {
  font-size: 1.52777778vw;
  line-height: 2.08333333vw;
  width: 42.36111111vw;
}
.section--brain .time {
  top: 12.5vw;
  right: 5.55555556vw;
}
.section--about {
  height: 40.97222222vw;
}
.section--about .content {
  width: 55.55555556vw;
  padding: 0;
}
.section--about .text {
  font-size: 1.38888889vw;
  line-height: 2.22222222vw;
}
.section--what {
  padding: 8.33333333vw 0 6.11111111vw;
}
.section--what .ul {
  column-gap: 3.47222222vw;
}
.section--program {
  padding: 5.55555556vw 0 2.77777778vw;
}
.section--program .blocks {
  top: 15.97222222vw;
  right: 4.65277778vw;
}
.section--ambassadors {
  padding: 5.55555556vw 0 8.33333333vw;
}
.section--points:after {
  height: 36.11111111vw;
}
.section--points .text {
  width: 45.13888889vw;
  font-size: 1.38888889vw;
  line-height: 2.22222222vw;
}
.section--points .text h3 {
  margin-top: 5.55555556vw;
}
.section--points .blocks {
  top: 76.38888889vw;
  right: 4.58333333vw;
}
.section--points .block {
  border-radius: 1.66666667vw;
  right: 5.55555556vw;
  top: 30.55555556vw;
  border: 0.13888889vw solid var(--purple);
  padding: 1.66666667vw 2.22222222vw;
  font-size: 1.11111111vw;
  line-height: 1.94444444vw;
}
.section--points .block__title {
  font-size: 1.52777778vw;
  line-height: 2.77777778vw;
  margin-bottom: 1.11111111vw;
}
.section--partners {
  padding: 0 0 4.86111111vw;
}
.section--phil {
  height: 27.77777778vw;
  padding: 0;
}
.section--register {
  padding: 8.33333333vw 0;
}
.section--register .text {
  width: 53.47222222vw;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.section--register .btns {
  margin-top: 2.22222222vw;
}
.section--contacts {
  padding: 8.33333333vw 0;
}
.section--contacts .text {
  font-size: 3.125vw;
  line-height: 4.30555556vw;
  width: 45.27777778vw;
}
.btn {
  border-radius: 6.94444444vw;
  height: 5.55555556vw;
  padding: 0 4.58333333vw;
  font-size: 1.38888889vw;
  line-height: 1.59722222vw;
}
.btn--sm {
  height: 3.61111111vw;
  padding: 0 2.77777778vw;
  letter-spacing: 0;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.title {
  font-size: 6.11111111vw;
  line-height: 6.11111111vw;
  margin-bottom: 3.88888889vw;
}
.title--small {
  font-size: 1.52777778vw;
  line-height: 2.08333333vw;
  margin-bottom: 2.77777778vw;
}
.phrase {
  font-size: 13.47222222vw;
  line-height: 14.30555556vw;
}
.phrase > div:last-child {
  margin-top: -1.38888889vw;
}
.time {
  font-size: 2.22222222vw;
  line-height: 2.70833333vw;
  border: 0.20833333vw solid var(--purple);
  padding: 0 4.86111111vw;
  height: 8.75vw;
  border-radius: 6.04166667vw;
}
.time small {
  margin-top: -0.69444444vw;
}
.arrow {
  width: 1.66666667vw;
  height: 0.83333333vw;
  bottom: 4.16666667vw;
}
.btns {
  margin-top: 2.77777778vw;
}
.numbers {
  margin-top: 5.55555556vw;
  gap: 5.55555556vw;
}
.number {
  width: 13.88888889vw;
}
.number--big {
  width: 18.05555556vw;
}
.number__num {
  font-size: 2.77777778vw;
  line-height: 3.26388889vw;
  margin-bottom: 0.55555556vw;
}
.number__title {
  font-size: 1.66666667vw;
  line-height: 1.94444444vw;
}
ul {
  margin: 0 0 0 1.38888889vw;
}
ul + p {
  margin-top: 1.66666667vw;
}
p + p {
  margin-top: 1.66666667vw;
}
.ul li {
  margin-bottom: 2.22222222vw;
  padding-left: 2.77777778vw;
  font-size: 2.08333333vw;
  line-height: 2.77777778vw;
}
.ul li:before {
  top: 0.34722222vw;
  width: 1.18055556vw;
  height: 1.66666667vw;
}
.top {
  margin-bottom: 3.88888889vw;
}
.top--end {
  margin-bottom: 2.77777778vw;
}
.top .text {
  width: 43.54166667vw;
  font-size: 1.38888889vw;
  line-height: 2.22222222vw;
}
.slider-navigation {
  gap: 2.08333333vw;
}
.slider-btn {
  width: 2.77777778vw;
  height: 2.77777778vw;
}
.member {
  width: 20.83333333vw;
}
.member__pic {
  height: 24.30555556vw;
  margin-bottom: 1.66666667vw;
}
.member__name {
  font-size: 1.66666667vw;
  line-height: 2.22222222vw;
  margin-bottom: 0.83333333vw;
}
.member__text {
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
}
.tags {
  gap: 1.38888889vw;
}
.tag {
  padding: 0.83333333vw 2.77777778vw;
  gap: 1.11111111vw;
  border: 0.20833333vw solid var(--purple);
  border-radius: 3.47222222vw;
}
.tag__text {
  font-size: 2.08333333vw;
  line-height: 2.77777778vw;
}
.tag__tip {
  width: 2.22222222vw;
  height: 2.22222222vw;
}
.tag__float {
  border: 0.20833333vw solid var(--purple);
  padding: 2.08333333vw 3.47222222vw;
  border-radius: 1.80555556vw;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
  width: 34.72222222vw;
  top: 2.77777778vw;
  right: 0.69444444vw;
}
.icon {
  width: 2.22222222vw;
  height: 2.22222222vw;
}
.icon--small {
  width: 1.11111111vw;
  height: 1.11111111vw;
}
.link {
  gap: 1.11111111vw;
  font-size: 1.38888889vw;
  line-height: 1.59722222vw;
}
.blocks {
  width: 8.95833333vw;
  height: 7.36111111vw;
}
.blocks--2 {
  width: 18.26388889vw;
  height: 20.41666667vw;
}
.contact {
  gap: 1.11111111vw;
  border: 0.20833333vw solid var(--white);
  height: 5.41666667vw;
  padding: 0 2.22222222vw;
  margin: 1.66666667vw 0;
  border-radius: 3.47222222vw;
}
.contact__text {
  font-size: 3.125vw;
  line-height: 4.30555556vw;
}
.contact__icon img {
  width: 2.22222222vw;
}
.funds {
  gap: 1.66666667vw 0;
}
.fund {
  width: 28.47222222vw;
  padding: 1.66666667vw;
  height: 25.34722222vw;
}
.fund__type {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
  margin-bottom: 2.22222222vw;
}
.fund__logo img {
  width: 17.36111111vw;
  height: 10.41666667vw;
}
.fund__btn {
  margin-top: 2.22222222vw;
}
.fund__text {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.fund.active {
  box-shadow: 0 0.27777778vw 3.54166667vw #4B3CFF;
}
.partner {
  width: 20.83333333vw;
  padding: 2.77777778vw 2.08333333vw;
  height: 27.08333333vw;
}
.partner__img {
  margin-bottom: 2.08333333vw;
}
.partner__img img {
  width: 14.58333333vw;
  height: 9.02777778vw;
}
.partner__text {
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
}
.partner__link {
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
}
.partner__url {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
  margin-bottom: 1.66666667vw;
}
.partner--popup {
  width: auto;
  height: auto;
  padding: 0;
}
.partner--popup .partner__text {
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
}
.fancybox__backdrop {
  backdrop-filter: blur(1.38888889vw);
  -webkit-backdrop-filter: blur(1.38888889vw);
}
.fancybox__content {
  width: 38.19444444vw;
  padding: 2.77777778vw;
  border: 0.20833333vw solid var(--purple);
  border-radius: 1.80555556vw;
}
.fancybox__content .title {
  font-size: 4.16666667vw;
  line-height: 4.16666667vw;
}
.fancybox__content > .carousel__button.is-close {
  top: 2.43055556vw;
  width: 2.22222222vw;
  height: 2.22222222vw;
  right: 2.77777778vw;
}
.org {
  gap: 2.77777778vw;
  margin-bottom: 2.77777778vw;
}
.org__pic {
  width: 26.38888889vw;
}
.org__content {
  width: 31.25vw;
}
.org__text {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.org__link {
  font-size: 1.38888889vw;
  line-height: 1.59722222vw;
  margin-top: 0.83333333vw;
}
.obstetrics {
  gap: 1.38888889vw;
}
.obstetrics > div:first-child {
  width: 5.41666667vw;
  height: 5.41666667vw;
}
.obstetrics > div:last-child {
  font-size: 1.11111111vw;
  line-height: 1.52777778vw;
}
.checkbox-outer {
  padding-left: 2.5vw;
}
.checkbox-outer .checkbox {
  top: -0.41666667vw;
}
.checkbox-outer .checkbox input + span {
  width: 1.66666667vw;
  height: 1.66666667vw;
  border: 0.13888889vw solid var(--purple);
}
.checkbox-outer .checkbox input + span:after {
  background-size: 1.11111111vw auto;
}
.form {
  width: 28.47222222vw;
  margin: 2.22222222vw auto 0;
  font-size: 0.83333333vw;
  line-height: 1.52777778vw;
}
.form-elem__error {
  font-size: 1.11111111vw;
  line-height: 1.80555556vw;
  margin: 0.55555556vw 0 0 1.875vw;
}
.form-elem input {
  height: 4.44444444vw;
  border: 0.13888889vw solid var(--purple);
  padding: 0 2.77777778vw;
  border-radius: 3.47222222vw;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.form__row {
  margin-bottom: 1.66666667vw;
}
.form__row--mb {
  margin-bottom: 2.22222222vw;
}
.form__row--mb-xl {
  margin-bottom: 3.88888889vw;
}
.tip__float {
  border: 0.13888889vw solid var(--purple);
  border-radius: 1.11111111vw;
  padding: 1.11111111vw;
  font-size: 0.97222222vw;
  line-height: 1.52777778vw;
  left: 2.22222222vw;
  width: 30vw;
}
.tabs {
  margin-top: 1.66666667vw;
  gap: 1.11111111vw;
  margin-bottom: 2.22222222vw;
}
.tab {
  height: 2.77777778vw;
  border: 0.13888889vw solid var(--white);
  border-radius: 2.77777778vw;
  padding: 0 1.73611111vw;
  font-size: 1.38888889vw;
  line-height: 1.59722222vw;
}
select {
  background-size: 1.66666667vw auto;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
  padding: 0.41666667vw 0;
  width: 50.69444444vw;
  border-bottom: 0.13888889vw solid var(--white);
}
.scroll-block {
  height: 41.66666667vw;
  border-bottom: 0.13888889vw solid var(--white-20);
}
.ps__rail-y {
  width: 0.55555556vw;
}
.ps__thumb-y {
  width: 0.55555556vw;
}
.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  width: 0.55555556vw;
}
.program-elem {
  gap: 2.77777778vw;
  margin-bottom: 3.33333333vw;
}
.program-elem:last-child {
  margin-bottom: 0;
}
.program-elem > div:nth-child(1) {
  width: 9.02777778vw;
  font-size: 1.38888889vw;
  line-height: 2.22222222vw;
}
.program-elem > div:nth-child(2) {
  width: 37.5vw;
  font-size: 1.66666667vw;
  line-height: 2.22222222vw;
}
.program-elem > div:nth-child(3) {
  font-size: 1.38888889vw;
  line-height: 2.22222222vw;
}
.program-elem__status {
  font-size: 1.11111111vw;
  line-height: 1.66666667vw;
  margin-top: 0.55555556vw;
}
.program-elem__more {
  font-size: 1.38888889vw;
  line-height: 1.59722222vw;
  margin-top: 1.11111111vw;
}
.program-elem--head {
  margin-top: 3.88888889vw;
  margin-bottom: 1.66666667vw;
  font-size: 1.38888889vw;
  line-height: 2.22222222vw;
}
.report {
  width: 52.08333333vw;
  padding: 0;
}
.report__head {
  padding: 2.77777778vw 2.77777778vw 1.80555556vw 2.77777778vw;
  gap: 1.66666667vw;
}
.report__icon {
  gap: 0.55555556vw;
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.report__icon .icon {
  width: 1.66666667vw;
  height: 1.66666667vw;
}
.report__section {
  width: 19.72222222vw;
  padding: 1.11111111vw 1.66666667vw 1.66666667vw 2.77777778vw;
  font-size: 0.97222222vw;
  line-height: 1.66666667vw;
}
.report__title {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
  margin-bottom: 0.55555556vw;
}
.report__moderator {
  padding: 1.11111111vw 2.77777778vw 1.66666667vw 1.66666667vw;
}
.report__content {
  padding: 2.22222222vw 2.77777778vw 1.66666667vw;
}
.report__theme {
  font-size: 1.52777778vw;
  line-height: 2.08333333vw;
  margin-bottom: 1.66666667vw;
}
.report__description {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
}
.report__speaker {
  padding: 0 2.77777778vw 2.77777778vw;
}
.report__speaker .report__title {
  font-size: 1.52777778vw;
  line-height: 2.08333333vw;
  margin-bottom: 1.11111111vw;
}
.human {
  gap: 1.11111111vw;
}
.human__pic {
  width: 3.33333333vw;
  height: 3.33333333vw;
}
.human__name {
  font-size: 1.25vw;
  line-height: 1.94444444vw;
  margin-bottom: 0.27777778vw;
}
.human__text {
  font-size: 0.97222222vw;
  line-height: 1.66666667vw;
}
.human--big .human__pic {
  width: 5vw;
  height: 5vw;
}
.human--big .human__name {
  margin-bottom: 0.55555556vw;
}
.accordion {
  margin-top: 4.86111111vw;
  border-top: 0.13888889vw solid var(--link-bad);
}
.accordion-elem {
  border-bottom: 0.13888889vw solid var(--link-bad);
}
.accordion-elem__head {
  padding: 3.33333333vw 0;
  gap: 2.22222222vw;
}
.accordion-elem__title {
  font-size: 3.125vw;
  line-height: 4.30555556vw;
}
.accordion-elem__toggle .icon {
  width: 2.77777778vw;
  height: 2.77777778vw;
}
.accordion-elem__content {
  padding-bottom: 3.33333333vw;
  padding-top: 0.83333333vw;
  width: 43.75vw;
  font-size: 1.38888889vw;
  line-height: 2.22222222vw;
}
@media only screen and (max-width: 991px) {
  /*lg*/
  .tp1 {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    font-feature-settings: 'pnum' on, 'lnum' on;
  }
  body {
    font-size: 14px;
    line-height: 21px;
  }
  body.open .menu {
    transform: translateY(0);
  }
  h1,
  .h1 {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 24px;
  }
  h2,
  .h2 {
    font-size: 14px;
    line-height: 20px;
  }
  h3,
  .h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .content {
    padding: 0 16px;
  }
  .logo {
    width: 144px;
    height: 27px;
  }
  .logo--2 {
    width: 185px;
    height: 56px;
  }
  header .content {
    height: 56px;
  }
  .header__left .logo--2 {
    display: none;
  }
  .header__btn {
    display: none;
  }
  .menu {
    display: block;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/pic/menu-bg.jpg) no-repeat center / cover;
    transform: translateY(-100%);
    padding: 0 24px 24px;
    text-align: center;
    transition: all 0.3s ease;
  }
  .menu-item {
    font-size: 22px;
    line-height: 28px;
  }
  .menu__header {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu__links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    margin-top: 50px;
  }
  .menu__btn {
    margin: 50px 0 55px;
  }
  .btn {
    border-radius: 100px;
    height: 56px;
    padding: 0 24px;
    width: 100%;
    font-size: 16px;
    line-height: 19px;
  }
  .hamburger {
    width: 24px;
    height: 24px;
    background: url(../img/menu.svg) no-repeat center / contain;
  }
  .hamburger--close {
    background-image: url(../img/close.svg);
  }
  .title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 24px;
    font-size: 8.125vw;
    line-height: 9.375vw;
    margin-bottom: 7.5vw;
  }
  .title--small {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
  }
  .section {
    padding: 80px 0;
    position: relative;
  }
  .section--brain {
    background-image: url(../img/pic/01-m.jpg);
    padding-top: 200px;
  }
  .section--brain .phrase {
    top: 65px;
    left: 10px;
  }
  .section--brain .text {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    font-size: 4.375vw;
    line-height: 6.25vw;
    width: 100%;
  }
  .section--brain .time {
    top: 135px;
    right: auto;
    left: 16px;
  }
  .section--about {
    background-image: url(../img/pic/02-m.jpg);
    background-position: bottom right;
    height: auto;
    padding: 56px 0 120px;
  }
  .section--about .content {
    width: 100%;
    padding: 0 24px;
  }
  .section--about .text {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    font-feature-settings: 'pnum' on, 'lnum' on;
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .section--what {
    background-image: url(../img/pic/03-m.jpg);
    padding: 40px 0 16px;
  }
  .section--what .ul {
    column-count: 1;
  }
  .section--program {
    background-image: url(../img/pic/04-m.jpg);
    padding: 40px 0 30px;
  }
  .section--program .blocks {
    top: 55px;
    right: 16px;
  }
  .section--program .top {
    display: block;
  }
  .section--program .top .title {
    margin-bottom: 24px;
  }
  .section--points:after {
    background-image: url(../img/pic/points-m.png);
    height: 144px;
  }
  .section--points .text {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
  }
  .section--points .text h3 {
    margin-top: 40px;
  }
  .section--points .blocks {
    display: none;
  }
  .section--points .block {
    margin-top: 24px;
    background: transparent;
    border-radius: 16px;
    position: relative;
    right: auto;
    top: auto;
    border-width: 1px;
    padding: 24px 16px;
    font-size: 14px;
    line-height: 20px;
  }
  .section--points .block__title {
    font-size: 21px;
    line-height: 28px;
    margin-bottom: 12px;
  }
  .section--ambassadors {
    background-image: url(../img/pic/05-m.jpg);
    padding: 40px 0 50px;
  }
  .section--partners {
    padding: 0 0 32px;
  }
  .section--phil {
    background-image: url(../img/pic/06-m.jpg);
    height: auto;
    padding: 40px 0;
  }
  .section--register {
    background-image: url(../img/pic/07-m.jpg);
    padding: 60px 0;
  }
  .section--register .text {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
  .section--register .btns {
    margin-top: 24px;
  }
  .section--register.open {
    background-image: url(../img/pic/bg-form-m.jpg);
  }
  .section--contacts {
    background-image: url(../img/pic/08-m.jpg);
    padding: 40px 0 180px;
  }
  .section--contacts .content {
    display: block;
  }
  .section--contacts .text {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 60px;
    width: 100%;
  }
  .phrase {
    font-size: 54px;
    line-height: 64px;
  }
  .phrase > div:last-child {
    margin-top: -5px;
    margin-left: -40px;
  }
  .time {
    font-size: 12px;
    line-height: 14px;
    border-width: 1px;
    padding: 0 16px;
    height: 44px;
    border-radius: 87px;
  }
  .time small {
    font-size: 80%;
    margin-top: -10px;
  }
  .arrow {
    width: 24px;
    height: 12px;
    bottom: 30px;
  }
  .btns {
    margin-top: 30px;
  }
  .numbers {
    margin-top: 40px;
    gap: 16px;
  }
  .number {
    width: 80px;
  }
  .number--big {
    width: 90px;
  }
  .number__num {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
  }
  .number__title {
    font-size: 10px;
    line-height: 12px;
  }
  ul {
    padding: 0;
    margin: 0 0 0 20px;
  }
  ul + p {
    margin-top: 16px;
  }
  p {
    margin: 0;
    padding: 0;
  }
  p + p {
    margin-top: 16px;
  }
  .ul li {
    margin-bottom: 24px;
    padding-left: 18px;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
  }
  .ul li:before {
    top: 2px;
    width: 10px;
    height: 18px;
  }
  .top {
    margin-bottom: 24px;
  }
  .top .title {
    margin-bottom: 0;
  }
  .top--end {
    margin-bottom: 24px;
    display: block;
  }
  .top--end .text {
    margin-bottom: 20px;
  }
  .top .text {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
  }
  .slider {
    width: 100vw;
    margin-left: -16px;
  }
  .slider .swiper-slide {
    width: auto;
    padding-left: 16px;
  }
  .slider .swiper-slide:last-child {
    padding-right: 16px;
  }
  .slider-navigation {
    gap: 8px;
  }
  .slider-btn {
    width: 24px;
    height: 24px;
  }
  .member {
    width: 230px;
  }
  .member__pic {
    height: 260px;
    margin-bottom: 16px;
  }
  .member__name {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .member__text {
    font-size: 14px;
    line-height: 20px;
  }
  .tags {
    gap: 8px;
  }
  .tag {
    padding: 12px 24px;
    gap: 8px;
    border-width: 2px;
    border-radius: 50px;
  }
  .tag__text {
    font-weight: 600;
    font-size: 14px;
    line-height: 19px;
  }
  .tag__tip {
    width: 24px;
    height: 24px;
  }
  .tag__popup {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    font-feature-settings: 'pnum' on, 'lnum' on;
  }
  .tag__head {
    margin-bottom: 24px;
  }
  .icon {
    width: 24px;
    height: 24px;
  }
  .icon--small {
    width: 24px;
    height: 24px;
  }
  .link {
    gap: 8px;
    font-size: 12px;
    line-height: 14px;
  }
  .fancybox__slide {
    padding: 0;
  }
  .fancybox__content {
    width: 100%;
    padding: 20px;
    min-height: 100%;
    overflow: auto;
    border: 0;
    border-radius: 0;
  }
  .fancybox__content .title {
    font-size: 26px;
    line-height: 30px;
  }
  .fancybox__content > .carousel__button.is-close {
    top: 24px;
    width: 24px;
    height: 24px;
    right: 20px;
  }
  .popup--bg {
    background: var(--white) url(../img/pic/popup-bg-m.jpg) no-repeat right bottom / cover;
  }
  .funds {
    gap: 8px;
  }
  .fund {
    width: 100%;
    padding: 12px 24px;
    height: 200px;
  }
  .fund__type {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .fund__logo img {
    width: 180px;
    height: 100px;
  }
  .fund__btn {
    margin-top: 8px;
  }
  .fund__popup {
    font-weight: 500;
    margin-top: 30px;
    font-size: 14px;
    line-height: 20px;
  }
  .fund__popup .fund__logo {
    text-align: center;
    margin-bottom: 24px;
  }
  .partner {
    width: 230px;
    padding: 40px 12px 24px;
    height: 270px;
  }
  .partner__img {
    margin-bottom: 16px;
  }
  .partner__img img {
    width: 150px;
    height: 80px;
    object-fit: contain;
  }
  .partner__text {
    font-size: 14px;
    line-height: 20px;
  }
  .partner__link {
    font-size: 14px;
    line-height: 20px;
  }
  .partner__url {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 24px;
  }
  .partner--popup {
    padding: 24px 0;
    width: auto;
    height: auto;
  }
  .partner--popup .partner__text {
    font-size: 14px;
    line-height: 20px;
  }
  .org {
    display: block;
    text-align: center;
    margin-bottom: 32px;
  }
  .org__pic {
    margin: 0 auto;
    width: 100%;
    line-height: 0;
  }
  .org__pic > img {
    width: 235px;
  }
  .org__content {
    width: 100%;
  }
  .org__text {
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
  }
  .org__link {
    font-size: 14px;
    line-height: 20px;
    margin-top: 12px;
  }
  .obstetrics {
    gap: 12px;
    margin: 0 auto;
    line-height: normal;
  }
  .obstetrics > div:first-child {
    width: 48px;
    height: 48px;
  }
  .obstetrics > div:last-child {
    font-size: 12px;
    line-height: 18px;
  }
  .checkbox-outer {
    padding-left: 36px;
  }
  .checkbox-outer .checkbox {
    top: 0;
  }
  .checkbox-outer .checkbox input + span {
    width: 24px;
    height: 24px;
    border: 2px solid var(--purple);
  }
  .form {
    width: 100%;
    margin: 24px auto 0;
    font-size: 12px;
    line-height: 24px;
  }
  .form-elem__error {
    margin: 8px 0 0 24px;
    font-size: 14px;
    line-height: 20px;
  }
  .form-elem input {
    height: 56px;
    border: 2px solid var(--purple);
    padding: 0 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
  }
  .form__row {
    margin-bottom: 12px;
  }
  .form__row--mb {
    margin-bottom: 32px;
  }
  .form__row--mb-xl {
    margin-bottom: 56px;
  }
  .tip {
    vertical-align: middle;
  }
  .tip:hover .tip__float {
    display: block;
  }
  .contact {
    border-width: 1px;
    height: 36px;
    padding: 0 16px;
    margin: 8px 0;
    gap: 16px;
    border-radius: 50px;
  }
  .contact__icon img {
    width: 16px;
  }
  .contact__text {
    font-size: 22px;
    line-height: 28px;
  }
  .blocks {
    width: 72px;
    height: 60px;
  }
  .tabs {
    margin-top: 16px;
    gap: 8px;
    margin-bottom: 24px;
  }
  .tab {
    height: 28px;
    border-width: 1px;
    border-radius: 40px;
    padding: 0 16px;
    font-size: 14px;
    line-height: 16px;
  }
  select {
    background-size: 16px auto;
    font-size: 14px;
    line-height: 20px;
    padding: 6px 0;
    width: 100%;
    border-bottom-width: 1px;
    margin-bottom: 24px;
  }
  .scroll-block {
    height: 450px;
    border-bottom-width: 1px;
  }
  .ps__rail-y {
    width: 4px;
  }
  .ps__thumb-y {
    width: 4px;
  }
  .ps__rail-y:hover > .ps__thumb-y,
  .ps__rail-y:focus > .ps__thumb-y,
  .ps__rail-y.ps--clicking .ps__thumb-y {
    width: 4px;
  }
  .program-elem {
    display: block;
    margin-bottom: 24px;
  }
  .program-elem:last-child {
    margin-bottom: 0;
  }
  .program-elem > div:nth-child(1) {
    width: 100%;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 18px;
  }
  .program-elem > div:nth-child(2) {
    font-size: 16px;
    line-height: 22px;
    width: 100%;
    margin-bottom: 16px;
  }
  .program-elem > div:nth-child(3) {
    font-size: 12px;
    line-height: 20px;
  }
  .program-elem__status {
    font-size: 12px;
    line-height: 16px;
    margin-top: 4px;
  }
  .program-elem__more {
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
  }
  .program-elem--head {
    display: none;
  }
  .report {
    width: 100%;
    padding: 0;
  }
  .report__head {
    padding: 24px 20px 20px 20px;
    gap: 16px;
  }
  .report__icon {
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
  }
  .report__icon .icon {
    width: 16px;
    height: 16px;
  }
  .report__row {
    display: block;
  }
  .report__section {
    width: 100%;
    border-bottom: 1px solid var(--black-20);
    border-right: none;
    padding: 12px 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .report__title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .report__moderator {
    padding: 20px 20px;
  }
  .report__content {
    padding: 32px 20px 24px;
  }
  .report__theme {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
  }
  .report__description {
    font-size: 14px;
    line-height: 20px;
  }
  .report__speaker {
    padding: 0 20px 40px;
  }
  .report__speaker .report__title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
  }
  .human {
    gap: 8px;
  }
  .human__pic {
    width: 32px;
    height: 32px;
  }
  .human__name {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 8px;
  }
  .human__text {
    font-size: 12px;
    line-height: 18px;
  }
  .human--big .human__pic {
    width: 48px;
    height: 48px;
  }
  .human--big .human__name {
    margin-bottom: 8px;
  }
  .accordion {
    margin-top: 20px;
    border-top: 2px solid var(--link-bad);
  }
  .accordion-elem {
    border-bottom: 2px solid var(--link-bad);
  }
  .accordion-elem__head {
    padding: 24px 0;
    gap: 16px;
  }
  .accordion-elem__title {
    font-size: 22px;
    line-height: 28px;
  }
  .accordion-elem__toggle .icon {
    width: 24px;
    height: 24px;
  }
  .accordion-elem__content {
    padding-bottom: 24px;
    padding-top: 0;
    width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
  .tp1 {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  body {
    font-size: 4.375vw;
    line-height: 6.5625vw;
  }
  h1,
  .h1 {
    font-size: 8.125vw;
    line-height: 9.375vw;
    margin-bottom: 7.5vw;
  }
  h2,
  .h2 {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  h3,
  .h3 {
    font-size: 5vw;
    line-height: 6.875vw;
  }
  .content {
    padding: 0 5vw;
  }
  .logo {
    width: 45vw;
    height: 8.4375vw;
  }
  .logo--2 {
    width: 57.8125vw;
    height: 17.5vw;
  }
  header .content {
    height: 17.5vw;
  }
  .menu {
    padding: 0 7.5vw 7.5vw;
  }
  .menu-item {
    font-size: 6.875vw;
    line-height: 8.75vw;
  }
  .menu__header {
    height: 17.5vw;
  }
  .menu__links {
    gap: 7.5vw;
    margin-top: 15.625vw;
  }
  .menu__btn {
    margin: 15.625vw 0 17.1875vw;
  }
  .btn {
    border-radius: 31.25vw;
    height: 17.5vw;
    padding: 0 7.5vw;
    font-size: 5vw;
    line-height: 5.9375vw;
  }
  .hamburger {
    width: 7.5vw;
    height: 7.5vw;
  }
  .title {
    font-size: 8.125vw;
    line-height: 9.375vw;
    margin-bottom: 7.5vw;
  }
  .title--small {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-bottom: 7.5vw;
  }
  .section {
    padding: 25vw 0;
  }
  .section--brain {
    padding-top: 62.5vw;
  }
  .section--brain .phrase {
    top: 20.3125vw;
    left: 3.125vw;
  }
  .section--brain .text {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .section--brain .time {
    top: 42.1875vw;
    left: 5vw;
  }
  .section--about {
    padding: 17.5vw 0 37.5vw;
  }
  .section--about .content {
    padding: 0 7.5vw;
  }
  .section--about .text {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .section--what {
    padding: 12.5vw 0 5vw;
  }
  .section--program {
    padding: 12.5vw 0 9.375vw;
  }
  .section--program .blocks {
    top: 17.1875vw;
    right: 5vw;
  }
  .section--program .top .title {
    margin-bottom: 7.5vw;
  }
  .section--points:after {
    height: 45vw;
  }
  .section--points .text {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .section--points .text h3 {
    margin-top: 12.5vw;
  }
  .section--points .block {
    margin-top: 7.5vw;
    border-radius: 5vw;
    padding: 7.5vw 5vw;
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .section--points .block__title {
    font-size: 6.5625vw;
    line-height: 8.75vw;
    margin-bottom: 3.75vw;
  }
  .section--ambassadors {
    padding: 12.5vw 0 15.625vw;
  }
  .section--partners {
    padding: 0 0 10vw;
  }
  .section--phil {
    padding: 12.5vw 0;
  }
  .section--register {
    padding: 18.75vw 0;
  }
  .section--register .text {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .section--register .btns {
    margin-top: 7.5vw;
  }
  .section--contacts {
    padding: 12.5vw 0 56.25vw;
  }
  .section--contacts .text {
    font-size: 6.875vw;
    line-height: 8.75vw;
    margin-bottom: 18.75vw;
  }
  .phrase {
    font-size: 16.875vw;
    line-height: 20vw;
  }
  .phrase > div:last-child {
    margin-top: -1.5625vw;
    margin-left: -12.5vw;
  }
  .time {
    font-size: 3.75vw;
    line-height: 4.375vw;
    border-width: 0.3125vw;
    padding: 0 5vw;
    height: 13.75vw;
    border-radius: 27.1875vw;
  }
  .time small {
    margin-top: -3.125vw;
  }
  .arrow {
    width: 7.5vw;
    height: 3.75vw;
    bottom: 9.375vw;
  }
  .btns {
    margin-top: 9.375vw;
  }
  .numbers {
    margin-top: 12.5vw;
    gap: 5vw;
  }
  .number {
    width: 25vw;
  }
  .number--big {
    width: 28.125vw;
  }
  .number__num {
    font-size: 5.625vw;
    line-height: 6.5625vw;
    margin-bottom: 3.125vw;
  }
  .number__title {
    font-size: 3.125vw;
    line-height: 3.75vw;
  }
  ul {
    padding: 0;
    margin: 0 0 0 6.25vw;
  }
  ul + p {
    margin-top: 5vw;
  }
  p {
    margin: 0;
    padding: 0;
  }
  p + p {
    margin-top: 5vw;
  }
  .ul li {
    margin-bottom: 7.5vw;
    padding-left: 5.625vw;
    font-size: 4.375vw;
    line-height: 6.875vw;
  }
  .ul li:before {
    top: 0.625vw;
    width: 3.125vw;
    height: 5.625vw;
  }
  .top {
    margin-bottom: 7.5vw;
  }
  .top .title {
    margin-bottom: 0;
  }
  .top--end {
    margin-bottom: 7.5vw;
  }
  .top--end .text {
    margin-bottom: 6.25vw;
  }
  .top .text {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .slider {
    margin-left: -5vw;
  }
  .slider .swiper-slide {
    padding-left: 5vw;
  }
  .slider .swiper-slide:last-child {
    padding-right: 5vw;
  }
  .slider-navigation {
    gap: 2.5vw;
  }
  .slider-btn {
    width: 7.5vw;
    height: 7.5vw;
  }
  .member {
    width: 71.875vw;
  }
  .member__pic {
    height: 81.25vw;
    margin-bottom: 5vw;
  }
  .member__name {
    font-size: 5.625vw;
    line-height: 8.125vw;
    margin-bottom: 2.5vw;
  }
  .member__text {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .tags {
    gap: 2.5vw;
  }
  .tag {
    padding: 3.75vw 7.5vw;
    gap: 2.5vw;
    border-width: 0.625vw;
    border-radius: 15.625vw;
  }
  .tag__text {
    font-size: 4.375vw;
    line-height: 5.9375vw;
  }
  .tag__tip {
    width: 7.5vw;
    height: 7.5vw;
  }
  .tag__popup {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .tag__head {
    margin-bottom: 7.5vw;
  }
  .icon {
    width: 7.5vw;
    height: 7.5vw;
  }
  .icon--small {
    width: 7.5vw;
    height: 7.5vw;
  }
  .link {
    gap: 2.5vw;
    font-size: 3.75vw;
    line-height: 4.375vw;
  }
  .fancybox__content {
    padding: 6.25vw;
  }
  .fancybox__content .title {
    font-size: 8.125vw;
    line-height: 9.375vw;
  }
  .fancybox__content > .carousel__button.is-close {
    top: 7.5vw;
    width: 7.5vw;
    height: 7.5vw;
    right: 6.25vw;
  }
  .funds {
    gap: 2.5vw;
  }
  .fund {
    padding: 3.75vw 7.5vw;
    height: 62.5vw;
  }
  .fund__type {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-bottom: 2.5vw;
  }
  .fund__logo img {
    width: 56.25vw;
    height: 31.25vw;
  }
  .fund__btn {
    margin-top: 2.5vw;
  }
  .fund__popup {
    margin-top: 9.375vw;
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .fund__popup .fund__logo {
    margin-bottom: 7.5vw;
  }
  .partner {
    width: 71.875vw;
    padding: 12.5vw 3.75vw 7.5vw;
    height: 84.375vw;
  }
  .partner__img {
    margin-bottom: 5vw;
  }
  .partner__img img {
    width: 46.875vw;
    height: 25vw;
  }
  .partner__text {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .partner__link {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .partner__url {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-bottom: 7.5vw;
  }
  .partner--popup {
    padding: 7.5vw 0;
    width: auto;
    height: auto;
  }
  .partner--popup .partner__text {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .org {
    margin-bottom: 10vw;
  }
  .org__pic > img {
    width: 73.4375vw;
  }
  .org__text {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-top: 5vw;
  }
  .org__link {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-top: 3.75vw;
  }
  .obstetrics {
    gap: 3.75vw;
  }
  .obstetrics > div:first-child {
    width: 15vw;
    height: 15vw;
  }
  .obstetrics > div:last-child {
    font-size: 3.75vw;
    line-height: 5.625vw;
  }
  .checkbox-outer {
    padding-left: 11.25vw;
  }
  .checkbox-outer .checkbox input + span {
    width: 7.5vw;
    height: 7.5vw;
    border: 0.625vw solid var(--purple);
  }
  .form {
    margin: 7.5vw auto 0;
    font-size: 3.75vw;
    line-height: 7.5vw;
  }
  .form-elem__error {
    margin: 2.5vw 0 0 7.5vw;
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .form-elem input {
    height: 17.5vw;
    border: 0.625vw solid var(--purple);
    padding: 0 7.5vw;
    border-radius: 15.625vw;
    font-weight: 500;
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .form__row {
    margin-bottom: 3.75vw;
  }
  .form__row--mb {
    margin-bottom: 10vw;
  }
  .form__row--mb-xl {
    margin-bottom: 17.5vw;
  }
  .contact {
    height: 11.25vw;
    padding: 0 5vw;
    margin: 2.5vw 0;
    gap: 5vw;
    border-radius: 15.625vw;
  }
  .contact__icon img {
    width: 5vw;
  }
  .contact__text {
    font-size: 6.875vw;
    line-height: 8.75vw;
  }
  .blocks {
    width: 22.5vw;
    height: 18.75vw;
  }
  .tabs {
    margin-top: 5vw;
    gap: 2.5vw;
    margin-bottom: 7.5vw;
  }
  .tab {
    height: 8.75vw;
    border-radius: 12.5vw;
    padding: 0 5vw;
    font-size: 4.375vw;
    line-height: 5vw;
  }
  select {
    background-size: 5vw auto;
    font-size: 4.375vw;
    line-height: 6.25vw;
    padding: 1.875vw 0;
    border-bottom-width: 0.3125vw;
    margin-bottom: 7.5vw;
  }
  .scroll-block {
    height: 140.625vw;
    border-bottom-width: 0.3125vw;
  }
  .ps__rail-y {
    width: 1.25vw;
  }
  .ps__thumb-y {
    width: 1.25vw;
  }
  .ps__rail-y:hover > .ps__thumb-y,
  .ps__rail-y:focus > .ps__thumb-y,
  .ps__rail-y.ps--clicking .ps__thumb-y {
    width: 1.25vw;
  }
  .program-elem {
    margin-bottom: 7.5vw;
  }
  .program-elem:last-child {
    margin-bottom: 0;
  }
  .program-elem > div:nth-child(1) {
    margin-bottom: 1.25vw;
    font-size: 3.75vw;
    line-height: 5.625vw;
  }
  .program-elem > div:nth-child(2) {
    font-size: 5vw;
    line-height: 6.875vw;
    margin-bottom: 5vw;
  }
  .program-elem > div:nth-child(3) {
    font-size: 3.75vw;
    line-height: 6.25vw;
  }
  .program-elem__status {
    font-size: 3.75vw;
    line-height: 5vw;
    margin-top: 1.25vw;
  }
  .program-elem__more {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-top: 5vw;
  }
  .report__head {
    padding: 7.5vw 6.25vw 6.25vw 6.25vw;
    gap: 5vw;
  }
  .report__icon {
    gap: 2.5vw;
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .report__icon .icon {
    width: 5vw;
    height: 5vw;
  }
  .report__section {
    padding: 3.75vw 6.25vw;
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .report__title {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-bottom: 2.5vw;
  }
  .report__moderator {
    padding: 6.25vw 6.25vw;
  }
  .report__content {
    padding: 10vw 6.25vw 7.5vw;
  }
  .report__theme {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-bottom: 5vw;
  }
  .report__description {
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
  .report__speaker {
    padding: 0 6.25vw 12.5vw;
  }
  .report__speaker .report__title {
    font-size: 4.375vw;
    line-height: 6.25vw;
    margin-bottom: 5vw;
  }
  .human {
    gap: 2.5vw;
  }
  .human__pic {
    width: 10vw;
    height: 10vw;
  }
  .human__name {
    font-size: 3.75vw;
    line-height: 4.375vw;
    margin-bottom: 2.5vw;
  }
  .human__text {
    font-size: 3.75vw;
    line-height: 5.625vw;
  }
  .human--big .human__pic {
    width: 15vw;
    height: 15vw;
  }
  .human--big .human__name {
    margin-bottom: 2.5vw;
  }
  .accordion {
    margin-top: 6.25vw;
    border-top: 0.625vw solid var(--link-bad);
  }
  .accordion-elem {
    border-bottom: 0.625vw solid var(--link-bad);
  }
  .accordion-elem__head {
    padding: 7.5vw 0;
    gap: 5vw;
  }
  .accordion-elem__title {
    font-size: 6.875vw;
    line-height: 8.75vw;
  }
  .accordion-elem__toggle .icon {
    width: 7.5vw;
    height: 7.5vw;
  }
  .accordion-elem__content {
    padding-bottom: 7.5vw;
    font-size: 4.375vw;
    line-height: 6.25vw;
  }
}
/*# sourceMappingURL=style.css.map */