:root {
  --side-padding: 100px;
}

* {
  box-sizing: border-box;
}

html {
  font-size: clamp(7px, 0.7vw, 10px);
}

body {
  min-width: 320px;
  font-family: "Raleway", sans-serif;
  font-feature-settings: "pnum" on, "lnum" on;
  color: #000;
}

a {
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
}

button {
  transition: all 0.2s;
}

input:focus, textarea:focus {
  outline: none;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

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

.text-green {
  color: #20877D;
}

.text-white {
  color: #fff;
}

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

.d-block {
  display: block !important;
}

.d-none {
  display: block !important;
}

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

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

.link-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nice-link, .l-program__docs__list a, .submenu__list > div a, .header__nav a, .nav-footer a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.25s ease-out, color 0.2s;
}
.nice-link:hover, .l-program__docs__list a:hover, .submenu__list > div a:hover, .header__nav a:hover, .nav-footer a:hover {
  background-size: 100% 1px;
}
.nice-link--active, .l-program__docs__list a {
  background-size: 100% 1px;
}
.nice-link--active:hover, .l-program__docs__list a:hover {
  background-size: 0 1px;
}

.page__wrapper {
  position: relative;
}
.page__wrapper--gray {
  background-color: #F8F8F8;
}
.page__flower {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  background: url(../img/flower-green.svg) 50% 50%/contain no-repeat;
}
.page__flower:before {
  content: " ";
  padding-top: 100%;
  display: block;
}
.page__content {
  position: relative;
  z-index: 10;
}
.page__center {
  box-sizing: content-box;
  padding: 0 var(--side-padding);
  max-width: 1400px;
  margin: 0 auto;
}
.page__gray {
  padding: 1px 0;
  background: #F8F8F8;
}
.page__h1 {
  margin-bottom: 4rem;
  font-weight: 500;
  font-size: 5.6rem;
  line-height: 150%;
  text-transform: uppercase;
}
.page__h3 {
  margin-bottom: 4rem;
  font-weight: 500;
  font-size: 4rem;
  line-height: 135%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.page__date {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 135%;
  color: #3D3D3D;
}
.page__more {
  margin-top: 4rem;
}
.page__space {
  height: 150px;
}
.page__up {
  position: fixed;
  z-index: 999;
  bottom: 4rem;
  left: 4rem;
  width: 10rem;
  height: 10rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background: #fff;
  display: none;
}
.page__up.active {
  display: flex;
}
.page__up .icon {
  stroke: #20877D;
  font-size: 2rem;
  width: 1em;
  height: 1em;
}
.page__up__text {
  margin-top: 0.8rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 135%;
  text-transform: uppercase;
  color: #20877D;
}

@media (max-width: 899.98px) {
  .page__h1, .page__h3 {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
  }
  .page__up {
    top: auto;
    left: auto;
    right: 15px;
    bottom: 15px;
    width: 75px;
    height: 75px;
  }
  .page__up .icon {
    font-size: 15px;
  }
  .page__up__text {
    font-size: 12px;
  }
}
.input input,
.input textarea {
  display: block;
  width: 100%;
  padding: 1.8rem 1.6rem;
  background: #F6F6F6;
  border: 1px solid #E1E1E1;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-family: inherit;
  line-height: 135%;
  color: #333333;
}
.input input::-moz-placeholder, .input textarea::-moz-placeholder {
  color: #898989;
}
.input input:-ms-input-placeholder, .input textarea:-ms-input-placeholder {
  color: #898989;
}
.input input::placeholder,
.input textarea::placeholder {
  color: #898989;
}
.input input:focus,
.input textarea:focus {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  background: #fff;
}
.input input.error,
.input textarea.error {
  border-color: #f00;
}
.input textarea {
  resize: vertical;
}
.input label.error {
  display: block;
  font-size: 1.4rem;
  margin-top: 0.5em;
  color: #f00;
}

.input-search {
  position: relative;
}
.input-search input {
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 0.4rem;
  padding: 1.9rem;
  padding-left: 5.5rem;
  font-size: 1.4rem;
  font-family: inherit;
  line-height: 135%;
  color: #333333;
}
.input-search input::-moz-placeholder {
  color: #898989;
}
.input-search input:-ms-input-placeholder {
  color: #898989;
}
.input-search input::placeholder {
  color: #898989;
}
.input-search input:focus {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.input-search .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.9rem;
  width: 1.8rem;
  height: 1.8rem;
  fill: #20877D;
  pointer-events: none;
}

.input-date {
  position: relative;
}
.input-date__prefix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.2rem;
  font-size: 1.4rem;
  line-height: 135%;
  color: #898989;
  pointer-events: none;
}
.input-date input {
  width: 100%;
  padding: 1rem 4rem;
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  font-family: inherit;
  line-height: 135%;
  color: #333333;
}
.input-date input:focus {
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.input-date .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
  width: 1.8rem;
  height: 1.8rem;
  fill: #20877D;
  pointer-events: none;
}

.btn-100 {
  width: 100%;
}

.btn-filled {
  transition: background 0.2s;
  display: inline-block;
  border: 0;
  border-radius: 10rem 0px;
  min-width: 15em;
  padding: 1.6rem;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  background: #20877D;
  text-align: center;
  cursor: pointer;
  color: #FFFFFF;
}
.btn-filled:hover {
  background: #259c90;
}

.btn-text {
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  background: none;
  border: 0;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
}
.btn-text:hover {
  background: #f7f7f7;
}
.btn-text .icon {
  stroke: #20877D;
  width: 1.6rem;
  height: 1.6rem;
}
.btn-text span {
  margin-left: 1rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 135%;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #20877D;
}

.btn-forward {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  color: #20877D;
}
.btn-forward:hover .icon {
  transform: translateX(0.2em);
}
.btn-forward .icon {
  transition: transform 0.2s;
  margin-left: 0.75em;
  margin-top: 0.2em;
  flex: 0 0 auto;
  width: 0.75em;
  height: 0.75em;
  stroke: currentColor;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
  color: #20877D;
}
.btn-back:hover .icon {
  transform: translateX(-0.2em);
}
.btn-back .icon {
  transition: transform 0.2s;
  margin-right: 0.75em;
  margin-top: 0.2em;
  flex: 0 0 auto;
  width: 0.75em;
  height: 0.75em;
  stroke: currentColor;
}

@media (max-width: 899.98px) {
  .btn-forward,
.btn-back {
    font-size: 14px;
  }
}
.btn-icon {
  border: 0;
  padding: 0.4rem;
  background: none;
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  color: #20877D;
  cursor: pointer;
}
.btn-icon:hover {
  color: #1b726a;
}
.btn-icon .icon {
  margin-left: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  fill: #20877D;
}

.checkbox {
  display: block;
  position: relative;
  padding-left: 2.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  line-height: 155%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  transition: all 0.2s;
  position: absolute;
  top: 0;
  left: 0;
  height: 2rem;
  width: 2rem;
  background: #F6F6F6;
  border: 1px solid #E1E1E1;
  border-radius: 0.4rem;
}

.checkbox:hover input ~ .checkmark {
  background-color: #E1E1E1;
}

.checkbox input:checked ~ .checkmark {
  background-color: #20877D;
  border-color: transparent;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 37%;
  top: 11%;
  width: 20%;
  height: 50%;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.digits--4-in-row .digits__col {
  width: 25%;
}
.digits--4-in-row .digits__text {
  padding: 0 15%;
}
.digits--on-gray-bg .digits__item {
  background: #FFFFFF;
}
.digits__row {
  display: flex;
}
.digits__col {
  flex: 0 0 auto;
  width: 33.33%;
}
.digits__item {
  transition: background 0.2s;
  position: relative;
  text-align: center;
  background: #F8F8F8;
  border-radius: 50%;
}
.digits__item:before {
  content: " ";
  padding-top: 100%;
  display: block;
}
.digits__item.active {
  background: #72CAC1 url(../img/digits/flower.svg) 0 0/cover no-repeat;
}
.digits__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20%;
}
.digits__label {
  font-size: 1.6rem;
  line-height: 135%;
}
.digits__value {
  font-size: 6.4rem;
  letter-spacing: -0.03em;
  margin: 2.5rem 0;
}
.digits__value--small {
  font-size: 4rem;
}
.digits__value--medium {
  font-size: 5.6rem;
}
.digits__desc {
  font-size: 1.6rem;
  line-height: 135%;
}

