@charset "UTF-8";

:root {
  --red: #D81912;
  --blue: #073C98;
  --yellow: #F5AF19;
}

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000;
  line-height: 1;
  font-family: "Montserrat";
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Montserrat";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

html,
body {
  height: 100%;
}

body {
  line-height: 1.2;
  background: -o-linear-gradient(45deg, var(--red) 0%, var(--blue) 100%) fixed;
  background: linear-gradient(45deg, var(--red) 0%, var(--blue) 100%) fixed;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

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

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стилі будуть застосовуватись до
всіх класів, що містять *__container
Наприклад header__container, main__container і т.п.
Сніппет (HTML): cnt
*/

[class*=__container] {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.spollers {
  border: 2px solid #000000;
  border-radius: 0.625rem;
}

.spollers__item {
  font-size: 1rem;
}

.spollers__item:last-child .spollers__title {
  border-bottom: 0px solid #000;
}

.spollers__item:last-child .spollers__body {
  border-bottom: 0px solid #000;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  border-bottom: 2px solid #000000;
  padding: 1.25rem 7.5rem 1.25rem 3.75rem;
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  list-style: none;
}

._spoller-init .spollers__title {
  cursor: pointer;
  /*
  ._spoller-init & {
  	position: relative;
  	width: 100%;
  	text-align: left;
  	&::before,
  	&::after {
  		content: "";
  		position: absolute;
  		right: 0;
  		top: rem(12);
  		height: rem(1);
  		transition: all 0.3s ease 0s;
  		width: rem(10);
  		background-color: #000;
  	}
  	&::before {
  		transform: rotate(40deg);
  		right: rem(7);
  	}
  	&::after {
  		transform: rotate(-40deg);
  	}
  }
  &._spoller-active {
  	&::before {
  		transform: rotate(-40deg);
  	}
  	&::after {
  		transform: rotate(40deg);
  	}
  }
  */
}

._spoller-init .spollers__title::before {
  content: "";
  position: absolute;
  right: 5.625rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1.875rem;
  height: 1.875rem;
  background: url("../img/icons/circle-arrow.svg") center/cover no-repeat;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

._spoller-init .spollers__title._spoller-active::before {
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.spollers__body {
  font-size: 1rem;
  padding: 1.25rem 4.375rem;
  border-bottom: 2px solid #000000;
  display: none;
}

[data-showmore-button] {
  margin: 0 auto;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

[data-showmore-button] span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.875rem;
  font-weight: 700;
}

[data-showmore-button] span img {
  width: 2.125rem;
  height: 2.125rem;
}

[data-showmore-button] span:last-child {
  display: none;
}

[data-showmore-button] span:last-child img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

._showmore-active [data-showmore-button] span {
  display: none;
}

._showmore-active [data-showmore-button] span:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

h1 {
  font-size: 3.3125rem;
  color: var(--blue);
  text-align: center;
  font-weight: 800;
}

.hover__effect-line {
  position: relative;
}

.hover__effect-line::before {
  content: "";
  -webkit-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 1px;
  background-color: #000;
  width: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}

.hover__effect-line:hover::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.button-red {
  border-radius: 0.625rem;
  display: block;
  padding: 0.875rem 5rem;
  background: var(--red);
  font-weight: 700;
  font-size: 1.625rem;
  color: #F9FAFF;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.button-red:hover {
  background: #da3c37;
}

.button-red:active {
  background: rgba(218, 60, 55, 0.8823529412);
}

.button-yellow {
  border-radius: 0.625rem;
  display: block;
  padding: 1rem 5rem;
  background: var(--yellow);
  font-weight: 700;
  font-size: 1.25rem;
  color: #000;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
}

.button-yellow:hover {
  background: #e6af39;
}

.button-yellow:active {
  background: rgba(230, 175, 57, 0.768627451);
}

.white_block {
  background: #FFFFFF;
  border-radius: 3.125rem;
  width: 81.25rem;
  max-width: calc(100% - 1.125rem);
  margin: 0 auto;
  padding: 2.8125rem 0;
  margin-top: 4.625rem;
}

.white_block:nth-child(1) {
  margin-top: 7.1875rem;
}

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

.text__block-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.text__block-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.9375rem;
     -moz-column-gap: 0.9375rem;
          column-gap: 0.9375rem;
  row-gap: 1.125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.text__block-quote__img {
  min-width: 2.1875rem;
  height: 2.1875rem;
  max-width: 2.1875rem;
}

.text__block-quote__img img {
  width: 100%;
  height: 100%;
}

.text__block-quote__text {
  font-style: italic;
  font-size: 1rem;
  -ms-flex-preferred-size: calc(100% - 2.1875rem - 1.25rem);
      flex-basis: calc(100% - 2.1875rem - 1.25rem);
}

.text__block-quote-author {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  max-width: 17.5rem;
  margin-left: auto;
}

.text__block-quote-author-name {
  font-size: 1.25rem;
  font-weight: 600;
}

.text__block-quote-author-profession {
  font-size: 1rem;
  font-style: italic;
}

.text__block-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.625rem;
     -moz-column-gap: 1.625rem;
          column-gap: 1.625rem;
  row-gap: 2.5rem;
}

.text__block-price.column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.text__block-price__number {
  font-size: 2.2rem;
  font-weight: 800;
}

.text__block-price__number span span {
  font-size: 1.25rem;
}

.controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.3125rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.controls__item {
  padding: 0.625rem 1.0625rem;
  background-color: #EFEFEF;
  border-radius: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  text-align: left;
  font-size: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.controls__item.hidden {
  display: none;
}

.controls__item-icon {
  width: 1.875rem;
  min-width: 1.875rem;
  height: 1.875rem;
}

.controls__item-icon img {
  width: 100%;
  height: 100%;
}

.controls__item-text {
    white-space: nowrap;
}

.controls-toggle img {
  display: none;
}

.controls-toggle.play .icon-play {
  display: block;
}

.controls-toggle.pause .icon-pause {
  display: block;
}

.header {
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
  padding: 0.875rem 0;
  position: fixed;
  width: 100%;
  z-index: 2;
}

.header__container {
  max-width: none;
  padding: 0 3.75rem;
}

.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__contacts {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
  font-size: 1.625rem;
}

.header__contacts-text {
  font-weight: 800;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__btn {
  margin-right: 8.75rem;
}

.header__profile {
  width: 2.5rem;
  height: 2.5rem;
  margin-right: 3.25rem;
}

.header__profile img {
  width: 100%;
  height: 100%;
}

.header__lang-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  padding: 0.3125rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  background: #E2E2E2;
}

.header__lang-item.active {
  background: #BABABA;
}

.header__lang-item-img {
  width: 0.9375rem;
  height: 0.9375rem;
}

.header__lang-item-img img {
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.menu__body {
  overflow-y: auto;
  position: absolute;
  top: -200%;
  -webkit-transform: translate(0%, -100%);
      -ms-transform: translate(0%, -100%);
          transform: translate(0%, -100%);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
  left: 0;
  width: 100%;
  z-index: 2;
  height: calc(100vh - 100px);
  border-top: 1px solid #000;
  padding: 2.8125rem 0 1.25rem 0;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu-open .menu__body {
  top: 100%;
  -webkit-transform: translate(0%, 0);
      -ms-transform: translate(0%, 0);
          transform: translate(0%, 0);
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.9375rem;
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  margin-bottom: 0.9375rem;
}

.menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  gap: 0.9375rem;
}

.menu__item.lang a:not(:last-child):after {
  content: " | ";
  font-weight: 400;
}

.menu__item.lang:before,
.menu__item.profile:before,
.menu__item.profile:before,
.menu__item.phone:before,
.menu__item.book:before,
.menu__item.search:before,
.menu__item.tasks:before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.menu__item.lang:before {
  background-image: url(../img/icons/settings.svg);
}

.menu__item.profile:before {
  background-image: url(../img/icons/profile_icon.svg);
}

.menu__item.phone:before {
  background-image: url(../img/icons/phone.svg);
}

.menu__item.book:before {
  background-image: url(../img/icons/book.svg);
}

.menu__item.search:before {
  background-image: url(../img/icons/search.svg);
}

.menu__item.tasks:before {
  background-image: url(../img/icons/tasks.svg);
}

.menu__socials {
  padding-left: 1.125rem;
  padding-right: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid #000000;
}

.menu__social a {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
}

.menu__social img {
  width: 100%;
  height: 100%;
}

.menu__link .active {
  font-weight: 700;
}

.icon-menu {
  display: none;
}

.footer {
  background-color: #fff;
}

.footer__container {
  padding-top: 4.75rem;
  padding-bottom: 2.5rem;
}

.footer__menu {
  text-align: center;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.0625rem;
}

.footer__list-item {
  font-size: 1rem;
}

.footer__text {
  text-align: center;
  margin: 0 auto;
  max-width: 8.125rem;
  margin-top: 0.8125rem;
}

.footer__text span {
  font-size: 1.25rem;
  font-weight: 800;
}

.footer__text span:nth-child(odd) {
  color: var(--blue);
}

.footer__text span:nth-child(even) {
  color: var(--red);
}

.footer__text span.author {
  color: #000000;
  font-size: 0.875rem;
  font-weight: 400;
}

.footer .socials {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4375rem;
  margin-top: 1.0625rem;
}

.footer .socials__link img {
  width: 30px;
  height: 30px;
}

.intro__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.3125rem;
  margin-top: 2.4375rem;
}

.intro__tab {
  display: none;
}

.intro__tab._active {
  display: block;
}

.intro__format {
  margin-top: 2.75rem;
}

.intro__format h3 {
  margin-bottom: 0;
  color: #073C98;
}

.intro__format-items {
  margin-top: 1.3125rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}

.intro__format-item {
  padding: 0.4375rem 0.75rem;
  border-radius: 0.625rem;
  background: #D9D9D9;
  border: 2px solid #D9D9D9;
}

.intro__format-item._active {
  border: 2px solid #073C98;
  background: #FFF;
}

.intro__format-icon img {
  width: 2.1875rem;
  height: 2.1875rem;
}

.intro__format-text {
  margin-top: 0.125rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.intro__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 66.4375rem;
  margin-left: auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 1.375rem;
  margin-top: 3.125rem;
}

.intro__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 31.25rem;
          flex: 1 0 31.25rem;
}

.intro__img img {
  width: 100%;
}

.intro .text__block h3 {
  font-size: 1.625rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro .text__block-quote.mobile {
  display: none;
}

.facts__container {
  margin-top: 8.75rem;
}

.facts__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: 3.75rem;
  gap: 4.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.facts__img {
  -ms-flex-preferred-size: 40.625rem;
      flex-basis: 40.625rem;
  text-align: center;
}

.facts__img img {
  width: 100%;
}

.facts__img img.mobile {
  display: none;
}

.facts ul {
  font-size: 1.25rem;
  font-weight: 500;
}

.facts__item {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 0.9375rem;
  border-radius: 0.625rem;
  border: 3px solid #073C98;
  background: #FFF;
  text-align: center;
  width: 13.125rem;
}

.facts__item-icon img,
.facts__item-icon svg {
  width: 2.1875rem;
  height: 2.1875rem;
}

.excerpts__container {
  margin-top: 3.125rem;
}

.excerpts__spollers {
  margin-top: 3.75rem;
}

.reviews__container {
  margin-top: 2.5rem;
}

.reviews__block {
  margin-top: 5rem;
}

.reviews__block.mobile {
  display: none;
}

.reviews__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.reviews__item {
  border: 2px solid #000000;
  border-radius: 10px;
  -ms-flex-preferred-size: calc((100% - 0.9375rem * 2) / 3);
      flex-basis: calc((100% - 0.9375rem * 2) / 3);
  padding: 1.25rem 1.0625rem 1.875rem 1.0625rem;
}

.reviews__item-img {
  width: 100px;
  height: 100px;
}

.reviews__item-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.reviews__item-name {
  margin-top: 0.75rem;
  font-size: 1.375rem;
  font-weight: 600;
}

.reviews__item-link {
  font-size: 1rem;
  color: var(--blue);
  text-decoration: underline;
  font-weight: 600;
}

.reviews__item-link:hover {
  text-decoration: none;
}

.reviews__item-proffesion {
  font-style: italic;
  font-size: 0.875rem;
  margin-top: 0.4375rem;
}

.reviews__item-text {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.reviews__item-text strong {
  font-weight: inherit;
}

.info__container {
  margin-top: 2.1875rem;
}

.info__video-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -0.5rem;
  margin-top: 4.875rem;
}

.info__video-wrapper iframe {
  width: 62.5rem;
  max-width: 100%;
  aspect-ratio: 16/9;
}

.info .text__block-price {
  margin-top: 2.5rem;
}

.history__container {
  margin-top: 4.375rem;
}

.history__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6.25rem;
     -moz-column-gap: 6.25rem;
          column-gap: 6.25rem;
  margin-top: 3.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.25rem;
}

.history__img {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -ms-flex-preferred-size: 37.5rem;
      flex-basis: 37.5rem;
}

.history__img img {
  width: 100%;
  height: 100%;
}

.history__text {
  font-size: 1.5rem;
}

.author__container {
  margin-top: 4.375rem;
}

.author__block {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2.1875rem;
  border: 2px solid #000000;
  border-radius: 3.125rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.375rem;
}

.author__img img {
  max-width: 25rem;
  border-radius: 50%;
}

.author__text {
  font-size: 1.5rem;
  max-width: 31.5625rem;
}

.author__text span {
  font-weight: 600;
}

.author__text .socials {
  margin-top: 1rem;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.socials__link img {
  width: 2rem;
  height: 2rem;
}

.sale {
  background: var(--blue);
  color: #FFFFFF;
}

.sale__container {
  margin-top: 4.5rem;
  margin-top: 1.5rem;
}

.sale__block {
  padding: 2.1875rem 0;
  max-width: 42.5625rem;
  margin: 0 auto;
}

.sale__title {
  font-size: 1.625rem;
  font-weight: 600;
}

.sale__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.3125rem;
  gap: 0.5rem;
}

.sale__input input {
  background: #D9D9D9;
  border-radius: 0.375rem;
  padding: 0.625rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.875rem;
  border: none !important;
  outline: none !important;
  max-width: calc(100% - 0px);
  width: auto;
}

.sale__email {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  font-size: 1.125rem;
  font-weight: 500;
}

@media (min-width: 47.99875em) {
  .controls {
    width: auto;
    min-width: 13.125rem;
  }

  .history__text .text__block-price {
    display: none;
  }
}

@media (min-width: 61.99875em) {
  .facts__text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }

  .facts li:nth-child(1) {
    position: absolute;
    left: 0;
    top: 2.5625rem;
    pointer-events: none;
  }

  .facts li:nth-child(1)::after {
    z-index: 3;
    content: "";
    position: absolute;
    right: 0;
    -webkit-transform: translateX(89%);
        -ms-transform: translateX(89%);
            transform: translateX(89%);
    top: 10%;
    width: 8.5rem;
    height: 5.8125rem;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTA0IiBoZWlnaHQ9IjkwIiB2aWV3Qm94PSIwIDAgMTA0IDkwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBpZD0iQXJyb3cgMyIgZD0iTTk1LjQ5OTkgMi4wMDAxOUw5Ni45OTk5IDIuMDAwMTlMOTYuOTk5OSAwLjUwMDIwM0w5NS41IDAuNTAwMTk0TDk1LjQ5OTkgMi4wMDAxOVpNODcuNzk2OSA3OS4zNDA4Qzg2LjYwNDQgODMuNTk1MSA4OS4wODY1IDg4LjAxMDYgOTMuMzQwOCA4OS4yMDMxQzk3LjU5NTEgOTAuMzk1NiAxMDIuMDExIDg3LjkxMzUgMTAzLjIwMyA4My42NTkyQzEwNC4zOTYgNzkuNDA0OSAxMDEuOTE0IDc0Ljk4OTQgOTcuNjU5MiA3My43OTY5QzkzLjQwNDkgNzIuNjA0NCA4OC45ODk0IDc1LjA4NjUgODcuNzk2OSA3OS4zNDA4Wk0wLjQ5NzU1MiAzLjQ5OTU3TDk1LjQ5OTkgMy41MDAxOUw5NS41IDAuNTAwMTk0TDAuNDk3NTcyIDAuNDk5NTY0TDAuNDk3NTUyIDMuNDk5NTdaTTk0IDIuMDAwMkw5NCA4MS41TDk3IDgxLjVMOTYuOTk5OSAyLjAwMDE5TDk0IDIuMDAwMloiIGZpbGw9IiMwNzNDOTgiLz4KPC9zdmc+Cg==) center/contain no-repeat;
  }

  .facts li:nth-child(2) {
    position: absolute;
    right: 0;
    top: 2.5625rem;
    pointer-events: none;
  }

  .facts li:nth-child(2)::after {
    z-index: 3;
    content: "";
    position: absolute;
    left: 0%;
    top: 10%;
    -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
            transform: translateX(-100%);
    width: 10.3125rem;
    height: 5.625rem;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTY0IiBoZWlnaHQ9IjYwIiB2aWV3Qm94PSIwIDAgMTY0IDYwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBpZD0iQXJyb3cgNSIgZD0iTTguNTAwMTIgMS42ODk0Mkw3LjAwMDExIDEuNjg5NDJMNy4wMDAxMiAwLjE4OTM5M0w4LjUwMDE0IDAuMTg5NDIyTDguNTAwMTIgMS42ODk0MlpNMTYuMjAzMiA0OS44NDA4QzE3LjM5NTcgNTQuMDk1MSAxNC45MTM2IDU4LjUxMDYgMTAuNjU5MyA1OS43MDMxQzYuNDA1MDIgNjAuODk1NiAxLjk4OTUxIDU4LjQxMzUgMC43OTcwMTggNTQuMTU5MkMtMC4zOTU0NzggNDkuOTA0OSAyLjA4NjYyIDQ1LjQ4OTQgNi4zNDA5MiA0NC4yOTY5QzEwLjU5NTIgNDMuMTA0NCAxNS4wMTA3IDQ1LjU4NjUgMTYuMjAzMiA0OS44NDA4Wk0xNjMuNjYzIDMuMTkyMzZMOC41MDAwOSAzLjE4OTQyTDguNTAwMTQgMC4xODk0MjJMMTYzLjY2MyAwLjE5MjM2NUwxNjMuNjYzIDMuMTkyMzZaTTEwLjAwMDEgMS42ODk0MkwxMC4wMDAxIDUyTDcuMDAwMTIgNTJMNy4wMDAxMSAxLjY4OTQyTDEwLjAwMDEgMS42ODk0MloiIGZpbGw9IiMwNzNDOTgiLz4KPC9zdmc+Cg==) center/contain no-repeat;
  }

  .facts li:nth-child(3) {
    position: absolute;
    left: 0;
    bottom: 0rem;
    pointer-events: none;
  }

  .facts li:nth-child(3)::after {
    z-index: 3;
    content: "";
    position: absolute;
    left: 100%;
    bottom: 4%;
    width: 10.5rem;
    height: 5.375rem;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTcxIiBoZWlnaHQ9Ijc5IiB2aWV3Qm94PSIwIDAgMTcxIDc5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBpZD0iQXJyb3cgNCIgZD0iTTE2MyA3Ny41MDAzTDE2NC41IDc3LjUwMDNMMTY0LjUgNzkuMDAwM0wxNjMgNzkuMDAwM0wxNjMgNzcuNTAwM1pNMTU1LjI5NyAxMC42NTkyQzE1NC4xMDQgNi40MDQ4OSAxNTYuNTg2IDEuOTg5MzkgMTYwLjg0MSAwLjc5Njg5NEMxNjUuMDk1IC0wLjM5NTYwMSAxNjkuNTExIDIuMDg2NDggMTcwLjcwMyA2LjM0MDhDMTcxLjg5NiAxMC41OTUxIDE2OS40MTMgMTUuMDEwNiAxNjUuMTU5IDE2LjIwMzFDMTYwLjkwNSAxNy4zOTU2IDE1Ni40ODkgMTQuOTEzNSAxNTUuMjk3IDEwLjY1OTJaTTAuNzM4MTI1IDc1Ljk5OTFMMTYzIDc2LjAwMDNMMTYzIDc5LjAwMDNMMC43MzgxMDIgNzguOTk5MUwwLjczODEyNSA3NS45OTkxWk0xNjEuNSA3Ny41MDAzTDE2MS41IDguNUwxNjQuNSA4LjVMMTY0LjUgNzcuNTAwM0wxNjEuNSA3Ny41MDAzWiIgZmlsbD0iIzA3M0M5OCIvPgo8L3N2Zz4K) center/contain no-repeat;
  }

  .facts li:nth-child(4) {
    position: absolute;
    right: 0;
    bottom: 0rem;
    pointer-events: none;
  }

  .facts li:nth-child(4)::after {
    z-index: 3;
    content: "";
    position: absolute;
    left: 0%;
    bottom: 10%;
    -webkit-transform: translateX(-98%);
        -ms-transform: translateX(-98%);
            transform: translateX(-98%);
    width: 10.625rem;
    height: 8.75rem;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTcyIiBoZWlnaHQ9IjE0OCIgdmlld0JveD0iMCAwIDE3MiAxNDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGlkPSJBcnJvdyA2IiBkPSJNOC45MzM2NCAxNDZMNy40MzM2NCAxNDZMNy40MzM2NSAxNDcuNUw4LjkzMzY2IDE0Ny41TDguOTMzNjQgMTQ2Wk0xNi42MzY4IDEwLjE1OTJDMTcuODI5MiA1LjkwNDkgMTUuMzQ3MiAxLjQ4OTM4IDExLjA5MjkgMC4yOTY4OUM2LjgzODU1IC0wLjg5NTYwNCAyLjQyMzAzIDEuNTg2NDkgMS4yMzA1NCA1Ljg0MDc5QzAuMDM4MDQ2MiAxMC4wOTUxIDIuNTIwMTQgMTQuNTEwNiA2Ljc3NDQ0IDE1LjcwMzFDMTEuMDI4NyAxNi44OTU2IDE1LjQ0NDMgMTQuNDEzNSAxNi42MzY4IDEwLjE1OTJaTTE3MS4xOTUgMTQ0LjQ5OUw4LjkzMzYzIDE0NC41TDguOTMzNjYgMTQ3LjVMMTcxLjE5NSAxNDcuNDk5TDE3MS4xOTUgMTQ0LjQ5OVpNMTAuNDMzNiAxNDZMMTAuNDMzNiA4TDcuNDMzNjQgNy45OTk5OUw3LjQzMzY0IDE0NkwxMC40MzM2IDE0NloiIGZpbGw9IiMwNzNDOTgiLz4KPC9zdmc+Cg==) center/contain no-repeat;
  }
}

