@charset "UTF-8";
.btn-large {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e61d2b;
  width: 1012px;
  height: 183px;
  border: 2px solid #e61d2b;
  border-radius: 23px;
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  margin: 0 auto 150px;
}
.btn-large:hover {
  background: #fde8ea;
}
.btn-large:hover .arrow::before {
  width: 142px;
}
.btn-large:active {
  background: #e61d2b;
  color: #fff;
}
.btn-large:active .arrow::before {
  background: #fff;
}
.btn-large:active .arrow::after {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
}
.btn-large .arrow {
  position: relative;
  display: inline-block;
  width: 95px;
  height: 30px;
  margin-right: 50px;
}
.btn-large .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1px;
  display: block;
  width: 95px;
  height: 3px;
  background: #e61d2b;
}
.btn-large .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 1px;
  display: block;
  width: 17px;
  height: 17px;
  border-right: 3px solid #e61d2b;
  border-top: 3px solid #e61d2b;
}

.btn-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px 16px 100px;
  color: #e61d2b;
  border: 2px solid #e61d2b;
  border-radius: 88px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .btn-link {
    font-size: 21px;
    padding: 22px 37px 22px 105px;
    border-radius: 88px;
  }
}
.btn-link:hover:not(:active) {
  background: #fde8ea;
}
.btn-link:hover:not(:active) .arrow::before {
  width: 68px;
  right: 0;
}
.btn-link:hover:not(:active) .arrow::after {
  right: 0;
}
.btn-link:active {
  background: #e61d2b;
  color: #fff;
}
.btn-link:active .arrow::before {
  background: #fff;
}
.btn-link:active .arrow::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}
.btn-link .arrow {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}
.btn-link .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  display: block;
  width: 56px;
  height: 2px;
  background: #e61d2b;
}
.btn-link .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 12px;
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #e61d2b;
  border-top: 2px solid #e61d2b;
}

.btn-white {
  color: #fff;
  border: 2px solid #fff;
}
.btn-white:hover {
  background: #fde8ea;
}
.btn-white:active {
  color: #fff;
}
.btn-white:active .arrow::before {
  background: #fff;
}
.btn-white:active .arrow::after {
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
}

.faq {
  margin-bottom: 150px;
}
.faq h2 {
  margin-bottom: 50px;
}
.faq-collapse {
  font-size: 21px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  transition-duration: 300ms;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-collapse__wrap {
  border-top: 1px solid #dcdcdc;
}
.faq-collapse__header {
  display: flex;
  padding-top: 35px;
  padding-bottom: 35px;
  border-bottom: 1px solid #dcdcdc;
}
.faq-collapse__header-number {
  margin-right: 100px;
  flex-shrink: 0;
}
.faq-collapse__header-text {
  flex-grow: 1;
}
.faq-collapse__header-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: 100px;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-collapse__header-arrow svg {
  width: 100%;
}
.faq-collapse__content {
  overflow: hidden;
  opacity: 0;
  transition-duration: 300ms;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
}
.faq-collapse__open {
  background-color: #fde8ea;
}
.faq-collapse__open .faq-collapse__header {
  color: #e61d2b;
  transition-duration: 300ms;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  fill: #e61d2b;
}
.faq-collapse__open .faq-collapse__header-arrow {
  transform: rotate(90deg);
}
.faq-collapse__open .faq-collapse__content {
  opacity: 1;
  transition-duration: 300ms;
  transition-property: height;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid #dcdcdc;
  animation: display 2s linear;
}

.home-container {
  max-width: 1728px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 1200px) {
  .home-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (min-width: 1728px) {
  .home-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}

h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 45px;
  }
}

