*,
*::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;
  }
}

.pricelist-cards {
  color: #fff;
  transform: skew(0, 12deg);
  margin-top: -80px;
  padding: 50px 0 150px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  border-top: solid 5px #FF8A01;
}
.pricelist-cards::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  background: #FF8A01;
  opacity: 0.7;
  pointer-events: none;
}
@media (min-width: 768px) {
  .pricelist-cards {
    margin-top: -130px;
  }
}
@media (min-width: 1200px) {
  .pricelist-cards {
    margin-top: -175px;
  }
}
@media (min-width: 1600px) {
  .pricelist-cards {
    margin-top: -210px;
    padding-bottom: 100px;
  }
}
.pricelist-cards__container {
  position: relative;
  z-index: 11;
  transform: skew(0, -12deg);
}
@media (min-width: 1600px) {
  .pricelist-cards__container {
    translate: 0 -50px;
  }
}
.pricelist-cards__heading {
  margin-bottom: 50px;
}
@media (min-width: 1600px) {
  .pricelist-cards__heading {
    margin-bottom: 80px;
  }
}
.pricelist-cards__wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .pricelist-cards__wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
}
@media (min-width: 1600px) {
  .pricelist-cards__wrapper {
    justify-content: space-between;
  }
}

.card {
  position: relative;
  background: #0D0D0D;
  border-radius: 20px;
  width: 100%;
  margin-bottom: 50px;
  padding: 30px 30px 30px 30px;
}
@media (min-width: 768px) {
  .card {
    height: 545px;
    width: 465px;
    padding: 50px 45px 45px 45px;
  }
}
@media (min-width: 1600px) {
  .card {
    margin: 0;
  }
}
.card::before, .card::after {
  content: attr(data-number);
  position: absolute;
  pointer-events: none;
}
.card::before {
  color: #FF8A01;
  font-weight: 700;
  top: 10px;
  right: 15px;
  font-size: 90px;
}
@media (min-width: 768px) {
  .card::before {
    top: 27px;
    right: 46px;
    font-size: 134px;
  }
}
.card::after {
  font-size: 340px;
  font-weight: 700;
  bottom: 20px;
  left: 80px;
  color: rgba(0, 0, 0, 0);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
  line-height: 1;
}
.card__title {
  position: relative;
  font-weight: 700;
  font-size: 24px;
  max-width: 220px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .card__title {
    font-size: 30px;
    max-width: 270px;
    padding: 0 30px;
  }
}
.card__title::after, .card__title::before {
  position: absolute;
  top: 50%;
  width: 4px;
  height: 55px;
  background: #FF0000;
  content: "";
  transform: translateY(-50%);
  border-radius: 50px;
}
.card__title::before {
  left: 0;
}
.card__title::after {
  right: 0;
}
.card__price {
  text-align: right;
  margin-right: 30px;
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}
.card__price-value {
  position: relative;
  z-index: 1;
  font-size: 32px;
}
@media (min-width: 768px) {
  .card__price-value {
    font-size: 43px;
  }
}
.card__price-value::after {
  content: "Cena netto";
  background: #FF0000;
  position: absolute;
  left: -40px;
  bottom: -7px;
  font-size: 15px;
  font-weight: 300;
  border-radius: 15px;
  z-index: -1;
  padding: 1px 20px 1px 15px;
  white-space: nowrap;
}
.card__currency {
  font-size: 24px;
}
@media (min-width: 768px) {
  .card__currency {
    font-size: 33px;
  }
}
.card__description {
  font-size: 16px;
  text-align: center;
  font-weight: 700;
}
.card__button {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: flex;
  border: 1px solid #fff;
  background: #FF0000;
  color: inherit;
  transform: translate(-50%, 12px);
  font-weight: 300;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border-radius: 20px;
  cursor: pointer;
  font-size: 20px;
  width: 180px;
  height: 40px;
}
@media (min-width: 768px) {
  .card__button {
    width: 220px;
    height: 50px;
    font-size: 28px;
  }
}
.card__button-icon {
  width: 27px;
  height: 27px;
  margin-left: 25px;
  height: 20px;
  width: 20px;
}
@media (min-width: 768px) {
  .card__button-icon {
    width: 27px;
    height: 27px;
  }
}

