:root {
  --font: "Inter", sans-serif;
  --white: #fff;
  --green: #0D7011;
  --gray: #F5F5F5;
  --black: #000000;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Light.woff2");
  font-weight: 300;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Regular.woff2");
  font-weight: 400;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Medium.woff2");
  font-weight: 500;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-DemiBold.woff2");
  font-weight: 600;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Bold.woff2");
  font-weight: 700;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-ExtraBold.woff2");
  font-weight: 800;
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts//Inter-Black.woff2");
  font-weight: 900;
  font-display: block;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:not([class]) {
  margin: 0;
  padding: 0;
}

html {
  overflow-x: clip;
  background: var(--gray);
  font-family: var(--font);
  scroll-behavior: smooth;
}
html * {
  font-family: var(--font);
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (pointer: fine) {
  html {
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
  }
}
body,
html {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  position: relative;
  padding: 0 10rem;
  width: 100%;
  max-width: 144rem;
  margin: 0 auto;
  height: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}
.container_small {
  padding: 0 14rem;
}
@media (max-width: 768px) {
  .container_small {
    padding: 0 3rem;
  }
}

.site-container {
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

ul li {
  list-style-type: none;
}

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

a {
  text-decoration: none;
}

.hidden {
  display: none !important;
}

.btn-reset {
  border: none;
  padding: 0;
  background: transparent;
  cursor: pointer;
}
.btn-reset:focus-visible {
  outline: none;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}
.input-reset:focus-visible {
  outline: none;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
  overflow-x: hidden;
}

html {
  --refRes: 1440;
  font-size: calc(100vw / var(--refRes) * 10);
}
@media (min-width: 1921px) {
  html {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  html {
    --refRes: 480 !important;
  }
}

.header {
  width: 100vw;
  padding-top: 8rem;
  padding-bottom: 0rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
@media (max-width: 768px) {
  .header {
    padding-top: 4rem;
  }
}
.header_scrolled {
  background: var(--white);
}
@media (min-width: 769px) {
  .header_scrolled {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .header_scrolled .header__phone {
    color: var(--black);
  }
}
@media (max-width: 768px) {
  .header_scrolled {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.header__inner {
  min-height: 5.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 5rem;
  -moz-column-gap: 5rem;
  column-gap: 5rem;
  max-width: 144rem;
  margin: 0 auto;
  padding-left: 7.8rem;
  padding-right: 5.4rem;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 0 3rem;
    min-height: unset;
  }
}
.header__burger {
  display: none;
}
@media (max-width: 768px) {
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1rem;
    margin-left: auto;
    cursor: pointer;
  }
  .header__burger span {
    height: 0.4rem;
    width: 5rem;
    background: var(--green);
    display: block;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .header__burger.open {
    row-gap: 0;
  }
  .header__burger.open span {
    background: var(--white);
  }
  .header__burger.open span:nth-of-type(1) {
    -webkit-transform: translateY(0.4rem) rotate(45deg);
    -ms-transform: translateY(0.4rem) rotate(45deg);
    transform: translateY(0.4rem) rotate(45deg);
  }
  .header__burger.open span:nth-of-type(2) {
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
  .header__burger.open span:nth-of-type(3) {
    -webkit-transform: translateY(-0.4rem) rotate(-45deg);
    -ms-transform: translateY(-0.4rem) rotate(-45deg);
    transform: translateY(-0.4rem) rotate(-45deg);
  }
}
.header__logo {
  width: 19.2rem;
  height: 5.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--green);
  border-radius: 1.1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.header__logo img, .header__logo svg {
  width: 15.3rem;
  height: 3.7rem;
  display: block;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 4.2rem;
  -moz-column-gap: 4.2rem;
  column-gap: 4.2rem;
}
@media (max-width: 768px) {
  .header__nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12rem 0 9rem 0;
    background: var(--green);
    z-index: -1;
    border-radius: 0 0 2rem 2rem;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .header__nav.open {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.header__link {
  font-size: 1.5rem;
  color: var(--black);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  padding: 0.5rem 0;
  border-bottom: 0.2rem solid transparent;
}
@media (max-width: 768px) {
  .header__link {
    color: var(--white);
    font-size: 1.8rem;
    padding: 1rem 0;
  }
}
@media (min-width: 769px) {
  .header__link:hover {
    color: var(--green);
    text-shadow: 0 0 0.1rem var(--green);
    border-color: var(--green);
  }
}
.header__phone {
  margin-left: auto;
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 700;
}
@media (max-width: 768px) {
  .header__phone {
    display: none;
  }
}

.footer {
  padding: 2.4rem 0;
  background: #002001;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__logo {
  width: 15.4rem;
  height: 3.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2.4rem;
}
@media (max-width: 768px) {
  .footer__logo {
    margin-bottom: 1.7rem;
  }
}
.footer__logo img, .footer__logo svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .footer__title {
    font-size: 1.7rem;
  }
}
.footer__text {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-top: 1.8rem;
}
@media (max-width: 768px) {
  .footer__text {
    font-size: 1.2rem;
  }
}

section {
  position: relative;
  z-index: 1;
  margin: 9rem 0;
}
@media (max-width: 768px) {
  section {
    margin: 7rem 0;
  }
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 1.8rem;
  color: var(--black);
  font-weight: 600;
  min-width: 24rem;
  height: 6.5rem;
  padding: 0 4rem;
  border-radius: 10rem;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  will-change: transform;
}
.btn_green {
  background: var(--green);
  color: var(--white);
  border: 0.15rem solid var(--green);
}
@media (min-width: 769px) {
  .btn_green:hover {
    -webkit-filter: brightness(1.3);
    filter: brightness(1.3);
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }
}
.btn_transparent {
  background: transparent;
  border: 0.15rem solid var(--green);
}
@media (min-width: 769px) {
  .btn_transparent:hover {
    background: var(--white);
    color: var(--green);
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
  }
}

.title {
  font-size: 4.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .title {
    font-size: 3rem;
    margin-bottom: 2.4rem;
  }
}
.title_left {
  text-align: left;
}

.first {
  height: 100svh;
  max-height: 80rem;
  margin: 0;
}
.first__shape {
  width: 82rem;
  height: 82rem;
  background: var(--green);
  position: absolute;
  top: -6.3rem;
  right: -53rem;
  border-radius: 100rem;
}
@media (max-width: 768px) {
  .first__shape {
    display: none;
  }
}
.first__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 25rem;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .first__inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 16rem;
    padding-bottom: 0;
  }
}
.first__title {
  font-size: 5.2rem;
  font-weight: 800;
  margin-bottom: 2.4rem;
  max-width: 75rem;
}
@media (max-width: 768px) {
  .first__title {
    font-size: 3.6rem;
  }
}
.first__address {
  font-size: 2.2rem;
  font-weight: 600;
  max-width: 53rem;
}
@media (max-width: 768px) {
  .first__address {
    font-size: 1.8rem;
  }
}
.first__buttons {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
}
@media (max-width: 768px) {
  .first__buttons {
    margin-top: 36rem;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 1rem;
  }
  .first__buttons .btn {
    width: 100%;
  }
}
.first__img {
  position: absolute;
  width: 59.5rem;
  height: 65.9rem;
  right: 9.5rem;
  top: 9.3rem;
}
@media (max-width: 768px) {
  .first__img {
    width: 46rem;
    height: auto;
    right: 50%;
    top: 22rem;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}
.first__img img, .first__img svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .sales {
    margin-top: 16rem;
  }
}
.sales__swiper {
  overflow: visible;
  min-height: 40rem;
  width: 100%;
  padding: 7rem 0;
}
@media (max-width: 768px) {
  .sales__swiper {
    padding: 0;
  }
}
.sales__swiper .swiper-button-prev {
  color: rgba(13, 123, 10, 0.6980392157);
  left: -4rem;
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
}
.sales__swiper .swiper-button-next {
  color: rgba(13, 123, 10, 0.6980392157);
  right: -4rem;
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
}
@media (max-width: 768px) {
  .sales__swiper .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 5rem;
  }
}
.sales__slide {
  width: 31.5rem;
  min-height: 42.7rem;
  background: #fff;
  -webkit-box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0 6rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .sales__slide {
    width: 100%;
    margin: 0;
  }
}
.sales__slide.swiper-slide-active {
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
@media (max-width: 768px) {
  .sales__slide.swiper-slide-active {
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
.sales__slide_special {
  color: var(--black);
}
.sales__slide_special .sales__slide-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.sales__slide_special .sales__slide-content {
  z-index: 2;
  background: transparent;
  color: var(--black);
  padding: 2.6rem;
}
.sales__slide_special .sales__slide-note {
  margin-left: auto;
  max-width: 14rem;
  text-align: right;
  margin-top: 5rem;
}
.sales__slide_special .sales__slide-note span {
  color: var(--green);
}
.sales__slide_special .sales__slide-text span {
  display: block;
  color: var(--green);
  font-weight: 700;
}
.sales__slide_special .sales__slide-price {
  font-size: 3.4rem;
  color: var(--green);
  font-weight: 800;
  font-style: italic;
  text-align: right;
}
.sales__slide_special .sales__slide-title {
  font-size: 2.6rem;
  font-style: italic;
  margin-top: 3rem;
}
.sales__slide_special .sales__slide-title span {
  display: block;
  color: var(--green);
  font-weight: 700;
  font-style: italic;
}
.sales__slide-cover {
  width: 100%;
  height: 24rem;
  background: #000;
}
.sales__slide-cover img, .sales__slide-cover svg {
  width: 100%;
  height: 100%;
  display: block;
}
.sales__slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  row-gap: 1.5rem;
  background: var(--green);
  padding: 1.6rem 2.2rem;
  color: var(--white);
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.sales__slide-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.sales__slide-text {
  font-size: 1.5rem;
  font-weight: 700;
}
.sales__slide-note {
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .certificate .title {
    text-align: center;
  }
}
.certificate__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 11rem;
  -moz-column-gap: 11rem;
  column-gap: 11rem;
}
@media (max-width: 768px) {
  .certificate__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.certificate__content {
  padding-top: 5.2rem;
  padding-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media (max-width: 768px) {
  .certificate__content {
    padding-bottom: 2.5rem;
    padding-top: 0;
  }
}
.certificate__subtitle {
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .certificate__subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.certificate__text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}
.certificate__note {
  font-size: 1.2rem;
  margin-top: auto;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 768px) {
  .certificate__note {
    font-size: 1.5rem;
  }
}
.certificate__img {
  width: 50.8rem;
  height: 33rem;
  background: #aaa;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
}
@media (max-width: 768px) {
  .certificate__img {
    width: 100%;
    height: auto;
  }
}
.certificate__img img, .certificate__img svg {
  width: 100%;
  height: 100%;
  display: block;
}

.steps__description {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 5rem;
  max-width: 100rem;
}
@media (max-width: 768px) {
  .steps__description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.steps__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 11rem;
  -moz-column-gap: 11rem;
  column-gap: 11rem;
  max-width: 98.7rem;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .steps__box {
    -webkit-column-gap: 0rem;
    -moz-column-gap: 0rem;
    column-gap: 0rem;
  }
}
.steps__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  row-gap: 3rem;
  text-align: center;
  white-space: nowrap;
  width: 18rem;
}
@media (max-width: 768px) {
  .steps__item {
    font-size: 1.1rem;
    width: 9rem;
  }
}
.steps__item img, .steps__item svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  .steps__item img, .steps__item svg {
    width: 9rem;
    height: 9rem;
  }
}
.steps__arrow {
  width: 2rem;
  height: 4.9rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .steps__arrow {
    width: 1.1rem;
    height: 2.7rem;
    -webkit-transform: translateY(-2rem);
    -ms-transform: translateY(-2rem);
    transform: translateY(-2rem);
  }
}
.steps__arrow img, .steps__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.steps__bottom {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 1.5rem;
  font-size: 3rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .steps__bottom {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
}
.steps__bottom span {
  font-size: 4.8rem;
  font-weight: 700;
  color: var(--green);
}
@media (max-width: 768px) {
  .steps__bottom span {
    font-size: 2.4rem;
  }
}
.steps__sum {
  width: 83rem;
}
@media (max-width: 768px) {
  .steps__sum {
    width: 33rem;
  }
}
.steps__sum img, .steps__sum svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .theory .title {
    text-align: center;
  }
}
.theory__description {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 5rem;
  max-width: 112rem;
}
@media (max-width: 768px) {
  .theory__description {
    font-size: 1.5rem;
  }
}
.theory__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8.4rem;
  -moz-column-gap: 8.4rem;
  column-gap: 8.4rem;
  margin: 0 auto;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .theory__box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 4rem;
  }
}
.theory__item {
  width: 51.4rem;
  min-height: 66.4rem;
  padding: 4.8rem 4rem;
  -webkit-box-shadow: -2.8px -2.8px 4.19px 0px rgba(0, 0, 0, 0.2509803922), 2.8px 2.8px 4.19px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: -2.8px -2.8px 4.19px 0px rgba(0, 0, 0, 0.2509803922), 2.8px 2.8px 4.19px 0px rgba(0, 0, 0, 0.2509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .theory__item {
    min-height: 59rem;
  }
}
.theory__item-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.theory__item-cover img, .theory__item-cover svg {
  width: 100%;
  height: 100%;
  display: block;
}
.theory__item-title {
  font-size: 3.7rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .theory__item-title {
    font-size: 2.4rem;
    text-align: center;
  }
}
.theory__item-li {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 3.4rem;
  -moz-column-gap: 3.4rem;
  column-gap: 3.4rem;
}
@media (max-width: 768px) {
  .theory__item-li {
    margin-bottom: 2.4rem;
    font-size: 1.6rem;
  }
}
.theory__item-li img, .theory__item-li svg {
  width: 2.7rem;
  height: 2.7rem;
  display: block;
}
.theory__item-li span {
  font-weight: 700;
}
.theory__item-days {
  font-size: 7.2rem;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  line-height: 1;
  width: 10rem;
  margin-left: 4rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .theory__item-days {
    font-size: 6.4rem;
    margin-left: 2rem;
  }
}
.theory__item-days span {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
}
.theory__item-btn {
  margin: 0 auto;
  margin-top: auto;
  margin-bottom: 2rem;
  height: 7.8rem;
  max-width: 32rem;
  width: 100%;
}
@media (max-width: 768px) {
  .theory__item-btn {
    margin-bottom: 0;
  }
}
.theory__item-time {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 2.6rem;
  text-align: right;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .theory__item-time {
    font-size: 2rem;
  }
}
.theory__item-time_first {
  margin-top: 4rem;
}
.theory__item-time b {
  font-weight: 700;
}
.theory__item-time span {
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--green);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .theory__item-time span {
    font-size: 2.2rem;
  }
}

.prices__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 4rem 2rem;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .prices__box {
    padding: 0;
    row-gap: 2.4rem;
  }
}
.prices__item {
  width: 59rem;
  min-height: 35rem;
  border-radius: 3.5rem;
  padding: 2.8rem 4rem;
  border: 0.15rem solid var(--green);
  -webkit-box-shadow: -2.8px -2.8px 4.19px 0px rgba(0, 0, 0, 0.2509803922), 2.8px 2.8px 4.19px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: -2.8px -2.8px 4.19px 0px rgba(0, 0, 0, 0.2509803922), 2.8px 2.8px 4.19px 0px rgba(0, 0, 0, 0.2509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
}
@media (max-width: 768px) {
  .prices__item {
    padding: 2.8rem 2.4rem;
    min-height: 25rem;
    padding-bottom: 2rem;
  }
}
.prices__item-cover {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.prices__item-cover img, .prices__item-cover svg {
  width: 100%;
  height: 100%;
  display: block;
}
.prices__item-title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 2rem;
  position: absolute;
  top: 2.8rem;
  left: 4rem;
  max-width: 30.2rem;
}
@media (max-width: 768px) {
  .prices__item-title {
    font-size: 1.8rem;
    left: 2.4rem;
    max-width: 22rem;
  }
}
.prices__item-title span {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2rem;
  text-align: right;
}
@media (max-width: 768px) {
  .prices__item-title span {
    font-size: 1.8rem;
  }
}
.prices__item-category {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: right;
}
@media (max-width: 768px) {
  .prices__item-category {
    font-size: 1.8rem;
  }
}
.prices__item-duration {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: right;
  max-width: 19rem;
}
@media (max-width: 768px) {
  .prices__item-duration {
    font-size: 1.8rem;
    max-width: 13rem;
  }
}
.prices__item-duration span {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--green);
}
@media (max-width: 768px) {
  .prices__item-duration span {
    font-size: 2rem;
  }
}
.prices__item-list {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  width: 20.7rem;
}
@media (max-width: 768px) {
  .prices__item-list {
    font-size: 1.2rem;
    width: 18rem;
  }
}
.prices__item-list p span {
  color: var(--green);
}
.prices__item-list_long {
  width: 25.5rem;
}
.prices__item-oldprice {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  width: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #9D9D9D;
}
@media (max-width: 768px) {
  .prices__item-oldprice {
    font-size: 1.7rem;
    width: 19rem;
  }
}
.prices__item-oldprice span {
  font-weight: 700;
}
.prices__item-oldprice span * {
  font-weight: 700;
}
.prices__item-btn {
  margin-top: auto;
  width: 22.5rem;
  height: 7.3rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 10rem;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .prices__item-btn {
    height: 5.1rem;
    width: 16.4rem;
    min-width: unset;
    padding: 0 0.5rem;
    font-size: 1.5rem;
  }
}

.include__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .include__box {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    row-gap: 1.5rem;
  }
}
.include__card {
  width: 36.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 2.5rem;
}
@media (max-width: 768px) {
  .include__card {
    width: 13rem;
  }
}
.include__image {
  width: 17rem;
  height: 17rem;
}
@media (max-width: 768px) {
  .include__image {
    width: 6.2rem;
    height: 6.2rem;
  }
}
.include__image img, .include__image svg {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.include__text {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .include__text {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .cars .title {
    text-align: center;
  }
}
.cars__shape {
  position: absolute;
  top: -11rem;
  right: 2rem;
  width: 60rem;
  height: 55.5rem;
}
@media (max-width: 768px) {
  .cars__shape {
    display: none;
  }
}
.cars__shape img, .cars__shape svg {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.cars__description {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: -2rem;
  margin-bottom: 2.5rem;
  max-width: 64rem;
}
@media (max-width: 768px) {
  .cars__description {
    font-size: 1.5rem;
    margin-top: 0;
  }
}
.cars__swiper {
  overflow: visible;
  min-height: 40rem;
  width: 100%;
}
.cars__swiper .swiper-button-prev {
  color: rgba(13, 123, 10, 0.6980392157);
  left: -6rem;
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
  font-weight: 900;
}
.cars__swiper .swiper-button-next {
  color: rgba(13, 123, 10, 0.6980392157);
  right: -6rem;
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
  font-weight: 900;
}
.cars__swiper .swiper-pagination {
  position: relative;
  bottom: unset;
  margin-top: 3rem;
}
.cars__swiper .swiper-pagination-bullet {
  background: rgba(125, 125, 125, 0.3019607843);
  width: 1rem;
  height: 1rem;
  opacity: 1;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cars__swiper .swiper-pagination-bullet-active {
  background: var(--green);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}
.cars__slide {
  width: 38rem;
  height: 45rem;
  background: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  margin-right: 5rem;
  padding: 3.6rem 4rem;
}
@media (max-width: 768px) {
  .cars__slide {
    margin-right: 3rem;
  }
}
.cars__slide:last-child {
  margin-right: 0;
}
.cars__slide-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.cars__slide-img {
  width: calc(100% + 7rem);
  height: 25rem;
  margin-left: -3.5rem;
  margin-right: -3.5rem;
}
.cars__slide-img img, .cars__slide-img svg {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
.cars__slide-btn {
  width: 100%;
  height: 7.8rem;
}

@media (max-width: 768px) {
  .license .title {
    margin-bottom: 0.5rem;
  }
}
.license__shape {
  position: absolute;
  top: 0;
  right: 8rem;
  width: 24.9rem;
  height: 24.9rem;
}
@media (max-width: 768px) {
  .license__shape {
    width: 14rem;
    height: 14rem;
    right: 4.5rem;
    top: 17.5rem;
  }
}
.license__shape img, .license__shape svg {
  width: 100%;
  height: 100%;
  display: block;
}
.license__description {
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .license__description {
    font-size: 1.3rem;
  }
}
.license__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 18rem;
  -moz-column-gap: 18rem;
  column-gap: 18rem;
  row-gap: 6rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 768px) {
  .license__box {
    height: 54.5rem;
  }
}
.license__item {
  width: 40rem;
  height: 55.5rem;
  -webkit-box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  background: #fff;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .license__item {
    width: 24rem;
    height: 33.6rem;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
  }
}
@media (max-width: 768px) {
  .license__item:nth-of-type(2) {
    left: unset;
    right: 0;
    top: 20.7rem;
    z-index: 3;
  }
}
.license__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--green);
  opacity: 0;
  z-index: 10;
  top: 0;
  left: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (min-width: 769px) {
  .license__item:hover {
    opacity: 1;
  }
  .license__item:hover::before {
    opacity: 0.4;
  }
}
.license__item img, .license__item svg {
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  -o-object-fit: contain;
  object-fit: contain;
}
.license__note {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .license__note {
    font-size: 2rem;
  }
}
.license__note a {
  color: var(--green);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .license__note a {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .gallery__swiper {
    margin: 0 3.3rem;
    overflow: visible;
  }
}
.gallery__swiper .swiper-button-prev {
  color: rgba(13, 123, 10, 0.6980392157);
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
  left: -4.5rem;
}
@media (min-width: 769px) {
  .gallery__swiper .swiper-button-prev {
    display: none;
  }
}
.gallery__swiper .swiper-button-next {
  color: rgba(13, 123, 10, 0.6980392157);
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
  right: -4.5rem;
}
@media (min-width: 769px) {
  .gallery__swiper .swiper-button-next {
    display: none;
  }
}
@media (min-width: 769px) {
  .gallery__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 11rem 7rem;
    margin-top: 8rem;
    width: 100%;
  }
}
.gallery__item {
  width: 57.8rem;
  height: 39.3rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .gallery__item {
    width: 48rem;
    height: 24rem;
    padding: 0 6rem;
  }
}
.gallery__item img, .gallery__item svg {
  width: 100%;
  height: 100%;
  display: block;
}

.teacher {
  padding: 12rem 0;
}
@media (max-width: 768px) {
  .teacher {
    padding: 7rem 0;
  }
}
.teacher__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 17rem;
  -moz-column-gap: 17rem;
  column-gap: 17rem;
}
@media (max-width: 768px) {
  .teacher__flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.teacher__flex .title {
  max-width: 32.3rem;
}
@media (max-width: 768px) {
  .teacher__flex .title {
    margin-bottom: 6rem;
    text-align: center;
    width: 100%;
    max-width: unset;
  }
}
@media (max-width: 768px) {
  .teacher__box {
    width: 100%;
  }
}
.teacher__image {
  width: 57.2rem;
  height: 38.4rem;
  margin-right: 5rem;
  position: relative;
}
@media (max-width: 768px) {
  .teacher__image {
    width: 100%;
    height: 30rem;
  }
}
.teacher__image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--green);
  z-index: -1;
  top: -5rem;
  left: 5rem;
}
@media (max-width: 768px) {
  .teacher__image::before {
    top: -2rem;
    left: 2rem;
  }
}
.teacher__image img, .teacher__image svg {
  width: 101%;
  height: 101%;
  display: block;
}
.teacher__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 3.8rem;
}
.teacher__name {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .teacher__name {
    font-size: 2.4rem;
  }
}
.teacher__text {
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .teacher__text {
    font-size: 1.6rem;
  }
}

.feedback {
  padding-bottom: 4rem;
}
.feedback__swiper {
  margin-top: 7rem;
  margin: 0 12rem;
  overflow: visible;
}
@media (max-width: 768px) {
  .feedback__swiper {
    margin: 0 1rem;
  }
}
.feedback__swiper .swiper-button-prev {
  color: rgba(13, 123, 10, 0.6980392157);
  left: -8rem;
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
  font-weight: 900;
}
@media (max-width: 768px) {
  .feedback__swiper .swiper-button-prev {
    left: -3.5rem;
  }
}
.feedback__swiper .swiper-button-next {
  color: rgba(13, 123, 10, 0.6980392157);
  right: -8rem;
  -webkit-transform: scaleX(0.7);
  -ms-transform: scaleX(0.7);
  transform: scaleX(0.7);
  font-weight: 900;
}
@media (max-width: 768px) {
  .feedback__swiper .swiper-button-next {
    right: -3.5rem;
  }
}
.feedback__slide {
  width: 100%;
  min-height: 40rem;
  background: #fff;
  opacity: 0;
  -webkit-box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0 0 0.5rem 0.2rem rgba(0, 0, 0, 0.2509803922);
  padding: 5rem;
  padding-left: 10rem;
}
@media (max-width: 768px) {
  .feedback__slide {
    padding: 27px;
    min-height: unset;
  }
}
.feedback__slide.swiper-slide-active {
  opacity: 1;
}
.feedback__slide-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .feedback__slide-top {
    margin-bottom: 2.3rem;
  }
}
.feedback__slide-name {
  font-size: 2.2rem;
}
@media (max-width: 768px) {
  .feedback__slide-name {
    font-size: 1.4rem;
  }
}
.feedback__slide-date {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .feedback__slide-date {
    font-size: 1.4rem;
  }
}
.feedback__slide-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 3.5rem;
  -moz-column-gap: 3.5rem;
  column-gap: 3.5rem;
}
@media (max-width: 768px) {
  .feedback__slide-content {
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
  }
}
.feedback__slide-content .content-cms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
}
.feedback__slide-content .content-cms p {
  font-size: 1.5rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .feedback__slide-content .content-cms p {
    font-size: 1rem;
  }
}
.feedback__slide-image {
  width: 13.2rem;
  height: 13.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .feedback__slide-image {
    width: 8.1rem;
    height: 8.1rem;
  }
}
.feedback__slide-image img, .feedback__slide-image svg {
  width: 100%;
  height: 100%;
  display: block;
}
.feedback__widget {
  margin: 0 auto;
  margin-top: 7rem;
  width: 39rem;
  height: 7.4rem;
  background: #fff;
}

