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

body {
  scroll-behavior: smooth;
  margin: 0;
  font-family: "Montserrat";
  min-height: 100dvh;
  position: relative;
  padding-top: 65px;
  max-width: 2560px;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  body {
    padding-top: 73px;
  }
}
@media (min-width: 1600px) {
  body {
    padding-top: 90px;
  }
}

p, a, h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  font-size: 18px;
}

body {
  font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1.5em;
}

p {
  margin-bottom: 1em;
}

.hidden {
  display: none;
}

html, :root, body {
  scroll-behavior: smooth;
}

.container {
  width: 360px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1550px;
  }
}

.breakpoint {
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  background: #555;
  padding: 5px;
  font-size: 12px;
  z-index: 123123123;
}
.breakpoint__sm {
  display: block;
}
@media (min-width: 768px) {
  .breakpoint__sm {
    display: none;
  }
}
.breakpoint__md {
  display: none;
}
@media (min-width: 768px) {
  .breakpoint__md {
    display: block;
  }
}
@media (min-width: 1200px) {
  .breakpoint__md {
    display: none;
  }
}
.breakpoint__lg {
  display: none;
}
@media (min-width: 1200px) {
  .breakpoint__lg {
    display: block;
  }
}
@media (min-width: 1600px) {
  .breakpoint__lg {
    display: none;
  }
}
.breakpoint__xl {
  display: none;
}
@media (min-width: 1600px) {
  .breakpoint__xl {
    display: block;
  }
}

.header {
  background: #0D0D0D;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.header__logo {
  max-width: 200px;
}
@media (min-width: 1200px) {
  .header__logo {
    max-width: 250px;
  }
}
@media (min-width: 1600px) {
  .header__logo {
    max-width: initial;
  }
}
.header__logo-link {
  text-decoration: none;
}

.header-nav {
  padding: 60px 40px 40px;
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  background: rgba(13, 13, 13, 0.98);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0.5s;
}
@media (min-width: 1200px) {
  .header-nav {
    padding: 0;
    opacity: 1;
    pointer-events: all;
    visibility: visible;
    position: static;
    display: grid;
    grid-auto-flow: column;
    grid-gap: 40px;
    background: none;
    transition: none;
  }
}
@media (min-width: 1600px) {
  .header-nav {
    grid-gap: 137px;
  }
}
.header-nav--opened {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.header-nav::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  bottom: -15px;
  left: -15px;
  border: solid 15px rgba(255, 255, 255, 0.75);
  pointer-events: none;
}
@media (min-width: 1200px) {
  .header-nav::after {
    display: none;
  }
}

