@font-face {
  font-family: "RoadRadio";
  src: url("../font/RoadRadio.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SourceSans";
  src: url("../font/SourceSans3-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "SourceSans";
  src: url("../font/SourceSans3-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "SourceSans";
  src: url("../font/SourceSans3-Medium.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header .container {
  position: relative;
}

.header__wrapper {
  display: flex;
  justify-content: space-around;
  align-items: end;
}

.header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}

.header__menu-item {
  list-style: none;
  margin-left: 40px;
}

.header__menu-item:first-child {
  margin-left: 0;
}

.header__menu-link {
  font: 14px "RoadRadio", sans-serif;
  text-transform: uppercase;
  color: #686868;
  transition: 0.1s all;
}

.header__menu-link:hover {
  color: #97244c;
}

.header__logo {
  width: 135px;
  height: 77px;
}

.header__social {
  display: none;
}

.hamb {
  display: none;
  position: absolute;
  top: 13px;
  right: 24px;
}

.hamb__field {
  padding: 10px 20px;
}

.hamb .bar {
  display: block;
  height: 3px;
  width: 46px;
  margin-bottom: 4px;
  background: #97244c;
  transition: 0.2s all;
}

.hamb-active .bar:nth-child(1) {
  margin-bottom: -3px;
  transform: translateY(3px) rotate(-45deg);
}

.hamb-active .bar:nth-child(2) {
  display: none;
}

.hamb-active .bar:nth-child(3) {
  transform: translateY(3px) rotate(45deg);
}

.popup {
  display: none;
}

.btn {
  font: 14px "RoadRadio", sans-serif;
  border-radius: 2px;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 1em;
}

.btn--blue {
  background: #1b4c6e;
  width: 190px;
  height: 40px;
  line-height: 13px;
  transition: 0.1s all;
}

.btn--blue:hover {
  background: #072f4a;
  color: #fff;
}

.btn--red {
  width: 300px;
  height: 40px;
  background: #97244c;
  transition: 0.1s all;
  border: none;
}

.btn--red:hover {
  background: #89113b;
}

.promo__wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  width: 100%;
  padding: 0 45px;
  margin-bottom: 60px;
  margin-top: 100px;
  justify-content: space-between;
  background: radial-gradient(32.04% 63.07% at 50% 50%, rgba(27, 78, 111, 0) 0%, rgba(27, 78, 111, 0.73) 32.81%, rgba(27, 78, 111, 0.732093) 48.44%, #1b4e6f 100%);
  border-radius: 10px;
}

.promo__name {
  margin-top: 65px;
}

.promo__name p {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #c0c0c0;
}

.promo__name h2 {
  margin: 5px 0;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #ffffff;
}

.promo__main-photo {
  width: 473px;
}

.promo__block1 {
  display: flex;
  flex-direction: column;
  margin-top: 62px;
  margin-bottom: 44px;
}

.promo__title {
  font: 60px "RoadRadio";
  color: #fff;
  margin-bottom: 10px;
}

.promo__subtitle {
  position: relative;
  margin-left: 11px;
  margin-bottom: 46px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}

.promo__subtitle::before {
  content: "";
  background: #fff;
  position: absolute;
  top: 7px;
  left: -9px;
  display: block;
  width: 1px;
  height: 34px;
}

.promo__video {
  width: 211px;
  height: 211px;
  position: relative;
  margin-bottom: 16px;
}

.promo__video img {
  width: 100%;
}

.promo__video-play {
  transition: 0.2s all;
  cursor: pointer;
}

.promo__video-play:hover {
  transform: scale(1.1);
}

.promo__descr {
  font-weight: 400;
  font-size: 30px;
  line-height: 33px;
  color: #fff;
}

.promo__block2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-48%) translateY(-44%);
}

.promo__block3 {
  margin-top: 74px;
}

.promo__chunks {
  display: flex;
  flex-direction: column;
}

.promo__chunk {
  display: flex;
  align-items: center;
  padding: 15px 21px;
  margin-bottom: 10px;
  width: 360px;
  height: 70px;
  background: rgba(233, 233, 233, 0.1);
  box-shadow: inset 4px 3px 10px rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.promo__chunk-icon {
  width: 40px;
  height: 40px;
}

.promo__chunk-text {
  margin-left: 20px;
  color: #fff;
  font-weight: 400;
}

.promo__chunk-text--long {
  transform: translateX(10px);
}

.why__wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.why__block1 {
  background: #f2f2f2;
  position: relative;
  max-width: 589px;
  padding: 50px 160px 50px 44px;
  border-radius: 10px;
}

.why__block2 {
  position: relative;
  max-width: 589px;
  padding: 50px 231px 0 44px;
  margin-left: 40px;
  background: linear-gradient(148.21deg, #99244b 14.08%, #b14269 38.36%, #cc4876 68.72%, #97244c 97.34%);
  border-radius: 10px;
}

.why__descr1 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1b;
}

.why__descr2 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.why__img1 {
  position: absolute;
  top: 0;
  right: 0;
}

.why__img2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.title {
  font: 30px "RoadRadio", sans-serif;
}

.title__why1 {
  color: #97244c;
}

.title__why2 {
  color: #fff;
}

.about {
  margin-top: 120px;
}

.about .container {
  position: relative;
}

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

.about__block1 {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
  width: 50%;
}

.about__img {
  position: absolute;
  top: -140px;
  right: 0px;
  width: 545px;
}

.about__question {
  position: relative;
  margin-top: 40px;
  margin-bottom: 90px;
  margin-left: 11px;
}

.about__question::before {
  content: "";
  background: #97244c;
  position: absolute;
  top: 5px;
  left: -10px;
  display: block;
  width: 3px;
  height: 114px;
}

.about__question-title {
  color: #97244c;
  font-weight: 600;
  font-size: 30px;
  line-height: 110%;
  margin-bottom: 10px;
}

.about__question-subtitle {
  background: #1d1d1b;
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
}

.about__person {
  position: absolute;
  top: 254px;
  right: 74px;
  font-weight: 300;
  font-size: 14px;
  color: #fff;
}

.about__person ul {
  transform: translateX(23px);
}

.about__person h2 {
  line-height: 110%;
  margin-bottom: 10px;
}

.about__person li {
  list-style: disc;
}

.about__result {
  display: flex;
}

.about__result p {
  margin-right: 15px;
  margin-bottom: 18px;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
}

.about__result p:last-child {
  margin-right: 0;
}

.about__result p span {
  font: normal 400 30px "RoadRadio";
  margin-top: 18px;
}

.about .title__about {
  margin-bottom: 62px;
  color: #97244c;
}

.tab-item .date {
  font: 20px "RoadRadio";
  color: #1b4c6e;
}

.tab-item .text {
  font-weight: 400;
  font-size: 16px;
  color: #1d1d1b;
}

.tab-item .text1 {
  transform: translateX(-5px);
}

.tab-item .text2 {
  transform: translateX(-42px);
}

.tab-item .text3 {
  transform: translateX(-34px);
}

.tab-item .text4 {
  transform: translateX(-22px);
}

.tab-item .text5 {
  transform: translateX(-20px);
}

.tab-item .text6 {
  transform: translateX(-33px);
}

.tabs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
}

.tabs .tab {
  font: 400 20px "RoadRadio";
  cursor: pointer;
  transition: 0.1s all;
}

.tabs .tab:hover {
  color: #97244c;
}

.tabs .tab:first-child {
  margin-left: 0;
}

.tabs .tab1 {
  transform: translateX(-66px);
}

.tab-item-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.goals__wrapper {
  margin-bottom: 100px;
  overflow: hidden;
  padding: 53px 44px 48px 44px;
  background: linear-gradient(148.21deg, #99244b 14.08%, #b14269 38.36%, #cc4876 68.72%, #97244c 97.34%);
  border-radius: 6px;
}

.goals__inner {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 39px;
}

.goals__target {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  margin-bottom: 15px;
  color: #fff;
}

.goals__descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #fff;
}

.goals__block {
  width: 260px;
  padding: 35px 15px 25px 15px;
  background: rgba(233, 233, 233, 0.1);
  box-shadow: 6px 6px 33px rgba(0, 0, 0, 0.15), inset 7px 6px 28px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  background: rgba(233, 233, 233, 0.1);
  margin-right: 40px;
  border-radius: 8px;
  z-index: 2;
}

.goals__block:nth-child(4) {
  margin-right: 0;
}

.goals__img1 {
  position: absolute;
  top: -185px;
  left: 112px;
  width: 400px;
  height: 400px;
  border-radius: 100%;
  z-index: 1;
}

.goals__img2 {
  position: absolute;
  top: 56px;
  width: 450px;
  height: 450px;
  right: 0;
  border-radius: 100%;
  z-index: 1;
}

.goals .title__goals {
  color: #fff;
  margin-bottom: 44px;
}

.goals .btn__goals--blue {
  width: 300px;
  height: 40px;
  display: block;
  margin: 0 auto;
}

.benefits {
  margin-bottom: 128px;
}

.benefits .container {
  position: relative;
}

.benefits__wrapper {
  display: flex;
  margin-left: 40px;
}

.benefits__check {
  display: flex;
  margin-bottom: 37px;
}

.benefits__block1 {
  margin-right: 40px;
}

.benefits svg {
  fill: #1b4c6e;
  margin-right: 5px;
  width: 42px;
  height: 42px;
  transform: translateY(-10px);
}

.benefits__img {
  position: absolute;
  top: 0;
  right: -15px;
  z-index: -1;
}

.title__benefits {
  margin-bottom: 72px;
  color: #97244c;
  margin-left: 40px;
}

.why__wrapper {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.why__block1 {
  background: #f2f2f2;
  position: relative;
  max-width: 589px;
  padding: 50px 160px 50px 44px;
  border-radius: 10px;
}

.why__block2 {
  position: relative;
  max-width: 589px;
  padding: 50px 231px 0 44px;
  margin-left: 40px;
  background: linear-gradient(148.21deg, #99244b 14.08%, #b14269 38.36%, #cc4876 68.72%, #97244c 97.34%);
  border-radius: 10px;
}

.why__descr1 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #1d1d1b;
}

.why__descr2 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.why__img1 {
  position: absolute;
  top: 0;
  right: 0;
}

.why__img2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.title {
  font: 30px "RoadRadio", sans-serif;
}

.title__why1 {
  color: #97244c;
}

.title__why2 {
  color: #fff;
}

.who {
  margin-bottom: 100px;
}

.who__wrapper {
  display: flex;
  box-shadow: 6px 6px 33px rgba(0, 0, 0, 0.15), inset 7px 6px 28px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  border-radius: 10px;
}

.who__block {
  margin-top: 97px;
}

.who__descr {
  display: flex;
  margin-bottom: 38px;
}

.who__descr p {
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
}

.who svg {
  width: 30px;
  height: 30px;
  margin-right: 9px;
}

.title__who {
  color: #97244c;
  margin-bottom: 30px;
  margin-left: 40px;
}

.profit__wrapper {
  padding-top: 53px;
  padding-left: 44px;
  padding-bottom: 108px;
  margin-bottom: 68px;
  background: linear-gradient(148.21deg, #1b4c6e 14.08%, #2f6992 38.36%, #2d678e 68.72%, #1b4c6e 97.34%);
  border-radius: 10px;
}

.profit__inner {
  display: flex;
}

.profit__block1 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-right: 141px;
}

.profit__chunk {
  padding: 28px 10px 12px 15px;
  width: 260px;
  background: rgba(233, 233, 233, 0.1);
  box-shadow: 6px 6px 33px rgba(0, 0, 0, 0.15), inset 7px 6px 28px rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px);
  border-radius: 8px;
}

.profit__chunk p {
  font-weight: 400;
  font-size: 22px;
  line-height: 110%;
  color: #ffffff;
}

.title__profit {
  color: #fff;
  margin-bottom: 54px;
}

.form__contact {
  display: flex;
  flex-direction: column;
}

.form__input {
  width: 260px;
  padding-bottom: 5px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 15px;
  background: none;
  border: none;
  border-bottom: 1px solid #b4b4b4;
}

.form__input:nth-child(2) {
  margin-bottom: 20px;
}

.form__input::placeholder {
  color: #fff;
  font-weight: 300;
  font-size: 20px;
  line-height: 110%;
}

.form__label {
  font-weight: 300;
  font-size: 14px;
  line-height: 110%;
  color: #fff;
  margin-bottom: 57px;
}

.form__chekbox {
  background: none;
}

.form .title__form {
  font: 400 20px/20px "RoadRadio";
  margin-bottom: 45px;
  color: #ffffff;
}

.footer {
  background: #4e4e4e;
  padding-bottom: 67px;
}

.footer svg {
  width: 135px;
  height: 77px;
  margin-bottom: 14px;
}

.footer__title1 {
  font: 400 14px/110% "RoadRadio";
  margin-bottom: 13px;
  color: #9c9c9c;
}

.footer__title2 {
  font: 400 14px/110% "RoadRadio";
  margin-bottom: 15px;
  color: #9c9c9c;
}

.footer__inner {
  margin-top: 36px;
}

.footer__inner li {
  margin-bottom: 10px;
}

.footer__inner-link {
  color: #dfdfdf;
  font-weight: 300;
  font-size: 14px;
  line-height: 110%;
}

.footer__inner-link:hover {
  color: #948c8c;
}

.footer__inner-item {
  margin-bottom: 15px;
}

.footer__inner p {
  color: #dfdfdf;
  margin-bottom: 15px;
  font-weight: 300;
  font-size: 14px;
  line-height: 110%;
}

.footer__world {
  margin-bottom: 20px;
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}

.footer__block1 {
  margin-left: 40px;
  margin-top: 23px;
}

.footer__block1 p {
  font-weight: 300;
  font-size: 14px;
  line-height: 110%;
  color: #ffffff;
}

.footer__inner {
  display: flex;
  justify-content: center;
}

.footer__inner-block3 {
  margin-left: 211px;
}

.footer__social {
  display: none;
}

.modal {
  background: rgba(0, 0, 0, 0.6);
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1000;
}

.modal .modal_content {
  background: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  z-index: 99999;
}

.modal .modal_content .close_modal_window {
  color: #aaa;
  float: right;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.modal_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.modal_title {
  font-size: 25px;
  font-weight: bold;
}

.video {
  width: 50vh;
  height: 50vh;
  margin: 0 auto;
  display: block;
}

* {
  font-family: "SourceSans", sans-serif;
}

body .noscroll {
  overflow: hidden;
}

.container {
  max-width: 1250px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@supports (-webkit-appearance:none) {

}

@media (max-width: 1200px) {
  .header__logo {
    width: 104px;
    height: 58px;
  }

  .header__menu-item {
    margin-left: 30px;
  }

  .btn--red {
    width: 200px;
    margin: 0 auto;
  }

  .promo__wrapper {
    padding: 0 20px;
    margin-top: 85px;
  }

  .promo__title {
    font-size: 40px;
  }

  .promo__video {
    width: 180px;
  }

  .promo__video-play {
    top: 51px;
    left: 71px;
  }

  .promo__descr {
    font-size: 18px;
  }

  .promo__main-photo {
    width: 443px;
  }

  .promo__block2 {
    left: 48%;
    top: 58%;
    transform: translateX(-49%) translateY(-46%);
  }

  .promo__block3 {
    margin-bottom: 30px;
  }

  .promo__chunk {
    width: 300px;
  }

  .why__block2 {
    margin-left: 20px;
  }

  .about {
    margin-top: 50px;
  }

  .about__img {
    width: 484px;
    top: -90px;
    right: 25px;
  }

  .about__question-title {
    font-size: 27px;
  }

  .about__block1 {
    width: 100%;
    margin-left: 10px;
    margin-bottom: 200px;
  }

  .about__wrapper {
    display: block;
  }

  .tabs-wrapper {
    display: none;
  }

  .goals__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .goals__block {
    margin-right: 0;
    width: auto;
  }

  .goals__wrapper {
    margin-bottom: 50px;
  }

  .goals__img1 {
    display: none;
  }

  .goals__img2 {
    display: none;
  }

  .why__block2 {
    margin-left: 20px;
  }

  .profit__block1 {
    margin-right: 41px;
    gap: 30px;
  }

@supports (-webkit-appearance:none) {

}
}

@media (max-width: 991px) {
  .header__menu-link {
    font-size: 12px;
  }

  .btn--blue-header {
    width: 138px;
    line-height: 17px;
    font-size: 12px;
  }

  .promo__chunk {
    width: 250px;
  }

  .promo__chunk-text {
    font-size: 14px;
  }

  .promo__main-photo {
    width: 450px;
  }

  .promo__block3 {
    display: none;
  }

  .promo__block2 {
    left: 71%;
    top: 51%;
  }

  .why__wrapper {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .why__block2 {
    padding-right: 100px;
    padding-bottom: 100px;
    margin-left: 0;
    margin-top: 30px;
  }

  .about {
    display: none;
  }

  .benefits {
    margin-bottom: 50px;
  }

  .benefits__img {
    display: none;
  }

  .benefits__wrapper {
    margin-left: 0;
    justify-content: center;
  }

  .title__benefits {
    margin-left: 0;
    text-align: center;
  }

  .why__wrapper {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .why__block2 {
    padding-right: 100px;
    padding-bottom: 100px;
    margin-left: 0;
    margin-top: 30px;
  }

  .who {
    margin-bottom: 50px;
  }

  .who__wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .who__block {
    margin-top: 30px;
  }

  .profit__inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .profit__block1 {
    margin-bottom: 40px;
  }

  .profit__chunk p {
    font-size: 18px;
  }

  .title__profit {
    text-align: center;
  }

  .footer__wrapper {
    justify-content: space-around;
  }

  .footer__inner {
    justify-content: space-between;
  }

  .footer__inner-block3 {
    margin-left: 30px;
  }

  .footer__block1 {
    margin-left: 0;
  }

@supports (-webkit-appearance:none) {

}
}

@media (max-width: 767px) {
  .header__menu-item {
    margin-left: 20px;
  }

  .header__menu-link {
    font-size: 10px;
  }

  .header__logo {
    width: 81px;
    height: 43px;
  }

  .btn {
    width: 159px;
    font-size: 11px;
    height: 27px;
  }

  .btn--red {
    line-height: 6px;
  }

  .btn--blue-header {
    width: 100px;
    font-size: 9px;
    height: 25px;
    line-height: 8px;
  }

  .btn__goals--blue {
    font-size: 15px;
  }

  .promo__wrapper {
    margin-top: 65px;
  }

  .promo__block2 {
    top: 55%;
  }

  .promo__main-photo {
    width: 400px;
  }

  .promo__descr {
    font-size: 16px;
  }

  .promo__wrapper {
    margin-bottom: 35px;
  }

  .goals__wrapper {
    display: flex;
    flex-direction: column;
  }

  .goals__inner {
    margin-bottom: 0;
    justify-items: center;
    grid-template-columns: repeat(1, 1fr);
  }

  .benefits {
    margin-bottom: 20px;
  }

  .benefits p {
    font-size: 14px;
  }

  .title__benefits {
    font-size: 20px;
    margin-bottom: 50px;
  }

  .who__wrapper img {
    width: 500px;
  }

  .profit__chunk {
    padding-bottom: 28px;
    width: 220px;
  }

  .profit__block1 {
    margin-right: 0;
  }

  .profit__wrapper {
    padding-right: 22px;
    padding-left: 22px;
  }

  .footer {
    padding-bottom: 20px;
  }

  .footer__inner p {
    font-size: 10px;
  }

@supports (-webkit-appearance:none) {

}
}

@media (max-width: 575px) {
  .header {
    background-color: #fff;
  }

  .header__wrapper {
    margin: 0;
  }

  .header__menu {
    display: none;
  }

  .header__logo {
    position: relative;
    top: 0;
    left: -43px;
  }

  .hamb {
    display: block;
  }

  .popup {
    display: flex;
    flex-direction: column;
    position: fixed;
    z-index: 100;
    top: 62px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.2s all;
  }

  .popup .header-social {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .popup .header-social-contact {
    display: flex;
    flex-direction: column;
  }

  .popup .header-social-icon {
    display: flex;
  }

  .popup .header__menu {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    padding: 50px 0;
    overflow: auto;
  }

  .popup .header__menu li {
    width: 100%;
  }

  .popup .header__menu li a {
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: "RoadRadio";
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    padding: 20px 0;
    font-size: 20px;
    font-weight: bold;
    color: #686868;
  }

  .open {
    left: 0;
  }

  .btn--blue {
    display: none;
  }

  .btn--red {
    width: 300px;
    height: 40px;
  }

  .promo__wrapper {
    flex-direction: column;
    padding-bottom: 180px;
    align-items: center;
  }

  .promo__block1 {
    margin-top: 0;
    align-items: center;
    margin-bottom: 0;
  }

  .promo__title {
    margin-top: 40px;
    font-size: 32px;
  }

  .promo__subtitle {
    font-size: 14px;
    margin-left: 0;
    line-height: 24px;
    margin-bottom: 21px;
  }

  .promo__block2 {
    left: 66px;
    top: 88%;
  }

  .promo__name {
    margin-top: 0;
    position: absolute;
    bottom: 11px;
    right: 11px;
  }

  .promo__name p {
    font-size: 9px;
    line-height: 15px;
    font-weight: 200;
  }

  .promo__name h2 {
    font-size: 16px;
  }

  .promo__block3 {
    margin-top: 0;
  }

  .promo__chunk {
    width: 304px;
    height: 40px;
    margin-right: 0;
  }

  .promo__chunk-icon {
    width: 25px;
  }

  .promo__video {
    margin-bottom: 0;
  }

  .promo__descr {
    display: none;
  }

  .promo__main-photo {
    width: 150px;
  }

  .promo__block3 {
    display: block;
  }

  .why__block1 {
    padding: 75px 25px 25px 25px;
  }

  .why__img1 {
    display: none;
  }

  .why__img2 {
    width: 150px;
  }

  .why__block2 {
    padding: 35px 22px 105px 20px;
  }

  .about {
    display: block;
    height: 575px;
  }

  .about__question {
    display: none;
  }

  .about__img {
    width: 336px;
    top: 38px;
    right: 21px;
  }

  .about__block1 {
    margin-bottom: 0;
  }

  .about__person li {
    font-size: 13px;
  }

  .about__person ul {
    transform: translate(60px, 12px);
  }

  .about__person h2 {
    transform: translate(49px, 14px);
  }

  .about__result {
    color: #1b4e6f;
    flex-wrap: wrap;
    transform: translate(54px, 32px);
  }

  .about__result p {
    font-size: 14px;
    margin-bottom: -11px;
  }

  .about__result p span {
    font-size: 20px;
  }

  .goals__block {
    width: 300px;
  }

  .goals__img1 {
    display: block;
    top: -185px;
    left: 112px;
    width: 290px;
    height: 290px;
  }

  .goals .btn__goals--blue {
    width: 250px;
  }

  .benefits p {
    font-size: 14px;
    line-height: 110%;
  }

  .benefits__wrapper {
    flex-direction: column;
    margin-left: 38px;
  }

  .benefits__check {
    margin-bottom: 20px;
  }

  .title__benefits {
    text-align: left;
    font-size: 15px;
    margin-left: 38px;
  }

  .why__block1 {
    padding: 75px 25px 25px 25px;
  }

  .why__img1 {
    display: none;
  }

  .why__img2 {
    width: 150px;
  }

  .why__block2 {
    padding: 35px 22px 105px 20px;
  }

  .who__wrapper img {
    width: 300px;
  }

  .who__descr p {
    font-size: 15px;
  }

  .who svg {
    width: 25px;
    height: 15px;
  }

  .title__who {
    margin-left: 21px;
    margin-bottom: 20px;
  }

  .profit__wrapper {
    padding-left: 38px;
    padding-right: 38px;
    padding-top: 35px;
  }

  .profit__block1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .profit__chunk {
    width: 100%;
  }

  .profit__chunk p {
    font-size: 16px;
  }

  .title__profit {
    text-align: left;
    margin-bottom: 23px;
  }

  .form .title__form {
    font-size: 19px;
  }

  .footer__block1 svg {
    width: 80px;
    height: 45px;
  }

  .footer__wrapper {
    flex-direction: column;
    margin-left: 40px;
    margin-right: 40px;
  }

  .footer__inner {
    margin-top: 30px;
  }

  .footer__inner li {
    margin-bottom: 4px;
  }

  .footer__social {
    margin-top: 20px;
    display: block;
  }

  .footer__social svg {
    margin-right: 20px;
    width: 40px;
    height: 40px;
  }

  .footer__social svg:nth-child(2) {
    transform: scale(2);
  }

  .footer__social svg:nth-child(4) {
    transform: scale(2);
  }

  .footer__social-link {
    width: 40px;
    height: 40px;
  }

@supports (-webkit-appearance:none) {

}
}