@media (min-width: 75em) {
  .text__block-quote {
    margin-left: 0.8125rem;
  }

  .intro__img {
    margin-left: -1.6875rem;
  }
}

@media (max-width: 75em) {
  .spollers__title {
    font-size: 1.5rem;
  }

  [data-showmore-button] span {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .button-red {
    padding: 0.6875rem 4.1875rem;
  }

  .button-yellow {
    padding: 0.6875rem 4.1875rem;
  }

  .text__block-subtitle {
    font-size: 1.5rem;
  }

  .text__block-quote__text {
    font-size: 1.125rem;
  }

  .text__block-quote-author-name {
    font-size: 1.125rem;
  }

  .text__block-price__number {
    font-size: 2.1875rem;
  }

  .header__container {
    padding: 0 1.25rem;
  }

  .header__contacts {
    font-size: 1.25rem;
    gap: 0.625rem;
  }

  .header__btn {
    margin-right: 1.875rem;
  }

  .header__profile {
    margin-right: 1.25rem;
  }

  .intro__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 25rem;
            flex: 1 0 25rem;
  }

  .facts__item {
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }

  .excerpts__spollers {
    margin-top: 2.5rem;
  }

  .reviews__block {
    margin-top: 3.75rem;
  }

  .info__video-wrapper {
    margin-top: 3.125rem;
  }

  .history__row {
    -webkit-column-gap: 4.375rem;
       -moz-column-gap: 4.375rem;
            column-gap: 4.375rem;
  }

  .history__img {
    -ms-flex-preferred-size: 31.25rem;
        flex-basis: 31.25rem;
  }

  .history__text {
    font-size: 1.5rem;
  }

  .author__block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.25rem;
  }

  .author__img img {
    max-width: 18.75rem;
  }

  .author__text {
    font-size: 1.5rem;
  }

  .author__text {
    font-size: 1.25rem;
  }

  .sale__title {
    font-size: 1.5rem;
  }

  .sale__email {
    font-size: 1rem;
  }
}

