:root {
  --red: #d80027;
  --white-2: #eeeeee;
  --gray: #8a8a8a;
  --gray-2: #7d7d7d;
  --gray-3: #bbbbbb;
  --gray-4: #8c8c8c;
  --switch-width: 34px;
  --z-index-navbar: 100;
  scroll-behavior: smooth;
  /* new colors */
  --orange: #faa31b;
  --violet: #635df4;
  --blue: #381894;
  --blue-2: #391998;
  --purple: #6865ff;
  --light-blue: #f6f6fe;
  --white: #ffffff;
  --black: #000000;
  --black-2: #2d2d2d;
  --bg-gradient: linear-gradient(180deg, #381894 34.9%, #6865ff 100%);
}

.glide {
  display: none;
  padding-top: 4rem;
  padding-left: 4rem;
  padding-right: 4rem;
}

.register__picture img {
  object-fit: cover;
}

.formMessage {
  opacity: 0;
}

.formMessage--error {
  color: #dc3545;
  opacity: 1;
}

.formMessage--success {
  color: #28a745;
  opacity: 1;
}

.form-error {
  opacity: 0;
  font-size: 1.2rem;
  height: 1.8rem;
}

.form-error.error-visible {
  opacity: 1;
  color: #dc3545;
}

html {
  font-size: 62.5%;
}

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

img {
  display: block;
}

body {
  overflow-x: hidden;
}

body,
button {
  font-size: 1.6rem;
  font-family: Raleway, sans-serif;
  line-height: 1.5;
}

body.no-scroll {
  height: 100vh;
  overflow: hidden;
}

.text--underline {
  text-decoration: underline;
}

.display--block {
  display: block;
}

.color--red {
  color: var(--red);
}

.color--blue {
  color: var(--blue);
}

.color--blue-2 {
  color: var(--blue-2);
}

.color--orange {
  color: var(--orange);
}

.color--violet {
  color: var(--violet);
}

.color--gray {
  color: var(--gray);
}

.bg--purple {
  background-color: var(--purple);
}

.bg--blue {
  background-color: var(--blue);
}

.bg--blue-2 {
  background-color: var(--blue-2);
}

.bg--orange {
  background-color: var(--orange);
}

.bg--light-blue {
  background-color: var(--light-blue);
}

.bg--violet {
  background-color: var(--violet);
}

.bg--black {
  background-color: var(--black);
}

.fontweight--regular {
  font-weight: 400;
}

.fontweight--medium {
  font-weight: 500;
}

.fontweight--semibold {
  font-weight: 600;
}

.fontweight--bold {
  font-weight: 700;
}

.position--relative {
  position: relative;
}

.container {
  max-width: 130rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3rem;
  padding-right: 3rem;
}

.nav {
  background-color: var(--black);
}

.nav__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 0;
}

.nav__logo {
  margin-top: 6px;
}

.nav__logo-beta {
  position: absolute;
  transform: translate(120px, 35px);
}

.nav__links {
  display: flex;
}

.nav__links > li {
  display: flex;
  align-items: center;
}

.nav__link {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 24px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  display: block;
  transition: opacity 0.3s ease;
}

.nav__link:hover {
  opacity: 0.5;
}

.nav__link--with-border {
  border: 2px solid var(--white);
  border-radius: 30px;
  padding: 8px 38px;
  margin-left: 14px;
}

.nav__lang {
  margin-left: 14px;
}

.header {
  padding-bottom: 0;
  background: var(--bg-gradient);
  overflow: hidden;
}

.header__row {
  display: flex;
}

.header__heading {
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 46px;
}

.header__heading > h1 {
  font-size: 40px;
  line-height: 1.625;
  letter-spacing: -0.01em;
  display: inline-block;
  color: var(--white);
}

.header__heading--blue {
  color: var(--blue-2);
}

.header__heading-part {
  display: block;
}

.header__image {
  width: 30%;
  text-align: right;
}

.header__image img {
  margin: -25px auto;
}

.header__cta-button {
  display: inline-block;
  color: #fff;
  text-align: center;
  font-family: Raleway;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  color: white;
  padding: 16px 48px;
  border-radius: 32px;
  border: 3px solid var(--white);
  transition: transform 0.3s ease;
}

.header__cta-button:hover {
  transform: translateY(-5px);
}

