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

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

button {
  border: none;
  background-color: transparent;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

a {
  text-decoration: none;
  font-family: inherit;
}

address {
  font-style: normal;
  margin: 0;
}

textarea {
  resize: none;
}

html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-color: #F5F8EB;
  font-family: "Space Grotesk", sans-serif;
  color: #000000;
  font-size: 13px;
  line-height: 1.5384615385;
  font-weight: 400;
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
  }
}
body ::-moz-selection {
  color: #C7F030;
  background: #000;
}
body ::selection {
  color: #C7F030;
  background: #000;
}

main {
  flex: 1 0 auto;
  overflow-x: hidden;
}
main.menu_is_open {
  position: relative;
  z-index: -5;
}

.container {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 1400px) {
  .container {
    max-width: 1344px;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.no-scroll {
  overflow: hidden;
}

.section {
  padding: 40px 0;
}

.section_title {
  font-family: "Jost", sans-serif;
  font-size: 28px;
  line-height: 1.2142857143;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .section_title {
    font-size: 64px;
    line-height: 1.1875;
    font-weight: 700;
  }
}

.button {
  display: inline-block;
  min-width: 165px;
  padding: 16px 40px;
  background-color: #000000;
  color: #F5F8EB;
  border-radius: 100px;
  font-size: 16px;
  line-height: 1.125;
  font-weight: 700;
  text-align: center;
  transition: all 250ms ease-in-out;
}
.button.disabled {
  opacity: 0.6;
}
.button:hover, .button:focus {
  color: #000000;
  background-color: #F5F8EB;
}
.button:active {
  color: #000000;
  background-color: #DCDFD0;
}
@media (min-width: 768px) {
  .button {
    min-width: 175px;
    font-size: 32px;
    line-height: 1.125;
    font-weight: 700;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
}
@media (min-width: 992px) {
  .header {
    position: absolute;
    top: 32px;
  }
}
.header--light .desktop_nav .nav-item__link {
  color: #F5F8EB;
}
.header--light .desktop_nav .nav-item__link:hover, .header--light .desktop_nav .nav-item__link:focus {
  color: #C7F030;
}
.header--light .logo_main {
  display: block;
}
.header--light .logo_dark {
  display: none;
}
.header--light .menu_btn svg {
  fill: #F5F8EB;
}
.header--contacts {
  background-color: #C7F030;
}
.header--contacts .desktop_nav .nav-item__link:hover, .header--contacts .desktop_nav .nav-item__link:focus {
  color: #F5F8EB;
}

.header__logo {
  width: 124px;
  height: 16px;
}
@media (min-width: 992px) {
  .header__logo {
    width: 248px;
    height: 40px;
  }
}

.logo_main {
  display: none;
}

.nav-item__link {
  font-size: 24px;
  line-height: 1.2916666667;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  transition: all 250ms ease-in-out;
}
.nav-item__link:hover, .nav-item__link:focus {
  color: #C7F030;
}
@media (min-width: 992px) {
  .nav-item__link {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
  }
}

.mobile_nav {
  background-color: #000000;
  height: auto;
  padding: 16px;
  background-image: url("../../../img/mobile-menu/bg-lines.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mobile_nav .nav-item {
  margin-bottom: 40px;
}
.mobile_nav .nav-item:last-child {
  margin-bottom: 0;
}
.mobile_nav .nav-item__link {
  color: #F5F8EB;
}
.mobile_nav::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #C7F030;
}
.mobile_nav::after {
  content: "";
  position: absolute;
  left: 40px;
  bottom: 40px;
  display: block;
  width: 40px;
  height: 40px;
  background-color: #C7F030;
}

.menu_btn {
  width: 32px;
  height: 32px;
}
.menu_btn svg {
  fill: #000000;
}
.menu_btn--close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.footer {
  background-color: #000000;
  padding: 40px 0 20px;
}

.footer__item {
  margin-top: 60px;
  text-align: center;
}
@media (min-width: 992px) {
  .footer__item {
    margin: 0;
    text-align: start;
  }
}

.footer__link {
  color: #F5F8EB;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 700;
}
.footer__link a {
  color: inherit;
}
.footer__link a:hover {
  color: #C7F030;
}
@media (min-width: 992px) {
  .footer__link {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 700;
  }
}

.footer__info {
  color: #F5F8EB;
  max-width: 188px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .footer__info {
    margin: 0;
  }
}

.footer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #C7F030;
  font-size: 13px;
  line-height: 1.5384615385;
  font-weight: 500;
}
@media (min-width: 992px) {
  .footer__contact {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    justify-content: start;
  }
}
.footer__contact a {
  color: inherit;
  text-decoration-line: underline;
}
.footer__contact:last-child {
  margin-top: 8px;
}
@media (min-width: 992px) {
  .footer__contact:last-child {
    margin-top: 12px;
  }
}
.footer__contact::before {
  margin-right: 8px;
}
.footer__contact--mail::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../../../img/icons/paper-plane.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .footer__contact--mail::before {
    width: 32px;
    height: 32px;
  }
}
.footer__contact--phone::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../../../img/icons/mobile.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .footer__contact--phone::before {
    width: 32px;
    height: 32px;
  }
}