.header-menu {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
@media (min-width: 1200px) {
  .header-menu {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    grid-gap: 10px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .header-menu {
    grid-gap: 18px;
  }
}
.header-menu .menu-item {
  color: #fff;
  font-size: 20px;
}
@media (min-width: 1200px) {
  .header-menu .menu-item {
    position: relative;
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .header-menu .menu-item {
    position: relative;
    font-size: 18px;
  }
}
@media (min-width: 1600px) {
  .header-menu .menu-item {
    position: relative;
    font-size: 20px;
  }
}
.header-menu .menu-item::after {
  content: "";
  height: 70%;
  width: 4px;
  position: absolute;
  top: 15%;
  left: -15px;
  border-radius: 4px;
  background: #FF0000;
  opacity: 0;
  transition: 0.2s;
}
@media (min-width: 1200px) {
  .header-menu .menu-item::after {
    height: 4px;
    width: 100%;
    left: 0;
    bottom: 0;
    top: auto;
  }
}
.header-menu .menu-item a {
  color: inherit;
  font: inherit;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px 0px;
  display: block;
}
@media (min-width: 1600px) {
  .header-menu .menu-item a {
    padding: 5px 0;
  }
}
.header-menu .menu-item.current-menu-item {
  font-weight: 700;
  position: relative;
}
.header-menu .menu-item:hover::after, .header-menu .menu-item.current-menu-item::after {
  opacity: 1;
}

.header-socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-grid;
  grid-auto-flow: column;
  grid-gap: 20px;
}
@media (min-width: 1200px) {
  .header-socials {
    display: grid;
  }
}
@media (min-width: 1600px) {
  .header-socials {
    grid-gap: 25px;
  }
}
.header-socials__icon {
  height: 28px;
}
@media (min-width: 1200px) {
  .header-socials__icon {
    height: 35px;
    transition: 0.2s;
  }
}
@media (min-width: 1600px) {
  .header-socials__icon {
    height: initial;
  }
}
@media (min-width: 1200px) {
  .header-socials__icon:hover {
    translate: 0 -5px;
  }
}

.menu-button {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  color: #fff;
  font-size: 0;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
@media (min-width: 1200px) {
  .menu-button {
    display: none;
  }
}
.menu-button--close {
  position: absolute;
  right: 15px;
  top: 15px;
}
.menu-button--close::after, .menu-button--close::before {
  content: "";
  height: 41px;
  width: 6px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.menu-button--close::after {
  rotate: 45deg;
}
.menu-button--close::before {
  rotate: -45deg;
}
.menu-button--open {
  position: relative;
}
.menu-button--open::before {
  content: "";
  height: 6px;
  width: 41px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.menu-button--open::after {
  content: "";
  height: 33px;
  width: 41px;
  position: absolute;
  border: solid;
  border-width: 6px 0;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.pricelist-plans {
  margin-top: 120px;
}

.footer {
  background: #0D0D0D;
  padding: 50px 0;
}
@media (min-width: 1200px) {
  .footer {
    padding: 65px 0 80px;
  }
}
@media (min-width: 1600px) {
  .footer {
    padding: 65px 0 100px;
  }
}
@media (min-width: 1600px) {
  .footer {
    padding: 65px 0 130px;
  }
}
.footer__logo {
  max-width: 250px;
  margin-bottom: 60px;
}
@media (min-width: 1200px) {
  .footer__logo {
    max-width: 280px;
    margin: 0 auto 60px;
  }
}
@media (min-width: 1600px) {
  .footer__logo {
    max-width: 310px;
    margin: 0 auto 80px;
  }
}
@media (min-width: 1600px) {
  .footer__logo {
    max-width: initial;
  }
}

.footer-contact {
  display: grid;
  grid-gap: 30px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer-contact {
    grid-template-columns: auto 1fr;
  }
}
@media (min-width: 1200px) {
  .footer-contact {
    display: flex;
    align-items: center;
    justify-content: space-around;
    grid-gap: 0;
  }
}
@media (min-width: 1600px) {
  .footer-contact {
    margin-bottom: 100px;
  }
}
@media (min-width: 1600px) {
  .footer-contact {
    margin-bottom: 130px;
  }
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 48px auto;
}
.footer-contact-item__icon {
  place-self: center;
  width: auto;
}
.footer-contact-item__label {
  color: #fff;
  align-self: center;
  margin: 0 0 0 7px;
  padding: 0 0 0 15px;
  position: relative;
  font-size: 14px;
}
@media (min-width: 1600px) {
  .footer-contact-item__label {
    font-size: 16px;
  }
}
.footer-contact-item__label::before {
  content: "";
  height: 35px;
  width: 2px;
  background: #FF8A01;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.footer-contact-item__label a {
  color: inherit;
  text-decoration: none;
}
@media (min-width: 768px) {
  .footer-contact-item--name {
    grid-column: 1/3;
  }
}
.footer-contact-item--name .footer-contact-item__icon {
  height: 35px;
}
@media (min-width: 1600px) {
  .footer-contact-item--name .footer-contact-item__icon {
    height: 40px;
  }
}
.footer-contact-item--phone .footer-contact-item__icon {
  height: 30px;
}
@media (min-width: 1600px) {
  .footer-contact-item--phone .footer-contact-item__icon {
    height: 35px;
  }
}
.footer-contact-item--email .footer-contact-item__icon {
  height: 26px;
}
@media (min-width: 1600px) {
  .footer-contact-item--email .footer-contact-item__icon {
    height: 30px;
  }
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0 20px;
}
@media (min-width: 768px) {
  .footer-menu {
    grid-template-columns: initial;
    grid-auto-flow: column;
  }
}
@media (min-width: 1200px) {
  .footer-menu {
    display: grid;
    margin: 0 auto;
    width: min-content;
  }
}
.footer-menu .menu-item {
  color: #fff;
  font-size: 16px;
}
@media (min-width: 1600px) {
  .footer-menu .menu-item {
    font-size: 18px;
  }
}
.footer-menu .menu-item.current-menu-item {
  font-weight: 700;
}
.footer-menu .menu-item a {
  color: inherit;
  width: max-content;
  text-decoration: none;
  padding: 5px 0;
  display: block;
  text-transform: uppercase;
}

.heading__top {
  font-size: 32px;
  font-weight: 900;
  display: block;
}
.heading__bottom {
  font-size: 28px;
  font-weight: 300;
}
.heading--white {
  color: #fff;
}

.heading {
  display: flex;
  align-items: center;
}
.heading__icon {
  width: auto;
  height: 35px;
  height: 56px;
}
.heading__label {
  display: inline-block;
  margin-left: 10px;
}
.heading__top {
  font-weight: 900;
  display: block;
  font-size: 20px;
}
@media (min-width: 768px) {
  .heading__top {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .heading__top {
    font-size: 26px;
  }
}
@media (min-width: 1600px) {
  .heading__top {
    font-size: 32px;
  }
}
.heading__bottom {
  font-weight: 300;
  font-size: 16px;
}
@media (min-width: 768px) {
  .heading__bottom {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .heading__bottom {
    font-size: 24px;
  }
}
@media (min-width: 1600px) {
  .heading__bottom {
    font-size: 28px;
  }
}
.button {
  display: inline-flex;
  padding: 9px 15px;
  border: 1px solid #FF8A01;
  color: inherit;
  font-size: 34px;
  text-decoration: none;
  justify-self: end;
  align-items: center;
  border-radius: 20px;
}
.button__icon {
  width: 34px;
  height: 34px;
  margin-left: 75px;
}

#scrollTop {
  background: #FF8A01;
  border: none;
  height: 44px;
  width: 44px;
  padding: 0;
  margin: 0;
  border-radius: 100px;
  place-items: center;
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 123;
  display: none;
  cursor: pointer;
}
#scrollTop.active {
  display: grid;
}
@media (min-width: 768px) {
  #scrollTop {
    bottom: 25px;
    right: 25px;
  }
}
@media (min-width: 1200px) {
  #scrollTop {
    bottom: 50px;
    right: 50px;
  }
}
#scrollTop img {
  height: 36px;
  width: 36px;
  rotate: -90deg;
}

.banner {
  position: relative;
  overflow: clip;
  background-size: cover;
}
.banner--offer {
  height: 600px;
}
@media (min-width: 1200px) {
  .banner--offer {
    height: 800px;
  }
}
@media (min-width: 1600px) {
  .banner--offer {
    height: 1000px;
  }
}
.banner--offer::after {
  position: absolute;
  bottom: -360px;
  left: 0;
  width: 100%;
  height: 455px;
  background: #FF8A01;
  content: "";
  transform: skew(0, 14deg);
}
@media (min-width: 768px) {
  .banner--offer::after {
    bottom: -320px;
  }
}
@media (min-width: 1200px) {
  .banner--offer::after {
    bottom: -270px;
  }
}
@media (min-width: 1600px) {
  .banner--offer::after {
    bottom: -220px;
  }
}
.banner--offer .banner__container {
  height: 100%;
}
@media (min-width: 768px) {
  .banner--offer .banner__container {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 4fr);
  }
}
@media (min-width: 1200px) {
  .banner--offer .banner__container {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }
}
@media (min-width: 1600px) {
  .banner--offer .banner__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.banner--offer .banner__img-wrapper {
  display: grid;
  place-items: end center;
}
@media (min-width: 768px) {
  .banner--offer .banner__img-wrapper {
    place-items: end start;
  }
}
@media (min-width: 1600px) {
  .banner--offer .banner__img-wrapper {
    place-items: end center;
  }
}
.banner--offer .banner__img {
  position: relative;
  left: -70px;
  width: 600px;
  max-width: initial;
}
@media (min-width: 768px) {
  .banner--offer .banner__img {
    left: -100px;
  }
}
@media (min-width: 1200px) {
  .banner--offer .banner__img {
    width: 800px;
  }
}
@media (min-width: 1600px) {
  .banner--offer .banner__img {
    width: auto;
  }
}
.banner--offer .banner__content-wrapper {
  display: grid;
  padding-top: 80px;
  justify-content: center;
}
@media (min-width: 768px) {
  .banner--offer .banner__content-wrapper {
    display: block;
    padding-top: 150px;
  }
}
@media (min-width: 1200px) {
  .banner--offer .banner__content-wrapper {
    padding-top: 250px;
  }
}
.banner--pricelist {
  height: 750px;
  color: #fff;
}
@media (min-width: 1200px) {
  .banner--pricelist {
    height: 800px;
  }
}
@media (min-width: 1600px) {
  .banner--pricelist {
    height: 1000px;
  }
}
.banner--pricelist::after {
  position: absolute;
  bottom: -360px;
  left: 0;
  width: 100%;
  height: 455px;
  background: #CA2B23;
  content: "";
  transform: skew(0, 14deg);
}
@media (min-width: 768px) {
  .banner--pricelist::after {
    bottom: -320px;
  }
}
@media (min-width: 1200px) {
  .banner--pricelist::after {
    bottom: -270px;
  }
}
@media (min-width: 1600px) {
  .banner--pricelist::after {
    bottom: -220px;
  }
}
.banner--pricelist .banner__container {
  height: 100%;
}
@media (min-width: 768px) {
  .banner--pricelist .banner__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
@media (min-width: 1200px) {
  .banner--pricelist .banner__container {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }
}
@media (min-width: 1600px) {
  .banner--pricelist .banner__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.banner--pricelist .banner__img-wrapper {
  display: grid;
  place-items: center;
}
@media (min-width: 768px) {
  .banner--pricelist .banner__img-wrapper {
    place-items: start end;
  }
}
@media (min-width: 1600px) {
  .banner--pricelist .banner__img-wrapper {
    place-items: end center;
  }
}
.banner--pricelist .banner__img {
  position: relative;
  top: 50px;
  left: -60px;
  width: 500px;
  margin: 0 auto;
  max-width: initial;
}
@media (min-width: 768px) {
  .banner--pricelist .banner__img {
    top: 100px;
    left: 0;
    width: 600px;
  }
}
@media (min-width: 1200px) {
  .banner--pricelist .banner__img {
    width: 700px;
  }
}
@media (min-width: 1600px) {
  .banner--pricelist .banner__img {
    top: 100px;
    width: auto;
  }
}
.banner--pricelist .banner__content-wrapper {
  display: grid;
  padding-top: 80px;
  justify-content: center;
}
@media (min-width: 768px) {
  .banner--pricelist .banner__content-wrapper {
    display: block;
    padding-top: 150px;
  }
}
@media (min-width: 1200px) {
  .banner--pricelist .banner__content-wrapper {
    padding-top: 250px;
  }
}
.banner--pricelist .banner__heading {
  font-size: 26px;
  font-weight: 900;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .banner--pricelist .banner__heading {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .banner--pricelist .banner__heading {
    font-size: 50px;
  }
}
@media (min-width: 1600px) {
  .banner--pricelist .banner__heading {
    font-size: 80px;
  }
}
.banner--pricelist .banner__description {
  font-weight: 300;
}
@media (min-width: 768px) {
  .banner--pricelist .banner__description {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .banner--pricelist .banner__description {
    font-size: 24px;
  }
}
@media (min-width: 1600px) {
  .banner--pricelist .banner__description {
    font-size: 34px;
  }
}

.box {
  --back-square-width: 345px;
  --back-square-height: 345px;
  --box-width: 322px;
  --box-height: 329px;
  display: grid;
  background: #0D0D0D;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  height: var(--box-height);
  width: var(--box-width);
  position: relative;
}
.box::after {
  content: "";
  width: var(--back-square-width);
  height: var(--back-square-height);
  background: #FF8A01;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 57px;
  rotate: 14deg;
  z-index: -1;
}
.box--offer {
  --box-width: 322px;
  --box-height: 329px;
  --back-square-width: 345px;
  --back-square-height: 345px;
  padding: 30px 25px 0;
  grid-template-rows: 85px 1fr 60px;
  place-items: center;
}
.box--offer .box__title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  position: relative;
}
.box--offer .box__title::after, .box--offer .box__title::before {
  content: "";
  position: absolute;
  height: 55px;
  width: 4px;
  background: #FF0000;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 5px;
}
.box--offer .box__title::after {
  left: 0;
}
.box--offer .box__title::before {
  right: 0;
}
.box--offer .box__description {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}
.box--offer .box__button {
  color: #fff;
  border: 1px solid #fff;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  align-self: start;
  font-size: 20px;
  padding: 5px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.box--offer .box__button::after {
  content: url("../../img/icons/arrow.svg");
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-left: 15px;
}
.box--about {
  --box-width: 256px;
  --box-height: 261px;
  --back-square-width: 275px;
  --back-square-height: 275px;
  grid-template-rows: 2fr 1fr;
  text-align: center;
  padding: 20px;
}
.box--about .box__icon-wrapper {
  display: grid;
  place-items: center;
  position: relative;
}
.box--about .box__icon-wrapper::after, .box--about .box__icon-wrapper::before {
  content: "";
  position: absolute;
  height: 45px;
  width: 4px;
  background: #FF0000;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 5px;
}
.box--about .box__icon-wrapper::after {
  left: 27px;
}
.box--about .box__icon-wrapper::before {
  right: 27px;
}
.box--about .box__title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  margin-top: 10px;
}
.box--about-banner {
  --back-square-width: 222px;
  --back-square-height: 222px;
  --box-height: 208px;
  --box-width: 211px;
  padding: 15px;
}
.box--about-banner .box__number-wrapper {
  position: relative;
}
.box--about-banner .box__number-wrapper::after, .box--about-banner .box__number-wrapper::before {
  content: "";
  position: absolute;
  height: 45px;
  width: 4px;
  background: #FF0000;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 5px;
}
.box--about-banner .box__number-wrapper::after {
  left: 10px;
}
.box--about-banner .box__number-wrapper::before {
  right: 10px;
}
.box--about-banner .box__number {
  font-size: 80px;
  font-weight: 700;
  margin: 0;
}

.offer-boxes {
  background: #eee;
  transform: skew(0, 11.5deg);
  overflow: clip;
  position: relative;
  margin-top: -80px;
  padding: 100px 0 250px;
}
@media (min-width: 768px) {
  .offer-boxes {
    margin-top: -110px;
    padding: 50px 0 100px;
    padding: 50px 0 250px;
  }
}
@media (min-width: 1200px) {
  .offer-boxes {
    margin-top: -160px;
    padding: 0 0 200px;
  }
}
@media (min-width: 1600px) {
  .offer-boxes {
    margin-top: -215px;
  }
}
.offer-boxes::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 200px;
  background: #FF8A01;
  content: "";
  transform: skew(0, -2deg);
  transform-origin: center left;
  bottom: -80px;
}
@media (min-width: 768px) {
  .offer-boxes::after {
    bottom: -60px;
  }
}
@media (min-width: 1200px) {
  .offer-boxes::after {
    bottom: -110px;
  }
}
@media (min-width: 1600px) {
  .offer-boxes::after {
    bottom: -130px;
  }
}
.offer-boxes__container {
  transform: skew(0, -11.5deg);
  display: grid;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.offer-boxes__wrapper {
  display: inline-grid;
  margin: 0 auto;
  justify-content: center;
  grid-gap: 80px;
}
@media (min-width: 768px) {
  .offer-boxes__wrapper {
    display: grid;
    width: 720px;
    place-items: center;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 40px;
  }
}
@media (min-width: 1200px) {
  .offer-boxes__wrapper {
    display: inline-grid;
    grid-gap: 0 80px;
    width: auto;
  }
}
@media (min-width: 1600px) {
  .offer-boxes__wrapper {
    grid-gap: 80px;
    place-items: start center;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 90px;
  }
}
@media (min-width: 768px) {
  .offer-boxes__box:nth-child(1), .offer-boxes__box:nth-child(3) {
    margin-top: 0;
    justify-self: start;
  }
  .offer-boxes__box:nth-child(2), .offer-boxes__box:nth-child(4) {
    margin-top: 120px;
  }
}
@media (min-width: 1200px) {
  .offer-boxes__box:nth-child(1), .offer-boxes__box:nth-child(3) {
    margin-top: 0;
  }
  .offer-boxes__box:nth-child(2), .offer-boxes__box:nth-child(4) {
    margin-top: 120px;
  }
}
@media (min-width: 1600px) {
  .offer-boxes__box:nth-child(1) {
    margin-top: 0;
  }
  .offer-boxes__box:nth-child(2) {
    margin-top: 80px;
  }
  .offer-boxes__box:nth-child(3) {
    margin-top: 160px;
  }
  .offer-boxes__box:nth-child(4) {
    margin-top: 240px;
  }
}

.offer-section {
  display: flex;
  justify-content: center;
  overflow-x: clip;
}
.offer-section__container {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0 auto;
  grid-template-columns: 1fr 360px 1fr;
  overflow-x: clip;
  pointer-events: none;
}
.offer-section__container::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.offer-section__img-wrapper {
  position: relative;
  z-index: 1;
}
.offer-section__img {
  position: absolute;
  max-width: initial;
  pointer-events: all;
}
.offer-section__content-wrapper {
  position: relative;
  z-index: 1;
  grid-column: 2/3;
  pointer-events: all;
}
.offer-section__content-wrapper ul {
  margin-left: 0;
  padding: 0;
  list-style: none;
}
.offer-section__content-wrapper ul li {
  position: relative;
  margin-bottom: 4px;
  padding-left: 50px;
}
.offer-section__content-wrapper ul li::before {
  content: "";
  width: 30px;
  height: 22px;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
}
.offer-section__content-wrapper ul li:nth-child(odd)::before {
  background-image: url("../../../dist/img/icons/box-marker-1.svg");
}
.offer-section__content-wrapper ul li:nth-child(even)::before {
  background-image: url("../../../dist/img/icons/box-marker-2.svg");
}
.offer-section--conditioning {
  margin-top: -190px;
}
@media (min-width: 768px) {
  .offer-section--conditioning {
    margin-top: -250px;
  }
}
@media (min-width: 1600px) {
  .offer-section--conditioning {
    margin-top: -330px;
  }
}
.offer-section--conditioning .offer-section__container {
  padding-bottom: 160px;
}
@media (min-width: 768px) {
  .offer-section--conditioning .offer-section__container {
    width: 1200px;
    height: 1000px;
    padding: 350px 0 120px;
    grid-template-columns: 1fr 240px 480px 1fr;
  }
}
@media (min-width: 1200px) {
  .offer-section--conditioning .offer-section__container {
    width: 1600px;
    grid-template-columns: 1fr 570px 570px 1fr;
  }
}
@media (min-width: 1600px) {
  .offer-section--conditioning .offer-section__container {
    width: 1920px;
    height: 1100px;
    padding: 400px 0 130px;
    grid-template-columns: 1fr 775px 775px 1fr;
  }
}
.offer-section--conditioning .offer-section__container::after {
  background: #EBEBEB;
  clip-path: polygon(0% 0%, 0 100%, 100% 90%, 100% 5%);
  clip-path: polygon(0% 0%, 0 100%, 100% 90%, 100% 10%);
}
@media (min-width: 768px) {
  .offer-section--conditioning .offer-section__container::after {
    clip-path: polygon(0 0, 0 1000px, 1200px 850px, 1200px 400px);
  }
}
@media (min-width: 1200px) {
  .offer-section--conditioning .offer-section__container::after {
    clip-path: polygon(0 0, 0 1000px, 1600px 850px, 1600px 400px);
  }
}
@media (min-width: 1600px) {
  .offer-section--conditioning .offer-section__container::after {
    clip-path: polygon(0 0, 0 1100px, 1920px 970px, 1920px 500px);
  }
}
.offer-section--conditioning .offer-section__img-wrapper {
  height: 673px;
  grid-column: 1/3;
}
@media (min-width: 768px) {
  .offer-section--conditioning .offer-section__img-wrapper {
    grid-area: 1/1/2/3;
  }
}
@media (min-width: 1200px) {
  .offer-section--conditioning .offer-section__img-wrapper {
    grid-area: 1/1/2/3;
  }
}
@media (min-width: 1600px) {
  .offer-section--conditioning .offer-section__img-wrapper {
    grid-area: 1/1/2/3;
  }
}
.offer-section--conditioning .offer-section__img {
  right: -50px;
  width: 525px;
}
@media (min-width: 768px) {
  .offer-section--conditioning .offer-section__img {
    top: -380px;
    right: -40px;
    width: auto;
    height: 800px;
  }
}
@media (min-width: 1200px) {
  .offer-section--conditioning .offer-section__img {
    top: -428px;
    right: 32px;
    height: 1200px;
  }
}
@media (min-width: 1600px) {
  .offer-section--conditioning .offer-section__img {
    top: -428px;
    right: 32px;
    width: auto;
    height: auto;
  }
}
@media (min-width: 768px) {
  .offer-section--conditioning .offer-section__content-wrapper {
    grid-area: 1/3/2/4;
  }
}
@media (min-width: 1600px) {
  .offer-section--conditioning .offer-section__content-wrapper {
    margin-top: 50px;
  }
}
.offer-section--kickboxing {
  margin-top: -150px;
}
@media (min-width: 768px) {
  .offer-section--kickboxing {
    margin-top: -170px;
  }
}
@media (min-width: 1200px) {
  .offer-section--kickboxing {
    margin-top: -220px;
  }
}
@media (min-width: 1600px) {
  .offer-section--kickboxing {
    margin-top: -130px;
  }
}
.offer-section--kickboxing .offer-section__container {
  padding-bottom: 150px;
}
@media (min-width: 768px) {
  .offer-section--kickboxing .offer-section__container {
    width: 1200px;
    height: 1200px;
    grid-template-columns: 1fr 480px 240px 1fr;
  }
}
@media (min-width: 1200px) {
  .offer-section--kickboxing .offer-section__container {
    width: 1600px;
    height: 1100px;
    grid-template-columns: 1fr 570px 570px 1fr;
  }
}
@media (min-width: 1600px) {
  .offer-section--kickboxing .offer-section__container {
    width: 1920px;
    height: 1130px;
    padding: 285px 0 230px;
    grid-template-columns: 1fr 680px 870px 1fr;
  }
}
.offer-section--kickboxing .offer-section__img-wrapper {
  grid-column: 2/4;
}
@media (min-width: 768px) {
  .offer-section--kickboxing .offer-section__img-wrapper {
    grid-area: 1/3/2/5;
  }
}
.offer-section--kickboxing .offer-section__img {
  position: static;
  max-width: 100%;
}
@media (min-width: 768px) {
  .offer-section--kickboxing .offer-section__img {
    position: absolute;
    left: -250px;
    width: 650px;
    max-width: initial;
  }
}
@media (min-width: 1200px) {
  .offer-section--kickboxing .offer-section__img {
    left: -80px;
    width: 900px;
  }
}
@media (min-width: 1600px) {
  .offer-section--kickboxing .offer-section__img {
    top: -270px;
    left: -70px;
    width: auto;
  }
}
@media (min-width: 768px) {
  .offer-section--kickboxing .offer-section__content-wrapper {
    margin-top: 450px;
    grid-area: 1/2/2/3;
  }
}
@media (min-width: 1200px) {
  .offer-section--kickboxing .offer-section__content-wrapper {
    margin-top: 350px;
  }
}
@media (min-width: 1600px) {
  .offer-section--kickboxing .offer-section__content-wrapper {
    margin: 0;
  }
}
.offer-section--boxing {
  margin-top: -50px;
}
@media (min-width: 1200px) {
  .offer-section--boxing {
    margin-top: -100px;
  }
}
@media (min-width: 1600px) {
  .offer-section--boxing {
    margin-top: -230px;
  }
}
.offer-section--boxing .offer-section__container {
  color: #fff;
  padding-bottom: 130px;
}
@media (min-width: 768px) {
  .offer-section--boxing .offer-section__container {
    width: 1200px;
    grid-template-columns: 1fr 240px 480px 1fr;
    padding-bottom: 180px;
  }
}
@media (min-width: 1200px) {
  .offer-section--boxing .offer-section__container {
    width: 1600px;
    grid-template-columns: 1fr 570px 570px 1fr;
    padding-bottom: 280px;
  }
}
@media (min-width: 1600px) {
  .offer-section--boxing .offer-section__container {
    width: 1920px;
    height: 1360px;
    padding: 220px 0 380px;
    grid-template-columns: 1fr 775px 775px 1fr;
  }
}
.offer-section--boxing .offer-section__container::after {
  background-image: url("../../../dist/img/offer-boxing-bg.png");
  clip-path: polygon(0% 0%, 0 100%, 100% 93%, 100% 5%);
}
@media (min-width: 768px) {
  .offer-section--boxing .offer-section__container::after {
    clip-path: polygon(0% 0%, 0 100%, 100% 93%, 100% 5%);
  }
}
@media (min-width: 1200px) {
  .offer-section--boxing .offer-section__container::after {
    clip-path: polygon(0% 0%, 0 100%, 100% 93%, 100% 10%);
  }
}
@media (min-width: 1600px) {
  .offer-section--boxing .offer-section__container::after {
    clip-path: polygon(0px 0px, 0 660px, 1920px 1360px, 1920px 230px);
  }
}
.offer-section--boxing .offer-section__img-wrapper {
  height: 600px;
  grid-column: 1/3;
  margin-top: -95px;
}
@media (min-width: 768px) {
  .offer-section--boxing .offer-section__img-wrapper {
    grid-area: 1/1/2/3;
  }
}
.offer-section--boxing .offer-section__img {
  right: -70px;
  width: 600px;
}
@media (min-width: 768px) {
  .offer-section--boxing .offer-section__img {
    top: -110px;
    right: -290px;
    width: 800px;
  }
}
@media (min-width: 1200px) {
  .offer-section--boxing .offer-section__img {
    top: -50px;
    right: -70px;
    width: 1100px;
  }
}
@media (min-width: 1600px) {
  .offer-section--boxing .offer-section__img {
    top: -357px;
    right: -80px;
    width: auto;
  }
}
@media (min-width: 768px) {
  .offer-section--boxing .offer-section__content-wrapper {
    grid-area: 1/3/2/4;
    margin-top: 500px;
  }
}
@media (min-width: 1200px) {
  .offer-section--boxing .offer-section__content-wrapper {
    margin-top: 150px;
  }
}
@media (min-width: 1600px) {
  .offer-section--boxing .offer-section__content-wrapper {
    margin: 0;
  }
}
@media (min-width: 768px) {
  .offer-section--diet {
    margin-top: -100px;
  }
}
@media (min-width: 1200px) {
  .offer-section--diet {
    margin-top: -190px;
  }
}
@media (min-width: 1600px) {
  .offer-section--diet {
    margin-top: -700px;
  }
}
.offer-section--diet .offer-section__container {
  padding-bottom: 100px;
}
@media (min-width: 768px) {
  .offer-section--diet .offer-section__container {
    width: 1200px;
    grid-template-columns: 1fr repeat(6, 120px) 1fr;
  }
}
@media (min-width: 1200px) {
  .offer-section--diet .offer-section__container {
    width: 1600px;
    grid-template-columns: 1fr 570px 570px 1fr;
  }
}
@media (min-width: 1600px) {
  .offer-section--diet .offer-section__container {
    width: 1920px;
    height: 1415px;
    padding: 520px 0 150px;
    grid-template-columns: 1fr 680px 870px 1fr;
  }
}
.offer-section--diet .offer-section__container::after {
  background: #fff;
  clip-path: polygon(0% 0%, 0 100%, 100% 100%, 100% 0%);
}
@media (min-width: 768px) {
  .offer-section--diet .offer-section__container::after {
    clip-path: polygon(0% 10%, 0 100%, 100% 100%, 100% 0%);
  }
}
@media (min-width: 1200px) {
  .offer-section--diet .offer-section__container::after {
    clip-path: polygon(0% 0%, 0 100%, 100% 100%, 100% 30%);
  }
}
@media (min-width: 1600px) {
  .offer-section--diet .offer-section__container::after {
    clip-path: polygon(0px 0px, 0 1415px, 1920px 1415px, 1920px 697px);
  }
}
.offer-section--diet .offer-section__img-wrapper {
  height: 550px;
  margin-top: -130px;
  grid-column: 2/4;
}
@media (min-width: 768px) {
  .offer-section--diet .offer-section__img-wrapper {
    grid-area: 1/6/2/9;
  }
}
@media (min-width: 1200px) {
  .offer-section--diet .offer-section__img-wrapper {
    grid-area: 1/3/2/5;
  }
}
.offer-section--diet .offer-section__img {
  left: -100px;
  height: 100%;
}
@media (min-width: 1200px) {
  .offer-section--diet .offer-section__img {
    top: 100px;
    left: 0;
    width: 900px;
    height: auto;
  }
}
@media (min-width: 1600px) {
  .offer-section--diet .offer-section__img {
    top: -123px;
    left: -16px;
    width: auto;
  }
}
@media (min-width: 768px) {
  .offer-section--diet .offer-section__content-wrapper {
    grid-area: 1/2/2/6;
    margin-top: 200px;
  }
}
@media (min-width: 1200px) {
  .offer-section--diet .offer-section__content-wrapper {
    grid-area: 1/2/2/3;
  }
}
@media (min-width: 1600px) {
  .offer-section--diet .offer-section__content-wrapper {
    margin: 0;
  }
}

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