.pricelist-pricetable {
  transform: skew(0, 7deg);
  position: relative;
  z-index: 1;
  padding: 50px 0 100px;
}
.pricelist-pricetable__container {
  transform: skew(0, -7deg);
  display: grid;
  grid-template-columns: 1fr 360px 1fr;
  width: 100%;
}
@media (min-width: 768px) {
  .pricelist-pricetable__container {
    display: block;
    margin: 0 auto;
    width: 720px;
  }
}
@media (min-width: 1200px) {
  .pricelist-pricetable__container {
    width: 1140px;
  }
}
@media (min-width: 1600px) {
  .pricelist-pricetable__container {
    width: 1550px;
  }
}
.pricelist-pricetable__heading {
  margin-bottom: 100px;
  grid-column: 2/3;
}
@media (min-width: 768px) {
  .pricelist-pricetable__heading {
    grid-column: initial;
  }
}
.pricelist-pricetable__text {
  font-weight: 700;
  text-align: center;
  margin-bottom: 100px;
  grid-column: 2/3;
}
@media (min-width: 768px) {
  .pricelist-pricetable__text {
    grid-column: initial;
  }
}
.pricelist-pricetable__table-wrapper {
  overflow-x: scroll;
  grid-column: 1/4;
  max-width: 720px;
  margin: 0 0px;
}
@media (min-width: 768px) {
  .pricelist-pricetable__table-wrapper {
    grid-column: initial;
    max-width: initial;
    overflow-x: initial;
  }
}

.pricelist-table {
  margin: 0 auto;
  text-align: left;
  border-collapse: collapse;
  min-width: 600px;
}
@media (min-width: 768px) {
  .pricelist-table {
    min-width: initial;
    max-width: 1100px;
  }
}
@media (min-width: 1600px) {
  .pricelist-table {
    min-width: 900px;
  }
}
.pricelist-table thead {
  background: #FF8A01;
  color: #fff;
  text-transform: uppercase;
}
.pricelist-table td,
.pricelist-table th {
  font-weight: 700;
  font-size: 20px;
  padding: 10px;
}
.pricelist-table td:nth-child(1),
.pricelist-table th:nth-child(1) {
  padding-left: 50px;
}
.pricelist-table td:nth-child(2),
.pricelist-table th:nth-child(2) {
  width: 25%;
}
.pricelist-table td:nth-child(3),
.pricelist-table th:nth-child(3) {
  width: 25%;
  padding-right: 50px;
}