@media (max-width: 899.98px) {
  .digits__row {
    display: block;
  }
  .digits__col {
    width: auto !important;
    max-width: 300px;
    margin: 0 auto;
    margin-top: 8px;
  }
  .digits__col:first-child {
    margin-top: 0;
  }
  .digits__value {
    margin: 12px 0;
    font-size: 56px;
  }
  .digits__value--medium, .digits__value--small {
    font-size: 32px;
  }
  .digits__label, .digits__desc {
    font-size: 14px;
  }
}
.docs-tiles__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  margin-top: -2rem;
}
.docs-tiles__col {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 1rem;
  margin-top: 2rem;
}
.docs-tiles__item {
  transition: box-shadow 0.2s;
  position: relative;
  min-height: 23.5rem;
  background: #FFFFFF;
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.05);
  border-radius: 0.4rem;
  padding: 3.2rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.docs-tiles__item:hover {
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.15);
}
.docs-tiles__ext {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  background: #20877D;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 155%;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}
.docs-tiles__name {
  max-width: 50%;
  font-weight: 500;
  font-size: 2rem;
  line-height: 135%;
}

@media (max-width: 899.98px) {
  .docs-tiles__row {
    display: block;
  }
  .docs-tiles__col {
    width: auto;
    margin-top: 12px;
  }
  .docs-tiles__col:first-child {
    margin-top: 0;
  }
  .docs-tiles__item {
    padding: 24px;
    min-height: 160px;
  }
  .docs-tiles__name {
    font-size: 16px;
  }
}
.docs-list__item {
  margin-top: 1.6rem;
  padding: 2rem 3.2rem;
  background: #F8F8F8;
  display: flex;
  align-items: flex-start;
}
.docs-list__item:first-child {
  margin-top: 0;
}
.docs-list__type {
  flex: 0 0 auto;
  width: 10rem;
}
.docs-list__name {
  align-self: center;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 155%;
}
.docs-list__ext {
  display: inline-block;
  padding: 0.2rem 0.8rem;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 155%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #20877D;
}

@media (max-width: 899.98px) {
  .docs-list__item {
    padding: 8px;
  }
}
.programs--full .programs__col {
  width: 50%;
}
.programs--full .programs__item {
  min-height: 45rem;
}
.programs__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  margin-top: -2rem;
}
.programs__col {
  flex: 0 0 auto;
  width: 33.33%;
  padding: 0 1rem;
  margin-top: 2rem;
}
.programs__item {
  transition: filter 0.2s;
  position: relative;
  padding: 3.2rem;
  min-height: 27.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
}
.programs__item:hover {
  filter: brightness(1.1);
}
.programs__item:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  background: url(../img/programs/flower.svg) 100% 100%/contain no-repeat;
}
.programs__item--orange {
  background: linear-gradient(110.34deg, #F0DC8D 0%, #FF1C3E 100%);
}
.programs__item--green {
  background: linear-gradient(110.34deg, #00706C 0%, #00FFBB 100%);
}
.programs__item--dark-blue {
  background: linear-gradient(110.34deg, #0B31BF 0%, #1DEBD5 100%);
}
.programs__item--yellow {
  background: linear-gradient(110.34deg, #FF9800 0%, #FFC107 49.48%, #FFEB3B 100%);
}
.programs__item--blue {
  background: linear-gradient(110.34deg, #00A4DB 0%, #B6FBFF 100%);
}
.programs__item--purple {
  background: linear-gradient(110.34deg, #B76AE6 0%, #CC2B2B 100%);
}
.programs__tags {
  margin-bottom: 1.3rem;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
}
.programs__tags > span {
  display: inline-block;
  margin: 0 1.5em 0.3em 0;
}
.programs__name {
  margin-top: auto;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 150%;
}
.programs__desc {
  margin-top: 1.6rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
}
.programs__price {
  margin-top: 3.2rem;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 150%;
}

@media (max-width: 899.98px) {
  .programs__col {
    flex: 1 1 300px;
    width: auto;
  }
  .programs__item {
    min-height: 250px;
    padding: 24px;
  }
  .programs__tags {
    font-size: 14px;
    line-height: 150%;
  }
  .programs__name {
    font-size: 20px;
    line-height: 135%;
  }
}
@media (max-width: 499.98px) {
  .programs--full .programs__col {
    width: auto;
  }
  .programs__row {
    display: block;
    margin-top: 0;
  }
  .programs__col {
    margin: 12px 0 0 0;
  }
  .programs__col:first-child {
    margin-top: 0;
  }
  .programs__col:last-child {
    margin-bottom: 0;
  }
}
.nav-pager {
  display: flex;
  font-size: 1.6rem;
  line-height: 1.1875;
  margin-top: 6.4rem;
}
.nav-pager:last-child {
  margin-bottom: 0;
}
.nav-pager__nums {
  display: flex;
}
.nav-pager__nums a {
  padding: 0.5em 0.8em;
  color: #000;
}
.nav-pager__nums a:hover {
  background: #c3ede9;
  border-radius: 1em 0px;
}
.nav-pager__nums a.active {
  background: #20877D;
  border-radius: 1em 0px;
  color: #fff;
}
.nav-pager__btn {
  padding: 0.5em 0;
  margin-left: 1em;
  font-weight: 500;
  color: #20877D;
}

@media (max-width: 899.98px) {
  .nav-pager {
    margin-top: 40px;
  }
}
.nav-collapse {
  margin-top: 2.4rem;
  color: #FFFFFF;
}
.nav-collapse:first-child {
  margin-top: 0;
}
.nav-collapse__group {
  margin-top: 16px;
}
.nav-collapse__group:first-child {
  margin-top: 0;
}
.nav-collapse__subtitle {
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 135%;
  color: #4EAEA5;
}
.nav-collapse__body {
  font-size: 1.6rem;
}
.nav-collapse__links {
  font-weight: 400;
  line-height: 150%;
}
.nav-collapse__links div {
  margin-top: 8px;
}
.nav-collapse__links div:first-child {
  margin-top: 0;
}
.nav-collapse__body {
  padding: 16px 0;
}
.nav-collapse .acc_section {
  margin-top: 14px;
}
.nav-collapse .acc_section:first-child {
  margin-top: 0;
}
.nav-collapse .acc_section:not([class*=acc_active]) .acc_head > i {
  transform: translateY(-50%) rotate(0deg);
}
.nav-collapse .acc_head {
  position: relative;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 150%;
  text-transform: uppercase;
  cursor: pointer;
}
.nav-collapse .acc_head > i {
  transition: transform 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: 3px;
  height: 4px;
}
.nav-collapse .acc_head > i > i {
  transform: translateY(-50%) rotate(225deg);
  display: block;
  border: 1px solid transparent;
  border-left-color: #FFFFFF;
  border-top-color: #FFFFFF;
  width: 8px;
  height: 8px;
}

@media (max-width: 899.98px) {
  .nav-collapse {
    margin-top: 12px;
  }
  .nav-collapse .acc_head {
    font-size: 14px;
  }
  .nav-collapse__body {
    font-size: 12px;
  }
}
.nav-footer {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  color: #FFFFFF;
}
.nav-footer:first-child {
  margin-top: 0;
}
.nav-footer div {
  margin-top: 2.4rem;
}
.nav-footer div:first-child {
  margin-top: 0;
}
.nav-footer a {
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
}

@media (max-width: 899.98px) {
  .nav-footer {
    margin-top: 12px;
  }
  .nav-footer > div {
    margin-top: 12px;
  }
}
.media-tiles__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.2rem;
  margin-top: -4rem;
}
.media-tiles__col {
  flex: 0 0 auto;
  width: 33.33%;
  padding: 0 1.2rem;
  margin-top: 4rem;
}
.media-tiles__item {
  position: relative;
}
.media-tiles__image {
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
}
.media-tiles__date {
  display: block;
  margin-top: 2.4rem;
  font-size: 1.4rem;
  line-height: 135%;
  color: #3D3D3D;
}
.media-tiles__name {
  margin: 1.6rem 0;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
}
.media-tiles__name a {
  display: block;
}
.media-tiles__media {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 150%;
  color: #20877D;
}

@media (max-width: 899.98px) {
  .media-tiles__col {
    width: 50%;
  }
  .media-tiles__name {
    margin: 8px 0;
    font-size: 20px;
  }
  .media-tiles__date {
    margin-top: 16px;
    font-size: 12px;
  }
  .media-tiles__media {
    margin-top: 16px;
    font-size: 14px;
  }
}
@media (max-width: 499.98px) {
  .media-tiles__row {
    margin-top: 0;
  }
  .media-tiles__col {
    width: 100%;
    margin-top: 32px;
  }
  .media-tiles__col:first-child {
    margin-top: 0;
  }
  .media-tiles__col:last-child {
    margin-bottom: 0;
  }
}
.events-list--full .events-list__item {
  margin-bottom: 3.2rem;
}
.events-list__item {
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 5.6rem;
}
.events-list__item:last-child {
  margin-bottom: 0;
}
.events-list__tags {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
}
.events-list__tags span {
  display: inline-block;
  margin: 0 1.5em 0.3em 0;
}
.events-list__time {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 135%;
  margin: 1.8rem 0;
}
.events-list__time:before {
  content: " ";
  flex: 0 0 auto;
  background: url(../img/icons/calendar.svg) 50% 0/90% 90% no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.8rem;
}
.events-list__title {
  margin: 1.6rem 0;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
}
.events-list__title a {
  display: block;
}
.events-list__place {
  font-size: 1.4rem;
  line-height: 135%;
  color: #3D3D3D;
}

@media (max-width: 899.98px) {
  .events-list__item {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .events-list__title {
    font-size: 16px;
  }
  .events-list__time, .events-list__place {
    font-size: 12px;
  }
}
.nav-bread {
  margin: 4rem 0;
  font-size: 1.4rem;
  line-height: 1.1428571429;
  color: #B7B7B7;
}
.nav-bread span {
  color: #000;
}
.nav-bread--dark-bg {
  color: rgba(255, 255, 255, 0.5);
}
.nav-bread--dark-bg span {
  color: #fff;
}

.points__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.points__col {
  flex: 1 0 auto;
  width: 33.33%;
  padding: 0 1rem;
  margin-bottom: 2rem;
  display: flex;
}
.points__item {
  flex-grow: 1;
  padding: 4rem 3.2rem;
  background: #FFFFFF;
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.05);
  border-radius: 0.4rem;
}
.points__num {
  display: inline-block;
  background: #72CAC1;
  border-radius: 4rem 0px;
  padding: 0.7rem 3.2rem;
  font-weight: 700;
  font-size: 4rem;
  line-height: 150%;
  color: #FFFFFF;
}
.points__title {
  margin-top: 4rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
}
.points__desc {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 150%;
}

@media (max-width: 899.98px) {
  .points__row {
    display: block;
  }
  .points__col {
    width: auto;
    margin-top: 16px;
  }
  .points__col:first-child {
    margin-top: 0;
  }
  .points__col:last-child {
    margin-bottom: 0;
  }
  .points__item {
    padding: 40px 24px;
  }
  .points__num {
    font-size: 32px;
  }
  .points__title {
    margin-top: 40px;
    font-size: 16px;
  }
  .points__desc {
    margin-top: 16px;
    font-size: 14px;
  }
}
.points-text {
  padding: 5.6rem 0 5rem 0;
  background: #F8F8F8;
}
.points-text__row {
  display: flex;
}
.points-text__col {
  flex-grow: 1;
  padding-right: 4rem;
}
.points-text__label {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  color: #B7B7B7;
}
.points-text__value {
  margin-top: 0.8rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
}
.points-text__value--total {
  color: #20877D;
  font-weight: 700;
}

@media (max-width: 899.98px) {
  .points-text {
    padding: 60px 0;
  }
  .points-text__row {
    display: block;
    text-align: center;
  }
  .points-text__col {
    margin-top: 24px;
    padding-right: 0;
  }
  .points-text__col:first-child {
    margin-top: 0;
  }
  .points-text__label, .points-text__value {
    line-height: 135%;
  }
}
@media (max-width: 599.98px) {
  .points-text__label {
    font-size: 12px;
  }
  .points-text__value {
    font-size: 20px;
  }
}
.points-green {
  background: #20877D url(../img/flower-white-soft.svg) 80% 30%/70% auto no-repeat;
  padding: 10rem 0;
}
.points-green__row {
  display: flex;
  margin: 0 -2rem;
  justify-content: space-between;
  margin-top: 6.4rem;
}
.points-green__col {
  flex: 0 1 36rem;
  padding: 0 2rem;
}
.points-green__num {
  display: inline-block;
  background: #72CAC1;
  border-radius: 4rem 0px;
  padding: 0.7rem 3.2rem;
  font-weight: 700;
  font-size: 4rem;
  line-height: 150%;
  color: #FFFFFF;
}
.points-green__desc {
  margin-top: 4rem;
  font-size: 2.4rem;
  line-height: 150%;
  color: #FFFFFF;
}

@media (max-width: 899.98px) {
  .points-green {
    padding: 60px 0;
    background-position: 50% 50%;
    background-size: auto 130%;
  }
  .points-green__row {
    display: block;
    margin: 40px 0 0 50px;
  }
  .points-green__col {
    margin-top: 32px;
    padding: 0;
  }
  .points-green__col:first-child {
    margin-top: 0;
  }
  .points-green__col:last-child {
    margin-bottom: 0;
  }
  .points-green__num {
    font-size: 32px;
  }
  .points-green__desc {
    margin-top: 16px;
    font-size: 14px;
  }
}
.header {
  position: relative;
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.05);
}
.header__top {
  background: #20877D;
  padding: 0.8rem 0;
  color: #FFFFFF;
}
.header__top--gray {
  background: #F6F6F6;
}
.header__top--gray .header__lang a {
  color: #8D8D8D;
}
.header__top--gray .header__lang a:hover, .header__top--gray .header__lang a.active {
  color: #20877D;
}
.header__top--gray .header__desc {
  color: #333;
}
.header__top--gray .header__icons a .icon {
  fill: #20877D;
}
.header__top__in {
  display: flex;
  align-items: center;
}
.header__lang {
  display: flex;
}
.header__lang a {
  margin-right: 1em;
  font-size: 1.2rem;
  line-height: 1.1666666667;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.header__lang a:hover, .header__lang a.active {
  color: #fff;
}
.header__desc {
  margin-left: 3rem;
  font-size: 1.4rem;
  line-height: 1.1428571429;
}
.header__icons {
  margin-left: auto;
  display: flex;
}
.header__icons a {
  margin-left: 1.6rem;
}
.header__icons a .icon {
  width: 2.4rem;
  height: 2.4rem;
  fill: currentColor;
}
.header__icons span {
  flex: 0 0 auto;
  width: 2.4rem;
}
.header__main {
  background: #fff;
  padding: 3rem 0;
}
.header__main__in {
  display: flex;
  align-items: center;
}
.header__name {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 120%;
  text-transform: uppercase;
  white-space: nowrap;
}
.header__name span {
  color: #20877D;
}
.header__nav {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  padding: 0 5rem;
}
.header__nav__item {
  position: relative;
  margin: 0.2rem clamp(20px, 4vw, 80px) 0.2rem 0;
}
.header__nav__item:last-child {
  margin-right: 0;
}
.header__nav a {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header__tools {
  margin-left: auto;
  display: flex;
}
.header__btn-eye, .header__btn-search, .header__btn-menu {
  border: 0;
  background: none;
  padding: 0;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
}
.header__btn-eye {
  display: none;
}
.header__btn-eye .icon {
  fill: #20877D;
  width: 3rem;
  height: 3rem;
}
.header__btn-search {
  width: auto;
}
.header__btn-search .icon {
  fill: #20877D;
  width: 2.4rem;
  height: 2.4rem;
  margin-top: 0.4rem;
}
.header__btn-menu {
  display: none;
}
.header__btn-menu i {
  display: block;
  margin: 0.7rem auto;
  width: 2.4rem;
  height: 2px;
  background: #20877D;
}
.header__btn-menu.active i {
  margin: 0 auto;
}
.header__btn-menu.active i:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}
.header__btn-menu.active i:nth-child(2) {
  opacity: 0;
}
.header__btn-menu.active i:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}

@media (max-width: 899.98px) {
  .header__top {
    display: none;
  }
  .header__main {
    padding: 16px 0;
  }
  .header__nav {
    display: none;
  }
  .header__name {
    font-size: 10px;
  }
  .header__btn-eye, .header__btn-search, .header__btn-menu {
    width: 44px;
    height: 44px;
  }
  .header__btn-eye {
    display: block;
  }
  .header__btn-eye .icon {
    width: 22px;
    height: 22px;
  }
  .header__btn-search .icon {
    width: 16px;
    height: 16px;
  }
  .header__btn-menu {
    display: block;
  }
  .header__btn-menu i {
    margin: 4px auto;
    width: 18px;
  }
}
.promo-1 {
  position: relative;
}
.promo-1__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}
.promo-1__image--small {
  display: none;
}
.promo-1__content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 70rem;
  padding: 6.8rem 0;
}
.promo-1__text {
  flex-grow: 1;
  align-self: flex-end;
  color: #fff;
}
.promo-1__text__size {
  max-width: 50%;
}
.promo-1__title {
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 120%;
}
.promo-1__line {
  margin: 3.2rem 0;
  border-top: 1px solid #fff;
}
.promo-1__desc {
  font-size: 2rem;
  line-height: 150%;
}

@media (max-width: 899.98px) {
  .promo-1__content {
    min-height: 450px;
    padding: 35px 0;
  }
  .promo-1__title {
    font-size: 32px;
  }
  .promo-1__line {
    display: none;
  }
  .promo-1__desc {
    margin-top: 16px;
    font-size: 14px;
  }
}
@media (max-width: 499.98px) {
  .promo-1__image--small {
    display: block;
  }
  .promo-1__image--large {
    display: none;
  }
  .promo-1__text__size {
    max-width: none;
  }
}
.promo-2 {
  position: relative;
}
.promo-2__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
}
.promo-2__image--small {
  display: none;
}
.promo-2__content {
  position: relative;
  z-index: 10;
  min-height: 55rem;
  padding: 40px 0 6.8rem 0;
}
.promo-2__text {
  color: #fff;
}
.promo-2__text__size {
  max-width: 70%;
}
.promo-2__title {
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 120%;
}

@media (max-width: 899.98px) {
  .promo-2__content {
    min-height: 500px;
    padding-top: 16px;
  }
  .promo-2__title {
    font-size: 32px;
  }
}
@media (max-width: 499.98px) {
  .promo-2__image--small {
    display: block;
  }
  .promo-2__image--large {
    display: none;
  }
  .promo-2__text__size {
    max-width: none;
  }
}
.promo-3 {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.promo-3__flower {
  position: absolute;
  bottom: 0;
  background: url(../img/flower-white-outlined.svg) 50% 50%/contain no-repeat;
}
.promo-3__flower::before {
  content: " ";
  padding-top: 128%;
  display: block;
}
.promo-3__flower--1 {
  width: 30%;
  min-width: 300px;
  transform: translate(-50%, 20%) rotate(17deg);
  left: 85%;
}
.promo-3__flower--2 {
  width: 24%;
  min-width: 250px;
  transform: translate(-50%, 35%) rotate(-25deg);
  left: 58%;
  filter: blur(5px);
}
.promo-3__content {
  position: relative;
  z-index: 10;
  min-height: 55rem;
  padding: 40px 0 6.8rem 0;
  display: flex;
  flex-direction: column;
}
.promo-3__title {
  font-weight: 600;
  font-size: 5.6rem;
  line-height: 120%;
}
.promo-3__title__size {
  max-width: 70%;
}
.promo-3__section {
  margin-top: auto;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.1875;
}

@media (max-width: 899.98px) {
  .promo-3__content {
    min-height: 500px;
    padding-top: 16px;
  }
  .promo-3__title {
    font-size: 32px;
  }
}
@media (max-width: 499.98px) {
  .promo-3__title__size {
    max-width: none;
  }
}
.accordion {
  background: #fff;
}
.accordion .acc_section {
  border-bottom: 1px solid #E1E1E1;
}
.accordion .acc_section:not([class*=acc_active]) i:before {
  transform: rotate(-180deg);
}
.accordion .acc_section:not([class*=acc_active]) i:after {
  transform: rotate(-90deg);
  opacity: 1;
}
.accordion .acc_section:last-child {
  border-bottom: 0;
}
.accordion .acc_head {
  position: relative;
  padding: 4rem;
  padding-right: 8rem;
  display: block;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 155%;
  cursor: pointer;
}
.accordion .acc_head i:before, .accordion .acc_head i:after {
  transition: all 0.2s;
  transform-origin: 50% 50%;
  content: " ";
  height: 2px;
  background: #20877D;
  width: 2.8rem;
  position: absolute;
  right: 4rem;
  top: 50%;
  margin-top: -1px;
}
.accordion .acc_head i:after {
  opacity: 0;
}
.accordion__body {
  padding: 0 4rem 4rem 4rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  color: #3D3D3D;
}

@media (max-width: 899.98px) {
  .accordion .acc_head {
    padding: 13px 54px 13px 24px;
    font-size: 14px;
  }
  .accordion .acc_head i:before, .accordion .acc_head i:after {
    width: 18px;
    right: 24px;
  }
  .accordion__body {
    padding: 0 24px 24px 24px;
  }
}
.footer {
  position: relative;
  overflow: hidden;
  padding: 10rem 0;
  background: #20877D;
  font-size: 1.6rem;
  color: #FFFFFF;
}
.footer__in {
  position: relative;
  display: flex;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
}
.footer__col {
  padding: 0 8rem 8rem 0;
  flex: 1 1 auto;
}
.footer__col:last-child {
  padding-right: 0;
}
.footer__name {
  margin-right: auto;
}
.footer__name a {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}
.footer__nav {
  max-width: 20rem;
}
.footer__touch__title {
  margin-bottom: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
}
.footer__touch__desc {
  line-height: 150%;
}
.footer__touch__desc > div {
  margin-bottom: 0.8rem;
}
.footer__promo__title {
  margin-bottom: 2.2rem;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 150%;
}
.footer__icons {
  display: flex;
  margin-top: 1rem;
}
.footer__icons a {
  margin-right: 1.6rem;
}
.footer__icons a .icon {
  width: 2.4rem;
  height: 2.4rem;
  fill: #fff;
}

@media (max-width: 899.98px) {
  .footer {
    padding: 40px 0;
    font-size: 14px;
  }
  .footer__flower {
    position: absolute;
    top: 60px;
    right: -210px;
    width: 545px;
    height: 632px;
    background: #20877D url(../img/footer/flower.svg) no-repeat 100% 100%;
  }
  .footer__in {
    display: block;
  }
  .footer__name {
    font-size: 10px;
  }
  .footer__row {
    margin-top: 40px;
  }
  .footer__col {
    padding-right: 40px;
    padding-bottom: 40px;
  }
  .footer__col:last-child {
    width: 100%;
    padding-bottom: 0;
  }
  .footer__touch__title {
    margin-bottom: 12px;
  }
  .footer__touch__desc {
    font-size: 12px;
  }
  .footer__promo__title {
    margin-bottom: 16px;
  }
}
.contacts__row {
  display: flex;
}
.contacts__left {
  flex: 0 0 auto;
  padding-right: 6.8rem;
  width: 60%;
}
.contacts__right {
  flex: 0 0 auto;
  width: 40%;
}
.contacts__desc {
  display: flex;
}
.contacts__desc__item {
  flex: 0 0 auto;
  padding-right: 2rem;
  width: 50%;
}
.contacts__desc__title {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
  margin-bottom: 1.2rem;
}
.contacts__hours {
  font-size: 1.6rem;
  line-height: 155%;
}
.contacts__hours td {
  padding-bottom: 0.4rem;
  padding-right: 3rem;
}
.contacts__list {
  font-size: 1.6rem;
  line-height: 155%;
}
.contacts__list > div {
  margin-bottom: 1.2rem;
}
.contacts__icons {
  display: flex;
  margin-top: 2.4rem;
}
.contacts__icons a {
  margin-right: 1.6rem;
}
.contacts__icons a .icon {
  width: 2.4rem;
  height: 2.4rem;
  fill: #20877D;
}
.contacts__map {
  margin-top: 6.3rem;
  background: #f3f3f3;
}

@media (max-width: 899.98px) {
  .contacts__row {
    display: block;
  }
  .contacts__left {
    width: auto;
    padding-right: 0;
  }
  .contacts__right {
    width: auto;
    margin-top: 64px;
  }
  .contacts__desc {
    display: block;
  }
  .contacts__desc__item {
    margin-top: 24px;
    padding-right: 0;
    width: auto;
  }
  .contacts__desc__title {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 135%;
  }
  .contacts__map {
    margin-top: 32px;
  }
}
.form-feedback {
  padding: 5.6rem;
  background: #FFFFFF;
  border: 1px solid #E1E1E1;
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.05);
}
.form-feedback__title {
  margin-bottom: 4rem;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 135%;
  text-align: center;
}
.form-feedback__input {
  margin-bottom: 1.2rem;
}
.form-feedback__area {
  margin-top: 2.4rem;
}
.form-feedback__ctrl {
  margin-top: 4rem;
  text-align: center;
}

@media (max-width: 899.98px) {
  .form-feedback {
    padding: 40px 24px;
  }
  .form-feedback__title {
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 20px;
  }
  .form-feedback__input {
    margin-bottom: 8px;
  }
  .form-feedback__area {
    margin-top: 16px;
  }
  .form-feedback__ctrl {
    margin-top: 24px;
  }
}
.form-filter {
  background: #FFFFFF;
  border: 1px solid #E1E1E1;
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.05);
  border-radius: 0.4rem;
  padding: 4rem;
}
.form-filter--bare {
  padding: 0;
  box-shadow: none;
  border: 0;
}
.form-filter__title {
  margin-bottom: 4rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
}
.form-filter__group {
  margin-bottom: 2.4rem;
}
.form-filter__group__name {
  margin-bottom: 1.6rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 155%;
}
.form-filter__search {
  margin: 4rem 0;
}
.form-filter__range {
  display: flex;
  align-items: center;
}
.form-filter__range__input {
  flex: 0 1 15rem;
}
.form-filter__range__hyphen {
  padding: 0 1rem;
}
.form-filter__apply {
  margin-top: 4rem;
}
.form-filter__reset {
  margin-top: 1.6rem;
  text-align: center;
}