.benefits {
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  background: linear-gradient(to left, #fff, #fff 60%, var(--violet) 60%);
}

.benefits .swiper--vertical {
  height: 811px;
  position: relative;
  overflow-y: hidden;
}

.column__left,
.column__right {
  width: 50%;
}

.column__list {
  list-style: none;
}

.column__list > li {
  color: #ccd2e3;
  font-family: Raleway;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
  text-transform: uppercase;
}

.column__list > li.column__list-active {
  color: var(--white);
}

.column__list-number {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 3px;
  border: 1px solid #ccd2e3;
  border-radius: 100%;
  width: 30px;
  height: 30px;
}

.column__list-name {
  cursor: pointer;
}

.column__list-img {
  display: block;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 12px 0px 20px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  max-width: 100%;
}

.column__list-img.video__thumbnail {
  margin: 0;
}

.btn__movie {
  border: 0;
  padding: 0;
  margin: 10px 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  position: relative;
}

.btn__movie::before {
  content: url('../icons/play--outlined_v1.svg');
  position: absolute;
  width: 76px;
  height: 76px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 0.3s ease;
}

.btn__movie:hover::before {
  transform: translate(-50%, calc(-50% - 10px));
}

.column__right {
  padding: 20px 36px;
}

.column__header {
  color: #000;
  font-family: Poppins;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.column__paragraph {
  color: #000;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 131.5%;
  margin-top: 20px;
}

.column__right b {
  font-weight: 700;
}

.videos {
  background: var(--bg-gradient);
  padding-top: 11.7rem;
  padding-bottom: 12.2rem;
}

.videos__buttons {
  display: flex;
  justify-content: center;
  column-gap: 2.8rem;
}

.videos__button {
  font-family: 'Poppins';
  border: 2px solid var(--orange);
  border-radius: 40px;
  color: var(--white);
  background-color: transparent;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.36px;
  height: 48px;
  width: 208px;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videos__button--active {
  background-color: var(--orange);
  color: var(--blue-2);
  font-weight: 600;
}

.videos__button:not(.videos__button--active):hover {
  transform: translateY(-5px);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.videos__button--active::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: inherit;
  top: 100%;
  left: 50%;
  transform: rotate(45deg) translateX(-70%);
  opacity: 0;
  animation: fadeIn ease 0.3s 0.1s forwards;
}

.videos__video-container {
  margin-top: 8rem;
  display: flex;
}

.videos__video-container {
  width: 88rem;
  max-width: 100%;
  margin: 8rem auto 0;
  position: relative;
}

.videos__small-circle {
  position: absolute;
  left: -16.5rem;
  top: 13rem;
}

.videos__big-circle {
  position: absolute;
  top: 25.7rem;
  left: 0;
  transform: translateX(-50%);
}

.videos__dashed-circle {
  position: absolute;
  top: 7.7rem;
  right: 0;
  transform: translateX(50%);
}

.videos__tablet {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.videos__video-player {
  position: absolute;
  left: 50%;
  z-index: 100;
  top: 50%;
  transform: translate(-50%, -51%);
  border-radius: 20px;
  object-fit: cover;
  max-width: 95%;
}

.pricing {
  padding-top: 6.8rem;
  padding-bottom: 6.8rem;
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.pricing::before {
  content: ' ';
  width: 100vw;
  height: 218px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(90deg, #391998 6.48%, #6865ff 56.63%, #faa31b 91.96%);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.pricings__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 4rem;
}

.pricings__column {
  border-radius: 7px;
  background: #fff;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 27px 25px;
}

.pricings__column-name {
  padding: 2rem 0;
  color: var(--white);
  text-align: center;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 5px;
}

.pricings__column-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0px 0px 5px 5px;
  background: #fff;
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
  position: relative;
}

.pricings__column-description {
  padding-bottom: 4.6rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 70%;
}

.pricings__column-price {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.5;
  font-family: 'Poppins';
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
}

.pricings__column-net {
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  display: none;
  margin-bottom: -19.5px;
}
.pricings__column-beta {
  position: relative;
}

.pricings__column-toggle-container {
  margin-top: 6rem;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pricings__column-toggle--free {
  font-size: 15px;
  font-weight: 500;
}

.pricings__column-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
  margin-right: var(--switch-width);
}

.pricings__column-toggle-left {
  text-align: center;
  width: min-content;
  text-align: right;
}
.pricings__column-toggle-right {
  text-align: center;
  width: min-content;
  text-align: left;
}

.pricings__column-toggle-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--black);
}

.pricings__column-toggle-text--inactive {
  color: var(--gray-2);
  font-weight: 400;
}

.glide__track {
  overflow: visible !important;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: var(--switch-width);
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  border-radius: var(--switch-width);
}

.switch__slider:before {
  position: absolute;
  content: '';
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: inset 0px 4px 4px rgba(0, 0, 0, 0.15);
}

input:checked + .switch__slider {
  background-color: var(--blue-2);
}

input:checked + .switch__slider:before {
  transform: translateX(26px);
}

.pricings__column-button {
  margin-top: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  outline: none;
  border: none;
  border-radius: 30px;
  padding: 1.1rem 5.5rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.pricings__column-button:hover {
  opacity: 0.75;
}

.pricings__items {
  margin-top: 5.3rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.3rem;
  list-style-type: none;
}

.pricing__item {
  position: relative;
  margin-left: 3.6rem;
  max-width: 23.9rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.pricing__item--2-lines-size {
  height: 4.5rem;
}

.pricing__item::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url('../icons/check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  left: -36px;
  top: 0;
}

.pricing__item--inactive::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url('../icons/close.svg');
  background-size: contain;
  background-repeat: no-repeat;
  left: -36px;
  top: 0;
}

.pricing__item--greyed {
  opacity: 0.7;
}

.pricing__item--coming-soon {
  width: max-content;
}

.pricing__item--coming-soon::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url('../icons/info-coming-soon-icon.svg');
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}

.video-overlay {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-overlay--hidden {
  visibility: hidden;
  pointer-events: none;
}

.swiper--tablet {
  overflow: hidden;
  display: none;
}

.swiper--pricings {
  overflow: hidden;
  display: none;
}

.swiper {
  width: 100%;
  margin-top: 5.6rem;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10rem;
}

.register {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.register__picture {
  max-height: 753px;
  z-index: -1;
}

.register__content {
  padding: 8.7rem 0 12rem 8.7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register__heading {
  color: #000;
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2.25rem;
}

.register__description {
  font-size: 1.6rem;
  line-height: 1.375;
  margin-bottom: 2.7rem;
  max-width: 52ch;
}

.register__form {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4.4rem;
  row-gap: 0;
  max-width: 72rem;
}

.password__helper {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gray-4);
  margin-top: 0.5rem;
}

.register__input-container {
  display: flex;
  flex-direction: column;
  width: calc(50% - 25px);
}

.register__label {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  display: flex;
  justify-content: space-between;
}

.register__input-wrapper {
  position: relative;
}

.register__input {
  border-radius: 7px;
  box-shadow: none;
  border: none;
  background-color: var(--light-blue);
  font-size: 1.6rem;
  padding: 1rem 1.5rem;
  width: 100%;
}

.register__input::placeholder {
  color: #a5a9b5;
  font-family: Raleway;
  font-size: 10px;
  font-weight: 400;
}

.register__input-wrapper .register__input {
  padding-right: 5rem;
}

.register__input-end-adornment {
  position: absolute;
  width: 3rem;
  top: 0;
  right: 1rem;
  height: 100%;
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
}

.register__input-question-mark {
  display: none;
}

.checkbox__container {
  margin-top: 2.3rem;
  display: block;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  user-select: none;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.2rem;
  width: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  border: 1px solid var(--black-2);
  border-radius: 2px;
}

.checkbox__tick {
  display: none;
}

.checkbox__input:checked ~ .checkbox__checkmark .checkbox__tick {
  display: flex;
}

.register__button {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  padding: 1rem 4rem;
  border: 2px solid var(--black);
  border-radius: 24px;
  background: transparent;
  margin-top: 3.2rem;
  cursor: pointer;
  position: relative;
}

.register__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.footer {
  background: var(--black-2);
  padding: 5.2rem 0 2.6rem;
}

.footer__content {
  display: grid;
  grid-template-columns: 4fr 2fr 2fr 2fr 2fr;
  column-gap: 1rem;
  padding-bottom: 10.4rem;
}

.footer__text {
  color: var(--white-2);
  font-size: 1.3rem;
  line-height: 1.8;
  margin-top: 2rem;
}

.footer__links-group:not(:first-of-type) {
  margin-top: 4rem;
}

.footer__links-title {
  display: block;
  font-weight: 600;
  margin-bottom: 2.6rem;
  font-size: 1.4rem;
  color: var(--gray-3);
}

.footer__link {
  display: block;
  color: var(--white-2);
  font-size: 1.3rem;
  text-decoration: underline;
  margin-bottom: 1rem;
}

.footer__copyrights {
  color: var(--white-2);
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__socials {
  display: flex;
  column-gap: 1.3rem;
}

.burger {
  display: none;
}

.videos__video-container--mobile {
  display: none;
}

.section__heading {
  padding-top: 68px;
  padding-bottom: 83px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.section__heading h1 {
  color: #fff;
  font-family: Poppins;
  font-size: 58px;
  font-style: normal;
  font-weight: 700;
  line-height: 77.5px;
  letter-spacing: -0.58px;
}

.section__heading p {
  color: #fff;
  font-family: Raleway;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.25px;
  margin-top: 15px;
}

.visible-mobile {
  display: none;
}

@media (max-width: 78rem) {
  .header__heading > h1 {
    font-size: 3.6rem;
  }
  .header__cta-button {
    font-size: 2.15rem;
  }
}

/* TABLETS */
@media (max-width: 72rem) {
  .header__cta-button {
    font-size: 1.5rem;
  }

  .videos__dashed-circle,
  .videos__big-circle,
  .videos__small-circle {
    display: none;
  }

  .pricings__column-description {
    height: 10rem;
  }

  .pricings__column-button {
    padding: 1rem 3.5rem;
  }

  .pricing__item {
    font-size: 1.4rem;
    margin-left: 4rem;
  }

  .pricings__column-price {
    font-size: 2.5rem;
  }

  .pricings__column-toggle--free {
    font-size: 1.3rem;
  }

  .pricings__column-toggle-text {
    font-size: 1.3rem;
  }

  .register {
    margin-top: 0;
    display: block;
  }

  .register__picture img {
    height: 75rem;
    object-fit: cover;
    object-position: top;
  }

  .register__content {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .column__header {
    font-size: 36px;
  }
}

/* SMALL TABLETS */
@media (max-width: 64rem) {
  .nav__logo {
    height: 28px;
    width: 88px;
  }

  .nav__logo-beta {
    position: absolute;
    transform: translate(70px, 20px);
  }

  .videos__buttons {
    display: none;
  }

  .swiper--tablet {
    display: block;
    margin-top: 3.3rem;
    position: relative;
  }

  .swiper-button-prev {
    top: 25px;
    width: 100px;
    left: 0;
    opacity: 0;
  }

  .swiper-button-next {
    top: 25px;
    width: 100px;
    right: 0;
    opacity: 0;
  }

  .pricings__container {
    display: none;
  }

  .swiper--pricings {
    margin-top: 5rem;
    display: block;
    margin-left: -3rem;
    margin-right: -3rem;
  }

  .pricing-swipe-inactive,
  .pricing-swipe-active {
    position: relative;
  }

  .pricing-swipe-inactive .pricings__column::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
  }

  .glide {
    display: block;
    margin-top: 2rem;
  }

  .pricing-swipe-active::after {
    content: unset;
  }

  .pricing-swipe-inactive .pricings__column {
    transform: scale(0.9);
  }

  .pricing-swipe-active {
    z-index: 9999;
  }

  .swiper-slide-active .pricings__column::after {
    content: unset;
  }

  .videos__video-container {
    margin-top: -5rem;
  }

  .videos__tablet {
    display: none;
  }

  .videos__video-player {
    position: relative;
    left: unset;
    top: unset;
    transform: none;
    margin: 0 auto;
    max-width: calc(100% - 6rem);
  }

  .pricings__container {
    display: none;
  }

  .register__picture img {
    height: 40rem;
    object-fit: cover;
    object-position: center;
  }

  .column__header {
    font-size: 32px;
  }
}

/* BIG MOBILES */
@media (max-width: 44rem) {
  .hidden-mobile {
    display: none;
  }

  .visible-mobile {
    display: block;
  }

  .header,
  main,
  .footer {
    overflow: hidden;
  }

  .nav {
    background: var(--black);
    position: fixed;
    top: 0;
    z-index: var(--z-index-navbar);
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 0;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.04);
    align-items: center;
  }

  .videos__video-player {
    z-index: 1;
  }

  .nav__logo {
    margin-top: 0;
  }

  .nav__links {
    visibility: hidden;
    position: fixed;
    top: 6.8rem;
    left: 0;
    background: var(--black-2);
    width: 100%;
    box-shadow: 0px 9px 19px rgba(0, 0, 0, 0.25);
    flex-direction: column;
    padding: 0.8rem 0;
    transition: transform 0.2s 0.1s ease;
    transform: translateX(-100%);
  }

  .burger.open ~ .nav__links {
    visibility: visible;
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.5rem;
    line-height: 1.5;
    padding-left: 3.2rem;
    padding-right: 3.2rem;
  }

  .nav__link--with-border {
    border: none;
    color: var(--orange);
    letter-spacing: -0.01em;
    margin-left: 0;
  }

  .burger {
    display: block;
    width: 28px;
    height: 20px;
    position: relative;
    transition-duration: 0.3s;
    cursor: pointer;
    background: transparent;
    border: none;
    margin-right: 2rem;
  }

  .burger__icon {
    transition-delay: 0.25s;
    height: 4px;
    width: 28px;
    top: 8px;
    left: 0;
    background-color: var(--white);
    border-radius: 20px;
    position: absolute;
    transition-duration: 0.1s;
  }

  .burger__icon::before {
    left: 0;
    position: absolute;
    top: -8px;
    height: 4px;
    width: 28px;
    background-color: var(--white);
    content: '';
    border-radius: 20px;
    transition: transform 0.25s, top 0.25s 0.25s;
  }

  .burger__icon::after {
    left: 0;
    position: absolute;
    top: 8px;
    height: 4px;
    width: 28px;
    background-color: var(--white);
    content: '';
    border-radius: 20px;
    transition: transform 0.25s, top 0.25s 0.25s;
  }

  .burger.open .burger__icon {
    transition-duration: 0.1s;
    transition-delay: 0.25s;
    background: transparent;
  }

  .burger.open .burger__icon:before {
    transition: top 0.25s, transform 0.25s 0.25s;
    top: 0px;
    transform: rotateZ(-45deg);
  }

  .burger.open .burger__icon:after {
    transition: top 0.2s, transform 0.25s 0.25s;
    top: 0px;
    transform: rotateZ(45deg);
  }

  .header {
    padding-top: 5rem;
    padding-bottom: 2rem;
    margin-top: 68px;
  }

  .header__row {
    display: block;
  }

  .header__row > * {
    width: 100%;
  }

  .header__cta {
    margin-top: 1.6rem;
  }

  .header__cta-button {
    border: 2px solid var(--white);
    font-size: 1.5rem;
    padding: 0.75rem 1rem;
  }

  iframe {
    height: 300px;
  }

  .benefits {
    padding-top: 0;
    padding-bottom: 0;
    background: var(--white);
  }

  .column__list-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .column__content-container {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .column__header {
    margin-top: 15px;
  }

  .no-container-on-mobile {
    padding-left: 0;
    padding-right: 0;
  }

  .pricing {
    padding-top: 20.8rem;
    margin-top: -8.8rem;
  }

  .register {
    margin-top: -13.8rem;
    padding-top: 8.8rem;
  }

  .register__heading {
    font-size: 2.4rem;
    letter-spacing: -0.01em;
    line-height: 1.5;
    text-align: center;
  }

  .register__input-container {
    width: 100%;
  }

  .register__description {
    font-size: 1.6rem;
    line-height: 1.57;
    text-align: center;
    margin-top: 3rem;
  }
  .register__label {
    font-size: 1.6rem;
  }

  .register__content {
    margin-top: -2rem;
    position: relative;
    background: #fff;
    margin-top: -5rem;
    padding: 6rem 3rem;
    border-radius: 15px;
    box-shadow: 0 0.4rem 1.7rem rgba(0, 0, 0, 0.25), 0 1.5rem var(--black-2);
  }

  .register__picture img {
    height: unset;
    object-fit: unset;
    object-position: unset;
  }

  .register__button {
    justify-self: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .checkbox__container {
    font-size: 1.4rem;
  }

  .footer__content {
    grid-template-columns: 1fr 1fr;
    row-gap: 3rem;
    padding-bottom: 3rem;
  }

  .footer__content div:first-child {
    grid-column: span 2;
  }

  .footer__content > div:nth-child(2) {
    display: none;
  }

  .footer__text {
    display: none;
  }

  .footer__links-title {
    font-size: 1.6rem;
  }

  .footer__link {
    font-size: 1.5rem;
  }

  .footer__copyrights {
    flex-direction: column;
    font-size: 1.4rem;
    row-gap: 2rem;
  }

  .footer__copyrights img {
    max-width: 100%;
    object-fit: contain;
  }

  .footer__socials {
    column-gap: 3rem;
  }

  .footer__socials img {
    height: 4rem;
    width: 4rem;
  }

  .section__heading h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .section__heading p {
    font-size: 18px;
    line-height: 30px;
  }
}

/* MOBILE */
@media (max-width: 39rem) {
  .header__heading > h1 {
    font-size: 2.25rem;
  }

  .pricing-swipe-inactive .pricings__column {
    transform: scale(0.9);
  }

  .videos__video-player {
    height: 24.6rem;
  }
}

/* SMALL MOBILE */
@media (max-width: 28rem) {
  .header__heading > h1 {
    font-size: 2.1rem;
  }
}

input:invalid + span {
  color: red;
}
