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

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

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

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

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.container {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.container-fluid {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}

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

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 10px;
  min-width: 320px;
  text-rendering: optimizeLegibility;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #fff;
  word-wrap: break-word;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}

.lock {
  overflow: hidden;
}

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

picture {
  display: block;
}

svg {
  fill: currentColor;
}

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

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

textarea {
  resize: vertical;
}

input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"]::-ms-clear,
input[type="text"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  margin: 0;
}

p {
  margin: 0;
}

.h1,
.h2,
.h3a,
.h3,
.h4,
.h5,
.h6 {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.h1 {
  font-size: 10rem;
  font-weight: 700;
  text-transform: uppercase;
}

.h2 {
  font-size: 5rem;
  font-weight: 600;
}

.h3 {
  font-size: 4rem;
}

.h4 {
  font-size: 3rem;
}

.h5 {
  font-size: 2rem;
}

.h6 {
  font-size: 1.5rem;
}

.text {
  color: #000;
}

.button {
  font: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  background-color: transparent;
  color: inherit;
  font-weight: 700;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(251, 192, 45, 0.5);
          box-shadow: 0px 0px 50px 0px rgba(251, 192, 45, 0.5);
  color: #000;
  cursor: pointer;
  padding: 1.5rem 2rem;
  text-transform: uppercase;
  min-width: 25rem;
  background-color: #fab300;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button._reverse {
  border: 0.1rem solid #fff;
  background-color: transparent;
  color: #fff;
}

.button._reverse:hover {
  color: #fab300;
  background-color: #000;
  border-color: #000;
}

.button:hover {
  color: #fab300;
  background-color: #000;
}

@-webkit-keyframes width {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  50% {
    -webkit-transform: scaleX(0.1);
            transform: scaleX(0.1);
  }

  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes width {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }

  50% {
    -webkit-transform: scaleX(0.1);
            transform: scaleX(0.1);
  }

  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@-webkit-keyframes mainBlock {
  0% {
    width: 0;
    left: 0;
  }

  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

@keyframes mainBlock {
  0% {
    width: 0;
    left: 0;
  }

  50% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 0;
    left: 100%;
  }
}

@-webkit-keyframes mainFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes mainFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.slider {
  overflow: hidden;
}

.slider__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.slider__navigation-button {
  font: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  color: #fff;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.slider__navigation-button._disabled {
  opacity: 0.2;
  pointer-events: none;
}

.slider__navigation-button.swiper-button-lock {
  opacity: 0;
}

.slider__navigation-button svg {
  margin: 0 2rem;
  width: 4rem;
  height: 4rem;
}

.slider__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}

.slider__pagination .bullet {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  margin: 0 0.5rem;
  opacity: 0.2;
}

.slider__pagination ._active {
  opacity: 1;
}

.section__inner {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4rem;
}

.section__header .section__title {
  width: 100%;
}

.section__title {
  text-align: center;
  color: #fff;
}

.section__title._black {
  color: #000;
}

.section__title._accent {
  color: #fab300;
}

.header__fixed {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #f0f0f0;
}

.header__inner {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navigation__list {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -2rem;
}

.navigation__item {
  margin: 0 2rem;
}

.navigation__link {
  color: inherit;
  text-decoration: none;
  font-size: 2rem;
}

.lang-select {
  font-size: 2rem;
}

.general {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.general__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.general__bg video,
.general__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.general__bg-filter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}

.general__inner {
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  padding: 15rem 0;
}

.general__phone {
  position: absolute;
  top: 4rem;
  right: 0;
  color: #fff;
  text-decoration: none;
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.general__phone:hover {
  color: #fab300;
}

.general__phone svg {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}

.general__date {
  font-size: 1.8rem;
  display: inline-block;
  position: absolute;
  top: 10rem;
}

.general__top {
  position: relative;
  margin-bottom: 3rem;
}

.general__top:before {
  content: '';
  position: absolute;
  height: 100%;
  background: #fab300;
  -webkit-animation: mainBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) both;
          animation: mainBlock 2s cubic-bezier(0.74, 0.06, 0.4, 0.92) both;
}

.general__title {
  line-height: 1;
  color: #fff;
  -webkit-animation: mainFadeIn 2s both;
          animation: mainFadeIn 2s both;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.general__title ._yellow {
  color: #fab300;
}

.general__title ._dot {
  display: inline-block;
  -webkit-animation: bounceInDown 0.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) both;
          animation: bounceInDown 0.8s cubic-bezier(0.74, 0.06, 0.4, 0.92) both;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.general__date-decoration {
  display: block;
  height: 0.1rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  -webkit-animation-name: width;
          animation-name: width;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.general__description {
  font-size: 1.8rem;
  margin-bottom: 4rem;
  -webkit-animation: mainFadeIn 2s both;
          animation: mainFadeIn 2s both;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.general__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -1rem -2rem;
  -webkit-animation: mainFadeIn 2s both;
          animation: mainFadeIn 2s both;
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.general__button {
  margin: 1rem 2rem;
}

.awards {
  background-color: #000;
}

.awards__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -2rem -2rem 5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.awards__item-wrap {
  padding: 2rem;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.awards__slider-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.awards__slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.awards__button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-user {
  background-color: #f0f0f0;
  -webkit-box-shadow: 0 1rem 2rem rgba(153, 122, 92, 0.297285);
          box-shadow: 0 1rem 2rem rgba(153, 122, 92, 0.297285);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 50rem;
  width: 100%;
  margin: 0 auto;
}

.card-user__top {
  background-color: #fab300;
  -webkit-box-shadow: 0 1rem 2rem rgba(153, 122, 92, 0.297285);
          box-shadow: 0 1rem 2rem rgba(153, 122, 92, 0.297285);
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  margin-bottom: -4rem;
}

.card-user__name {
  font-size: 3rem;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
  position: relative;
  z-index: 3;
}

.card-user__img-wrap {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 80%;
  padding-top: 100%;
  z-index: 2;
}

.card-user__img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.card-user__description {
  margin-top: -6rem;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #fff;
  background-color: #000;
  border-radius: 1rem;
  padding: 8rem 4rem 1.5rem 3rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.card-user__description-text {
  margin-bottom: 1.5rem;
}

.card-user__description-img-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card-user__description-img-line img {
  max-height: 7rem;
  max-width: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0.3rem;
}

.for-whom {
  background-color: #fab300;
}

.card-for-whom {
  padding: 2rem 1rem;
  width: 40rem;
  background-color: #fff;
  border-radius: 1rem;
}

.card-for-whom__img-wrap {
  border-radius: 1rem;
  overflow: hidden;
}

.card-for-whom__img-wrap img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.card-for-whom__title {
  font-size: 3rem;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin: 2rem 0;
}

.card-for-whom__description {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #000;
  text-align: center;
}

.partners {
  background-color: #fff;
}

.partners__list-wrap {
  overflow: hidden;
}

.partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.2rem -0.4rem;
}

.partners__list._info {
  margin: -0.2rem -0.5rem;
}

.partners__item {
  -ms-flex-preferred-size: 33.3333%;
      flex-basis: 33.3333%;
  padding: 2rem;
  border: 1px solid #d3d3d3;
  background-color: #fff;
  margin-right: -1px;
  margin-bottom: -1px;
}

.partners__item._info {
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}

.partners__item-img-wrap {
  position: relative;
}

.partners__item-img-wrap:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.partners__item-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

.history {
  background-color: #000;
}

.history__content {
  position: relative;
}

.history__content::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: 50%;
  margin-left: -0.3rem;
  width: 0.6rem;
  height: calc(100% - 6.5rem);
  background: #fab300;
}

.history__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2.4rem 0;
}

.history__row._year {
  padding: 3rem 0;
}

.history__row:first-child {
  padding-top: 0;
}

.history__row:last-child {
  padding-bottom: 0;
}

.history__year {
  position: relative;
  z-index: 5;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 23rem;
  min-height: 7rem;
  padding: 1rem 2rem;
  background: #fab300;
  border-radius: 1rem;
  color: #000;
  font-size: 2rem;
  text-align: center;
}

.history__item-wrap {
  position: relative;
  width: 52rem;
}

.history__item-wrap:first-child {
  padding-right: 10rem;
}

.history__item-wrap:last-child:not(:first-child) {
  margin-top: 14rem;
  padding-left: 10rem;
}

.history__item-wrap:first-child:last-child {
  padding-left: 5rem;
  padding-right: 5rem;
}

.history__item-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 0.2rem;
  background: #fab300;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.history__item-wrap:last-child::before {
  right: auto;
  left: 0;
}

.history__item-wrap::after {
  content: '';
  position: absolute;
  top: -1.2rem;
  right: -1.3rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #fab300;
}

.history__item-wrap:last-child::after {
  right: auto;
  left: -1.3rem;
}

.history__item-wrap:last-child:first-child::before {
  left: 5rem;
  width: calc(100% - 10rem);
  -webkit-transform-origin: center !important;
      -ms-transform-origin: center !important;
          transform-origin: center !important;
}

.history__item-wrap:last-child:first-child::after {
  right: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.history__item {
  padding: 4.5rem 3rem;
  background: white;
}

.history__item-title {
  color: #000;
  margin: 0 0 2.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}

.history__item-img-wrap {
  margin-bottom: 2.5rem;
  line-height: 0;
}

.history__item-img {
  width: 100%;
}

.history__end {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #fab300;
}

.about-us {
  background-color: #333333;
}

.about-us__slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about-us-video {
  background-color: #fab300;
}

.about-us-video__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-us-video__slide img,
.about-us-video__slide video {
  width: 70rem;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.telegram {
  background-color: #fab300;
  background-image: url("../img/svg/telegram-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.telegram__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3rem 10rem 3rem 1rem;
}

.telegram__description {
  color: #000000;
  font-size: 5rem;
  line-height: 1.15;
}

.telegram__ico-wrap {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: 3rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 17rem;
  height: 17rem;
  border-radius: 50%;
  border: 1.7rem solid #fff;
  position: relative;
}

.telegram__ico {
  width: 100%;
  height: 100%;
}

.telegram__arrow-decoration {
  position: absolute;
  bottom: -6rem;
  right: 120%;
  width: 13rem;
  height: 6.5rem;
  -webkit-transform: rotate(-20deg);
      -ms-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.place__title-description {
  color: #000000;
  font-size: 2.8rem;
  line-height: 1.55;
  text-align: center;
  margin-bottom: 4rem;
}

.place__content-img-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -2rem 4rem;
}

.place__content-img-wrap {
  width: 50%;
  margin: 0 2rem;
  position: relative;
}

.place__content-img-wrap::before {
  content: '';
  display: block;
  margin-top: 70%;
}

.place__content-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.place__content-btn-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price {
  background-color: #000;
}

.price__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -1rem;
}

.price__item-wrap {
  width: 383.33333333px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1rem;
}

.price__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  -webkit-box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.price__item-price {
  text-align: center;
  padding: 4rem 2rem;
}

.price__item-price._gold {
  background-color: #e4ae28;
}

.price__item-price._green {
  background-color: #3ea03e;
}

.price__item-price._purple {
  background-color: #dfdcd9;
}

.price__item-price-title {
  margin-bottom: 1rem;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1;
}

.price__item-price-old {
  margin-bottom: 0.4rem;
  text-decoration: line-through;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}

.price__item-price-actual {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}

.price__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2rem 0;
}

.price__program-list {
  font-size: 1.6rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.price__program-item {
  padding: 1rem 2rem;
  background-color: #f3f3f3;
  color: #000;
}

.price__program-item:nth-child(2n+1) {
  background-color: #fff;
}

.contacts {
  background-color: #000;
  overflow: hidden;
}

.contacts__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -2rem 0;
}

.contacts__inner > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin: 2rem 0;
}

.contacts__map-wrap {
  position: relative;
}

.contacts__map-wrap:before {
  content: '';
  display: block;
  padding-top: 60%;
}

.contacts__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contacts__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 25px 2rem 7rem;
}

.contacts__title {
  text-align: left;
  margin-bottom: 2rem;
}

.contacts__info-list {
  padding: 0;
  margin: 0 0 2rem 0;
  list-style: none;
}

.contacts__info-item {
  font-size: 2rem;
}

.contacts__info-item-link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.contacts__info-item-link:hover {
  color: #fab300;
}

.contacts__socials {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.contacts__socials svg {
  height: 2rem;
  width: 3rem;
}

.contacts__social-link {
  color: inherit;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.contacts__social-link:hover {
  color: #fab300;
}

.contacts__developers {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.contacts__developers img {
  width: 10rem;
  margin-left: 1rem;
}

.modal {
  padding: 3rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: auto;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
  pointer-events: none;
}

.modal._active {
  opacity: 1;
  pointer-events: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__body {
  width: 45rem;
  max-width: 100%;
  background: #fff;
  margin: auto;
  border-radius: 1rem;
}

.modal__body._wide {
  width: 95rem;
}

.modal__top {
  padding: 2rem 6rem 0;
  margin-bottom: 0.5rem;
  position: relative;
}

.modal__title {
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
  color: #000;
}

.modal__btn-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font: inherit;
  border: 0;
  outline: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-decoration: none;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  width: 3.6rem;
  height: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal__btn-close svg {
  color: #f0f0f0;
  width: 1.1rem;
  height: 1.1rem;
}

.modal-call {
  padding: 2rem;
}

.modal-call__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal-call__input {
  padding: 1rem 2rem;
  font-size: 2rem;
  margin-bottom: 2rem;
  outline: none;
  border: none;
  background-color: #f3f3f3;
  border-radius: 1rem;
}

.modal-call__description {
  font-size: 4rem;
  font-weight: 700;
  color: black;
  text-align: center;
}

.modal-call__button {
  margin-top: 2rem;
  -ms-flex-item-align: center;
      align-self: center;
}

.footer {
  background-color: #000;
}

.footer__inner {
  padding: 3rem 0;
}

.footer__navigation-list {
  margin: 0 -5rem;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__navigation-item {
  margin: 1rem 2rem;
}

.footer__navigation-link {
  color: inherit;
  text-decoration: none;
  font-size: 1.6rem;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.footer__navigation-link:hover {
  color: #fab300;
}

@media (min-width: 992px) {
  .slider__navigation-button:hover {
    color: #000;
  }

  .price__item:hover {
    -webkit-transform: scale(1.07);
        -ms-transform: scale(1.07);
            transform: scale(1.07);
  }
}

@media screen and (max-width: 1200px) {
  .d-lg-none {
    display: none !important;
  }

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

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

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (max-width: 992px) {
  .d-md-none {
    display: none !important;
  }

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

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

  .d-md-inline {
    display: inline !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .history__content {
    max-width: 50rem;
    margin: 0 auto;
  }

  .history__content::before {
    top: 3.2rem;
    width: 0.2rem;
    margin-left: -0.1rem;
    height: calc(100% - 4.5rem);
  }

  .history__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }

  .history__row._year {
    padding: 0 0 4rem;
  }

  .history__year {
    width: 6.4rem;
    height: 6.4rem;
    font-size: 2.2rem;
  }

  .history__item-wrap {
    width: 100%;
    padding: 0 !important;
    margin: 0 0 4rem !important;
  }

  .history__item-wrap::before {
    left: 0 !important;
    width: 100% !important;
  }

  .history__item-wrap::after {
    top: -0.9rem;
    right: auto !important;
    left: 50% !important;
    margin-left: -0.9rem;
    -webkit-transform: translateX(0) !important;
        -ms-transform: translateX(0) !important;
            transform: translateX(0) !important;
    width: 1.8rem;
    height: 1.8rem;
  }

  .history__item-title {
    margin-bottom: 1.8rem;
  }

  .history__item {
    padding: 2rem 1.8rem;
  }

  .history__end {
    width: 2.6rem;
    height: 2.6rem;
  }
}

@media (max-width: 992px) {
  .h1 {
    font-size: 7rem;
  }

  .h2 {
    font-size: 3rem;
  }

  .telegram__content {
    padding: 1.5rem 7rem 1.5rem 1rem;
  }

  .telegram__description {
    font-size: 3rem;
  }

  .telegram__ico-wrap {
    margin-left: 1.5rem;
    width: 13rem;
    height: 13rem;
    border-width: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .d-sm-none {
    display: none !important;
  }

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

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

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: calc(25px / 2);
    padding-right: calc(25px / 2);
  }

  .container-fluid {
    padding-left: calc(25px / 2);
    padding-right: calc(25px / 2);
  }

  .h1 {
    font-size: 4rem;
  }

  .h2 {
    font-size: 3rem;
  }

  .section__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .general__title {
    margin-bottom: 2rem;
  }

  .general__description {
    font-size: 1.4rem;
  }

  .general__phone {
    position: absolute;
    font-size: 1.6rem;
  }

  .awards__slider {
    margin-bottom: 2rem;
  }

  .awards__item-wrap {
    width: 100%;
  }

  .card-user__name {
    font-size: 2.5rem;
  }

  .partners__item {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding: 2rem;
    border: 1px solid #d3d3d3;
    background-color: #fff;
    margin-right: -1px;
    margin-bottom: -1px;
  }

  .partners__item._info {
    -ms-flex-preferred-size: 33.3333%;
        flex-basis: 33.3333%;
  }

  .telegram__content {
    padding: 0;
  }

  .telegram__description {
    font-size: 2rem;
  }

  .telegram__ico-wrap {
    margin-left: 1.5rem;
    width: 10rem;
    height: 10rem;
    border-width: 1rem;
  }

  .place__title-description {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }

  .place__content-img-row {
    margin: 0 -2rem 2rem;
  }

  .place__content-img-wrap {
    width: 100%;
  }

  .place__content-img-wrap:not(:first-child) {
    display: none;
  }

  .contacts__inner > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }

  .contacts__info {
    padding: 2rem 25px;
  }
}

@media screen and (max-width: 576px) {
  .d-xs-none {
    display: none !important;
  }

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

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

  .d-xs-inline {
    display: inline !important;
  }

  .d-xs-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xs-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}