@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
@import url("https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.css");
*,
*::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;
}

.home-banner {
  color: #fff;
  height: 550px;
  background-size: cover;
  padding-bottom: 200px;
}
@media (min-width: 768px) {
  .home-banner {
    height: 650px;
    padding-bottom: 300px;
  }
}
@media (min-width: 1200px) {
  .home-banner {
    height: 950px;
    padding-bottom: 300px;
  }
}
@media (min-width: 1600px) {
  .home-banner {
    height: 1250px;
  }
}
.home-banner__container {
  display: grid;
  height: 100%;
  align-items: center;
  position: relative;
}
@media (min-width: 768px) {
  .home-banner__container {
    grid-template-columns: 1fr 1fr;
  }
}
.home-banner__img-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .home-banner__img-wrapper {
    display: block;
    grid-area: 1/1/2/2;
    height: 100%;
    width: 100%;
    position: relative;
  }
}
@media (min-width: 768px) {
  .home-banner__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 460px;
    max-width: initial;
  }
}
@media (min-width: 1200px) {
  .home-banner__img {
    width: 650px;
  }
}
@media (min-width: 1600px) {
  .home-banner__img {
    width: 800px;
    top: -15px;
    right: -95px;
  }
}
.home-banner__slider {
  height: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .home-banner__slider {
    grid-area: 1/1/2/3;
  }
}

