html {
  font-size: 1.22vw;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  scroll-behavior: smooth;
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.52vw;
  }
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #F6F6F6;
  width: 100%;
  color: #0E0E0E;
  margin: 0;
  padding: 0;
}

a {
  transition: all 0.3s ease-out;
}

* {
  box-sizing: border-box;
}

html *,
html,
body *,
body {
  scrollbar-color: inherit !important;
  scrollbar-width: auto;
}
html *::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body *::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  box-shadow: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

.wrapper {
  overflow-x: hidden;
  width: 100%;
}

.main {
  width: 100%;
  overflow-x: hidden;
}
.main__section {
  padding: 5rem 0;
}

.container {
  padding: 0 16rem;
  width: 100%;
}

.slick-list {
  cursor: grab;
}

.no-br {
  white-space: nowrap;
}

.text--color {
  color: #E31515;
}
.text--center {
  text-align: center;
}

.btn {
  display: inline-flex;
  gap: 1rem;
  outline: none;
  border: 0;
  justify-content: center;
  column-gap: 1rem;
  align-items: center;
  padding: 2rem 4rem;
  min-width: 79rem;
  height: 7.3rem;
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 800;
  font-family: "Open Sans", sans-serif;
  line-height: 1;
  color: white;
  background: linear-gradient(90deg, #A80808 0%, #E61616 54%, #A80808 100%);
  border-radius: 8px;
  box-shadow: 0 5px 0 0 #6B0000;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: none;
}
.btn:hover {
  background: #A80808;
}

.heading {
  font-size: 5rem;
  margin-bottom: 1rem;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-weight: 900;
  line-height: 1;
}

.list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.list__item {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 6rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}
.list__item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #E31515;
  box-shadow: 0 0 5px #E31515;
  transform: translateY(-50%);
}
.list__item:last-child {
  margin-bottom: 0;
}
.list-num {
  padding: 0;
  list-style-type: none;
  margin: 0;
  counter-reset: item;
}
.list-num__item {
  margin-bottom: 2rem;
  height: 9rem;
  padding: 1.5rem 5rem 1.5rem 12.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  display: flex;
  align-items: center;
  counter-increment: item;
  position: relative;
  font-family: "Open Sans", sans-serif;
}
.list-num__item:last-child {
  margin-bottom: 0;
}
.list-num__item:before {
  content: counter(item);
  box-sizing: border-box;
  font-size: 4.8rem;
  line-height: 1;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 7rem;
  width: 7rem;
  background: #E31515;
  border-radius: 100%;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
  display: flex !important;
}
.modal__icon {
  margin: -3rem auto 2rem;
  width: 8rem;
  height: 8rem;
  color: #E31515;
}
.modal__icon svg {
  fill: currentColor;
}
@media screen and (max-width: 920px) {
  .modal__icon {
    width: 12rem;
    height: 12rem;
    margin: 0 auto 4rem;
  }
}
.modal__content {
  padding: 6rem 2rem 4rem 2rem;
  background: #0E0E0E;
  position: relative;
  width: 60rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  scrollbar-color: white rgba(255, 255, 255, 0.6);
  scrollbar-width: 3px;
}
.modal__content.img {
  padding: 4rem 2rem 0 0;
  width: 70rem;
  background: none;
}
.modal__content.img::-webkit-scrollbar-track {
  margin: 4rem 0 0 0;
}
@media screen and (max-width: 1024px) {
  .modal__content.img {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.modal__content.img .modal__close {
  top: 0;
}
@media screen and (max-width: 1024px) {
  .modal__content.img .modal__close {
    top: 2rem;
  }
}
.modal__content::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  display: block;
}
.modal__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.6);
}
.modal__content::-webkit-scrollbar-thumb {
  background: white;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 8rem;
    width: 100%;
    max-height: 100vh;
    max-width: 100%;
    overflow-x: hidden;
    height: 100%;
    overflow-y: auto;
    backdrop-filter: none;
    background: #000;
    border-radius: 0;
  }
}
@media screen and (max-width: 1024px) {
  .modal__form {
    padding-top: calc((100vh - 605px) / 2);
  }
}
.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .modal__close {
    width: 4rem;
    height: 4rem;
    right: 2rem;
    top: 2rem;
  }
}
.modal__heading {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.6rem;
  line-height: 1.2;
  position: relative;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  color: white;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .modal__heading {
    font-size: 5rem;
    margin-bottom: 4rem;
  }
}