.form-search__text {
  display: flex;
}
.form-search__text__input {
  flex-grow: 1;
}
.form-search__text__btn {
  padding-left: 1.6rem;
}
.form-search__filter {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.form-search__filter--popup {
  display: flex !important;
}
.form-search__filter__date {
  width: 20rem;
}
.form-search__filter__where {
  width: 20rem;
}
.form-search__toggle {
  display: none;
}

@media (max-width: 899.98px) {
  .form-search__text__btn {
    display: none;
  }
  .form-search__filter {
    display: none;
  }
  .form-search__filter--popup .form-search__filter__date {
    flex: 1 1 auto;
  }
  .form-search__filter--popup .form-search__filter__where {
    width: 100%;
  }
  .form-search__toggle {
    display: block;
    margin-top: 12px;
  }
}
.team {
  padding-top: 10rem;
  padding-bottom: 8rem;
  background: #FFFFFF;
}
.team__group {
  margin-bottom: 6rem;
  display: flex;
}
.team__group:last-child {
  margin-bottom: 0;
}
.team__about {
  flex: 0 0 auto;
  width: 40%;
  padding-right: 4rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 135%;
  color: #20877D;
}
.team__name {
  max-width: 380px;
}
.team__faces {
  flex: 0 0 auto;
  width: 60%;
}
.team__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
}
.team__col {
  margin-bottom: 4rem;
  flex: 0 0 auto;
  width: 33.33%;
  padding: 0 1rem;
}
.team__photo {
  position: relative;
  background: #F8F8F8 50% 50%/cover no-repeat;
}
.team__photo[style]:after {
  display: none;
}
.team__photo:before {
  content: " ";
  padding-top: 130%;
  display: block;
}
.team__photo:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: " ";
  background: url(../img/icons/no-image.svg) 50% 50%/20% auto no-repeat;
}
.team__fullname {
  margin-top: 2.4rem;
  font-size: 2.4rem;
  line-height: 135%;
  letter-spacing: 0.03em;
}
.team__fullname span {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  color: #20877D;
}
.team__post {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 135%;
  color: #3D3D3D;
}