.footer__bottom {
  margin: 59px 0 0;
  color: #F5F8EB;
}

.footer__copy {
  font-size: 9px;
  line-height: 1.2222222222;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 576px) {
  .footer__copy {
    font-size: 14px;
    line-height: 1.2857142857;
    font-weight: 500;
  }
}
@media (min-width: 992px) {
  .footer__copy {
    text-align: start;
  }
}

.footer__logo {
  width: 124px;
  height: 16px;
  display: block;
  margin-right: 20px;
}

.modal-dialog {
  max-width: 640px;
}

.modal-content {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .modal-content .button {
    min-width: 165px;
    font-size: 16px;
    line-height: 1.125;
    font-weight: 700;
  }
}
.modal-content .button:hover, .modal-content .button:focus {
  background-color: #C7F030;
}

.btn-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.modal-header, .modal-body, .modal-footer {
  border: none;
}

.modal-title {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  line-height: 1.3125;
  font-weight: 700;
}

@keyframes turnOnLight {
  0% {
    transform: translateX(-50%) scale(0.5);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}
@keyframes turnOnFilledBtnMobile {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(340%) translateY(-50%);
  }
}
@keyframes turnOnFilledBtndesktop {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(400%) translateY(-50%);
  }
}
@keyframes turnOnOutlinedBtn {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(197px) translateY(-50%);
  }
}
.banner {
  min-height: auto;
  background-color: #C7F030;
}
@media (min-width: 768px) {
  .banner {
    background-color: transparent;
    min-height: 100vh;
  }
}