@media (max-width: 768px) {
  .docs .title {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
.docs__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.5rem;
  padding: 0 7rem;
}
@media (max-width: 768px) {
  .docs__box {
    padding: 0 0rem;
  }
}
.docs__line {
  font-size: 2.6rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4rem;
  -moz-column-gap: 4rem;
  column-gap: 4rem;
  color: var(--black);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .docs__line {
    font-size: 1.5rem;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
  }
}
@media (min-width: 769px) {
  .docs__line:hover {
    color: var(--green);
    margin-left: -2rem;
    padding-right: 2rem;
  }
}
.docs__line img, .docs__line svg {
  width: 3.1rem;
  height: 3.1rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .docs__line img, .docs__line svg {
    width: 1.7rem;
    height: 1.7rem;
  }
}

.information__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 9rem;
  -moz-column-gap: 9rem;
  column-gap: 9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .information__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.information__flex .content-cms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.2rem;
}
@media (max-width: 768px) {
  .information__flex .content-cms {
    margin-top: 2rem;
  }
}
.information__flex .content-cms p {
  font-size: 1.9rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .information__flex .content-cms p {
    font-size: 1.5rem;
  }
}
.information__flex .content-cms p b {
  color: var(--green);
  font-weight: 700;
}
.information__note {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-top: 7.7rem;
}
@media (max-width: 768px) {
  .information__note {
    font-size: 2.4rem;
    margin-top: 5rem;
  }
}