@media (max-width: 899.98px) {
  .team {
    padding-top: 60px;
    padding-bottom: 28px;
  }
  .team__group {
    display: none;
    margin-bottom: 0;
  }
  .team__group.active {
    display: block;
  }
  .team__faces {
    width: auto;
  }
  .team__about {
    display: none;
  }
  .team__col {
    margin-bottom: 32px;
  }
  .team__fullname {
    font-size: 18px;
  }
}
@media (max-width: 599.98px) {
  .team__col {
    width: 50%;
  }
}
@media (max-width: 320.98px) {
  .team__col {
    width: 100%;
  }
}
.about-us__h2 {
  font-weight: 500;
  font-size: 4rem;
  line-height: 150%;
  text-transform: uppercase;
  max-width: 80rem;
}
.about-us__list {
  margin-left: 40%;
  margin-bottom: 10rem;
  margin-top: 6.4rem;
}
.about-us__row {
  display: flex;
}
.about-us__col {
  flex: 0 0 auto;
  padding-right: 4rem;
  width: 45%;
}
.about-us__num {
  display: inline-block;
  background: #72CAC1;
  border-radius: 4rem 0px;
  padding: 0.7rem 3.2rem;
  font-weight: 700;
  font-size: 4rem;
  line-height: 150%;
  color: #FFFFFF;
}
.about-us__desc {
  margin-top: 2.4rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 155%;
}