.banner__top {
  padding: 100px 0 0;
  background-color: #000000;
  background-image: url("../../../img/top/mobile/bg-lines.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (min-width: 768px) {
  .banner__top {
    background-image: url("../../../img/top/desktop/bg-lines.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media (min-width: 992px) {
  .banner__top {
    padding-top: 170px;
  }
}
@media (min-width: 1400px) {
  .banner__top {
    background-image: url("../../../img/top/desktop/squares-right.svg"), url("../../../img/top/desktop/squares-left.svg"), url("../../../img/top/desktop/bg-lines.svg");
    background-attachment: scroll, scroll, fixed;
    background-repeat: no-repeat;
    background-position: right bottom, left bottom, center;
    background-size: auto, auto, cover;
  }
}

.main_title {
  color: #F5F8EB;
  font-family: "Jost", sans-serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .main_title {
    font-size: 56px;
    line-height: 1.0714285714;
    font-weight: 700;
  }
}
@media (min-width: 992px) {
  .main_title {
    font-size: 96px;
    line-height: 0.9375;
    font-weight: 700;
  }
}

.main_title__btn {
  position: relative;
  display: inline-block;
  border-radius: 100px;
}
.main_title__btn--outlined {
  width: 348px;
  height: 68px;
  border: 8px solid #C7F030;
}
.main_title__btn--outlined::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateX(0) translateY(-50%);
  display: block;
  width: 115px;
  height: 32px;
  border-radius: 100px;
  transition: all 250ms ease-in-out;
  background-color: #F5F8EB;
  animation-name: turnOnOutlinedBtn;
  animation-duration: 500ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
.main_title__btn--filled {
  width: 72px;
  height: 24px;
  background-color: #C7F030;
}
@media (min-width: 768px) {
  .main_title__btn--filled {
    width: 140px;
    height: 45px;
  }
}
@media (min-width: 992px) {
  .main_title__btn--filled {
    width: 240px;
    height: 68px;
  }
}
.main_title__btn--filled::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateX(0) translateY(-50%);
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #000000;
  transition: all 250ms ease-in-out;
  animation-name: turnOnFilledBtnMobile;
  animation-duration: 500ms;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}
@media (min-width: 768px) {
  .main_title__btn--filled::after {
    animation-name: turnOnFilledBtndesktop;
    width: 25px;
    height: 25px;
  }
}
@media (min-width: 992px) {
  .main_title__btn--filled::after {
    width: 44px;
    height: 44px;
    left: 12px;
  }
}

.banner__img {
  position: relative;
  margin: 20px 0 0;
  height: 204px;
  width: 100%;
}
@media (min-width: 768px) {
  .banner__img {
    margin-top: 45px;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .banner__img {
    height: 290px;
  }
}
.banner__img::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #000000;
  background-image: url("../../../img/icons/arrow.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 16px;
  bottom: 16px;
}
@media (min-width: 1200px) {
  .banner__img::after {
    width: 80px;
    height: 80px;
    left: 20px;
    bottom: 20px;
    background-size: auto;
  }
}
.banner__img::before {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #C7F030;
  position: absolute;
  bottom: 100%;
  left: 100%;
}
@media (min-width: 1400px) {
  .banner__img::before {
    content: "";
  }
}

.banner__light {
  position: absolute;
  width: 1760px;
  height: 360px;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) scale(0.5);
  animation-name: turnOnLight;
  animation-duration: 700ms;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.banner__bottom {
  padding-bottom: 14px;
}

.banner__info {
  padding: 10px 0;
  background-color: #C7F030;
  font-size: 16px;
  line-height: 1.125;
  font-weight: 700;
}
@media (min-width: 768px) {
  .banner__info {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 700;
    padding: 20px;
  }
}

.banner__mouse {
  width: 32px;
  height: 32px;
}

.about_us {
  position: relative;
  padding: 70px 0 20px 0;
  margin-top: -50px;
}
@media (min-width: 768px) {
  .about_us {
    padding: 60px 0 120px;
    margin-top: 0;
  }
}
.about_us::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: #000000;
  background-image: url("../../../img/icons/star.svg");
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  position: absolute;
  top: 75px;
  right: 40px;
}
@media (min-width: 1400px) {
  .about_us::after {
    width: 60px;
    height: 60px;
    background-size: auto;
    top: 192px;
    right: 2%;
  }
}

.about_us__top {
  margin-bottom: 20px;
}
@media (min-width: 1400px) {
  .about_us__top {
    margin-bottom: 60px;
  }
}

.about_us__img_left {
  position: relative;
  min-width: 304px;
  height: 100px;
}
@media (min-width: 768px) {
  .about_us__img_left {
    min-width: 1620px;
    height: 204px;
  }
}
.about_us__img_left::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #F5F8EB;
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 768px) {
  .about_us__img_left::after {
    width: 80px;
    height: 80px;
    top: auto;
    bottom: 0;
  }
}
.about_us__img_left::before {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #C7F030;
  position: absolute;
  right: 85%;
  bottom: 100%;
}
@media (min-width: 1400px) {
  .about_us__img_left::before {
    content: "";
  }
}

.about_us__img_right {
  position: relative;
  width: 304px;
  height: 100px;
}
@media (min-width: 768px) {
  .about_us__img_right {
    width: 836px;
    height: 192px;
  }
}
.about_us__img_right::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #C7F030;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  .about_us__img_right::before {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 1400px) {
  .about_us__img_right::before {
    display: none;
  }
}

.contact_us {
  position: relative;
  padding: 172px 0;
  background-color: #C7F030;
  background-size: auto;
  background-repeat: no-repeat;
  background-image: url("../../../img/contact-us/mobile/big-star.svg"), url("../../../img/contact-us/mobile/small-star.svg");
  background-position: right top, left 16px bottom;
}
@media (min-width: 1200px) {
  .contact_us {
    padding: 256px 0;
    background-image: url("../../../img/contact-us/desktop/big-star.svg"), url("../../../img/contact-us/desktop/small-star.svg");
    background-position: left bottom, right 10% top 214px;
  }
  .contact_us::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    background-color: #F5F8EB;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.contact_us__title {
  font-size: 38px;
  line-height: 1.1578947368;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  max-width: 300px;
}
@media (min-width: 992px) {
  .contact_us__title {
    font-size: 96px;
    line-height: 1.1458333333;
    font-weight: 700;
    max-width: 100%;
  }
}

.contact_us__link {
  margin-top: 60px;
}
@media (min-width: 1200px) {
  .contact_us__link {
    margin: 0;
  }
}