.contacts {
  margin-bottom: 0;
  background: var(--green);
  padding: 10rem 0;
  color: #fff;
}
@media (max-width: 768px) {
  .contacts {
    padding-top: 4.5rem;
    padding-bottom: 6.5rem;
  }
}
@media (max-width: 768px) {
  .contacts .title {
    font-size: 2.4rem;
  }
}
.contacts__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 9rem;
  -moz-column-gap: 9rem;
  column-gap: 9rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .contacts__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.contacts__left {
  width: 25.6rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding-top: 5rem;
}
@media (max-width: 768px) {
  .contacts__left {
    padding-top: 0;
  }
}
.contacts__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contacts__socials {
    margin-bottom: 3.4rem;
  }
}
.contacts__social {
  width: 4.5rem;
  height: 4.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (min-width: 769px) {
  .contacts__social:hover {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.contacts__social img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.contacts__right {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 5.8rem;
}
@media (max-width: 768px) {
  .contacts__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 4rem;
  }
}
.contacts__block {
  width: 50%;
  font-size: 2.2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .contacts__block {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 2rem;
  }
}
.contacts__block a {
  color: var(--white);
}
@media (max-width: 768px) {
  .contacts__block a {
    text-align: center;
  }
}
.contacts__block_wide {
  width: 100%;
}
.contacts__block-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .contacts__block-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    text-align: center;
  }
}

