body {
  font-family: var(--font-family, sans-serif) !important;
  color: var(--text-color);
  background: var(--bg-color);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.h1,
h2 {
  font-size: 60px;
  line-height: 65px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 1319.98px) {
  .h1,
  h2 {
    font-size: 44px;
    line-height: 110%;
  }
}
@media (max-width: 767.98px) {
  .h1,
  h2 {
    font-size: 32px;
    line-height: 106%;
  }
}

.h3 {
  font-size: 32px;
  line-height: 32px;
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .h3 {
    font-size: 22px;
    line-height: 36px;
  }
}

.text {
  font-size: 22px;
  line-height: 140%;
  font-weight: 450;
}
@media (max-width: 1319.98px) {
  .text {
    font-size: 19px;
    line-height: 130%;
  }
}
@media (max-width: 767.98px) {
  .text {
    font-size: 16px;
    line-height: 120%;
  }
}

.text-button {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: var(--text-color);
}

.order-buttons {
  display: flex;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .order-buttons {
    display: grid;
    grid-template-columns: 1fr auto auto;
  }
}
.order-buttons__link {
  display: block;
  align-items: center;
  justify-content: center;
}
.order-buttons__button {
  height: 70px;
  padding: 0px 25px;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  background: var(--accent-color);
}
@media (max-width: 767.98px) {
  .order-buttons__button {
    width: 100%;
    height: 60px;
  }
}
.order-buttons__button:hover {
  background: var(--hover-color);
}
@media (max-width: 767.98px) {
  .order-buttons__button span {
    display: none;
  }
}
.order-buttons__button_size_icon {
  width: 70px;
  padding: 0px 0px;
  border-radius: 50%;
}
@media (max-width: 767.98px) {
  .order-buttons__button_size_icon {
    width: 60px;
  }
}
.order-buttons__button_bg_ozon {
  background: #3666eb;
}
.order-buttons__button_bg_ozon:hover {
  background: #3666eb;
}
.order-buttons__button_bg_wb {
  background: #b927af;
}
.order-buttons__button_bg_wb:hover {
  background: #b927af;
}

.ticked-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.ticked-list__item {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media (max-width: 767.98px) {
  .ticked-list__item {
    gap: 12px;
    align-items: start;
  }
}
.ticked-list__item span {
  width: 25px;
  height: 25px;
  min-width: 25px;
  min-height: 25px;
  background: var(--accent-color);
  position: relative;
  border-radius: 50%;
}
.ticked-list__item span:after {
  content: url("../../land-w320-uploads/tickerd-list-after.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ticked-list__item p {
  font-size: 18px;
  line-height: 120%;
  font-weight: 450;
  max-width: 152px;
}
@media (max-width: 767.98px) {
  .ticked-list__item p {
    font-size: 16px;
    line-height: 110%;
  }
}
.ticked-list_order_reverse .ticked-list__item p {
  order: -1;
  text-align: right;
}

.double-section {
  position: relative;
  padding: 50px 0px 50px;
}
@media (max-width: 1319.98px) {
  .double-section {
    padding: 25px 0px 25px;
  }
}
.double-section__bg {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: #e43c03;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(125px);
}
@media (max-width: 767.98px) {
  .double-section__bg {
    width: 100%;
  }
}
.double-section__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .double-section__content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.double-section__image {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media (max-width: 1319.98px) {
  .double-section__image {
    width: 90%;
  }
}
@media (max-width: 767.98px) {
  .double-section__image {
    order: -1;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .double-section__image img {
    width: 100%;
  }
}
.double-section__text {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .double-section__text {
    justify-content: flex-start;
  }
}
.double-section__text-wrapper {
  max-width: 520px;
}
@media (max-width: 767.98px) {
  .double-section__text-wrapper {
    text-align: left;
  }
}
.double-section__text-wrapper h2 {
  margin-top: 50px;
}
@media (max-width: 1319.98px) {
  .double-section__text-wrapper h2 {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .double-section__text-wrapper h2 {
    margin-top: 15px;
  }
}
.double-section__text-wrapper p {
  display: block;
  margin-top: 25px;
}
@media (max-width: 1319.98px) {
  .double-section__text-wrapper p {
    margin-top: 15px;
  }
}
@media (max-width: 767.98px) {
  .double-section__text-wrapper p {
    margin-top: 10px;
  }
}
.double-section__benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-color);
}
@media (max-width: 1319.98px) {
  .double-section__benefit {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767.98px) {
  .double-section__benefit {
    width: 70px;
    height: 70px;
    margin: 0;
  }
}
.double-section__benefit img {
  max-height: 70px;
}
@media (max-width: 1319.98px) {
  .double-section__benefit img {
    max-width: 30px;
    max-height: 30px;
  }
}
.double-section_order_reverse .double-section__image {
  justify-content: flex-end;
}
.double-section_order_reverse .double-section__text {
  order: -1;
  justify-content: flex-start;
}

.hero {
  padding: 190px 0px 50px;
  position: relative;
}
@media (max-width: 1319.98px) {
  .hero {
    padding: 190px 0px 50px;
  }
}
@media (max-width: 767.98px) {
  .hero {
    padding: 80px 0px 0px;
  }
}
.hero__bg {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 500px;
  height: 500px;
  background-color: #e43c03;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(125px);
}
@media (max-width: 767.98px) {
  .hero__bg {
    width: 100%;
  }
}
.hero__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 1319.98px) {
  .hero__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .hero__content {
    gap: 0px;
  }
}
.hero__offer {
  padding-top: 65px;
  padding-left: 110px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 170px;
}
@media (max-width: 1319.98px) {
  .hero__offer {
    padding: 0px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.hero__offer:before {
  content: url("../../land-w320-uploads/hero-before-left.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1319.98px) {
  .hero__offer:before {
    content: "";
    background: url("../../land-w320-uploads/hero-before-left-m.png");
    width: 70px;
    aspect-ratio: 40/156;
    background-size: 100% auto;
    background-repeat: no-repeat;
    top: 50%;
    transform: translate(-100%, -50%);
  }
}
@media (max-width: 767.98px) {
  .hero__offer:before {
    width: 40px;
  }
}
.hero__offer:after {
  content: none;
}
@media (max-width: 1319.98px) {
  .hero__offer:after {
    content: "";
    position: absolute;
    background: url("../../land-w320-uploads/hero-before-right-m.png");
    width: 70px;
    aspect-ratio: 40/156;
    background-size: 100% auto;
    background-repeat: no-repeat;
    top: 50%;
    right: 0%;
    transform: translate(100%, -50%);
  }
}
@media (max-width: 767.98px) {
  .hero__offer:after {
    width: 40px;
  }
}
.hero__offer-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1319.98px) {
  .hero__offer-text {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .hero__offer-text {
    gap: 0px;
  }
}
.hero__offer-title {
  font-size: 180px;
  line-height: 83%;
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .hero__offer-title {
    font-size: 90px;
    line-height: 89%;
  }
}
@media (max-width: 1319.98px) {
  .hero__order-buttons {
    display: none;
  }
}
.hero__advantages {
  display: flex;
  justify-content: flex-end;
  padding-top: 65px;
  padding-right: 95px;
  position: relative;
}
@media (max-width: 1319.98px) {
  .hero__advantages {
    padding: 0px;
    justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 767.98px) {
  .hero__advantages {
    margin-top: 10px;
    flex-direction: column;
    align-items: center;
  }
}
.hero__advantages:before {
  content: url("../../land-w320-uploads/hero-before-right.png");
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1319.98px) {
  .hero__advantages:before {
    content: none;
  }
}
.hero__advantages-image {
  position: absolute;
  top: -45px;
  left: 0px;
  z-index: -1;
}
@media (max-width: 1319.98px) {
  .hero__advantages-image {
    position: static;
  }
}
@media (max-width: 767.98px) {
  .hero__ticked-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 16px;
  }
}
.hero__order-buttons-m {
  display: none;
}
@media (max-width: 1319.98px) {
  .hero__order-buttons-m {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .hero__order-buttons-m {
    display: grid;
    margin-top: 35px;
  }
}

.advantages {
  padding: 50px 0px;
}
@media (max-width: 1319.98px) {
  .advantages {
    padding: 25px 0px;
  }
}
.advantages__content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: start;
}
@media (max-width: 1319.98px) {
  .advantages__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "center center" "left right";
  }
}
@media (max-width: 767.98px) {
  .advantages__content {
    gap: 16px;
  }
}
.advantages__left {
  padding-top: 135px;
  padding-left: 110px;
  position: relative;
}
@media (max-width: 1319.98px) {
  .advantages__left {
    padding: 0;
    grid-area: left;
  }
}
.advantages__left:before {
  content: url("../../land-w320-uploads/advantages-before-left.png");
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1319.98px) {
  .advantages__left:before {
    content: none;
  }
}
@media (max-width: 1319.98px) {
  .advantages__left .ticked-list__item {
    justify-content: flex-end;
  }
}
.advantages__center {
  text-align: center;
}
@media (max-width: 1319.98px) {
  .advantages__center {
    grid-area: center;
  }
}
@media (max-width: 1319.98px) {
  .advantages__center div {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .advantages__center div::before {
    content: "";
    height: 100%;
    background: url("../../land-w320-uploads/advantages-before-left-m.png") center center/auto 100% no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    aspect-ratio: 40/226;
    transform: translate(-100%, -50%);
  }
  .advantages__center div::after {
    content: "";
    height: 100%;
    background: url("../../land-w320-uploads/advantages-before-right-m.png") center center/auto 100% no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    aspect-ratio: 40/226;
    transform: translate(100%, -50%);
  }
}
.advantages__center img {
  width: 100%;
}
.advantages__title {
  font-size: 180px;
  font-weight: 700;
  line-height: 83%;
  margin-top: 20px;
}
@media (max-width: 767.98px) {
  .advantages__title {
    font-size: 90px;
    line-height: 80px;
    margin-top: 0;
  }
}
.advantages__text {
  max-width: 420px;
  text-align: center;
  margin: 50px auto 0px;
}
@media (max-width: 1319.98px) {
  .advantages__text {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .advantages__text {
    max-width: 300px;
  }
}
.advantages img {
  display: block;
  width: 100%;
  margin-top: 90px;
}
@media (max-width: 1319.98px) {
  .advantages img {
    width: 50%;
    margin: 50px auto 0px;
  }
}
@media (max-width: 767.98px) {
  .advantages img {
    width: 70%;
    margin-bottom: 50px;
  }
}
.advantages__right {
  padding-top: 135px;
  padding-right: 110px;
  position: relative;
}
@media (max-width: 1319.98px) {
  .advantages__right {
    padding: 0;
    grid-area: right;
    text-align: left;
  }
}
.advantages__right:before {
  content: url("../../land-w320-uploads/advantages-before-right.png");
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1319.98px) {
  .advantages__right:before {
    content: none;
  }
}
@media (max-width: 1319.98px) {
  .advantages__right .ticked-list__item p {
    text-align: left;
    order: 2;
  }
}

.slider {
  padding: 50px 0px;
}
@media (max-width: 1319.98px) {
  .slider {
    padding: 25px 0px;
  }
}
.slider__content {
  position: relative;
  padding: 0px 110px 105px;
}
@media (max-width: 767.98px) {
  .slider__content {
    padding: 0px 40px 20px;
  }
}
.slider__content:before {
  content: "";
  background: url("../../land-w320-uploads/slider-before-left.png") center center/auto 100% no-repeat;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  aspect-ratio: 120/565;
}
@media (max-width: 767.98px) {
  .slider__content:before {
    background: url("../../land-w320-uploads/slider-before-left-m.png") center center/auto 100% no-repeat;
    aspect-ratio: 40/341;
  }
}
.slider__content:after {
  content: "";
  background: url("../../land-w320-uploads/slider-before-right.png") center center/auto 100% no-repeat;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  aspect-ratio: 120/565;
}
@media (max-width: 767.98px) {
  .slider__content:after {
    background: url("../../land-w320-uploads/slider-before-right-m.png") center center/auto 100% no-repeat;
    aspect-ratio: 40/341;
  }
}
.slider__title {
  text-align: center;
}
.slider__swiper {
  margin-top: 40px;
  position: relative;
}
@media (max-width: 767.98px) {
  .slider__swiper {
    margin-top: 25px;
  }
}
.slider__swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0px;
  background: var(--text-color);
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .slider__swiper .swiper-slide {
    padding: 8px 0px;
    border-radius: 20px;
  }
}
.slider__swiper .swiper-slide img {
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.slider__swiper .swiper-pagination {
  position: static;
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.slider__swiper .swiper-pagination span {
  cursor: pointer;
  margin: 0 !important;
  width: 8px;
  height: 8px;
  background: var(--text-color);
  opacity: 30;
}
.slider__swiper .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 100;
  background: var(--accent-color);
}
.slider__button {
  position: absolute;
  top: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--accent-color);
}
.slider__button:hover {
  background: var(--hover-color);
}
@media (max-width: 767.98px) {
  .slider__button {
    display: none;
  }
}
.slider__button_prev {
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.slider__button_next {
  right: 0;
  transform: translate(50%, -50%);
  z-index: 2;
}

.video {
  padding: 50px 0px;
}
@media (max-width: 1319.98px) {
  .video {
    padding: 25px 0px;
  }
}
.video__content {
  padding: 0px 110px 100px;
  position: relative;
}
@media (max-width: 767.98px) {
  .video__content {
    padding: 0px 35px 30px;
  }
}
.video__content:before {
  content: "";
  background: url("../../land-w320-uploads/video-before-left.png") center center/auto 100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  aspect-ratio: 120/715;
  height: 100%;
}
@media (max-width: 767.98px) {
  .video__content:before {
    background: url("../../land-w320-uploads/video-before-left-m.png") center center/auto 100% no-repeat;
    aspect-ratio: 40/294;
  }
}
.video__content:after {
  content: "";
  background: url("../../land-w320-uploads/video-before-right.png") center center/auto 100% no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  aspect-ratio: 120/715;
  height: 100%;
}
@media (max-width: 767.98px) {
  .video__content:after {
    background: url("../../land-w320-uploads/video-before-right-m.png") center center/auto 100% no-repeat;
    aspect-ratio: 40/294;
  }
}
.video__title {
  text-align: center;
}
.video__player {
  background: url("../../land-w320-uploads/video-image.png") center center/cover no-repeat;
  width: 100%;
  aspect-ratio: 1070/510;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .video__player {
    margin-top: 25px;
    border-radius: 25px;
  }
}
.video__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--accent-color);
}
.video__button:hover {
  background: var(--accent-color);
}
@media (max-width: 1319.98px) {
  .video__button {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 767.98px) {
  .video__button {
    width: 60px;
    height: 60px;
  }
}
.video__button img {
  position: relative;
  left: 2px;
}
@media (max-width: 1319.98px) {
  .video__button img {
    max-width: 18px;
  }
}
@media (max-width: 767.98px) {
  .video__button img {
    max-width: 14px;
  }
}

.complect {
  padding: 50px 0px;
}
@media (max-width: 1319.98px) {
  .complect {
    padding: 25px 0px;
  }
}
.complect__content {
  padding: 0px 110px 100px;
  position: relative;
}
@media (max-width: 767.98px) {
  .complect__content {
    padding: 0px 25px 30px;
  }
}
.complect__content:before {
  content: "";
  background: url("../../land-w320-uploads/complect-before-left.png") center center/auto 100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  aspect-ratio: 120/546;
  height: 100%;
}
@media (max-width: 767.98px) {
  .complect__content:before {
    background: url("../../land-w320-uploads/complect-before-left-m.png") center center/auto 100% no-repeat;
    aspect-ratio: 40/476;
  }
}
.complect__content:after {
  content: "";
  background: url("../../land-w320-uploads/complect-before-right.png") center center/auto 100% no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  aspect-ratio: 120/546;
  height: 100%;
}
@media (max-width: 767.98px) {
  .complect__content:after {
    background: url("../../land-w320-uploads/complect-before-right-m.png") center center/auto 100% no-repeat;
    aspect-ratio: 40/476;
  }
}
.complect__title {
  text-align: center;
}
.complect__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 24px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 35px;
}
@media (max-width: 767.98px) {
  .complect__list {
    margin-top: 20px;
    row-gap: 10px;
    grid-template-columns: 1fr;
  }
}
.complect__list .ticked-list__item p {
  max-width: 100%;
  flex-grow: 1;
}
.complect__buttons {
  margin-top: 50px;
  display: flex;
  gap: 10px;
}
@media (max-width: 767.98px) {
  .complect__buttons {
    margin-top: 30px;
    display: grid;
    width: 100%;
    grid-template-columns: 1fr auto auto;
  }
}

.table {
  padding: 50px 0px;
}
@media (max-width: 1319.98px) {
  .table {
    padding: 25px 0px;
  }
}
.table__rows {
  width: 100%;
  margin-top: 40px;
  display: grid;
  flex-direction: column;
  gap: 10px;
  overflow-x: auto;
}
.table__rows::-webkit-scrollbar {
  display: none;
}
.table__rows::-moz-progress-bar {
  display: none;
}
@media (max-width: 767.98px) {
  .table__rows {
    margin-top: 25px;
    gap: 10px;
  }
}
.table__rows-item {
  width: 100%;
  height: 60px;
  padding: 0px 35px;
  border-radius: 15px;
  display: grid;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 28% 1fr 1fr 1fr 1fr;
  background: #1f1f1f;
  min-width: 1290px;
}
@media (max-width: 767.98px) {
  .table__rows-item {
    grid-template-columns: repeat(4, 160px);
    gap: 10px;
    height: 50px;
    background: transparent;
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 0px;
  }
}
.table__rows-item_head {
  background: var(--accent-color);
}
@media (max-width: 767.98px) {
  .table__rows-item_head {
    background: transparent;
  }
}
.table__rows-item_head span {
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .table__rows-item_head span {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .table__rows-item_head > span {
    background: var(--accent-color) !important;
    padding: 0px 15px;
    line-height: 100%;
  }
}
@media (max-width: 767.98px) {
  .table__rows-item_head > span:nth-child(2) {
    background: rgba(228, 60, 3, 0.1) !important;
  }
}
.table__rows-item span.text {
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .table__rows-item span.text {
    font-size: 16px;
  }
}
.table__rows-item span.table__tick {
  width: 15px;
}
.table__rows-item span.table__tick:before {
  content: url("../../land-w320-uploads/tick.svg");
  width: 100%;
  height: auto;
}
.table__rows-item span.table__minus {
  width: 20px;
}
.table__rows-item span.table__minus:before {
  content: url("../../land-w320-uploads/minus.svg");
  width: 100%;
  height: auto;
}
@media (max-width: 767.98px) {
  .table__rows-item > span {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    text-align: center;
    background: #1f1f1f;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .table__rows-item > span:nth-child(1) {
    display: none;
  }
}
.table__title {
  text-align: center;
}
@media (max-width: 767.98px) {
  .table__title {
    text-align: left;
  }
}
.table__label {
  display: none;
}
@media (max-width: 767.98px) {
  .table__label {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 450;
    line-height: 24px;
  }
}

.form {
  padding: 50px 0px;
}
@media (max-width: 1319.98px) {
  .form {
    padding: 25px 0px;
  }
}
.form__content {
  padding: 50px 110px;
  position: relative;
  display: grid;
  grid-template-columns: auto 390px;
  gap: 50px;
  align-items: center;
}
@media (max-width: 1319.98px) {
  .form__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767.98px) {
  .form__content {
    padding: 20px 35px;
    gap: 25px;
  }
}
.form__content:before {
  content: "";
  background: url("../../land-w320-uploads/form-before-left.png") center center/auto 100% no-repeat;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  aspect-ratio: 120/300;
  height: 100%;
}
@media (max-width: 767.98px) {
  .form__content:before {
    background: url("../../land-w320-uploads/form-before-left-m.png") center center/auto 100% no-repeat;
    aspect-ratio: 40/331;
  }
}
.form__content:after {
  content: "";
  background: url("../../land-w320-uploads/form-before-right.png") center center/auto 100% no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  aspect-ratio: 120/300;
  height: 100%;
}
@media (max-width: 767.98px) {
  .form__content:after {
    background: url("../../land-w320-uploads/form-before-right-m.png") center center/auto 100% no-repeat;
    aspect-ratio: 40/331;
  }
}
@media (max-width: 1319.98px) {
  .form__title {
    text-align: center;
  }
}
.form form {
  width: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.form form input {
  width: 100%;
  height: 70px;
  padding: 0px 25px;
  border-radius: 100px;
  background: var(--text-color);
  color: var(--bg-color);
  outline: none;
  font-size: 16px;
}
.form form input::-moz-placeholder {
  color: var(--bg-color);
}
.form form input::placeholder {
  color: var(--bg-color);
}
@media (max-width: 767.98px) {
  .form form input {
    height: 60px;
    padding: 0px 20px;
  }
}
.form form button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0px 25px;
  height: 70px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
  background: var(--accent-color);
}
@media (max-width: 767.98px) {
  .form form button {
    position: static;
    width: 100%;
    height: 60px;
    padding: 0px 20px;
  }
}/*# sourceMappingURL=land-w320.css.map */