.advantages {
  padding: 70px 0 114px 0;
  margin-top: -50px;
  position: relative;
}
@media (min-width: 1200px) {
  .advantages {
    padding: 120px 0;
    margin-top: 0;
  }
}

.advantages_scroll_wrap {
  position: absolute;
  bottom: 40px;
  width: 100%;
  max-width: 340px;
}
@media (min-width: 1200px) {
  .advantages_scroll_wrap {
    position: relative;
    max-width: auto;
  }
}

.advantages_slider {
  margin-top: 20px;
  width: calc(100vw - 17px);
}
@media (min-width: 576px) {
  .advantages_slider {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .advantages_slider {
    width: calc(100vw - (100vw - 1344px) / 2);
  }
}
@media (min-width: 768px) {
  .advantages_slider {
    margin-top: 60px;
  }
}
.advantages_slider .swiper-slide {
  width: 214px !important;
}
@media (min-width: 992px) {
  .advantages_slider .swiper-slide {
    width: 350px !important;
  }
}
@media (min-width: 1200px) {
  .advantages_slider .swiper-slide {
    width: 424px !important;
  }
}

.advantages_slide__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C7F030;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 992px) {
  .advantages_slide__num {
    width: 60px;
    height: 60px;
    font-size: 32px;
    line-height: 0.75;
    font-weight: 700;
  }
}

.advantages_slide__text {
  font-size: 16px;
  line-height: 1.125;
  font-weight: 700;
  margin: 20px 0 0;
}
@media (min-width: 992px) {
  .advantages_slide__text {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 700;
  }
}

.advantages_scroll_box {
  height: 34px;
  background-color: #000000;
  border-radius: 100px;
  margin: 10px;
}
@media (min-width: 1200px) {
  .advantages_scroll_box {
    height: 68px;
  }
}
@media (min-width: 1200px) {
  .advantages_scroll_box {
    width: 464px;
    margin: 20px;
  }
}
.advantages_scroll_box::before {
  content: "";
  display: block;
  border: 2px dashed #000000;
  position: absolute;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  border-radius: 100px;
}
@media (min-width: 1200px) {
  .advantages_scroll_box::before {
    border-width: 4px;
    top: -20px;
    bottom: -20px;
    left: -20px;
    right: -20px;
  }
}

.swiper-scrollbar {
  background-color: red;
  left: 9px !important;
  right: 9px !important;
  width: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%) !important;
  height: 16px !important;
  border-radius: 100px;
  background-color: transparent;
}
@media (min-width: 992px) {
  .swiper-scrollbar {
    left: 18px !important;
    right: 18px !important;
    height: 32px !important;
  }
}
.swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 100px;
  background-color: #C7F030;
  background-image: url("../../../img/icons/scrollbar.svg");
  background-size: 8px 6px;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 992px) {
  .swiper-scrollbar .swiper-scrollbar-drag {
    background-size: auto;
  }
}

.offer {
  position: relative;
  padding-top: 48px;
  margin-top: -48px;
}
.offer__inner {
  padding: 20px 0;
  background-color: #000000;
}
.offer::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: #F5F8EB;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 1200px) {
  .offer::after {
    display: none;
  }
}
@media (min-width: 1200px) {
  .offer__inner {
    padding: 60px 0;
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .offer__inner {
    padding: 0;
    background-color: transparent;
  }
}
@media (min-width: 1400px) {
  .offer .container {
    position: relative;
    background-color: #000000;
    padding: 80px 0;
    max-width: 1480px;
  }
  .offer .container::before, .offer .container::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 0;
  }
  .offer .container::after {
    background-color: #F5F8EB;
    right: 0;
  }
  .offer .container::before {
    background-color: #000000;
    left: 100%;
  }
}
.offer .section_title {
  margin-top: 12px;
  color: #F5F8EB;
}
.offer .section_title--accent {
  margin-top: 20px;
  color: #C7F030;
}
.offer .section_title:first-child {
  margin-top: 0;
}
.offer .section_title:nth-child(2) {
  color: #C7F030;
}

@media (min-width: 1400px) {
  .offer__wrap {
    position: relative;
  }
  .offer__wrap::before, .offer__wrap::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
  }
  .offer__wrap::before {
    background-color: #000000;
    top: 0;
    left: 100%;
  }
  .offer__wrap::after {
    background-color: #C7F030;
    bottom: 80px;
    left: calc(100% + 80px);
  }
}