@media (max-width: 899.98px) {
  .about-us__h2 {
    max-width: 300px;
    font-weight: 500;
    font-size: 2rem;
    line-height: 135%;
    color: #20877D;
    text-transform: none;
  }
  .about-us__list {
    margin-left: 60px;
    margin-bottom: 60px;
    margin-top: 40px;
  }
  .about-us__col {
    width: 50%;
  }
  .about-us__num {
    font-size: 32px;
  }
}
@media (max-width: 599.98px) {
  .about-us__row {
    display: block;
  }
  .about-us__col {
    width: auto;
    margin-bottom: 32px;
    padding-right: 20px;
  }
}
.gallery__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1rem;
  margin-top: -2rem;
}
.gallery__col {
  flex: 0 0 auto;
  width: 25%;
  padding: 0 1rem;
  margin-top: 2rem;
}
.gallery__col:nth-child(5n+2), .gallery__col:nth-child(5n+4), .gallery__col:nth-child(5n+5) {
  width: 50%;
}
.gallery__item {
  display: block;
  background: #eeeeee 50% 50%/cover;
  height: clamp(200px, 30vw, 400px);
  cursor: pointer;
}

@media (max-width: 899.98px) {
  .gallery__row {
    margin-top: -12px;
  }
  .gallery__col {
    width: 50%;
    margin-top: 12px;
  }
  .gallery__item {
    height: auto;
  }
  .gallery__item:before {
    content: " ";
    padding-top: 66%;
    display: block;
  }
}
@media (max-width: 399.98px) {
  .gallery__col {
    width: 100% !important;
  }
}
.inform {
  transition: background 0.2s;
  position: relative;
  border: 1px solid #20877D;
  border-radius: 12rem 0px;
  padding: 6.4rem;
  cursor: pointer;
  overflow: hidden;
}
.inform__title {
  transition: color 0.2s;
  margin-bottom: 11rem;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 135%;
  color: #000000;
}
.inform:hover {
  background: #20877D;
}
.inform:hover .inform__title {
  color: #fff;
}
.inform:hover .btn-forward {
  color: #fff;
}

@media (min-width: 900px) {
  .inform--compact {
    padding: 4rem;
    border-radius: 8rem 0px;
  }
  .inform--compact .inform__title {
    margin-bottom: 8rem;
    font-size: 2.4rem;
  }
}
@media (max-width: 899.98px) {
  .inform {
    padding: 40px;
    border-radius: 80px 0;
    max-width: 300px;
    margin: 0 auto;
  }
  .inform__title {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
.article {
  font-size: 1.6rem;
  line-height: 155%;
}
.article *:first-child {
  margin-top: 0;
}
.article *:last-child {
  margin-bottom: 0;
}
.article blockquote,
.article p {
  margin: 4rem 0;
}
.article blockquote {
  border-left: 1.6rem solid #20877D;
  padding-left: 3.2rem;
  font-size: 2rem;
  line-height: 150%;
}

@media (max-width: 899.98px) {
  .article {
    font-size: 14px;
    line-height: 135%;
  }
  .article p,
.article blockquote {
    margin: 24px 0;
  }
  .article blockquote {
    border-left-width: 8px;
    padding-left: 24px;
    font-size: 14px;
    line-height: 135%;
  }
}
.tags {
  display: flex;
  margin-bottom: -1.6rem;
  flex-wrap: wrap;
}
.tags a, .tags span {
  margin: 0 1.6rem 1.6rem 0;
  padding: 0.4rem 0.8rem;
  border-radius: 2.3rem;
  background: #F8F8F8;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 150%;
}
.tags a:hover {
  background: #f3f3f3;
}
.tags--white a, .tags--white span {
  background: #fff;
}

@media (max-width: 899.98px) {
  .tags a, .tags span {
    font-size: 12px;
  }
}
.slider-people {
  overflow: hidden;
}
.slider-people__header {
  display: flex;
  align-items: center;
  margin-bottom: 6.4rem;
}
.slider-people__row {
  font-size: 0;
  white-space: nowrap;
  margin: 0 -1.2rem;
}
.slider-people__item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: 25%;
  padding: 0 1.2rem;
}
.slider-people__photo {
  background: #f3f3f3 50% 50%/cover no-repeat;
}
.slider-people__photo:before {
  content: " ";
  padding-top: 145%;
  display: block;
}
.slider-people__post {
  margin-top: 3.2rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 155%;
  color: #20877D;
}
.slider-people__name {
  word-break: break-all;
  margin-top: 1.6rem;
  font-size: 2rem;
  line-height: 135%;
}
.slider-people__name span {
  display: block;
  text-transform: uppercase;
  font-weight: 700;
}
.slider-people__btns {
  display: flex;
  margin-left: auto;
}
.slider-people__prev, .slider-people__next {
  margin-left: 0.8rem;
  padding: 1.6rem 2.4rem;
  border-radius: 0px 2rem;
  border: 0;
  cursor: pointer;
  background: #F8F8F8;
}
.slider-people__prev:hover, .slider-people__next:hover {
  background: #f3f3f3;
}
.slider-people__prev .icon, .slider-people__next .icon {
  width: 2rem;
  height: 2rem;
  stroke: #20877D;
}
.slider-people__next {
  border-radius: 2rem 0px;
}
.slider-people__dots {
  display: none;
}
.slider-people .slick-list {
  overflow: visible;
}

@media (max-width: 899.98px) {
  .slider-people__header {
    margin-bottom: 24px;
  }
  .slider-people__row {
    margin: 0 -5px;
  }
  .slider-people__item {
    padding: 0 5px;
    width: 33.33%;
  }
  .slider-people__photo:before {
    padding-top: 133%;
  }
  .slider-people__post {
    margin-top: 24px;
    font-size: 12px;
  }
  .slider-people__name {
    margin-top: 16px;
    font-size: 16px;
  }
  .slider-people__btns {
    display: none;
  }
  .slider-people__dots {
    display: block;
  }
}
@media (max-width: 699.98px) {
  .slider-people__item {
    width: 50%;
  }
}
@media (max-width: 399.98px) {
  .slider-people__item {
    width: 100%;
  }
}
.slider-reviews {
  position: relative;
  background: #20877D;
  padding: 10rem 0 12rem 0;
  overflow: hidden;
}
.slider-reviews:before, .slider-reviews:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slider-reviews:before {
  background: url(../img/reviews/curve-1.svg) 0 105%/90% auto no-repeat;
}
.slider-reviews:after {
  background: url(../img/reviews/curve-2.svg) 0 105%/60% auto no-repeat;
}
.slider-reviews__content {
  position: relative;
  z-index: 10;
}
.slider-reviews__header {
  display: flex;
  align-items: center;
  margin-bottom: 6.4rem;
}
.slider-reviews__row {
  font-size: 0;
  white-space: nowrap;
  margin: 0 -1rem;
}
.slider-reviews__col {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
  width: 40%;
  padding: 0 1rem;
}
.slider-reviews__item {
  background: #fff;
  padding: 4.8rem 4rem;
}
.slider-reviews__name {
  font-weight: 600;
  font-size: 3.2rem;
  line-height: 135%;
}
.slider-reviews__post {
  margin-top: 0.8rem;
  font-weight: 500;
  font-size: 16px;
  line-height: 155%;
}
.slider-reviews__post span {
  color: #20877D;
}
.slider-reviews__text {
  margin-top: 3.2rem;
}
.slider-reviews__btns {
  display: flex;
  margin-left: auto;
}
.slider-reviews__prev, .slider-reviews__next {
  margin-left: 0.8rem;
  padding: 1.6rem 2.4rem;
  border-radius: 0px 2rem;
  border: 0;
  cursor: pointer;
  background: #F8F8F8;
}
.slider-reviews__prev:hover, .slider-reviews__next:hover {
  background: #f3f3f3;
}
.slider-reviews__prev .icon, .slider-reviews__next .icon {
  width: 2rem;
  height: 2rem;
  stroke: #20877D;
}
.slider-reviews__next {
  border-radius: 2rem 0px;
}
.slider-reviews__dots {
  display: none;
}
.slider-reviews .slick-list {
  overflow: visible;
}
.slider-reviews .slick-track {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 899.98px) {
  .slider-reviews {
    padding: 40px 0;
  }
  .slider-reviews__header {
    margin-bottom: 24px;
  }
  .slider-reviews__col {
    width: 100%;
  }
  .slider-reviews__name {
    font-weight: 500;
    font-size: 20px;
    line-height: 135%;
  }
  .slider-reviews__post {
    margin-top: 8px;
    font-size: 12px;
    line-height: 135%;
  }
  .slider-reviews__text {
    margin-top: 24px;
  }
  .slider-reviews__btns {
    display: none;
  }
  .slider-reviews__dots {
    display: block;
  }
}
.slider-thanks .swiper:before, .slider-thanks .swiper:after {
  content: " ";
  width: 4rem;
  position: absolute;
  z-index: 10;
  top: 0;
  height: 100%;
  background: #fff;
}
.slider-thanks .swiper:before {
  left: 0;
  box-shadow: 1rem 0 4rem 2rem #fff;
  border-radius: 0 50% 50% 0;
}
.slider-thanks .swiper:after {
  right: 0;
  box-shadow: -1rem 0 4rem 2rem #fff;
  border-radius: 50% 0 0 50%;
}
.slider-thanks .swiper-slide {
  width: 20%;
}
.slider-thanks .swiper-slide img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.slider-thanks .swiper-pagination {
  position: static;
  margin-top: 35px;
}
.slider-thanks .swiper-pagination-bullet {
  margin: 0 8px !important;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 1px #20877D;
  padding: 0;
  background: transparent;
  opacity: 1;
}
.slider-thanks .swiper-pagination-bullet-active {
  background: #20877d;
}
.slider-thanks__prev, .slider-thanks__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  padding: 1.6rem 2.4rem;
  border-radius: 0px 2rem;
  border: 0;
  cursor: pointer;
  background: #20877D;
}
.slider-thanks__prev:hover, .slider-thanks__next:hover {
  background: #1e7f75;
}
.slider-thanks__prev .icon, .slider-thanks__next .icon {
  width: 2rem;
  height: 2rem;
  stroke: #fff;
}
.slider-thanks__prev {
  left: 0;
}
.slider-thanks__next {
  right: 0;
  border-radius: 2rem 0px;
}
.slider-thanks__dots {
  display: none;
}
.slider-thanks .page__h1 {
  margin-bottom: 5.6rem;
}