.home-about {
  padding-top: 20px;
}
@media screen and (min-width: 1200px) {
  .home-about {
    padding-top: 50px;
  }
}
.home-about__wrap {
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .home-about__wrap {
    display: flex;
    margin-bottom: 90px;
  }
  .home-about__left {
    width: 50%;
    flex-shrink: 0;
  }
}
.home-about__right {
  line-height: 1.3;
}
@media screen and (min-width: 1200px) {
  .home-about__right {
    padding-left: 112px;
  }
}
.home-about__right-text {
  padding-top: 30px;
  font-size: 16px;
  padding-bottom: 30px;
  margin-bottom: 23px;
}
@media screen and (min-width: 768px) {
  .home-about__right-text {
    font-size: 21px;
  }
}
@media screen and (min-width: 1200px) {
  .home-about__right-text {
    padding-top: 0;
  }
}
.home-about__details {
  display: grid;
  grid-gap: 20px;
  text-transform: uppercase;
  padding-bottom: 80px;
}
@media screen and (min-width: 576px) {
  .home-about__details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .home-about__details {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .home-about__details {
    padding-bottom: 150px;
  }
}
@media screen and (min-width: 1728px) {
  .home-about__details {
    grid-template-columns: repeat(6, 1fr);
  }
}
.home-about__details-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #d9d9d9;
  min-width: 238px;
  height: 68px;
  border-radius: 31px;
  font-weight: 600;
}
.home-about__details-title {
  font-size: 10px;
}
.home-project {
  color: #fff;
  margin-bottom: 80px;
  padding-top: 50px;
}
@media screen and (min-width: 1200px) {
  .home-project {
    margin-bottom: 150px;
    padding-top: 95px;
  }
  .home-project__wrap {
    display: flex;
  }
  .home-project__left {
    width: 50%;
    flex-shrink: 0;
  }
}
.home-project__right {
  font-size: 18px;
  line-height: 1.3;
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-project__right {
    font-size: 21px;
  }
}
@media screen and (min-width: 1200px) {
  .home-project__right {
    padding-top: 0;
    padding-left: 112px;
  }
}
.home-project__right p:not(:last-child) {
  padding-bottom: 20px;
}
.home-project__footer {
  margin-top: 50px;
  padding: 22px 50px;
  line-height: 1;
  background-color: #b81722;
  font-size: 21px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .home-project__footer {
    margin-top: 95px;
  }
}
.home-project__footer-wrap {
  animation: ticker 5s linear infinite;
  -webkit-transform-style: preserve-3d; /* Фикс возможного глюка с морганием в Сафари */
}
@media screen and (min-width: 768px) {
  .home-project__footer-wrap {
    animation: ticker 10s linear infinite;
  }
}
.home-project__footer-img {
  display: inline;
  vertical-align: baseline;
  margin-right: 10px;
  margin-left: 15px;
}
.home-project__footer-text {
  white-space: nowrap;
  -webkit-backface-visibility: hidden; /* Фикс возможного глюка с морганием в Сафари */
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.home-achievements {
  margin-bottom: 80px;
}
@media screen and (min-width: 1200px) {
  .home-achievements {
    margin-bottom: 150px;
  }
}
.home-achievements__wrap {
  display: grid;
  margin-top: 50px;
}
@media screen and (min-width: 576px) {
  .home-achievements__wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .home-achievements__wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-achievements__item {
  font-size: 18px;
  text-align: center;
  padding: 10px 10px 15px;
}
@media screen and (min-width: 576px) {
  .home-achievements__item:nth-child(2n+1) {
    border-right: 1px solid #e61d2b;
  }
}
@media screen and (min-width: 768px) {
  .home-achievements__item {
    font-size: 21px;
  }
}
@media screen and (min-width: 1200px) {
  .home-achievements__item:nth-child(2) {
    border-right: 1px solid #e61d2b;
  }
}
.home-achievements__item-num {
  font-size: 28px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .home-achievements__item-num {
    font-size: 40px;
  }
}
@media screen and (min-width: 992px) {
  .home-achievements__item-num {
    font-size: 45px;
  }
}
.home-choice {
  margin-bottom: 80px;
}
@media screen and (min-width: 1200px) {
  .home-choice {
    margin-bottom: 150px;
  }
}
.home-choice h2 {
  margin-bottom: 50px;
}
@media screen and (min-width: 1200px) {
  .home-choice h2 {
    max-width: 50%;
  }
}
.home-choice__wrap {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 576px) {
  .home-choice__wrap {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}
.home-choice__item {
  padding: 30px;
  border-width: 2px;
  border-style: solid;
  border-radius: 37px;
}
@media screen and (min-width: 1200px) {
  .home-choice__item {
    padding: 50px;
  }
}
.home-choice__item:hover {
  color: #fff;
}
.home-choice__item:hover img {
  filter: brightness(0) invert(1);
}
.home-choice__item-pink {
  color: #b62854;
  border-color: #b62854;
}
.home-choice__item-pink:hover {
  background-color: #b62854;
}
.home-choice__item-orange {
  color: #fc6538;
  border-color: #fc6538;
}
.home-choice__item-orange:hover {
  background-color: #fc6538;
}
.home-choice__item-blue {
  color: #4000f5;
  border-color: #4000f5;
}
.home-choice__item-blue:hover {
  background-color: #4000f5;
}
.home-choice__item-top {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .home-choice__item-top {
    margin-bottom: 60px;
  }
}
.home-choice__item-top img {
  max-width: 40px;
}
@media screen and (min-width: 1200px) {
  .home-choice__item-top img {
    max-width: 100%;
  }
}
.home-choice__item-text {
  margin-bottom: 30px;
}
.home-choice__item-text img {
  max-width: 180px;
}
@media screen and (min-width: 1200px) {
  .home-choice__item-text img {
    max-width: 100%;
  }
  .home-choice__item-text {
    margin-bottom: 54px;
  }
}
.home-choice__item-list {
  list-style: disc;
  margin-left: 20px;
}
.home-choice__item-list li {
  font-size: 15px;
  margin-bottom: 10px;
}
.home-history {
  margin-bottom: 80px;
}
@media screen and (min-width: 1200px) {
  .home-history {
    margin-bottom: 150px;
  }
}
.home-history h2 {
  margin-bottom: 65px;
}
@media screen and (min-width: 1200px) {
  .home-history h2 {
    max-width: 50%;
  }
}
.home-info__wrap {
  display: flex;
}
.home-info__left {
  position: relative;
  width: 495px;
  margin-right: 20px;
  flex-shrink: 0;
}
.home-info__left img {
  border-radius: 37px;
  height: 100%;
}
.home-info__left-title {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  font-size: 30px;
  font-weight: 600;
  margin: 20px;
  padding: 20px 20px 30px;
  border-radius: 23px;
  opacity: 0.75;
}
.home-info__right {
  display: flex;
  flex-direction: column;
}
.home-info__card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e61d2b;
  border-radius: 23px;
  padding: 18px;
}
.home-info__card-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  flex-grow: 1;
  margin-bottom: 70px;
}
.home-info__card-img {
  margin: 0 auto;
  padding-bottom: 18px;
}
.home-info__card-img img {
  border-radius: 13px;
  -o-object-fit: none;
     object-fit: none;
  -o-object-position: center;
     object-position: center;
  height: 180px;
}
.home-info__card-text {
  font-size: 12px;
  flex-grow: 1;
  margin-bottom: 15px;
}
.home-info__card-text h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.07;
}
.home-info__card-name {
  margin-bottom: 15px;
  line-height: 1.03;
}
.home-info__card-link {
  font-size: 10px;
  text-transform: uppercase;
  text-align: right;
}
.home-instruction {
  margin-bottom: 80px;
  padding: 60px 0 80px;
  color: #fff;
  font-size: 21px;
}
.home-instruction h2 {
  max-width: 50%;
}
.home-instruction__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.home-instruction__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.home-instruction__steps-item {
  position: relative;
  font-weight: 600;
  line-height: 64px;
  text-align: center;
  text-transform: uppercase;
  border: 2px solid #fff;
  border-radius: 34px;
  height: 68px;
}
.home-instruction__steps-item:not(:first-child)::after {
  content: "";
  display: block;
  border-top: 2px solid #fff;
  width: 22px;
  position: absolute;
  top: 50%;
  right: 100%;
}
.home-instruction__text {
  line-height: 1.3;
}
.home-instruction__text-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-instruction__text ul {
  list-style: disc;
  margin-top: 20px;
  margin-left: 25px;
}
.home-team {
  margin-bottom: 150px;
}
.home-team h2 {
  margin-bottom: 50px;
}
.home-team__card {
  border: 1px solid #e61d2b;
  border-radius: 23px;
  padding: 30px;
  min-width: 400px;
  margin-right: 20px;
  line-height: 1.2;
}
.home-team__card-wrap {
  display: flex;
  flex-wrap: nowrap;
}
.home-team__card-photo {
  border-radius: 13px;
  margin-bottom: 40px;
}
.home-team__card-name {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.home-team__card-descr {
  font-size: 15px;
}
.home-news {
  margin-bottom: 150px;
}
.home-news h2 {
  margin-bottom: 60px;
}
.home-start {
  margin-bottom: 150px;
  color: #fff;
}
.home-start__wrap {
  display: flex;
  padding-top: 90px;
  padding-bottom: 65px;
}
.home-start__left {
  flex-grow: 1;
  margin-right: 135px;
}
.home-start__right {
  flex-shrink: 0;
  max-width: 375px;
}
.home-start__right-text {
  margin-bottom: 38px;
}
.home-start__footer {
  height: 66px;
  background: url("/images/home/start-footer-bg.svg") repeat-x center;
}
.home-partners {
  margin-bottom: 150px;
}
.home-partners h2 {
  margin-bottom: 80px;
}
.home-partners h3 {
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
.home-partners__wrap {
  display: flex;
  justify-content: space-between;
}
.home-partners__right-wrap {
  display: flex;
}
.home-partners__item {
  flex-shrink: 0;
  max-width: 490px;
  padding-right: 60px;
}
.home-partners__item-greenkaz {
  max-width: 375px;
  padding-right: 0;
  padding-left: 60px;
  border-left: 1px solid #e61d2b;
}
.home-partners__item-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 123px;
  margin-bottom: 30px;
}
.home-partners__item-text {
  font-size: 15px;
  text-align: justify;
}

.swiper {
  width: 100%;
  max-width: 1600px;
  height: 600px;
}