.offer__box.swiper {
  width: calc(100vw - 17px);
}
@media (min-width: 576px) {
  .offer__box.swiper {
    width: calc(100vw - 12%);
  }
}
.offer__box .swiper-slide {
  width: 220px;
}
@media (min-width: 768px) {
  .offer__box .swiper-slide {
    width: 424px;
  }
}
@media (min-width: 1400px) {
  .offer__box {
    padding: 0 80px;
    position: relative;
  }
  .offer__box::before, .offer__box::after {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    right: 100%;
  }
  .offer__box::before {
    background-color: #000000;
    top: -80px;
  }
  .offer__box::after {
    background-color: #C7F030;
    bottom: -80px;
  }
}

.offer__next_btn {
  width: 52px;
  height: 10px;
}

.offer__grid {
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .offer__grid {
    row-gap: 24px;
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .offer__grid {
    position: relative;
  }
  .offer__grid::after, .offer__grid::before {
    content: "";
    display: block;
    width: 80px;
    height: 80px;
    position: absolute;
    right: calc(100% + 148px);
  }
  .offer__grid::after {
    top: 0;
    background-color: #C7F030;
  }
  .offer__grid::before {
    bottom: 0;
    background-color: #000000;
    background-image: url("../../../img/icons/star.svg");
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.offer_card {
  padding: 10px;
  height: 100%;
  background-color: #C7F030;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .offer_card {
    padding: 20px;
  }
}

.offer_card__title {
  display: flex;
  justify-content: space-between;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  line-height: 1.1666666667;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .offer_card__title {
    font-size: 32px;
    line-height: 1.3125;
    font-weight: 700;
  }
}
.offer_card__title::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #000000;
  flex-shrink: 0;
  background-image: url("../../../img/icons/arrow.svg");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .offer_card__title::after {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
}

.offer_card__text {
  font-weight: 500;
}

.offer_card_box {
  position: relative;
  min-height: 200px;
  transition: 200ms;
}
@media (min-width: 768px) {
  .offer_card_box {
    min-height: 320px;
  }
}

#card {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: 700ms;
}

.tracker {
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100%;
}

.tracker:hover {
  cursor: pointer;
}
.tracker:hover ~ #card {
  box-shadow: 5px 5px 50px rgba(199, 240, 48, 0.6);
}

.canvas {
  perspective: 800px;
  inset: 0;
  z-index: 200;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-template-areas: "tr-1 tr-2 tr-3 tr-4 tr-5" "tr-6 tr-7 tr-8 tr-9 tr-10" "tr-11 tr-12 tr-13 tr-14 tr-15" "tr-16 tr-17 tr-18 tr-19 tr-20" "tr-21 tr-22 tr-23 tr-24 tr-25";
}

.tr-1 {
  grid-area: tr-1;
}

.tr-2 {
  grid-area: tr-2;
}

.tr-3 {
  grid-area: tr-3;
}

.tr-4 {
  grid-area: tr-4;
}

.tr-5 {
  grid-area: tr-5;
}

.tr-6 {
  grid-area: tr-6;
}

.tr-7 {
  grid-area: tr-7;
}

.tr-8 {
  grid-area: tr-8;
}

.tr-9 {
  grid-area: tr-9;
}

.tr-10 {
  grid-area: tr-10;
}

.tr-11 {
  grid-area: tr-11;
}

.tr-12 {
  grid-area: tr-12;
}

.tr-13 {
  grid-area: tr-13;
}

.tr-14 {
  grid-area: tr-14;
}

.tr-15 {
  grid-area: tr-15;
}

.tr-16 {
  grid-area: tr-16;
}

.tr-17 {
  grid-area: tr-17;
}

.tr-18 {
  grid-area: tr-18;
}

.tr-19 {
  grid-area: tr-19;
}

.tr-20 {
  grid-area: tr-20;
}

.tr-21 {
  grid-area: tr-21;
}

.tr-22 {
  grid-area: tr-22;
}

.tr-23 {
  grid-area: tr-23;
}

.tr-24 {
  grid-area: tr-24;
}

.tr-25 {
  grid-area: tr-25;
}

.tr-1:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-2:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-3:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(0deg) rotateZ(0deg);
}

.tr-4:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(5deg) rotateZ(0deg);
}

.tr-5:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(20deg) rotateY(10deg) rotateZ(0deg);
}

.tr-6:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-7:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-8:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(0deg) rotateZ(0deg);
}