@media (max-width: 899.98px) {
  .slider-thanks .swiper-slide {
    width: 50%;
  }
  .slider-thanks__btns {
    display: none;
  }
  .slider-thanks__dots {
    display: block;
  }
  .slider-thanks .page__h1 {
    margin-bottom: 24px;
  }
}
@media (max-width: 499.98px) {
  .slider-thanks .swiper:before, .slider-thanks .swiper:after {
    display: none;
  }
  .slider-thanks .swiper-slide {
    width: 100%;
  }
}
.slider-thumbs__main {
  position: relative;
}
.slider-thumbs__main__btns {
  display: none;
}
.slider-thumbs__tape {
  position: relative;
  margin-top: 3.2rem;
}
.slider-thumbs__tape .swiper-slide {
  margin-right: 0.8rem;
  width: 20%;
}
.slider-thumbs__tape .swiper-slide:last-child {
  margin-right: 0;
}
.slider-thumbs__tape .swiper-slide-thumb-active .slider-thumbs__image {
  box-shadow: inset 0 0 0 0.4rem #20877D;
}
.slider-thumbs__prev, .slider-thumbs__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0.8em 1.2em;
  border-radius: 0px 1em;
  border: 0;
  cursor: pointer;
  background: #20877D;
  font-size: 2rem;
}
.slider-thumbs__prev:hover, .slider-thumbs__next:hover {
  background: #1e7f75;
}
.slider-thumbs__prev .icon, .slider-thumbs__next .icon {
  width: 1em;
  height: 1em;
  stroke: #fff;
}
.slider-thumbs__prev {
  left: -1.5em;
}
.slider-thumbs__next {
  right: -1.5em;
  border-radius: 1em 0px;
}
.slider-thumbs__image {
  background: 50% 50%/cover no-repeat;
}
.slider-thumbs__image:before {
  content: " ";
  padding-top: 66%;
  display: block;
}
.slider-thumbs__overlay {
  width: 10%;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  height: 100%;
  display: none;
  pointer-events: none;
}
.slider-thumbs__overlay.active {
  display: block;
}
.slider-thumbs__overlay--left {
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.slider-thumbs__overlay--right {
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
  left: auto;
  right: 0;
}

@media (max-width: 899.98px) {
  .slider-thumbs__main__btns {
    display: block;
  }
  .slider-thumbs__tape {
    margin-top: 16px;
  }
  .slider-thumbs__tape__btns {
    display: none;
  }
  .slider-thumbs__prev, .slider-thumbs__next {
    font-size: 14px;
  }
  .slider-thumbs__prev {
    left: -0.5em;
  }
  .slider-thumbs__next {
    right: -0.5em;
  }
}
.slider-dots .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}
.slider-dots .slick-dots li {
  margin: 0 3px;
}
.slider-dots .slick-dots li.slick-active button:before {
  background: #20877D;
}
.slider-dots .slick-dots button {
  padding: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 0;
  overflow: hidden;
}
.slider-dots .slick-dots button:before {
  content: " ";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #20877D;
  padding: 0;
  background: transparent;
}
.slider-dots--dark-bg .slick-dots li.slick-active button:before {
  background: #fff;
}
.slider-dots--dark-bg .slick-dots li button:before {
  box-shadow: 0 0 0 1px #fff;
}

.contact__title {
  margin-bottom: 2.4rem;
  font-weight: 500;
  font-size: 24px;
  line-height: 135%;
}
.contact__label {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
  line-height: 135%;
  color: #B7B7B7;
}
.contact__name {
  font-weight: 500;
  font-size: 2rem;
  line-height: 135%;
  color: #20877D;
}
.contact__list {
  margin-top: 1.6rem;
}
.contact__item {
  margin-top: 0.8rem;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 899.98px) {
  .contact__title {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .contact__label {
    margin-bottom: 4px;
    font-size: 12px;
  }
  .contact__list {
    margin-top: 16px;
  }
  .contact__name {
    font-size: 16px;
  }
  .contact__item {
    margin-top: 8px;
    font-size: 14px;
  }
}
.popup {
  position: fixed;
  z-index: 100;
  overflow: auto;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 4rem;
  background: #fff;
  display: none;
}
.popup.active {
  display: block;
}
.popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 1rem;
  background: none;
  border: 0;
  cursor: pointer;
}
.popup__close .icon {
  width: 2rem;
  height: 2rem;
  stroke: #000;
}

.news-list__item {
  display: flex;
  align-items: flex-start;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E1E1E1;
  margin-bottom: 2rem;
}
.news-list__item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}
.news-list__image {
  flex: 0 0 auto;
  width: 40%;
  max-width: 340px;
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
}
.news-list__desc {
  flex-grow: 1;
  padding-left: 3.2rem;
  align-self: flex-end;
}
.news-list__date {
  position: absolute;
  left: 0;
  bottom: 10%;
  padding: 1em 1.5em;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 155%;
  color: #20877D;
}
.news-list__title {
  margin-top: 1.6rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 150%;
}

@media (max-width: 899.98px) {
  .news-list__title {
    font-size: 16px;
    line-height: 135%;
  }
}
@media (max-width: 599.98px) {
  .news-list__item {
    display: block;
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 32px;
  }
  .news-list__image {
    width: auto;
    max-width: none;
  }
  .news-list__title {
    margin: 24px 0;
  }
  .news-list__desc {
    padding-left: 0;
    display: flex;
    flex-direction: column-reverse;
  }
}
.news-tiles__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.2rem;
}
.news-tiles__col {
  flex: 0 0 auto;
  width: 33.33%;
  padding: 0 1.2rem;
  margin-top: 4rem;
}
.news-tiles__col:nth-child(-n+3) {
  margin-top: 0;
}
.news-tiles__item {
  position: relative;
}
.news-tiles__image {
  position: relative;
  background-position: 50% 50%;
  background-size: cover;
}
.news-tiles__date {
  position: absolute;
  left: 0;
  bottom: 10%;
  padding: 1em 1.5em;
  background: #FFFFFF;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 155%;
  color: #20877D;
}
.news-tiles__name {
  margin: 1.6rem 0;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 140%;
}
.news-tiles__image + .news-tiles__name {
  margin-top: 3.2rem;
}
.news-tiles__name a {
  display: block;
}
.news-tiles__media {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 150%;
  color: #20877D;
}
.news-tiles__tags {
  margin-top: 2.4rem;
}

@media (max-width: 899.98px) {
  .news-tiles__name {
    margin: 24px 0;
    font-size: 16px;
  }
  .news-tiles__date {
    font-size: 14px;
  }
}
.albums-tiles--full .albums-tiles__col {
  width: 50%;
}
.albums-tiles__row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.2rem;
  margin-top: -2rem;
}
.albums-tiles__col {
  margin-top: 2rem;
  padding: 0 1.2rem;
  flex: 0 0 auto;
  width: 33.33%;
  display: flex;
}
.albums-tiles__item {
  flex-grow: 1;
  position: relative;
  background-size: cover;
  background-position: 50% 50%;
  min-height: 280px;
  overflow: hidden;
}
.albums-tiles__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}
.albums-tiles__flower {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/albums/flower.svg) -5rem -5rem/110% auto no-repeat;
}
.albums-tiles__desc {
  position: relative;
  z-index: 10;
  padding: 3.2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}