.home-banner-slide {
  display: grid;
  align-items: center;
  height: 100%;
}
@media (min-width: 768px) {
  .home-banner-slide {
    grid-template-columns: 1fr 1fr;
  }
}
.home-banner-slide__content {
  grid-area: 1/2/2/3;
}
@media (min-width: 768px) {
  .home-banner-slide__content {
    width: 350px;
  }
}
@media (min-width: 1200px) {
  .home-banner-slide__content {
    width: 400px;
  }
}
@media (min-width: 1600px) {
  .home-banner-slide__content {
    width: auto;
  }
}
.home-banner-slide__heading {
  font-weight: 900;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  width: max-content;
}
.home-banner-slide__heading::before, .home-banner-slide__heading::after {
  content: "";
  position: absolute;
  background: #FF0000;
  height: 12px;
  width: 50px;
  border-radius: 123rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .home-banner-slide__heading::before, .home-banner-slide__heading::after {
    width: 85px;
    height: 16px;
  }
}
@media (min-width: 1200px) {
  .home-banner-slide__heading::before, .home-banner-slide__heading::after {
    width: 115px;
    height: 20px;
  }
}
@media (min-width: 1600px) {
  .home-banner-slide__heading::before, .home-banner-slide__heading::after {
    width: 188px;
    height: 33px;
  }
}
.home-banner-slide__heading::before {
  top: 15px;
  left: -10px;
}
@media (min-width: 768px) {
  .home-banner-slide__heading::before {
    top: 20px;
    left: -15px;
  }
}
@media (min-width: 1200px) {
  .home-banner-slide__heading::before {
    top: 30px;
    left: -20px;
  }
}
@media (min-width: 1200px) {
  .home-banner-slide__heading::before {
    top: 50px;
    left: -40px;
  }
}
.home-banner-slide__heading::after {
  bottom: -2px;
  right: -10px;
}
@media (min-width: 768px) {
  .home-banner-slide__heading::after {
    bottom: -4px;
    right: -12px;
  }
}
@media (min-width: 1200px) {
  .home-banner-slide__heading::after {
    right: -25px;
  }
}
@media (min-width: 768px) {
  .home-banner-slide__heading {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .home-banner-slide__heading {
    font-size: 50px;
  }
}
@media (min-width: 1600px) {
  .home-banner-slide__heading {
    font-size: 80px;
    margin-bottom: 20px;
  }
}
.home-banner-slide__description {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .home-banner-slide__description {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .home-banner-slide__description {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1600px) {
  .home-banner-slide__description {
    font-size: 36px;
    margin-bottom: 140px;
    line-height: 44px;
  }
}
.home-banner-slide__button {
  display: flex;
  border: 1px solid;
  color: inherit;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  align-items: center;
  border-radius: 20px;
  font-size: 16px;
  padding: 5px 10px;
  width: max-content;
  margin-left: auto;
}
@media (min-width: 1200px) {
  .home-banner-slide__button {
    font-size: 20px;
    padding: 6px 11px;
  }
}
@media (min-width: 1600px) {
  .home-banner-slide__button {
    padding: 9px 13px;
    font-size: 36px;
  }
}
.home-banner-slide__button-icon {
  margin-left: 10px;
}
@media (min-width: 1200px) {
  .home-banner-slide__button-icon {
    height: 34px;
  }
}

.home-banner .swiper {
  width: 100%;
  height: 100%;
}
.home-banner .swiper-arrows {
  position: absolute;
  bottom: 20px;
  left: 0;
  display: flex;
  height: max-content;
  width: auto;
}
@media (min-width: 768px) {
  .home-banner .swiper-arrows {
    left: auto;
    right: 0;
    bottom: 0;
  }
}
@media (min-width: 1600px) {
  .home-banner .swiper-arrows {
    top: 285px;
    left: auto;
    right: auto;
    width: 1550px;
    justify-content: space-between;
  }
}
.home-banner .swiper-arrows .swiper-button-prev,
.home-banner .swiper-arrows .swiper-button-next {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
}
.home-banner .swiper-arrows .swiper-button-prev::after,
.home-banner .swiper-arrows .swiper-button-next::after {
  display: none;
}
.home-banner .swiper-arrows .swiper-button-prev img,
.home-banner .swiper-arrows .swiper-button-next img {
  width: 35px;
  position: static;
}
@media (min-width: 1200px) {
  .home-banner .swiper-arrows .swiper-button-prev img,
  .home-banner .swiper-arrows .swiper-button-next img {
    width: 50px;
  }
}
@media (min-width: 1600px) {
  .home-banner .swiper-arrows .swiper-button-prev img,
  .home-banner .swiper-arrows .swiper-button-next img {
    width: 67px;
  }
}
.home-banner .swiper-arrows .swiper-button-prev img {
  rotate: 180deg;
  margin-right: 20px;
}
@media (min-width: 1600px) {
  .home-banner .swiper-arrows .swiper-button-prev img {
    margin: 0;
  }
}

.home-banner {
  position: relative;
  overflow: clip;
}
.home-banner::after {
  content: "";
  width: 100%;
  height: 500px;
  transform: skew(0, 11deg);
  position: absolute;
  background: #FF8A01;
  left: 0;
  bottom: -330px;
}
@media (min-width: 768px) {
  .home-banner::after {
    bottom: -315px;
  }
}
@media (min-width: 1200px) {
  .home-banner::after {
    bottom: -245px;
  }
}
@media (min-width: 1600px) {
  .home-banner::after {
    bottom: -130px;
  }
}

.home-about {
  background-color: #fff;
  background-size: cover;
  overflow: clip;
  padding: 80px 0 80px;
  transform: skew(0, 13deg);
  margin-top: -150px;
}
@media (min-width: 768px) {
  .home-about {
    padding: 50px 0 70px;
    margin-top: -160px;
  }
}
@media (min-width: 1200px) {
  .home-about {
    padding: 30px 0 200px;
    margin-top: -220px;
  }
}
@media (min-width: 1600px) {
  .home-about {
    padding: 0 0 150px;
    margin-top: -320px;
  }
}
.home-about > * {
  transform: skew(0, -13deg);
}
@media (min-width: 1200px) {
  .home-about__container {
    display: grid;
    grid-template-columns: 3fr minmax(0, 2fr);
  }
}
@media (min-width: 1600px) {
  .home-about__container {
    grid-template-columns: 1fr minmax(0, 1fr);
  }
}
@media (min-width: 1600px) {
  .home-about__content-wrapper {
    padding-left: 50px;
  }
}
@media (min-width: 1600px) {
  .home-about__heading {
    margin: 0 0 50px -50px;
  }
}
.home-about__img-wrapper {
  display: grid;
  height: 650px;
  justify-content: center;
}
@media (min-width: 768px) {
  .home-about__img-wrapper {
    margin-top: -220px;
  }
}
@media (min-width: 1200px) {
  .home-about__img-wrapper {
    margin-top: 0;
  }
}
@media (min-width: 1600px) {
  .home-about__img-wrapper {
    height: 1020px;
  }
}
.home-about__img {
  width: 700px;
  max-width: initial;
}
@media (min-width: 1200px) {
  .home-about__img {
    width: 880px;
  }
}
@media (min-width: 1600px) {
  .home-about__img {
    position: relative;
    top: 16px;
    right: 140px;
    width: auto;
  }
}

.home-about {
  position: relative;
}
.home-about::after {
  position: absolute;
  bottom: -430px;
  width: 100%;
  height: 500px;
  background: #FF8A01;
  content: "";
  transform: skew(0, 6deg);
}
@media (min-width: 768px) {
  .home-about::after {
    bottom: -490px;
  }
}
@media (min-width: 1200px) {
  .home-about::after {
    bottom: -450px;
  }
}

.home-cards {
  transform: skew(0, 10deg);
  padding: 70px 0 250px;
  margin-top: -110px;
}
@media (min-width: 768px) {
  .home-cards {
    padding: 70px 0 300px;
    margin-top: -90px;
  }
}
@media (min-width: 1200px) {
  .home-cards {
    padding: 70px 0 400px;
    margin-top: -120px;
  }
}
@media (min-width: 1600px) {
  .home-cards {
    padding: 30px 0 500px;
    margin-top: -190px;
  }
}
.home-cards > * {
  transform: skew(0, -10deg);
}
.home-cards__heading {
  margin-bottom: 90px;
}
.home-cards__wrapper {
  display: grid;
  place-items: center;
  grid-gap: 30px;
}
@media (min-width: 768px) {
  .home-cards__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center;
    grid-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .home-cards__wrapper {
    width: 800px;
    margin: 0 auto;
  }
}
@media (min-width: 1600px) {
  .home-cards__wrapper {
    width: 1550px;
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-card {
  background: #fff;
  min-height: 329px;
  width: 347px;
  border-radius: 14px;
  padding: 23px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}
.home-card__name {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 13px;
}
.home-card__name::after {
  content: "";
  background: #FF8A01;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 300px;
}
.home-card__img {
  margin-bottom: 18px;
}
.home-card__description {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  padding: 16px;
}
.home-card__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF8A01;
  text-decoration: none;
  height: 71px;
  width: 71px;
  border-radius: 71px;
  position: absolute;
  right: 20px;
  translate: 0 30px;
  bottom: 0;
}
.home-card__link-icon {
  width: 44px;
  height: 44px;
}

.home-slider {
  background: #fff;
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  margin-top: -100px;
}
@media (min-width: 768px) {
  .home-slider {
    padding-bottom: 150px;
  }
}
@media (min-width: 1200px) {
  .home-slider {
    padding-bottom: 200px;
    margin-top: -200px;
  }
}
@media (min-width: 1600px) {
  .home-slider {
    padding-bottom: 250px;
    margin-top: -250px;
  }
}
.home-slider::after {
  content: "";
  background: inherit;
  width: 100%;
  height: 410px;
  position: absolute;
  transform: skew(0, -12deg);
  top: 0;
  left: 50%;
  translate: -50% 0;
  transform-origin: bottom left;
}
@media (min-width: 1200px) {
  .home-slider::after {
    transform: skew(0, -7deg);
  }
}
.home-slider__container {
  position: relative;
  z-index: 3;
}
@media (min-width: 1600px) {
  .home-slider__container {
    width: 1140px;
  }
}
.home-slider__swiper {
  padding: 50px 20px;
}
.home-slider__wrapper {
  position: relative;
}
.home-slider__swiper-buttons {
  display: none;
  pointer-events: none;
}
@media (min-width: 1200px) {
  .home-slider__swiper-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1140px;
    z-index: 999;
  }
}
@media (min-width: 1600px) {
  .home-slider__swiper-buttons {
    width: 1550px;
  }
}
.home-slider__swiper-buttons .swiper-button {
  position: static;
  height: 67px;
  width: 67px;
  pointer-events: all;
  cursor: pointer;
}
.home-slider__swiper-buttons .swiper-button::after {
  display: none;
}
.home-slider__swiper-buttons .swiper-button .swiper-button-icon {
  height: 67px;
  width: 67px;
}
.home-slider__swiper-buttons .swiper-button-prev {
  rotate: 180deg;
}
.home-slider__heading {
  margin: 0 auto;
  width: max-content;
}
.home-slider .decoration__element {
  content: "";
  background: #FF8A01;
  position: absolute;
}
.home-slider .decoration__element--1 {
  bottom: 0;
  left: 0;
  width: 230px;
  height: 60px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
@media (min-width: 768px) {
  .home-slider .decoration__element--1 {
    width: 300px;
    height: 80px;
  }
}
@media (min-width: 1200px) {
  .home-slider .decoration__element--1 {
    width: 450px;
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .home-slider .decoration__element--1 {
    width: 650px;
    height: 120px;
  }
}
.home-slider .decoration__element--2 {
  bottom: 0;
  left: 0;
  width: 230px;
  height: 60px;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.swiper-slide .home-slide {
  position: relative;
  display: grid;
  height: 390px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 0 1px;
  justify-content: center;
  align-items: center;
  grid-template-rows: 140px 60px 1fr;
  grid-gap: 20px;
  border-radius: 30px;
  box-shadow: 0 0 10px 0 rgba(13, 13, 13, 0.3);
  opacity: 0;
}
@media (min-width: 768px) {
  .swiper-slide .home-slide {
    width: 450px;
    padding: 40px;
  }
}
.swiper-slide .home-slide::after {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #FF8A01;
  content: "";
  border-radius: 15px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .swiper-slide .home-slide::after {
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
  }
}
.swiper-slide .home-slide__img-wrapper {
  position: relative;
}
.swiper-slide .home-slide__img-wrapper::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 150px;
  height: 25px;
  background: #FF8A01;
  content: "";
  translate: -50% 50%;
  border-radius: 20px;
}
.swiper-slide .home-slide__img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.swiper-slide .home-slide__heading {
  margin: 0;
  font-size: 24px;
  text-align: center;
  font-weight: 900;
}
.swiper-slide .home-slide__desc {
  font-size: 14px;
}
.swiper-slide.swiper-slide-active .home-slide {
  opacity: 1;
}
.swiper-slide.swiper-slide-prev .home-slide, .swiper-slide.swiper-slide-next .home-slide {
  opacity: 0.5;
  transform: translateY(50px);
  background: #EFEFEF;
}
.swiper-slide.swiper-slide-prev .home-slide {
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 35%);
}
.swiper-slide.swiper-slide-next .home-slide {
  -webkit-mask-image: linear-gradient(to right, rgb(0, 0, 0) 65%, rgba(0, 0, 0, 0) 85%);
}

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