.tr-9:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(5deg) rotateZ(0deg);
}

.tr-10:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(10deg) rotateY(10deg) rotateZ(0deg);
}

.tr-11:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-12:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-13:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}

.tr-14:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(5deg) rotateZ(0deg);
}

.tr-15:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(0deg) rotateY(10deg) rotateZ(0deg);
}

.tr-16:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-17:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-18:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(0deg) rotateZ(0deg);
}

.tr-19:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(5deg) rotateZ(0deg);
}

.tr-20:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-10deg) rotateY(10deg) rotateZ(0deg);
}

.tr-21:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(-10deg) rotateZ(0deg);
}

.tr-22:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(-5deg) rotateZ(0deg);
}

.tr-23:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg);
}

.tr-24:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(5deg) rotateZ(0deg);
}

.tr-25:hover ~ #card {
  transition: 125ms ease-in-out;
  transform: rotateX(-20deg) rotateY(10deg) rotateZ(0deg);
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
  							 supported by Chrome, Edge, Opera and Firefox */
}

.form_page {
  padding: 100px 0;
  background-color: #C7F030;
  background-image: url("../../../img/contact-us/mobile/big-star.svg"), url("../../../img/contact-us/mobile/small-star.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: right top 100px, left 16px bottom;
}
@media (min-width: 992px) {
  .form_page {
    padding: 256px 0 144px;
  }
}
@media (min-width: 1200px) {
  .form_page {
    background-image: none;
  }
}
.form_page .section_title {
  margin: 0 0 42px;
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .form_page .section_title {
    margin: 42px 0 0;
  }
}

.form_page__content {
  position: relative;
}
.form_page__content::before {
  position: absolute;
  top: -92px;
  left: -300px;
}
@media (min-width: 1200px) {
  .form_page__content::before {
    content: url("../../../img/contact-us/desktop/big-star.svg");
  }
}
.form_page__content::after {
  position: absolute;
  top: 50%;
  left: 30%;
}
@media (min-width: 992px) {
  .form_page__content::after {
    content: url("../../../img/contact-us/desktop/small-star.svg");
  }
}

.contact-form {
  max-width: 424px;
  position: relative;
  z-index: 10;
}

.input-contact {
  margin-bottom: 20px;
}
.input-contact label {
  display: block;
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.1904761905;
  font-weight: 700;
}
@media (min-width: 768px) {
  .input-contact label {
    font-size: 32px;
    line-height: 1.125;
    font-weight: 700;
  }
}
.input-contact.error-field .input-contact__item {
  border-color: #D10000;
}

.input-contact__item {
  display: block;
  padding: 16px 20px;
  width: 100%;
  border-radius: 100px;
  border: 4px solid #000000;
  background-color: #F5F8EB;
}

textarea.input-contact__item {
  border-radius: 30px;
}

.error__text {
  color: #D10000;
  padding-left: 20px;
}

.terms {
  padding: 100px 0 80px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media (min-width: 992px) {
  .terms {
    padding-top: 221px;
  }
}
.terms .container {
  position: relative;
}
.terms .container::before {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #C7F030;
  position: absolute;
}
@media (min-width: 992px) {
  .terms .container::before {
    content: "";
    top: 80px;
    right: 80px;
  }
}
@media (min-width: 1400px) {
  .terms .container::before {
    top: 0;
    right: 0;
  }
}
.terms .container::after {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #C7F030;
  position: absolute;
}
@media (min-width: 992px) {
  .terms .container::after {
    content: "";
    top: 0;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .terms .container::after {
    top: auto;
    right: auto;
    bottom: 100%;
    left: 100%;
  }
}
.terms .section_title {
  margin: 20px 0 40px;
  max-width: 536px;
}
@media (min-width: 992px) {
  .terms .section_title {
    margin-bottom: 80px;
  }
}
.terms p, .terms ul, .terms ol {
  margin-bottom: 20px;
}
.terms p:last-child, .terms ul:last-child, .terms ol:last-child {
  margin: 0;
}
.terms ol {
  list-style: disc;
  padding-left: 15px;
}

.terms__date {
  font-size: 14px;
  line-height: 1.2857142857;
  font-weight: 500;
}

.terms__subtitle {
  margin: 0 0 20px;
  font-family: "Jost", sans-serif;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .terms__subtitle {
    font-size: 32px;
    line-height: 1.3125;
    font-weight: 700;
  }
}/*# sourceMappingURL=main.css.map */