.albums-tiles__date {
  margin-bottom: 1.6rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 155%;
}
.albums-tiles__title {
  margin-top: auto;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 135%;
}
.albums-tiles__count {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 135%;
}

@media (max-width: 899.98px) {
  .albums-tiles__col {
    width: 50%;
  }
  .albums-tiles__title {
    font-size: 20px;
  }
}
@media (max-width: 499.98px) {
  .albums-tiles__row {
    margin-top: -12px;
  }
  .albums-tiles__col {
    width: 100% !important;
    margin-top: 12px;
  }
  .albums-tiles__desc {
    padding: 32px;
  }
}
.results__item {
  padding: 4rem 0;
  border-bottom: 1px solid #E1E1E1;
}
.results__item:last-child {
  border: 0;
}
.results__date {
  margin-bottom: 2.4rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 135%;
  color: #3D3D3D;
}
.results__title {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 135%;
  color: #20877D;
}
.results__text {
  margin-top: 1.6rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 155%;
  color: #3D3D3D;
}

@media (max-width: 899.98px) {
  .results__item {
    padding: 24px 0;
  }
  .results__date {
    font-size: 14px;
  }
}
.burger {
  display: none;
  position: fixed;
  z-index: 200;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  background: #20877D;
  padding: 0 0 50px 0;
  min-width: 320px;
}
.burger__locked {
  overflow: hidden;
}
.burger.active {
  display: block;
}
.burger__logo {
  font-weight: 500;
  font-size: 10px;
  line-height: 120%;
  text-transform: uppercase;
  color: #FFFFFF;
}
.burger__help {
  margin-top: 24px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.1666666667;
  color: #FFFFFF;
}
.burger__help > div {
  margin-top: 12px;
}
.burger__help > div:first-child {
  margin-top: 0;
}
.burger__touch {
  margin-top: 90px;
  color: #fff;
}
.burger__touch__title {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #4EAEA5;
}
.burger__touch__desc > div {
  margin-top: 8px;
  font-size: 12px;
  line-height: 150%;
  color: #F4F4F4;
}
.burger__touch__desc > div:first-child {
  margin-top: 0;
}
.burger__social {
  display: flex;
  margin-top: 24px;
}
.burger__social a {
  margin-right: 16px;
}
.burger__social a .icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.burger__icons {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 26px;
}
.burger__btn-lang, .burger__btn-eye, .burger__btn-person {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: none;
  padding: 0;
  width: 44px;
  height: 44px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  cursor: pointer;
  color: #fff;
}
.burger__btn-lang .icon, .burger__btn-eye .icon, .burger__btn-person .icon {
  fill: #fff;
  width: 1em;
  height: 1em;
}
.burger__btn-eye {
  font-size: 22px;
}
.burger .header__main {
  background: transparent;
  padding-bottom: 0;
}
.burger .header__name {
  color: #fff;
}
.burger .header__name span {
  color: #fff;
}
.burger .header__tools .icon {
  fill: #fff;
}
.burger .header__btn-menu i {
  background: #fff;
}

@media (min-width: 900px) {
  .burger {
    display: none !important;
  }
  .burger__locked {
    overflow: auto;
  }
}
.submenu {
  position: absolute;
  z-index: 100;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0px 1rem 1.5rem rgba(0, 0, 0, 0.02);
  padding: 5.3rem;
  display: none;
}
.submenu.active {
  display: block;
}
.submenu__row {
  display: flex;
}
.submenu__title {
  flex: 0 0 40%;
  padding-right: 5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 4rem;
  line-height: 135%;
  white-space: nowrap;
  color: #20877D;
}
.submenu__list {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-width: 25rem;
       column-width: 25rem;
  -moz-column-gap: 5rem;
       column-gap: 5rem;
  font-weight: 500;
  font-size: 14px;
  line-height: 135%;
  color: #000000;
}
.submenu__list > div {
  margin-bottom: 1.6rem;
}
@media (max-width: 899.98px) {
  .submenu {
    display: none;
  }
}
.l-index__read {
  margin-top: 15rem;
  margin-bottom: 16rem;
}
.l-index__read__row {
  display: flex;
}
.l-index__read__left {
  flex: 0 0 auto;
  width: 66.66%;
  padding-right: 8rem;
}
.l-index__read__right {
  flex: 0 0 auto;
  width: 33.33%;
}
.l-index__read__right .page__h3 {
  margin-top: 2rem;
  margin-bottom: 4.6rem;
}
.l-index__news__row {
  display: flex;
  margin: 0 -1rem;
}
.l-index__news__col {
  flex: 0 0 auto;
  width: 50%;
  padding: 0 1rem;
}
.l-index__news__sep {
  margin: 4rem 0;
  border-top: 1px solid #E1E1E1;
}
.l-index__programs {
  margin: 16rem 0;
}
.l-index__digits {
  padding-top: 100px;
  background: #F8F8F8;
}
.l-index__digits .page__h1 {
  margin-bottom: 7rem;
}
.l-index__faq {
  padding: 20rem 0;
  background: #f8f8f8;
}

@media (max-width: 899.98px) {
  .l-index__read {
    margin-top: 60px;
    margin-bottom: 80px;
  }
  .l-index__read__row {
    display: block;
  }
  .l-index__read__left {
    padding-right: 0;
    width: auto;
  }
  .l-index__read__right {
    width: auto;
    margin-top: 80px;
  }
  .l-index__read__right .page__h3 {
    margin-top: 0;
    margin-bottom: 24px;
  }
  .l-index__programs {
    margin-top: 80px;
    margin-bottom: 60px;
  }
  .l-index__digits {
    padding-top: 60px;
  }
  .l-index__digits .page__h1 {
    margin-bottom: 32px;
  }
  .l-index__faq {
    padding: 80px 0;
  }
}
@media (max-width: 499.98px) {
  .l-index__news__row {
    display: block;
    margin-top: 32px;
  }
  .l-index__news__col {
    width: auto;
    margin-top: 32px;
  }
  .l-index__news__col:first-child {
    margin-top: 0;
  }
  .l-index__news__sep {
    display: none;
  }
}
.l-coming__main {
  margin-bottom: 15rem;
}
.l-coming__main__row {
  display: flex;
}
.l-coming__main__left {
  flex: 0 0 auto;
  width: 400px;
}
.l-coming__main__right {
  margin-top: 3.2rem;
  padding-left: 8rem;
  flex-grow: 1;
}
.l-coming__search {
  margin-bottom: 4rem;
  display: none;
}
.l-coming__search__btn {
  margin-top: 1rem;
}

@media (max-width: 1199.98px) {
  .l-coming__main__row {
    display: block;
  }
  .l-coming__main__left {
    display: none;
  }
  .l-coming__main__right {
    padding-left: 0;
    width: auto;
  }
  .l-coming__search {
    display: block;
    margin-bottom: 35px;
  }
}
@media (max-width: 899.98px) {
  .l-coming__main {
    margin-bottom: 80px;
  }
}
.l-about-us__reg-docs {
  margin: 10rem 0;
}
.l-about-us__reports {
  margin-top: 14rem;
  margin-bottom: 12rem;
}
.l-about-us__thanks {
  padding-top: 160px;
  background: #fff;
}
.l-about-us__speakers {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 20rem 0;
}
.l-about-us__speakers__flower {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  min-width: 170px;
  background: url(../img/speakers/flower.svg) 50% 50%/contain no-repeat;
  transform: translateY(-5%);
}
.l-about-us__speakers__flower:before {
  content: " ";
  padding-top: 145%;
  display: block;
}
.l-about-us__speakers__content {
  position: relative;
}
.l-about-us__select {
  display: none;
}