.pricelist-plans {
  background-color: #0D0D0D;
  background-size: cover;
  padding: 250px 0 157px;
  overflow: clip;
  position: relative;
}
.pricelist-plans::before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(8px);
}
.pricelist-plans__container {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .pricelist-plans__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px 0;
  }
}
@media (min-width: 1200px) {
  .pricelist-plans__wrapper {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1600px) {
  .pricelist-plans__wrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    justify-content: center;
  }
}
.pricelist-plans__heading {
  margin-bottom: 50px;
}
.pricelist-plans .decoration__element {
  content: "";
  background: #FF8A01;
  position: absolute;
  z-index: 1;
}
.pricelist-plans .decoration__element--1 {
  bottom: 0;
  left: 0;
  width: 230px;
  height: 60px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
@media (min-width: 768px) {
  .pricelist-plans .decoration__element--1 {
    width: 300px;
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .pricelist-plans .decoration__element--1 {
    width: 450px;
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .pricelist-plans .decoration__element--1 {
    width: 650px;
    height: 120px;
  }
}

.plan {
  color: #fff;
  text-align: center;
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.plan__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 30px;
}
.plan__wrapper:not(:last-child) {
  border-bottom: solid 1px #fff;
}
@media (min-width: 768px) {
  .plan__wrapper:not(:last-child) {
    border-bottom: none;
  }
}
@media (min-width: 768px) {
  .plan__wrapper:not(:nth-child(even), :last-child) {
    border-right: solid 1px #fff;
  }
}
@media (min-width: 1200px) {
  .plan__wrapper:not(:nth-child(3n+3), :last-child) {
    border-right: solid 1px #fff;
  }
}
@media (min-width: 1600px) {
  .plan__wrapper:not(:nth-child(5n+5), :last-child) {
    border-right: solid 1px #fff;
  }
}
.plan__card-wrapper {
  position: relative;
  margin-bottom: 30px;
}
.plan__card-wrapper::after {
  content: "";
  height: 210px;
  width: 210px;
  background: #FF8A01;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  border-radius: 57px;
  rotate: 14deg;
}
.plan__card {
  background: #fff;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.plan__card::before, .plan__card::after {
  content: "";
  height: 35px;
  width: 3px;
  position: absolute;
  top: 50px;
  border-radius: 29px;
  background: #FF0000;
}
.plan__card::before {
  left: 35px;
}
.plan__card::after {
  right: 35px;
}
.plan__img {
  margin-bottom: 32px;
  max-height: 100px;
  max-width: 100px;
  object-fit: contain;
}
.plan__name {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #0D0D0D;
}
.plan__price {
  font-size: 43px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.plan__price::before {
  content: "";
  background: #FF0000;
  height: 20px;
  width: 115px;
  position: absolute;
  bottom: 0;
  left: 25%;
  z-index: -1;
  translate: -50%;
  border-radius: 115px;
}
.plan__price-currency {
  font-size: 33px;
  font-weight: 700;
}
.plan__description {
  max-width: 100%;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
}

.pricelist-plans {
  position: relative;
}
.pricelist-plans::after {
  content: "";
  background: white;
  width: 100%;
  height: 300px;
  position: absolute;
  top: -160px;
  left: 0;
  transform: skew(0, 9deg);
}

.modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  display: none;
}
.modal-overlay--visible {
  display: block;
}

.pricelist-modal {
  background: white;
  width: 360px;
  top: 50px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 20px;
  display: grid;
}
.pricelist-modal__close-button {
  top: 0;
  right: 0;
  transform: translateY(-100%);
  color: #fff;
  background: #0D0D0D;
  position: absolute;
  font-weight: 900;
  font-size: 24px;
  width: 50px;
  border: 1px solid #fff;
  border-bottom: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .pricelist-modal {
    width: 720px;
  }
}
@media (min-width: 1200px) {
  .pricelist-modal {
    width: 1140px;
    grid-template-columns: 2fr 1fr;
    grid-gap: 25px;
    padding: 0;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1600px) {
  .pricelist-modal {
    grid-template-columns: 150px 1fr 400px;
  }
}
.pricelist-modal__hidden-form form *:not(.wpcf7-response-output) {
  display: none !important;
  pointer-events: none;
  opacity: 0;
  visibility: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
.pricelist-modal__img-wrapper {
  display: none;
}
@media (min-width: 1600px) {
  .pricelist-modal__img-wrapper {
    display: block;
    position: relative;
  }
}
.pricelist-modal__img-wrapper img {
  max-width: initial;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translate(0, -50%);
}
.pricelist-modal__description-wrapper {
  order: 0;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .pricelist-modal__description-wrapper {
    order: 1;
    margin-bottom: 0;
    position: relative;
  }
}
@media (min-width: 1200px) {
  .pricelist-modal__description-wrapper::after {
    content: "";
    position: absolute;
    height: 90%;
    bottom: 0;
    left: 0;
    width: 1px;
    background: #0D0D0D;
  }
}
.pricelist-modal__form-wrapper {
  order: 1;
}
@media (min-width: 1200px) {
  .pricelist-modal__form-wrapper {
    order: 0;
    padding: 30px 0 30px 20px;
  }
}
@media (min-width: 1600px) {
  .pricelist-modal__form-wrapper {
    order: 0;
    padding: 30px 0;
  }
}

.modal-offer {
  padding: 30px 20px 0;
}
@media (min-width: 1200px) {
  .modal-offer {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
.modal-offer__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-offer__heading {
  font-size: 28px;
  font-weight: 700;
  position: relative;
  margin: 0;
  line-height: 1;
  padding: 0 20px;
}
.modal-offer__heading::after, .modal-offer__heading::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 5px;
  height: 50px;
  background: #FF0000;
  top: 50%;
  translate: 0 -50%;
  border-radius: 20px;
}
.modal-offer__heading::after {
  right: 0;
}
.modal-offer__heading::before {
  left: 0;
}
.modal-offer__number {
  font-size: 130px;
  font-weight: 700;
  color: #FF8A01;
  line-height: 1;
  margin-top: -20px;
}
.modal-offer__content {
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  margin-bottom: 20px;
}
.modal-offer__price-wrapper {
  position: relative;
  background: #0D0D0D;
  height: 150px;
  display: grid;
  place-items: center;
}
@media (min-width: 1200px) {
  .modal-offer__price-wrapper {
    margin: auto -20px 0;
  }
}
.modal-offer__price-wrapper::after, .modal-offer__price-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #FF8A01;
  clip-path: polygon(0 0, 10px calc(100% - 10px), 100% 100%, 0 100%);
}
.modal-offer__price-wrapper::after {
  clip-path: polygon(0 0, 10px calc(100% - 10px), 100% 100%, 0 100%);
}
.modal-offer__price-wrapper::before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, calc(100% - 10px) 10px);
}
.modal-offer__price {
  color: #fff;
  position: relative;
  font-weight: 700;
}
.modal-offer__price--hidden-currency .modal-offer__price-currency {
  display: none;
}
.modal-offer__price-value {
  position: relative;
  z-index: 1;
  font-size: 43px;
}
.modal-offer__price-value--small {
  font-size: 22px;
}
.modal-offer__price-currency {
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  font-size: 33px;
}

@media (min-width: 768px) {
  .modal-form {
    display: grid;
    grid-template-columns: 2fr 1fr;
    place-items: start center;
    grid-gap: 20px;
  }
}
@media (min-width: 768px) {
  .modal-form {
    grid-template-columns: 1fr 1fr;
  }
}
.modal-form__inputs {
  grid-column: 1/3;
  display: grid;
  grid-gap: 5px;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .modal-form__inputs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1600px) {
  .modal-form__inputs {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-areas: "name name tel tel mail mail" "age height fightExp fightExp fightExp fightExp" "weight fights sportExp sportExp sportExp sportExp" "";
  }
}
.modal-form__input {
  padding: 0;
  border-radius: 0;
  border: 1px solid #000;
  height: 45px;
  display: block;
  text-indent: 10px;
  width: 100%;
}
.modal-form__input.error {
  border-color: red;
  box-shadow: 0 0 0 2px red;
}
@media (min-width: 1200px) {
  .modal-form__input--name {
    grid-area: 1/1/2/3;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--phone {
    grid-area: 1/3/2/5;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--email {
    grid-area: 1/5/2/7;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--age {
    grid-area: 2/1/3/2;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--height {
    grid-area: 2/2/3/3;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--weight {
    grid-area: 2/3/3/4;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--target-weight {
    grid-area: 2/4/3/6;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--martial-arts-experience {
    grid-area: 3/1/4/5;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--sports-experience {
    grid-area: 4/1/5/7;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--diet {
    grid-area: 6/1/7/5;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--supplementation {
    grid-area: 6/5/7/7;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--fights {
    grid-area: 3/5/4/7;
  }
}
@media (min-width: 1200px) {
  .modal-form__input--conditioning-experience {
    grid-area: 5/1/6/7;
  }
}
.modal-form__acceptance {
  display: flex;
  align-items: flex-start;
}
.modal-form__acceptance:has(.error) {
  box-shadow: 0 0 0 2px red;
}
.modal-form__acceptance input {
  height: 25px;
  display: block;
  width: 25px;
}
.modal-form__acceptance p {
  font-size: 14px;
  margin-top: 5px;
}
.modal-form__submit-button {
  background: #FF0000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: flex;
  border: none;
  color: #fff;
  width: 100%;
  font-size: 24px;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.modal-form__submit-button.disabled {
  background: #999;
}
.modal-form__submit-button img {
  height: 24px;
  margin-left: 20px;
}

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