@media (max-width: 61.99875em) {
  .spollers__title {
    font-size: 1.5rem;
  }

  [data-showmore-button] span {
    font-size: 1.125rem;
  }

  .white_block:nth-child(1) {
    margin-top: 4.375rem;
  }

  .text__block-subtitle {
    font-size: 1.25rem;
  }

  .text__block-quote {
    -webkit-column-gap: 0.9375rem;
       -moz-column-gap: 0.9375rem;
            column-gap: 0.9375rem;
  }

  .text__block-quote__img {
    min-width: 1.875rem;
    height: 1.875rem;
    max-width: 1.875rem;
  }

  .header__btn {
    display: none;
  }

  .header__profile {
    display: none;
  }

  .header__lang {
    display: none;
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 1.875rem;
    height: 1.125rem;
    z-index: 5;
  }

  .icon-menu span,
  .icon-menu::before,
  .icon-menu::after {
    content: "";
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 0;
  }

  .icon-menu::after {
    bottom: 0;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }

  .intro__format-items {
    gap: 0.625rem;
  }


  .intro__bottom {
    margin-top: 2.5rem;
  }

  .intro__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 20rem;
            flex: 1 0 20rem;
  }

  .facts__row {
    gap: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .facts__img {
    width: 82%;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }

  .facts__img img.mobile {
    display: block;
  }

  .facts__img img.pc {
    display: none;
  }

  .facts ul {
    max-width: 25rem;
    font-size: 1rem;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 1.375rem;
    margin-inline: auto;
  }

  .facts__text {
    max-width: 87%;
  }

  .facts__item {
    border: 2px solid #073C98;
    width: auto;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    aspect-ratio: 1/1;
  }

  .excerpts__spollers {
    margin-top: 1.875rem;
  }

  .reviews__block {
    margin-top: 2.5rem;
  }

  .reviews__item {
    -ms-flex-preferred-size: calc((100% - 0.9375rem * 1) / 2);
        flex-basis: calc((100% - 0.9375rem * 1) / 2);
  }

  .reviews__item-img {
    width: 75px;
    height: 75px;
  }

  .reviews__item-name {
    font-size: 1.125rem;
  }

  .info__video-wrapper {
    margin-top: 2.1875rem;
  }

  .info .text__block-price {
    margin-top: 1.875rem;
  }

  .history__row {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    margin-top: 1.25rem;
  }

  .history__img {
    -ms-flex-preferred-size: 21.875rem;
        flex-basis: 21.875rem;
  }

  .history__text {
    font-size: 1.25rem;
  }

  .author__text {
    font-size: 1.25rem;
  }

  .sale__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 61.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

@media (max-width: 47.99875em) {
  .spollers__title {
    padding: 0.8125rem 2.5rem 0.8125rem 1.25rem;
    font-size: 1rem;
  }

  ._spoller-init .spollers__title::before {
    width: 1.25rem;
    height: 1.25rem;
    right: 1.25rem;
  }

  .spollers__body {
    padding: 1.25rem;
  }

  [data-showmore-button] {
    margin-top: 1.125rem;
  }

  [data-showmore-button] span {
    font-size: 1rem;
    gap: 0.625rem;
  }

  [data-showmore-button] span img {
    width: 1.25rem;
    height: 1.25rem;
  }

  h1 {
    font-size: 1.625rem;
  }

  .button-red {
    text-transform: uppercase;
    padding: 0.9125rem 4.625rem;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }

  .button-yellow {
    padding: 0.6875rem 4.625rem;
    font-size: 1rem;
  }

  .white_block {
    padding: 1.25rem 0;
    border-radius: 0.625rem;
    margin-top: 0.9375rem;
  }

  .text__block-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .text__block-quote__img {
    display: none;
  }

  .text__block-quote__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }

  .text__block-quote__text {
    font-size: 1rem;
  }

  .text__block-quote-author {
    margin-left: 0;
  }

  .text__block-quote-author-name {
    font-size: 1rem;
  }

  .text__block-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 1.125rem;
  }

  .text__block-price__number {
    font-size: 1.375rem;
  }

  .controls__item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .controls__item-icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .controls__item-text {
    font-size: 0.75rem;
  }

  .header__contacts {
    font-size: 1.0625rem;
  }

  .header__contacts-phone {
    display: none;
  }

  .intro__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .intro__row {
    margin-top: 0;
    row-gap: 1.1875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .intro__text {
    width: 100%;
  }

  .intro .text__block h3 {
    font-size: 1rem;
    margin-bottom: 0.875rem;
  }

  .intro__format {
    margin-top: 0;
  }

  .intro__format-items {
    margin-top: 1.9375rem;
  }

  .intro__format-item {
    padding: 0.5rem 0.3125rem 0.3125rem 0.3125rem;
  }

  .intro__format-icon img {
    width: 1.5rem;
    height: 1.5rem;
  }

  .intro__format-text {
    font-size: 0.75rem;
    margin-top: 0;
  }

  .intro__bottom {
    margin-top: 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  .intro__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 78%;
            flex: 0 0 78%;
    max-width: 78%;
  }

  .intro .text__block-quote {
    display: none;
  }

  .intro .text__block-quote.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 3.25rem;
  }

  .facts__container {
    margin-top: 2rem;
  }

  .facts__row {
    gap: 1.625rem;
    margin-top: 1.125rem;
  }

  .facts ul {
    max-width: 21.25rem;
  }

  .facts__item-icon img,
  .facts__item-icon svg {
    width: 1.875rem;
    height: 1.875rem;
  }

  .excerpts__spollers {
    margin-top: 0.9375rem;
  }

  .reviews__container {
    margin-top: 2rem;
  }

  .reviews__block {
    margin-top: 0.9375rem;
    display: none;
  }

  .reviews__block.mobile {
    display: block;
  }

  .reviews__item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    text-align: center;
    padding: 0.8125rem 0.625rem;
    margin-top: 0rem;
  }

  .reviews__item-img {
    margin: 0 auto;
  }

  .info__video-wrapper {
    margin-top: 1.875rem;
  }

  .info .text__block-price {
    margin-top: 1.25rem;
  }

  .history__container {
    margin-top: 2.125rem;
  }

  .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;
  }

  .history__img {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    max-width: 90%;
  }

  .history__text {
    font-size: 1rem;
  }

  .history__text .text__block-price {
    margin-top: 1.5625rem;
  }

  .author__container {
    margin-top: 2.5rem;
  }

  .author__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    border: none;
    margin-top: 1.5625rem;
  }

  .author__img img {
    max-width: 12.5rem;
  }

  .author__text {
    font-size: 1rem;
  }

  .author__text .socials {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .author__text {
    max-width: 100%;
  }

  .author__text {
    font-size: 1rem;
  }

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

  .sale__title {
    font-size: 1.125rem;
  }

  .sale__input {
    margin-top: 0.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .sale__input input {
    height: 40px;
    font-size: 1.125rem;
  }

  .sale__email {
    font-size: 0.75rem;
  }
}

@media (max-width: 29.99875em) {
  .facts__item {
    padding: 0.3125rem;
  }

  .reviews__item-img {
    width: 60px;
    height: 60px;
  }

  .reviews__item-proffesion {
    font-size: 0.75rem;
  }

  .reviews__item-text {
    font-size: 1rem;
    margin-top: 0.8125rem;
  }

  .author__img img {
    max-width: 9.375rem;
  }
}

@media (max-width: 61.99875em) and (min-width: 47.99875em) {
  .intro__bottom .button-red {
    padding: 0.6875rem 2.5rem;
  }
}