.map {
  margin: 0;
}
.map__wrap {
  position: relative;
  height: 83rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .map__wrap {
    height: 43.7rem;
  }
}
.map__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map__cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
}
@media (max-width: 768px) {
  .map__cover::before {
    opacity: 0.05;
  }
}
.map__cover img, .map__cover svg {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.map__info {
  z-index: 5;
  padding: 4.5rem 8.5rem;
  background: rgba(13, 123, 10, 0.6980392157);
  width: 57rem;
  height: 33.6rem;
  color: var(--white);
}
@media (max-width: 768px) {
  .map__info {
    width: 30.3rem;
    height: 16.5rem;
    padding: 3rem 4rem;
  }
}
.map__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5.8rem;
}
@media (max-width: 768px) {
  .map__title {
    font-size: 2.4rem;
    margin-bottom: 1.7rem;
    text-align: center;
  }
}
.map__text {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 4.5rem;
  -moz-column-gap: 4.5rem;
  column-gap: 4.5rem;
}
@media (max-width: 768px) {
  .map__text {
    font-size: 1.6rem;
    margin-top: 1.4rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.map__text span {
  font-size: 3rem;
  font-weight: 700;
  width: 13rem;
}
@media (max-width: 768px) {
  .map__text span {
    font-size: 1.6rem;
    width: 6rem;
  }
}

.order {
  padding-top: 4rem;
  padding-bottom: 9rem;
  background: var(--green);
  color: var(--white);
  margin: 0;
}
@media (max-width: 768px) {
  .order {
    padding-bottom: 8rem;
  }
}
@media (max-width: 768px) {
  .order .title {
    font-size: 2.4rem;
  }
}
.order__description {
  font-size: 1.8rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 5rem;
  margin-top: -4rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .order__description {
    margin-top: 3.4rem;
    font-size: 1.5rem;
    margin-bottom: 3.4rem;
    padding: 0 2rem;
    text-align: left;
    font-weight: 300;
  }
}
.order__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 5rem;
}
@media (max-width: 768px) {
  .order__form {
    padding: 0 2rem;
    margin-top: 2.4rem;
  }
}
.order__form-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 24rem;
  margin-right: 4rem;
}
@media (max-width: 768px) {
  .order__form-block {
    width: 100%;
    margin-right: 0;
  }
}
.order__form-block_wide {
  width: 68.4rem;
}
@media (max-width: 768px) {
  .order__form-block_wide {
    width: 100%;
  }
}
.order__form-label {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.8rem;
}
@media (max-width: 768px) {
  .order__form-label {
    margin-bottom: 1rem;
  }
}
.order__form-input {
  width: 100%;
  border-radius: 0rem !important;
  border: none;
  border-bottom: 0.1rem solid var(--white);
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 500;
  outline: none;
  color: var(--white);
}
.order__form-input_area {
  height: 3rem;
}
@media (max-width: 768px) {
  .order__form-input_area {
    height: 6rem;
  }
}
.order__form-input::-webkit-input-placeholder {
  color: var(--white);
}
.order__form-input::-moz-placeholder {
  color: var(--white);
}
.order__form-input:-ms-input-placeholder {
  color: var(--white);
}
.order__form-input::-ms-input-placeholder {
  color: var(--white);
}
.order__form-input::placeholder {
  color: var(--white);
}
.order__form-btn {
  width: 30rem;
  height: 6.5rem;
  color: var(--white);
  background: transparent;
  color: var(--white);
  border-radius: 30rem;
  font-size: 1.8rem;
  border: 0.15rem solid var(--white);
  margin-top: 2rem;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media (max-width: 768px) {
  .order__form-btn {
    width: 100%;
    margin-top: 0;
  }
}
@media (min-width: 769px) {
  .order__form-btn:hover {
    background: var(--white);
    color: var(--green);
  }
}
.order__success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background: var(--green);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
}
.order__success.active {
  opacity: 1;
  pointer-events: auto;
}
.order__success-title {
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .order__success-title {
    text-align: center;
    font-size: 2.4rem;
  }
}
.order__success-text {
  font-size: 2.4rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .order__success-text {
    font-size: 1.8rem;
    text-align: center;
  }
}
/*# sourceMappingURL=main.css.map */