.form-control {
  position: relative;
  margin-bottom: 0.8rem;
}
.form .error {
  color: #E31515;
  font-size: 1.6rem;
  position: absolute;
  display: none;
  top: 0.5rem;
  right: 1rem;
}
.form-check {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  font-size: 2rem;
  margin-bottom: 2.4rem;
}
.form-check svg {
  width: 2rem;
}
.form-input {
  background: #DCDCDC;
  border: none;
  box-shadow: none;
  border-radius: 1.2rem;
  padding: 2rem 3rem;
  height: 6.7rem;
  font-size: 2rem;
  line-height: 1;
  color: #3F3F3F;
  width: 100%;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}
.form-input:focus {
  border: none;
  outline: none;
}
.form-input.err {
  color: #E31515;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: #E31515;
}
.form-btn {
  min-width: 100%;
}

.grecaptcha-badge {
  display: none !important;
}

.language {
  position: fixed;
  z-index: 100;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 3.4rem;
  border-radius: 5px;
  background: #1E1E1E;
  color: white;
  overflow: hidden;
  padding: 0.5rem;
}
@media screen and (max-width: 767px) {
  .language {
    top: 1.7rem;
    right: 2rem;
    padding: 1rem;
    width: 8.8rem;
    height: 5rem;
    cursor: pointer;
  }
}
.language:hover {
  height: auto;
}
.language:hover .language__arrow {
  transform: rotate(0deg);
}
.language__item {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0.5rem;
  font-size: 2rem;
  line-height: 1.2;
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.language__item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .language__item {
    column-gap: 1rem;
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.language__arrow {
  width: 1.7rem;
  transition: all 0.3s ease-out;
  transform: rotate(-180deg);
}
@media screen and (max-width: 767px) {
  .language__arrow {
    width: 2rem;
  }
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  border-color: #E31515 !important;
  border-width: 2px !important;
}

.compensate-for-scrollbar {
  padding-right: 0 !important;
}

img[loading=lazy] {
  background: url("../images/loader.png") center center no-repeat;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tape-back {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.1);
  }
  20% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes show {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes dashed {
  0% {
    stroke-dashoffset: -160;
  }
  100% {
    stroke-dashoffset: -320;
  }
}
@keyframes dashed-reverse {
  0% {
    stroke-dashoffset: -320;
  }
  100% {
    stroke-dashoffset: -160;
  }
}
@media screen and (min-width: 1366px) {
  .js-animate {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    opacity: 0;
  }
  .js-animate.animate--delay-1 {
    transition: all 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
  }
  .js-animate.animate--delay-2 {
    transition: all 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s;
  }
  .js-animate.animate--delay-3 {
    transition: all 0.6s ease-out 0.9s, transform 0.6s ease-out 0.9s;
  }
  .js-animate.animate--delay-4 {
    transition: all 0.6s ease-out 1.2s, transform 0.6s ease-out 1.2s;
  }
  .js-animate.animate--delay-5 {
    transition: all 0.6s ease-out 1.5s, transform 0.6s ease-out 1.5s;
  }
  .js-animate.animate--delay-6 {
    transition: all 0.6s ease-out 1.8s, transform 0.6s ease-out 1.8s;
  }
  .js-animate.animate--delay-7 {
    transition: all 0.6s ease-out 2.1s, transform 0.6s ease-out 2.1s;
  }
  .js-animate.animate--delay-8 {
    transition: all 0.6s ease-out 2.4s, transform 0.6s ease-out 2.4s;
  }
  .js-animate.animate--delay-9 {
    transition: all 0.6s ease-out 2.7s, transform 0.6s ease-out 2.7s;
  }
  .js-animate.animate--delay-10 {
    transition: all 0.6s ease-out 3s, transform 0.6s ease-out 3s;
  }
  .js-animate.animate--delay-11 {
    transition: all 0.6s ease-out 3.3s, transform 0.6s ease-out 3.3s;
  }
  .js-animate.animate--delay-12 {
    transition: all 0.6s ease-out 3.6s, transform 0.6s ease-out 3.6s;
  }
  .js-animate.animate--delay-13 {
    transition: all 0.6s ease-out 3.9s, transform 0.6s ease-out 3.9s;
  }
  .js-animate.animate--delay-14 {
    transition: all 0.6s ease-out 4.2s, transform 0.6s ease-out 4.2s;
  }
  .js-animate.animate--delay-15 {
    transition: all 0.6s ease-out 4.5s, transform 0.6s ease-out 4.5s;
  }
  .js-animate.animate--delay-16 {
    transition: all 0.6s ease-out 4.8s, transform 0.6s ease-out 4.8s;
  }
  .js-animate.from-left {
    transform: translateX(-100%);
  }
  .js-animate.from-right {
    transform: translateX(100%);
  }
  .js-animate.from-bottom {
    transform: translateY(200px);
  }
  .js-animate.zoom-in {
    transform: scale(0.5);
  }
  .js-animate.show-width-left {
    width: 0;
    left: 0;
    right: auto;
  }
  .js-animate.show-width-right {
    width: 0;
    right: 0;
    left: auto;
  }
  .js-animate.visible {
    opacity: 1;
  }
  .js-animate.visible.from-bottom, .js-animate.visible.from-top, .js-animate.visible.from-left, .js-animate.visible.from-right, .js-animate.visible.zoom-out, .js-animate.visible.zoom-in {
    transform: translateY(0) translateX(0) scale(1);
  }
  .js-animate.visible.show-width-right, .js-animate.visible.show-width-left {
    width: 100%;
  }
}
.bg-arrow {
  width: 100%;
  background: #0E0E0E;
  display: block;
}

.bg-arrow-black {
  width: 100%;
  background: #F6F6F6;
  display: block;
}

.header {
  display: flex;
  align-items: center;
  background: #0E0E0E;
  color: white;
  padding: 6rem 0;
}
.header__subheading {
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}
.header__block {
  display: flex;
  gap: 2rem;
}
.header__bonus {
  width: 65.5rem;
  flex-shrink: 0;
}
.header__video {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.header__video video {
  width: 100%;
  border-radius: 20px;
}
.header__video video::-webkit-media-controls-volume-slider {
  display: none;
}
.header__video video::-webkit-media-controls-mute-button {
  display: none;
}
.header__sound {
  position: absolute;
  cursor: pointer;
  top: 2rem;
  right: 2rem;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
}
.header__sound .sound-off {
  display: none;
}
.header__sound.off .sound-on {
  display: none;
}
.header__sound.off .sound-off {
  display: block;
}
.header__click {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  justify-content: center;
  margin-bottom: 8rem;
}
.header__click svg {
  width: 4.5rem;
}
.header__info {
  display: flex;
  gap: 0.5rem;
  background: white;
  border-radius: 20px;
  margin: 4rem 1rem 9rem 12rem;
  position: relative;
}
.header__img {
  margin-top: -4rem;
  margin-left: -12rem;
  margin-right: -3rem;
  width: 46rem;
  flex-shrink: 0;
}
.header__arrow {
  position: absolute;
  right: -1rem;
  bottom: -9rem;
  width: 20rem;
}
.header__label {
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  margin-bottom: 1rem;
  background: #0E0E0E;
  border-radius: 10rem;
  margin-top: 0.5rem;
}
.header__title {
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-size: 4.8rem;
  text-transform: uppercase;
  line-height: 1;
  color: #0E0E0E;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
}

.tracy {
  display: flex;
  align-items: start;
  gap: 1.2rem;
}
.tracy__img {
  width: 13.4rem;
  flex-shrink: 0;
}
.tracy__title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 2.4rem;
}
.tracy__title img {
  width: 13.6rem;
}

.bonus {
  text-align: center;
  background: white;
  color: #0E0E0E;
  padding: 2rem;
  border-radius: 20px;
}
.bonus__img {
  margin: -1rem -5rem 2.4rem -4rem;
  width: calc(100% + 9rem);
  max-width: inherit;
}
.bonus__tags {
  font-weight: bold;
  margin-bottom: 2rem;
}
.bonus__price {
  font-size: 4rem;
  font-weight: 800;
  color: #E31515;
  margin-bottom: 1rem;
}
.bonus__sale {
  font-size: 3.2rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.bonus__text {
  font-weight: bold;
  margin-bottom: 2.4rem;
}
.bonus__form {
  margin-bottom: 2.4rem;
}
.bonus__quality {
  display: flex;
  gap: 1rem;
  align-items: center;
  text-align: left;
}
.bonus__quality > img {
  width: 12rem;
  flex-shrink: 0;
}
.bonus__title {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.bonus__businessmans {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.5rem;
  font-weight: bold;
}
.bonus__businessmans > img {
  width: 19rem;
}
.bonus__stars {
  width: 12rem;
  flex-shrink: 0;
}

.package__heading {
  margin-bottom: 2rem;
}
.package__block {
  display: flex;
  gap: 2rem;
  align-items: start;
  margin-bottom: 4rem;
}
.package__img {
  width: 79rem;
  flex-shrink: 0;
  border-radius: 8px;
}
.package__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.package__list li {
  display: flex;
  align-items: start;
  gap: 1.2rem;
  font-size: 2.8rem;
  margin-bottom: 2.4rem;
}
.package__list li:last-child {
  margin-bottom: 0;
}
.package__list li svg {
  width: 9.5rem;
  flex-shrink: 0;
  margin: 1.4rem 0;
}
.package__tags {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.package__text p {
  margin-bottom: 3rem;
}
.package__text p:last-child {
  margin-bottom: 0;
}
.package__text a {
  color: #0E0E0E;
  text-decoration: none;
}
.package__text a:hover {
  text-decoration: underline;
}

.proposition {
  background: #0E0E0E;
  color: white;
}
.proposition__img {
  width: 130rem;
  display: block;
  margin: 0 auto 1.2rem;
}
.proposition__next {
  display: inline-flex;
  margin-top: 1.2rem;
  align-items: center;
  gap: 3rem;
}
.proposition__next svg {
  width: 4.5rem;
}

.program__block {
  display: flex;
  gap: 3.2rem;
  padding: 4rem 2rem 4rem 0;
  align-items: start;
  background: white;
  border: 2px solid #EFEFEF;
  border-radius: 20px;
  margin-bottom: 2rem;
}
.program__block:last-child {
  margin-bottom: 0;
}
.program__num {
  display: inline-flex;
  padding: 1rem 3rem;
  font-family: "Lemon Tuesday", sans-serif;
  font-size: 3rem;
  background: #0E0E0E;
  color: white;
  border-radius: 0 10rem 10rem 0;
  margin-bottom: 2rem;
}
.program__img {
  width: 78rem;
  flex-shrink: 0;
}
.program__img img {
  width: 100%;
}
.program__title {
  font-size: 3.2rem;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 2rem;
}
.program__text {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 4.7rem;
}
.program__text b {
  font-weight: 800;
}
.program__price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #E31515;
  margin-bottom: 1.2rem;
}
.program__price--old {
  position: relative;
  padding: 0 0.5rem;
}
.program__price--old:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  height: 3px;
  background: #E31515;
  left: 0;
  width: 100%;
  transform: rotate(-15deg);
}
.program__btn {
  margin-top: 4rem;
  min-width: 100%;
}

.paris {
  padding: 6rem 0;
  background: #0E0E0E;
  color: white;
}
.paris__block {
  width: 123rem;
  margin: 0 auto;
  text-align: center;
}
.paris__video {
  width: 100% !important;
  margin-bottom: 2rem;
  height: 69rem !important;
}
.paris__next {
  display: inline-flex;
  gap: 4rem;
  margin-top: 2rem;
  align-items: center;
}
.paris__arrow {
  width: 4.5rem;
}

.tools {
  background: #0E0E0E;
  color: white;
}
.tools__block {
  width: 106rem;
  margin: 0 auto;
  text-align: center;
}
.tools__heading {
  margin: 0 -8rem 2rem -8rem;
}
.tools__text {
  margin: 0 -8rem 4rem -8rem;
}
.tools__list {
  list-style: none;
  padding: 0;
  margin: 0 0 4rem;
  text-align: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.tools__list li {
  padding: 2rem 4rem;
  border-radius: 10rem;
  border: 1px solid white;
  white-space: nowrap;
  font-weight: bold;
}
.tools__next {
  display: inline-flex;
  gap: 4rem;
  margin-bottom: 2rem;
  max-width: 98rem;
}
.tools__next svg {
  width: 4.5rem;
  flex-shrink: 0;
}
.tools__btn {
  min-width: 100%;
}

.reviews__heading {
  margin-bottom: 3rem;
  text-align: left;
}
.reviews__block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.reviews__video {
  width: calc(50% - 1rem);
  height: 44.5rem;
  flex-shrink: 0;
  border-radius: 8px;
}

.book {
  background: #0E0E0E;
  color: white;
}
.book__block {
  padding: 4rem 4rem 4rem 0;
  background: #1E1E1E;
  border: 2px solid #2A2A2A;
  border-radius: 20px;
}
.book__info {
  display: flex;
  gap: 3.2rem;
  align-items: center;
  margin-bottom: 2rem;
}
.book__img {
  width: 47.5rem;
  flex-shrink: 0;
}
.book__img img {
  width: 100%;
}
.book__num {
  display: inline-flex;
  padding: 1rem 2.3rem;
  font-family: "Lemon Tuesday", sans-serif;
  font-size: 3rem;
  background: white;
  color: #0E0E0E;
  border-radius: 0 10rem 10rem 0;
  margin-bottom: 2.4rem;
}
.book__title {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.book__title:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: white;
}
.book__text {
  font-size: 2.8rem;
  margin-bottom: 5.6rem;
}
.book__price {
  font-size: 2.8rem;
  font-weight: 800;
  color: #E31515;
  margin-bottom: 0.8rem;
}
.book__price--old {
  position: relative;
  padding: 0 0.5rem;
}
.book__price--old:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  height: 3px;
  background: #E31515;
  left: 0;
  width: 100%;
  transform: rotate(-15deg);
}
.book__btn {
  margin-top: 4rem;
}

.about__block {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.about__proposition {
  width: 105rem;
  flex-shrink: 0;
  padding: 2rem;
  background: white;
  border: 2px solid #EFEFEF;
  border-radius: 8px;
}
.about__heading {
  text-align: left;
  font-size: 4.8rem;
  margin-bottom: 4rem;
  line-height: 1.2;
}
.about__heading img {
  width: 5rem;
  vertical-align: middle;
}
.about__heading b {
  color: #E31515;
}
.about__heading small {
  font-size: 3.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
}
.about__subheading {
  font-size: 5rem;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  margin-bottom: 4rem;
}
.about__subheading b {
  color: #E31515;
}
.about__text {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 3rem;
}
.about__text p {
  margin: 0 0 2.4rem;
}
.about__text p:last-child {
  margin-bottom: 0;
}
.about__btn {
  min-width: 100%;
}
.about__img {
  width: 78rem;
  border-radius: 8px;
}
.about__box {
  width: 78rem;
  background: #0E0E0E;
  padding: 4rem;
  border-radius: 8px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.about__arrow {
  position: absolute;
  bottom: -4rem;
  width: 8rem;
  right: 4rem;
}
.about__title {
  display: flex;
  font-size: 5rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  text-transform: uppercase;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
  margin-bottom: 2.4rem;
}
.about__title svg {
  width: 3.2rem;
  flex-shrink: 0;
}
.about__list {
  margin: 2.4rem 0 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.about__list li {
  display: flex;
  align-items: center;
  margin-bottom: 2.4rem;
  gap: 0.8rem;
}
.about__list li a {
  color: #E31515;
  text-decoration-thickness: 1px;
  display: inline-block;
  margin-top: 1rem;
}
.about__list li a:hover {
  text-decoration: none;
}
.about__list li:last-child {
  margin-bottom: 0;
}
.about__list li img {
  width: 14rem;
}
.about__doc {
  width: 51rem;
  flex-shrink: 0;
}
.about__doc img {
  width: 100%;
  border-radius: 8px;
}
.about__more {
  color: #666666;
  font-size: 2rem;
}

.screens {
  background: #0E0E0E;
  color: white;
}
.screens__heading {
  margin-bottom: 2.4rem;
}
.screens__block {
  display: flex;
  gap: 4rem;
}

.proposition-7 .program__title {
  padding-left: 3.2rem;
  position: relative;
}
.proposition-7 .program__title::before {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  top: 1.4rem;
  left: 0.6rem;
  border-radius: 50%;
  background: #0E0E0E;
}
.proposition-7 .program__text {
  padding-left: 3.2rem;
}

.expert {
  background: #0E0E0E;
  color: white;
}
.expert__heading {
  margin-bottom: 3.2rem;
}
.expert__box {
  border: 2px solid #2A2A2A;
  background: #0E0E0E;
  padding: 0.8rem;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  font-size: 3.2rem;
  background: #1E1E1E;
}
.expert__block {
  display: flex;
  gap: 2rem;
}
.expert__arrow {
  width: 3rem;
}
.expert__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  width: 79rem;
}
.expert__img {
  width: 79rem;
  flex-shrink: 0;
}

.apply__subheading {
  font-weight: bold;
  margin-bottom: 3.2rem;
}
.apply__img {
  width: 100%;
  margin-bottom: 3.2rem;
}
.apply__heading {
  margin-bottom: 2rem;
  font-size: 4.8rem;
}
.apply__price {
  position: relative;
}
.apply__price svg {
  width: 29rem;
  position: absolute;
  left: -1rem;
  top: -1.5rem;
}
.apply__text {
  margin-bottom: 2rem;
}
.apply__text img {
  width: 5rem;
  vertical-align: middle;
  margin-top: -1rem;
}
.apply__slogan {
  margin-top: 5.6rem;
  text-transform: uppercase;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}

@media screen and (min-width: 1025px) {
  .for-mobile {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .for-desktop {
    display: none !important;
  }
  body {
    font-size: 2.8rem;
  }
  .container,
  .container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
  }
  .main__section {
    padding: 4rem 0;
  }
  .main__section-left {
    padding: 0 2rem;
  }
  .main__section-right {
    padding: 0 2rem;
  }
  .heading {
    font-size: 5.2rem;
    margin-bottom: 2rem;
  }
  .btn {
    min-width: 100%;
    min-height: 14rem;
    height: auto;
    font-size: 4.2rem;
    line-height: 1.2;
    padding: 4rem;
    text-align: center;
  }
  .btn svg {
    width: 9rem;
  }
  .list__item {
    padding-left: 4rem;
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
  .list__item:before {
    width: 2rem;
    height: 2rem;
  }
  .list-num__item {
    height: 9rem;
    padding: 1rem 1rem 1rem 10rem;
    font-size: 2.1rem;
    line-height: 1.2;
    backdrop-filter: none;
  }
  .list-num__item:before {
    font-size: 6rem;
    line-height: 7.5rem;
    height: 7rem;
    width: 7rem;
    top: 1rem;
    left: 1rem;
  }
  .form-control {
    margin-bottom: 2rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-check {
    font-size: 2.8rem;
  }
  .form-check svg {
    width: 3.2rem;
  }
  .form-input {
    height: 9rem;
    font-size: 3.2rem;
    border: 1px solid #E4E4E4;
    background: white;
  }
  .form-input:focus {
    border: 1px solid #E4E4E4;
  }
  .form-btn {
    font-size: 4.2rem;
  }
  .message {
    display: none;
  }
  .play {
    padding: 2.4rem;
    column-gap: 1.5rem;
    height: 9rem;
    font-weight: normal;
    font-size: 2.4rem;
  }
  .play svg {
    width: 2.8rem;
  }
  .header {
    padding: 4rem 0 0 0;
  }
  .header__subheading {
    margin-bottom: 3.2rem;
  }
  .header__block {
    flex-direction: column;
    gap: 0;
  }
  .header__bonus {
    width: 100vw;
    margin: 0 -2rem;
    background: #F6F6F6;
    color: #0E0E0E;
    padding: 2rem;
  }
  .header__video {
    margin-bottom: 3rem;
  }
  .header__sound {
    width: 11rem;
    height: 11rem;
  }
  .header__click {
    gap: 2.4rem;
    margin-bottom: 3rem;
  }
  .header__click svg {
    width: 5rem;
  }
  .tracy {
    display: block;
    margin-bottom: 4rem;
  }
  .tracy__text {
    margin-top: 2.4rem;
  }
  .tracy__block {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .tracy__img {
    width: 14rem;
  }
  .tracy__stars {
    width: 26rem;
    flex-shrink: 0;
  }
  .tracy__title {
    margin-bottom: 0;
  }
  .bonus {
    padding: 2rem;
    border: 1px dashed #6E6055;
    background: #FBFBDA;
  }
  .bonus__heading {
    font-size: 5.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
  }
  .bonus__img {
    margin-bottom: 2rem;
  }
  .bonus__tags {
    margin-top: 4rem;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
  .bonus__price {
    font-size: 5.2rem;
    margin-bottom: 2rem;
  }
  .bonus__sale {
    font-size: 4rem;
    text-transform: none;
    margin-bottom: 2rem;
  }
  .bonus__text {
    font-weight: bold;
    margin-bottom: 2.4rem;
  }
  .bonus__form {
    margin-bottom: 1rem;
    border: 1px solid #E4E4E4;
    background: white;
    border-radius: 8px;
    padding: 2rem;
  }
  .bonus__quality {
    margin-bottom: 0;
  }
  .bonus__quality > img {
    width: 20rem;
  }
  .bonus__title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .bonus__businessmans {
    gap: 1rem;
    font-size: 2rem;
  }
  .bonus__businessmans > img {
    width: 26rem;
  }
  .bonus__stars {
    width: 24rem;
  }
  .bonus__arrows {
    display: flex;
    justify-content: center;
  }
  .bonus__arrows svg {
    width: 9rem;
    flex-shrink: 0;
  }
  .package {
    margin: 0 -2rem;
    background: #F6F6F6;
    color: #0E0E0E;
    padding: 4rem 0;
  }
  .package__heading {
    margin-bottom: 4rem;
  }
  .package__block {
    flex-direction: column-reverse;
    gap: 4rem;
    margin-bottom: 0;
  }
  .package__img {
    width: 100%;
  }
  .package__list {
    margin-bottom: 4rem;
  }
  .package__list li {
    gap: 1rem;
    font-size: 2.8rem;
    margin-bottom: 2.4rem;
  }
  .package__list li b {
    font-size: 4rem;
  }
  .package__list li:last-child {
    margin-bottom: 0;
  }
  .package__info {
    font-size: 4rem;
    margin-bottom: 2rem;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
  }
  .package__text {
    font-size: 3.2rem;
  }
  .package__text p {
    margin-bottom: 4rem;
  }
  .package__text p:last-child {
    margin-bottom: 0;
  }
  .program__block {
    flex-direction: column;
    gap: 0;
    padding: 2rem;
    align-items: center;
    background: white;
    border: 2px solid #EFEFEF;
    border-radius: 20px;
    margin-bottom: 2rem;
  }
  .program__block:last-child {
    margin-bottom: 0;
  }
  .program__num {
    padding: 2rem 6rem;
    font-size: 3.2rem;
    color: white;
    border-radius: 10rem;
    margin-bottom: 2rem;
  }
  .program__img {
    width: 100%;
    text-align: center;
  }
  .program__title {
    font-size: 5.2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .program__text {
    margin-top: 2rem;
    font-size: 3.2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
  }
  .program__text b {
    font-weight: 800;
  }
  .program__price {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  .program__btn {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .program__separator {
    height: 1px;
    background: #A0A0A0;
    margin-bottom: 2rem;
  }
  .paris {
    padding: 4rem 0;
  }
  .paris__block {
    width: 100%;
  }
  .paris__video {
    width: 100% !important;
    margin-bottom: 0;
    height: 42rem !important;
  }
  .tools__block {
    width: 100%;
  }
  .tools__heading {
    margin: 0 0 2rem 0;
    text-transform: uppercase;
    font-size: 3.6rem;
    line-height: 1.2;
  }
  .tools__text {
    margin: 0 4rem 3rem 4rem;
  }
  .tools__list {
    margin: 0 0 3rem;
    gap: 1rem;
  }
  .tools__list li {
    padding: 1rem 2rem;
    font-weight: normal;
  }
  .tools__next {
    max-width: inherit;
  }
  .tools__arrows {
    display: inline-flex;
    margin-bottom: 2rem;
  }
  .tools__arrows svg {
    width: 9rem;
    flex-shrink: 0;
  }
  .tools__info {
    font-size: 4rem;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    margin-bottom: 3rem;
  }
  .reviews__heading {
    margin-bottom: 2rem;
    text-align: center;
  }
  .reviews__video {
    width: 100%;
    height: 42rem;
  }
  .book__block {
    padding: 2rem;
  }
  .book__info {
    flex-direction: column;
    gap: 2rem;
    align-items: start;
  }
  .book__img {
    width: 70rem;
    margin: 0 -2rem;
    text-align: center;
  }
  .book__img img {
    margin-bottom: 0;
  }
  .book__num {
    display: inline-flex;
    padding: 2rem 6rem;
    font-family: "Lemon Tuesday", sans-serif;
    font-size: 3.3rem;
    border-radius: 10rem;
    margin-bottom: 2rem;
  }
  .book__title {
    margin-bottom: 2rem;
    gap: 2rem;
  }
  .book__title:before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .book__text {
    margin-bottom: 2rem;
  }
  .book__price {
    font-size: 4rem;
    margin-bottom: 1.8rem;
    text-align: left;
  }
  .book__btn {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .about__block {
    flex-direction: column;
    gap: 2rem;
  }
  .about__proposition {
    order: -1;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
  }
  .about__doc {
    width: 100%;
  }
  .about__more {
    display: none;
  }
  .about__heading {
    text-align: center;
    font-size: 5.2rem;
    margin-bottom: 2rem;
  }
  .about__subheading {
    font-size: 5.2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .about__subheading b {
    display: block;
  }
  .about__text {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .about__text .js-show {
    display: block !important;
  }
  .about__text p {
    margin-top: 0;
    margin-bottom: 4rem;
  }
  .about__text p:last-child {
    margin-bottom: 0;
  }
  .about__img {
    margin-bottom: 0;
  }
  .about__box {
    margin-bottom: 0;
    font-size: 3.2rem;
  }
  .about__arrow {
    width: 20rem;
    bottom: -10rem;
  }
  .about__title {
    font-size: 5rem;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  .about__title svg {
    width: 6rem;
  }
  .about__list {
    margin-top: 4rem;
    text-align: center;
  }
  .about__list li {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    gap: 0;
  }
  .about__list li:last-child {
    margin-bottom: 0;
  }
  .about__list li img {
    width: 24rem;
  }
  .screens__heading {
    margin-bottom: 2rem;
    font-size: 4.8rem;
  }
  .screens__block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .screens__item {
    flex-basis: calc(50% - 0.5rem);
  }
  .screens__item:first-child {
    order: 1;
    flex-basis: 37.5rem;
  }
  .screens__item:last-child {
    order: 2;
    flex-basis: 39.4rem;
  }
  .screens__item:nth-child(2) {
    order: 4;
    flex-basis: 39.2rem;
  }
  .screens__item:nth-child(3) {
    order: 3;
    flex-basis: 37.5rem;
  }
  .proposition-7 .program__title {
    padding-left: 3.2rem;
    font-size: 3.6rem;
    text-align: left;
    position: relative;
  }
  .proposition-7 .program__title::before {
    width: 1.6rem;
    height: 1.6rem;
    top: 1.4rem;
    left: 0.6rem;
  }
  .proposition-7 .program__text {
    padding-left: 0;
  }
  .expert {
    background: #0E0E0E;
    color: white;
  }
  .expert__heading {
    margin-bottom: 3rem;
  }
  .expert__box {
    width: 70rem;
    padding: 1.6rem;
    font-size: 2.8rem;
  }
  .expert__block {
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .expert__arrow {
    width: 3rem;
  }
  .expert__check {
    width: 5rem;
    margin: 0 -1rem;
  }
  .expert__list {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    width: 100%;
  }
  .expert__img {
    width: 100%;
  }
  .apply__subheading {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
  .apply__img {
    width: 100%;
    margin-bottom: 3.2rem;
  }
  .apply__heading {
    margin-bottom: 4rem;
    font-size: 4.8rem;
  }
  .apply__price svg {
    display: none;
  }
  .apply__text {
    margin-bottom: 3rem;
    font-size: 4.4rem;
  }
  .apply__slogan {
    margin-top: 3rem;
    text-transform: none;
    font-size: 4.4rem;
    margin-bottom: 2rem;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.1;
  background: #0E0E0E;
  color: #fff;
  border-top: 1px solid #454545;
  padding: 4.3rem 0 5.5rem;
}
.footer__dogovor {
  display: flex;
  row-gap: 2rem;
  align-items: end;
}
.footer__documents {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .footer__documents {
    align-items: center;
    gap: 4rem;
  }
}
.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-out, border 0.3s ease-out;
}
.footer a:hover {
  color: #facaca;
  border-color: #facaca;
}
.footer a svg {
  width: 2rem;
  fill: currentColor;
}
@media screen and (max-width: 1024px) {
  .footer a svg {
    width: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 6rem 0;
    font-size: 2rem;
  }
  .footer__support {
    font-size: 2.4rem;
  }
}
.footer .container {
  padding: 0 16rem;
}
@media screen and (max-width: 1024px) {
  .footer .container {
    padding: 0 2rem;
  }
}
.footer__row {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 6rem;
  margin-bottom: 2rem;
}
.footer__row:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    min-height: 5rem;
    column-gap: 3rem;
    margin-bottom: 3rem;
  }
  .footer__row:last-child {
    margin-bottom: 0;
  }
}
.footer__phone {
  display: flex;
  column-gap: 6rem;
  min-width: 19rem;
}
.footer__phone > div {
  min-width: 19rem;
}
.footer__phone span {
  display: block;
  font-size: 1.4rem;
  color: #A3A3A3;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1024px) {
  .footer__phone span {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
  }
}
.footer__phone a {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .footer__phone a {
    font-size: 3rem;
  }
}
.footer__contacts {
  display: flex;
  column-gap: 6rem;
  align-items: center;
}
.footer__social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 19rem;
  flex-shrink: 0;
  border: 1px solid white;
  border-radius: 5px;
  column-gap: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 1rem;
}
@media screen and (max-width: 1024px) {
  .footer__social a {
    padding: 2rem;
    width: 28rem;
    font-size: 2rem;
  }
}
.footer__mail a {
  display: inline-flex;
  align-items: center;
  column-gap: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .footer__mail a {
    column-gap: 2rem;
    font-size: 2rem;
  }
}
.footer__copyright {
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  .footer__info {
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    align-items: center;
    margin: 0 auto;
  }
}

/*ENDfooter*/

/*# sourceMappingURL=main.css.map */