@media (max-width: 899.98px) {
  .l-about-us__reg-docs {
    margin: 80px 0;
  }
  .l-about-us__reports {
    margin: 80px 0;
  }
  .l-about-us__reports__docs {
    margin: 0 -14px;
  }
  .l-about-us__thanks {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l-about-us__speakers {
    padding: 60px 0 80px 0;
    background: #F8F8F8;
  }
  .l-about-us__speakers__flower {
    background-image: url(../img/speakers/flower--small.svg);
    transform: translateY(-45%);
  }
  .l-about-us__select {
    display: block;
    margin-bottom: 24px;
  }
}
.l-contacts__main {
  margin-bottom: 15rem;
}

@media (max-width: 899.98px) {
  .l-contacts__main {
    margin-bottom: 80px;
  }
}
.l-media__main {
  margin-bottom: 15rem;
}

@media (max-width: 899.98px) {
  .l-media__main {
    margin-bottom: 80px;
  }
}
.l-gallery__main {
  margin-bottom: 15rem;
}
.l-gallery__main__photos {
  margin: 6.4rem 0;
}

@media (max-width: 899.98px) {
  .l-gallery__main {
    margin-bottom: 80px;
  }
  .l-gallery__main__photos {
    margin-top: 32px;
    margin-bottom: 40px;
  }
}
.l-creative__about {
  margin: 10rem 0;
}
.l-creative__about__row {
  display: flex;
}
.l-creative__about__left {
  flex-grow: 1;
  padding-right: 8rem;
}
.l-creative__about__right {
  flex: 0 0 auto;
  width: 32rem;
}
.l-creative__digits {
  margin: 16rem 0;
}
.l-creative__reg-docs {
  background: #f8f8f8;
  padding: 10rem 0 20rem 0;
}

@media (max-width: 899.98px) {
  .l-creative__about {
    margin: 40px 0;
  }
  .l-creative__about__row {
    display: block;
  }
  .l-creative__about__left {
    padding-right: 0;
  }
  .l-creative__about__right {
    margin: 64px 0;
    width: auto;
  }
  .l-creative__digits {
    margin: 80px 0;
  }
  .l-creative__reg-docs {
    padding: 80px 0;
  }
}
.l-program__about {
  margin: 10rem 0 16rem 0;
}
.l-program__about__row {
  display: flex;
}
.l-program__about__left {
  flex: 0 0 auto;
  padding-right: 8rem;
  padding-top: 1rem;
  width: 40%;
}
.l-program__about__right {
  flex: 0 0 auto;
  width: 60%;
}
.l-program__about .page__h1 {
  display: inline-block;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #20877D;
  margin-bottom: 2.4rem;
}
.l-program__points {
  padding-top: 80px;
  padding-bottom: 120px;
  background: #F8F8F8;
}
.l-program__teachers {
  margin: 16rem 0;
}
.l-program__docs {
  margin-top: 16rem;
  margin-bottom: 15rem;
}
.l-program__docs__row {
  display: flex;
}
.l-program__docs__left {
  flex: 0 0 auto;
  padding-right: 8rem;
  width: 40%;
}
.l-program__docs__right {
  flex: 0 0 auto;
  width: 60%;
}
.l-program__docs__right .page__h1 {
  display: inline-block;
  border-bottom: 1px solid #20877D;
  padding-bottom: 1.6rem;
  margin-bottom: 2.4rem;
}
.l-program__docs__list {
  margin-top: 4rem;
  list-style: disc;
  list-style-position: inside;
  font-size: 2.4rem;
  line-height: 150%;
}
.l-program__docs__list a {
  color: #20877D;
}

@media (max-width: 899.98px) {
  .l-program__points {
    padding: 60px 0;
  }
  .l-program__about {
    margin-top: 60px;
    margin-bottom: 75px;
  }
  .l-program__about__row {
    flex-direction: column;
  }
  .l-program__about__left {
    order: 2;
    width: 100%;
    margin-top: 40px;
    padding-top: 0;
  }
  .l-program__about__right {
    order: 1;
    width: 100%;
  }
  .l-program__about__right .page__h1 {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .l-program__teachers {
    margin: 80px 0;
  }
  .l-program__docs {
    margin: 80px 0;
  }
  .l-program__docs__row {
    flex-direction: column;
  }
  .l-program__docs__left {
    margin-top: 80px;
    width: 100%;
    padding-right: 0;
    order: 2;
  }
  .l-program__docs__right {
    width: 100%;
    order: 1;
  }
  .l-program__docs__right .page__h1 {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .l-program__docs__list {
    font-size: 14px;
    margin-top: 24px;
  }
}
.l-news__main {
  margin-bottom: 15rem;
}
.l-news__main__row {
  display: flex;
}
.l-news__main__left {
  flex: 0 0 auto;
  width: 400px;
}
.l-news__main__right {
  padding-left: 8rem;
  flex-grow: 1;
}
.l-news__search {
  margin-bottom: 4rem;
  display: none;
}
.l-news__search__btn {
  margin-top: 1rem;
}

@media (max-width: 1199.98px) {
  .l-news__main__row {
    display: block;
  }
  .l-news__main__left {
    display: none;
  }
  .l-news__main__right {
    padding-left: 0;
    width: auto;
  }
  .l-news__search {
    display: block;
    margin-bottom: 35px;
  }
}
@media (max-width: 899.98px) {
  .l-news__main {
    margin-bottom: 80px;
  }
}
.l-news-item__main {
  margin-bottom: 15rem;
}
.l-news-item__main__row {
  display: flex;
}
.l-news-item__main__left {
  flex: 0 0 auto;
  width: 20rem;
}
.l-news-item__main__center {
  flex: 0 0 auto;
  width: calc(100% - 50rem);
  padding: 0 3.5rem;
}
.l-news-item__main__right {
  flex: 0 0 auto;
  width: 30rem;
}
.l-news-item__date {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 135%;
  color: #3D3D3D;
}
.l-news-item__tags {
  margin-bottom: 2rem;
}
.l-news-item__article {
  padding: 4rem;
  background: #FFFFFF;
  box-shadow: 0px 0px 1.5rem rgba(0, 0, 0, 0.05);
  border-radius: 0.4rem;
}
.l-news-item__gallery {
  margin-top: 4rem;
}

@media (max-width: 899.98px) {
  .l-news-item__main {
    margin-bottom: 80px;
  }
  .l-news-item__main__row {
    flex-direction: column;
  }
  .l-news-item__main__left {
    width: auto;
  }
  .l-news-item__main__center {
    width: auto;
    padding: 0;
    order: 2;
  }
  .l-news-item__main__right {
    margin-top: 0;
    margin-bottom: 24px;
    width: auto;
    order: 1;
  }
  .l-news-item__main .page__h3 {
    margin-bottom: 16px;
  }
  .l-news-item__date {
    margin-bottom: 24px;
  }
  .l-news-item__tags {
    margin-bottom: 24px;
  }
  .l-news-item__gallery {
    margin-top: 24px;
  }
}
@media (max-width: 599.98px) {
  .l-news-item__article {
    padding: 16px;
  }
}
.l-press__read {
  margin-bottom: 15rem;
}
.l-press__media {
  margin-bottom: 10rem;
}
.l-press__albums {
  background: #f8f8f8;
  padding-top: 10rem;
  padding-bottom: 20rem;
}

@media (max-width: 899.98px) {
  .l-press__read {
    margin-bottom: 80px;
  }
  .l-press__media {
    margin-bottom: 60px;
  }
  .l-press__albums {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
.l-albums__main {
  margin-bottom: 15rem;
}
.l-albums__main__row {
  display: flex;
}
.l-albums__main__left {
  flex: 0 0 auto;
  width: 400px;
}
.l-albums__main__right {
  padding-left: 8rem;
  flex-grow: 1;
}

@media (max-width: 1199.98px) {
  .l-albums__main__row {
    display: block;
  }
  .l-albums__main__left {
    display: none;
  }
  .l-albums__main__right {
    padding-left: 0;
    width: auto;
  }
}
@media (max-width: 899.98px) {
  .l-albums__main {
    margin-bottom: 80px;
  }
}
.l-search__main {
  margin-bottom: 15rem;
}
.l-search__form {
  margin-bottom: 6.4rem;
}
.l-search__results {
  max-width: 1100px;
}

@media (max-width: 899.98px) {
  .l-search__main {
    margin-bottom: 80px;
  }
  .l-search__form {
    margin-bottom: 32px;
  }
}
.l-programs__main {
  margin-bottom: 15rem;
}
.l-programs__main__row {
  display: flex;
}
.l-programs__main__left {
  flex: 0 0 auto;
  width: 400px;
}
.l-programs__main__right {
  padding-left: 4rem;
  flex-grow: 1;
}
.l-programs__search {
  margin-bottom: 4rem;
}
.l-programs__search__btn {
  margin-top: 1rem;
  display: none;
}

@media (max-width: 1199.98px) {
  .l-programs__main__row {
    display: block;
  }
  .l-programs__main__left {
    display: none;
  }
  .l-programs__main__right {
    padding-left: 0;
    width: auto;
  }
  .l-programs__search {
    margin-bottom: 35px;
  }
  .l-programs__search__btn {
    display: block;
  }
}
@media (max-width: 899.98px) {
  .l-programs__main {
    margin-bottom: 80px;
  }
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #EFEFEF;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
}
.nice-select .nice-select-dropdown {
  min-width: 100%;
}
.nice-select.theme-basic {
  height: 4rem;
  line-height: 3.8rem;
  font-size: 1.4rem;
  padding-left: 1.8rem;
  padding-right: 4rem;
  width: 100%;
}
.nice-select.theme-basic .option {
  font-size: 1.4rem;
  line-height: 4rem;
}
.nice-select.theme-basic .option.selected {
  font-weight: normal;
  color: #20877D;
}
.nice-select.theme-green {
  height: auto;
  width: 100%;
  white-space: normal;
  padding: 1em 3em 1em 1em;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.35;
}
.nice-select.theme-green .current {
  color: #20877D;
}
.nice-select.theme-green .option {
  padding: 1em;
  line-height: 1.35;
  font-weight: 500;
}
.nice-select.theme-green .option.selected {
  font-weight: 500;
}

@media (max-width: 899.98px) {
  .nice-select.theme-green {
    font-size: 16px;
  }
}
@media (max-width: 1600px) {
  :root {
    --side-padding: 40px;
    --color-green: #20877D;
  }
}
@media (max-width: 899.98px) {
  :root {
    --side-padding: 10px;
  }

  html {
    font-size: 9px;
  }
}