html {
  font-size: 1.25vw;
  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.521vw;
  }
}

body {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: normal;
  font-size: 2.4rem;
  position: relative;
  line-height: 1.2;
  -webkit-font-smoothing: antialised;
  scroll-behavior: smooth;
  background: #0E0E0E;
  width: 100%;
  color: white;
  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;
  height: auto;
}

.main {
  width: 100%;
  overflow-x: hidden;
}
.main__section {
  padding: 6rem 0;
}
.main__section--left {
  padding-left: 16rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}
.main__section--right {
  padding-right: 16rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
}

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

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

.text--color {
  color: #508DFF;
}
.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 8rem;
  height: 7.8rem;
  font-size: 4rem;
  text-transform: uppercase;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  color: white;
  background: linear-gradient(90deg, #080BA8 0%, #415AFC 49.52%, #2308A8 100%);
  border-radius: 8px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: none;
}
.btn:hover {
  background: #415AFC;
}

.subheading {
  margin-bottom: 2rem;
}

.heading {
  font-size: 4.8rem;
  margin-bottom: 2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  font-weight: normal;
  line-height: 1;
}

.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__content {
  padding: 6rem 4rem 4rem;
  background: #282828;
  position: relative;
  width: 58rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 8px;
  scrollbar-color: rgba(255, 255, 255, 0.2) rgba(255, 255, 255, 0.2);
  scrollbar-width: 2px;
}
.modal__content::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  display: block;
}
.modal__content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2);
  margin: 1.8rem;
}
.modal__content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
}
.modal__content.text-content {
  background: #F6F6F6;
  width: 132rem;
  padding: 10rem 4rem;
  font-size: 3.2rem;
  color: #0E0E0E;
}
@media screen and (max-width: 1024px) {
  .modal__content.text-content {
    font-size: 2.6rem;
  }
}
.modal__content.text-content ol {
  line-height: 1.5;
  margin: 0;
}
.modal__content.text-content::-webkit-scrollbar {
  height: 20px;
  width: 20px;
}
.modal__content.text-content::-webkit-scrollbar-track {
  background: rgba(14, 14, 14, 0.1);
  margin: 3rem;
  box-shadow: inset -15px 0 0 0 #F6F6F6;
}
.modal__content.text-content::-webkit-scrollbar-thumb {
  background: rgba(14, 14, 14, 0.2);
  box-shadow: inset -15px 0 0 0 #F6F6F6;
}
@media screen and (max-width: 1024px) {
  .modal__content {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 22vh;
    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: 4rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .modal__close {
    top: 4rem;
    width: 4rem;
    height: 4rem;
  }
}
.modal__heading {
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 1;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 10px;
  color: white;
  text-align: center;
}

.form-control {
  position: relative;
  margin-bottom: 0.8rem;
}
.form .error {
  color: red;
  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: white;
  border: none;
  box-shadow: none;
  border-radius: 8px;
  padding: 2rem 3rem;
  height: 6rem;
  font-size: 2rem;
  line-height: 1;
  color: #3F3F3F;
  width: 100%;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}
.form-input:focus {
  border: none;
  outline: none;
}
.form-input.err {
  color: red;
}
.form-input.err:-webkit-autofill {
  -webkit-text-fill-color: red;
}
.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: #3D3D3D;
  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;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes tape1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes tape2 {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes tape3 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tape4 {
  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;
  }
}
.header__img {
  width: 98rem;
  flex-shrink: 0;
  position: relative;
}
.header__img video {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.header__img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16rem;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, #0E0E0E 100%);
}
.header__slogan {
  font-size: 3.2rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 46.4rem;
  margin-bottom: 4rem;
}
.header__subheading {
  border-radius: 1.2rem;
  border: 2px solid #5E5E5E;
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem 2rem;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 4rem;
}
.header__subheading:before {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #508DFF;
}
.header__heading {
  font-size: 9.6rem;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.header__text {
  font-size: 3.2rem;
  margin-bottom: 7.5rem;
}

.subject__block {
  display: flex;
  align-items: center;
  column-gap: 4rem;
}
.subject__img {
  width: 79rem;
  height: 81rem;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.subject__img:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 16rem;
  background: linear-gradient(0deg, rgba(14, 14, 14, 0) 0%, #0E0E0E 100%);
}
.subject__img:after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16rem;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, #0E0E0E 100%);
}
.subject__tape {
  width: 38.5rem;
  flex-shrink: 0;
}
.subject__tape-inner {
  display: inline-flex;
  flex-direction: column;
}
.subject__tape-inner > img {
  margin-top: 2rem;
  width: 100%;
}
.subject__tape-1 .subject__tape-inner {
  animation: tape1 36s linear infinite;
}
.subject__tape-2 .subject__tape-inner {
  animation: tape2 36s linear infinite;
}
.subject__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.subject__list li {
  display: flex;
  align-items: center;
  background: #3D3D3D;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 0.8rem 1.2rem;
  font-weight: 500;
  gap: 1.2rem;
}
.subject__list li svg {
  width: 5rem;
  flex-shrink: 0;
}
.subject__list li:last-child {
  margin-bottom: 0;
}

.goal__heading {
  font-size: 6.2rem;
  margin-bottom: 3.2rem;
}
.goal__img {
  width: 94rem;
  flex-shrink: 0;
  position: relative;
}
.goal__img img {
  width: 100%;
}
.goal__citate {
  position: absolute;
  bottom: 12rem;
  right: 20rem;
  font-size: 3.2rem;
  font-style: italic;
}
.goal__citate > div {
  display: flex;
  column-gap: 2rem;
}
.goal__quote {
  width: 4rem;
  flex-shrink: 0;
}
.goal__quote:last-child {
  align-self: end;
}
.goal__quote:first-child {
  align-self: start;
}
.goal__author {
  justify-content: end;
  margin-top: 2.8rem;
}
.goal__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.goal__list li {
  display: flex;
  align-items: start;
  gap: 1.2rem;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 3.2rem;
}
.goal__list li span {
  align-self: center;
}
.goal__list li:last-child {
  margin-bottom: 0;
}
.goal__list li svg {
  width: 9.5rem;
  flex-shrink: 0;
}

.unique__list {
  margin: 5rem 0 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.unique__list li {
  flex-basis: 51.3rem;
  border-radius: 8px;
  border: 1px solid #555;
  background: #222;
  padding: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.unique__num {
  color: #3E5E8F;
  font-size: 3.6rem;
  margin-bottom: 1.2rem;
}
.unique__title {
  font-size: 4rem;
  margin-bottom: 1.2rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
}
.unique__text {
  font-size: 2.6rem;
}

.format__img {
  width: 79rem;
  flex-shrink: 0;
}
.format__block {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.format__title {
  font-size: 3.6rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
  margin-bottom: 1.2rem;
}
.format__text {
  margin-bottom: 1.2rem;
}
.format__text:last-child {
  margin-bottom: 0;
}
.format__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.format__list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.format__list li:before {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: white;
}

.reviews__heading {
  margin-bottom: 4rem;
}
.reviews__block {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.reviews__item {
  flex-basis: calc(50% - 1rem);
  background: #282828;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.2rem 1.2rem 0;
}
.reviews__about {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.2rem 2rem;
  background: white;
  border-radius: 0 8px 0 8px;
  font-size: 1.6rem;
  color: #0E0E0E;
}
.reviews__info {
  color: #7E7E7E;
  margin-bottom: 2rem;
  line-height: 1;
}
.reviews__img {
  width: 22rem;
  flex-shrink: 0;
  border-radius: 8px;
}
.reviews__name {
  font-weight: bold;
  color: white;
  margin-bottom: 0.5rem;
}
.reviews__text {
  display: flex;
  column-gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 2.6rem;
}
.reviews__result {
  margin: auto -1.2rem 0;
  background: white;
  color: #0E0E0E;
  border-radius: 8px;
  padding: 1.2rem;
}

.about__img {
  width: 110rem;
}
.about__subheading {
  margin-bottom: 4rem;
}
.about__text {
  margin-bottom: 2rem;
  font-weight: bold;
}
.about__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.about__list li {
  display: flex;
  align-items: start;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.about__list li:last-child {
  margin-bottom: 0;
}
.about__list li img {
  width: 14rem;
}

.price__video {
  width: 52rem;
  position: relative;
  flex-shrink: 0;
  padding: 2.2rem 2.5rem;
  background: url("../images/bg-video.webp") center center no-repeat;
  background-size: contain;
}
.price__video video {
  width: 100%;
  border-radius: 4rem;
}
.price__play {
  padding: 2.6rem 4rem;
  cursor: pointer;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  white-space: nowrap;
  gap: 2rem;
  align-items: center;
  position: absolute;
  z-index: 2;
  top: 3.4rem;
  left: 50%;
  transform: translateX(-50%);
}
.price__play:hover {
  background: rgba(0, 0, 0, 0.5);
}
.price__play svg {
  width: 1.7rem;
  flex-shrink: 0;
}
.price__play .play {
  display: none;
}
.price__play.off .pause {
  display: none;
}
.price__play.off .play {
  display: block;
}
.price__block {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 12rem;
}
.price__heading {
  font-size: 6.4rem;
  margin-bottom: 8rem;
}
.price__title {
  font-size: 4.8rem;
  font-family: "Bebas Neue Cyrillic", sans-serif;
  line-height: 1;
}
.price__list {
  margin: 2rem 0 8rem;
  padding: 0;
  list-style: none;
}
.price__list li {
  display: flex;
  align-items: start;
  margin-bottom: 3.2rem;
  gap: 1.2rem;
  font-size: 3.2rem;
}
.price__list li svg {
  width: 2.5rem;
  flex-shrink: 0;
  margin-top: 0.6rem;
}
.price__list li:last-child {
  margin-bottom: 0;
}
.price__btn {
  min-width: 100%;
}

@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: 4rem 2rem;
    flex-direction: column-reverse;
    align-items: start;
  }
  .main__section--right {
    padding: 4rem 2rem;
    flex-direction: column;
    align-items: start;
  }
  .heading {
    font-size: 4.8rem;
    margin-bottom: 2.4rem;
  }
  .subheading {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .btn {
    min-width: 100%;
    height: 12rem;
    font-size: 4.8rem;
    padding: 2rem;
  }
  .btn svg {
    width: 9rem;
  }
  .form-fields {
    flex-direction: column;
  }
  .form-check {
    font-size: 2.4rem;
  }
  .form-check svg {
    width: 3rem;
  }
  .form-input {
    height: 8rem;
    font-size: 2.4rem;
  }
  .form-btn {
    font-size: 4.8rem;
    height: 12rem;
  }
  .header {
    flex-direction: column;
    padding-top: 4rem;
    padding-bottom: 6rem;
    gap: 0;
  }
  .header__img {
    width: 100vw;
    margin: 0 -2rem;
    position: relative;
  }
  .header__img video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .header__img:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -1px;
    height: 32rem;
    background: linear-gradient(0deg, rgba(14, 14, 14, 0) 0%, #0E0E0E 100%);
  }
  .header__img:after {
    height: 32rem;
    background: linear-gradient(180deg, rgba(14, 14, 14, 0) 0%, #0E0E0E 50%);
  }
  .header__slogan {
    gap: 0.8rem;
    width: 41rem;
    margin-bottom: 0;
  }
  .header__subheading {
    border-radius: 1.6rem;
    gap: 1.6rem;
    padding: 1rem 2.4rem;
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .header__subheading:before {
    width: 1.6rem;
    height: 1.6rem;
  }
  .header__heading {
    font-size: 8rem;
    margin-bottom: 2.4rem;
  }
  .header__text {
    margin-top: -16rem;
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
    position: relative;
  }
  .subject__img {
    width: 100vw;
    margin: 0 -2rem 2.4rem;
    height: auto;
    flex-direction: column;
    justify-content: stretch;
    gap: 1rem;
  }
  .subject__img:before {
    display: none;
  }
  .subject__img:after {
    display: none;
  }
  .subject__tape {
    width: auto;
    height: 26rem;
  }
  .subject__tape-inner {
    display: inline-flex;
    flex-direction: row;
    height: 26rem;
  }
  .subject__tape-inner > img {
    margin-left: 1rem;
    margin-top: 0;
    width: auto;
    height: 100%;
    object-fit: cover;
  }
  .subject__tape-1 .subject__tape-inner {
    animation: tape3 36s linear infinite;
  }
  .subject__tape-2 .subject__tape-inner {
    animation: tape4 36s linear infinite;
  }
  .subject__list li {
    margin-bottom: 1.6rem;
    padding: 0.8rem 0.8rem;
    gap: 1.6rem;
  }
  .subject__list li svg {
    width: 4.8rem;
  }
  .subject__list li:last-child {
    margin-bottom: 0;
  }
  .goal {
    gap: 4rem;
    flex-direction: column;
    padding-bottom: 0;
  }
  .goal__img {
    width: 100vw;
    margin: 0 -2rem;
  }
  .goal__citate {
    bottom: 6rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.8rem;
    width: 60rem;
  }
  .goal__author {
    margin-top: 5rem;
  }
  .unique__list {
    margin: 0;
    gap: 2rem;
  }
  .unique__list li {
    flex-basis: 100%;
  }
  .unique__num {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .unique__title {
    margin-bottom: 1.6rem;
  }
  .unique__text {
    font-size: 3.2rem;
  }
  .format__img {
    width: 100vw;
    margin: 0 -2rem;
    order: 1;
  }
  .format__info {
    order: 2;
  }
  .format__block {
    flex-direction: column;
    gap: 2.4rem;
    align-items: stretch;
    justify-content: stretch;
    margin-bottom: 8rem;
  }
  .format__block:last-child {
    margin-bottom: 0;
  }
  .format__title {
    order: 0;
    font-size: 4rem;
    margin-bottom: 0;
  }
  .format__text {
    font-size: 3.2rem;
    margin-bottom: 1.6rem;
  }
  .format__text:last-child {
    margin-bottom: 0;
  }
  .format__list li {
    margin-bottom: 1.6rem;
    font-size: 3.2rem;
  }
  .format__list li:before {
    width: 1.6rem;
    height: 1.6rem;
  }
  .reviews__block {
    gap: 2.4rem;
  }
  .reviews__item {
    flex-basis: 100%;
    padding: 1.6rem 1.6rem 0;
    position: relative;
  }
  .reviews__about {
    padding: 1.6rem 2.4rem;
    font-size: 2.8rem;
  }
  .reviews__info {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
    height: 30rem;
    padding-left: 32rem;
    display: flex;
    align-items: center;
  }
  .reviews__img {
    width: 30rem;
    position: absolute;
    top: 1.6rem;
    left: 1.6rem;
  }
  .reviews__name {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }
  .reviews__text {
    font-size: 3.2rem;
  }
  .reviews__result {
    margin: auto -1.6rem 0;
    padding: 1.6rem;
    font-size: 3.2rem;
  }
  .about__img {
    width: 100vw;
    margin: 0 -2rem;
  }
  .about__subheading {
    margin-bottom: 1.6rem;
  }
  .about__text {
    font-size: 3rem;
    margin-bottom: 2.4rem;
  }
  .about__list li {
    gap: 1.6rem;
    margin-bottom: 2.8rem;
    font-size: 3rem;
  }
  .about__list li:last-child {
    margin-bottom: 0;
  }
  .about__list li img {
    width: 26rem;
    margin-top: -1.2rem;
  }
  .price__block {
    flex-direction: column;
  }
  .price__heading {
    text-align: center;
  }
  .price__img {
    width: 100vw;
    margin: 0 -2rem;
  }
  .price__list {
    margin: 4rem 0 6rem;
  }
  .price__list li {
    margin-bottom: 4rem;
    gap: 2.4rem;
    font-size: 2.8rem;
  }
  .price__list li svg {
    width: 2.8rem;
    margin-top: 0.2rem;
  }
  .price__list li:last-child {
    margin-bottom: 0;
  }
  .price__video {
    width: 57rem;
    padding: 2rem 2.6rem;
    margin-bottom: 4rem;
  }
  .price__video video {
    width: 100%;
    border-radius: 4rem;
  }
  .price__play {
    font-size: 3.2rem;
  }
  .price__block {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 12rem;
  }
  .price__heading {
    font-size: 6.4rem;
    margin-bottom: 4rem;
    text-align: center;
  }
  .price__block {
    flex-direction: column;
    justify-content: center;
    padding: 0;
    gap: 0;
  }
  .price__title {
    font-size: 4.8rem;
  }
  .price__list {
    margin: 2.4rem 0 4rem;
  }
  .price__list li {
    margin-bottom: 1.6rem;
    gap: 2rem;
    font-size: 2.8rem;
  }
  .price__list li svg {
    width: 2.8rem;
    margin-top: 0.1rem;
  }
  .price__list li:last-child {
    margin-bottom: 0;
  }
}
/*footer*/
.footer {
  font-size: 2rem;
  font-family: "Roboto Condensed", 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: white;
  border-color: white;
}
.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 */
