﻿body {
    padding: 0;
    margin:0;
    color: #fff;
    font-family: 'Inter', sans-serif;
}

:root {
  --color-accent: #648544;
  --bg-light: #f2f4f8;
}

textarea, select, input, button { 
  outline: none; 
}

button {
    background: initial;
    color: initial;
    border: initial;
    border-radius: initial;
    padding: 0;
    outline: initial;
}

a {
    color: #fff;
    text-decoration: initial;
    display: inline-block;
}

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

h1 {
  font-family: 'Tinos', serif;
  font-weight: 700;
  font-size: 60px;
}

h2 {
  font-family: 'Tinos', serif;
  font-weight: 400;
  font-size: 40px;
  color: #000;
  display: inline-block;
  width: max-content;
  background: #fff;
  padding-left: 30px;
  padding-right: 30px;
  transform: translate(-30px, 0px);

}

a li {
    display: inline-block;
    transition: all 0.3s;
}

a li:hover{
    color: #76b421;
}

ul li {
  display: block;
  margin: 0;
  padding: 0;
}

.d-flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

* {
  scrollbar-color: var(--color-accent) var(--bg-light);
  /* 1-«цвет ползунка», 2-«цвет полосы скроллбара» */
  scrollbar-width: thin;
  /* толщина */
}

* ::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

* ::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: var(--bg-light);
}

* ::-webkit-scrollbar-thumb {
  border: 1px solid var(--bg-light);
  border-radius: 10px;
  background-color: var(--color-accent);
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.burger-mobile {
  display: none;
  width: 40px;
  height: 50px;
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 9;
  cursor: pointer;
}

.mobile__header-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  padding-top: 85px;
  height: 100vh;
  background: #1f1f1f;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s;
}

.burger-mobile span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.burger-mobile span:nth-last-child(1) {
  margin-bottom: 0;
}

.active-burger-mobile span:nth-child(1) {
  transform: rotate(45deg);
  margin-top: 24px;
}

.active-burger-mobile span:nth-child(2) {
  visibility: hidden;
  opacity: 0;
}

.active-burger-mobile span:nth-child(3) {
  transform: rotate(-45deg);
  margin-top: -24px;
}

.active-mob-menu {
  opacity: 1;
  transform: translateX(0);
}

.mobile__header-menu ul li a span {
  font-size: 25px;
}

.header .burger-mobile {
  top: 30px;
  transition: all 0.3s ease;
}

header.sticky .burger-mobile {
  top: 25px;
  transition: all 0.3s ease;
}

.logo svg {
  width: 142px;
  height: 30px;
}

.logo svg #o {
  fill: #116333;
  transition: all 0.3s ease;
}

.logo svg #i {
  fill: #116333;
  transition: all 0.3s ease;
}

.nav__menu .menu__elem a:hover {
  color: #fff;
  text-decoration: none;
}

.nav__menu .menu__elem a, .nav__menu .menu__elem a > span {
  position: relative;
  text-decoration: none;
}

.image-slider__image a {
  position: relative;
}

.nav__menu .menu__elem a:before, .nav__menu .menu__elem a:after, .nav__menu .menu__elem a > span:before, .nav__menu .menu__elem a > span:after {
  content: '';
  position: absolute;
  transition: transform .5s ease;
}

.menu__item {
  display: inline-block;
  overflow: hidden;
}
.menu__item:before, .menu__item:after {
  right: 0;
  bottom: 0;
  background: #fff;
}
.menu__item:before {
  width: 100%;
  height: 2px;
  transform: translateX(-101%);
}
.menu__item:after {
  width: 2px;
  height: 100%;
  transform: translateY(101%);
}
.menu__item > span {
  display: block;
  padding: 10px;
}
.menu__item > span:before, .menu__item > span:after {
  left: 0;
  top: 0;
  background: #fff;
}
.menu__item > span:before {
  width: 100%;
  height: 2px;
  transform: translateX(101%);
}
.menu__item > span:after {
  width: 2px;
  height: 100%;
  transform: translateY(-101%);
}
.menu__item:hover:before, .menu__item:hover:after, .menu__item:hover > span:before, .menu__item:hover > span:after {
  transform: translate(0, 0);
}

.justify-content-between {
  justify-content: space-between;
}

.justify-content-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.header {
  position: absolute;
  height: 81px;
  display: flex;
  align-items: center;
  z-index: 999;
  width: 100%;
  transition: all 0.5s ease;
  padding-top: 15px;
}

header.sticky {
  background: #00642E;
  box-shadow: 0px 10px 10px rgba(0,0,0,0.3);
  position: fixed;
  padding-bottom: 20px;
  padding-top: 20px;
}

header.sticky .logo svg #i {
  fill: #2b2b2b;
  transition: all 0.3s ease;
}

header.sticky .logo svg #o {
  fill: #2b2b2b;
  transition: all 0.3s ease;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 800px;
  background: url('../img/MG9_4224_2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.offer:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.3;
}
.menu__elem a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.nav__menu {
  display: flex;
  justify-content: center;
  margin: 0;
  padding-left: 0;
  margin-top: 10px;
}

.menu__elem {
  margin-right: 20px;
}

.menu__elem:nth-last-child(1){
  margin-right: 0;
}

.offer h1 {
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 25px;
}

.offer p {
  font-size: 18px;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
}

.offer a {
  width: 250px;
  display: block;
  margin: 0 auto;
}

.offer button {
  height: 55px;
  background: rgba(140, 186, 80, 0.95);
  color: #fff;
  font-size: 18px;
  padding: 12px 44px;
  border: 2px solid rgba(140, 186, 80, 0.95);
  transition: all 0.5s ease;
}

button:hover {
  background-color: transparent;
  transition: all 0.5s ease;
}

button:focus {
  outline: none;
}


.advantages, .about, .plans, .plans-2, .form-section, .contacts {
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}


.advantages:before, .about:before, .plans:before, .plans-2:before, .contacts:before {
  content: "";
  position: absolute;
  top: 115px;
  left: 0;
  border: 1px solid #648544;
  width: 100%;
}

.advantages-wrapp {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.advantages-wrapp__second {
  margin-top: 30px;
  justify-content: center;
}

.icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 72px;
}

.icons img {
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
}

.icons img:hover {
  transition: all 0.3s ease;
  transform: scale(1.3);
}

.icons:nth-last-child(1){
  margin-right: 0;
}

.icons p {
  color: #000;
  margin-top: 20px;
  line-height: 19px;
  text-align: center;
}

.about h2 {
  margin-bottom: 60px;
}

.swiper-slide a {
  display: block;
  margin: 0 auto;
}

.swiper-slide img {
  width: 470px;
  height: 350px;
  margin: 0 auto;
}

.swiper-second .swiper-slide img {
  width: 675px;
  height: auto; 
  display: block;
  margin-bottom: 30px;
}

.swiper {
  width: 470px;
}

.swiper-second, .swiper-third {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #648544;
  margin-right: 20px;
}

.swiper-pagination-bullet:nth-last-child(1){
  margin-right: 0;
}

.swiper-pagination {
  position: inherit;
  margin-top: 30px;
}

.swiper-pagination__second, .swiper-pagination__third {
  display: block;
  margin: 0 auto;
  text-align: center;
}


.swiper-button-next, .swiper-button-prev {
  top: 44%;
  width: 25px;
  height: 25px;
  color: #648544;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 25px;
}

.swiper-button-next__second, .swiper-button-prev__second, .swiper-button-prev__third, .swiper-button-next__third {
  position: absolute;
  top: 60%;
  width: 25px;
  height: 25px;
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #648544;
}

.swiper-button-next__second:after, .swiper-rtl .swiper-button-prev__second:after {
  content: 'next';
}

.swiper-button-next__third:after, .swiper-rtl .swiper-button-prev__third:after {
  content: 'next';
}

.swiper-button-prev__second:after, .swiper-rtl .swiper-button-next__second:after {
  content: 'prev';
}

.swiper-button-prev__third:after, .swiper-rtl .swiper-button-next__third:after {
  content: 'prev';
}

.swiper-button-next__second:after, .swiper-button-prev__second:after {
  font-family: swiper-icons;
  font-size: 25px;
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-next__third:after, .swiper-button-prev__third:after {
  font-family: swiper-icons;
  font-size: 25px;
  text-transform: none!important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-next__second, .swiper-rtl .swiper-button-prev__second {
  right: 0;
}

.swiper-button-next__third, .swiper-rtl .swiper-button-prev__third {
  right: 0;
}

.swiper-button-prev__second, .swiper-rtl .swiper-button-next__second {
  left: 0;
}

.swiper-button-prev__third, .swiper-rtl .swiper-button-next__third {
  left: 0;
}

.about-text {
  font-size: 20px;
  color: #000;
  line-height: 24px;
  margin-bottom: 25px;
}

.about-text:nth-child(1){
  margin-top: 35px;
}

.about-text:nth-last-child(1){
  margin-bottom: 0;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 20px;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 20px;
}

.swiper-button-next__second.swiper-button-disabled, .swiper-button-prev__second.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

.tab-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  margin-bottom: 50px;
  padding-left: 30px;
}

.tab-info__text {
  padding-top: 7px;
}

.tab-info__text span {
  background-color: #333333;
  padding: 10px;
  color: #fff;
  margin-right: 20px;
}

.tab-info__button a button {
  background: rgba(140, 186, 80, 0.95);
  color: #fff;
  font-size: 15px;
  padding: 18px 31px;
  border: 2px solid rgba(140, 186, 80, 0.95);
  transition: all 0.5s ease;
}

.plans-2 {
  padding-bottom: 90px;
}

.plans-2 img {
  display: block;
  width: 770px;
  height: 434px;
  margin: 0 auto;
  object-fit: none;
}

.form-section {
  background: url('../img/form-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 70px;
  padding-bottom: 70px;
}

#wpcf7-f5-o1 form p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

#wpcf7-f5-o1 form p .wpcf7-form-control-wrap input {
  width: 330px;
  height: 60px;
  font-weight: 400;
  font-size: 18px;
  padding: 19px 30px;
  border: transparent;
  border-radius: 0;
  outline: none;
  margin-right: 90px;
}

#wpcf7-f5-o1 form p .wpcf7-submit {
  color: #fff;
  width: 180px;
  height: 60px;
  font-size: 15px;
  border: 2px solid #8CBA50;
  outline: none;
  background-color: #8CBA50;
  transition: all 0.5s ease;
}

#wpcf7-f5-o1 form p .wpcf7-not-valid-tip {
  position: absolute;
}

#wpcf7-f6-o2 form p .wpcf7-not-valid-tip {
  position: absolute;
  top: 42px;
  width: 300px;
}

#wpcf7-f6-o2 form .wpcf7-response-output {
  margin: 1em 0 0 !important;
  padding: 0.2em 1em !important;
  border: 2px solid #00a0d2;
  color: #000 !important;
}

#wpcf7-f5-o1 form .wpcf7-response-output {
  color: #fff !important;
}

.form-section h3 {
  text-align: center;
}

.contacts h2 {
  margin-bottom: 60px;
}

.contacts-info__adress, .contacts-info__email {
  margin-bottom: 50px;
}

.contacts-info__wrapp img {
  margin-bottom: 15px;
}

.contacts-info__wrapp p, .contacts-info__wrapp p a {
  color: #000;
}

.contacts-info__phone p a {
  font-size: 20px;
}

#wpcf7-f6-o2 form p .wpcf7-form-control-wrap input {
  width: 470px;
  height: 60px;
  font-weight: 400;
  font-size: 18px;
  padding: 19px 30px;
  border: 1px solid #648544;
  border-radius: 0;
  outline: none;
  margin-bottom: 30px;
}

#wpcf7-f6-o2 form textarea {
  width: 470px;
  height: 128px;
  font-size: 18px;
  padding: 19px 30px;
  border: 1px solid #648544;
}

#wpcf7-f6-o2 form p .wpcf7-submit {
  color: #fff;
  width: 470px;
  height: 60px;
  margin-top: 30px;
  font-size: 18px;
  line-height: 22px;
  border: 2px solid #8CBA50;
  outline: none;
  background-color: #8CBA50;
  transition: all 0.5s ease;
}

.section-map {
  padding-top: 90px;
}

.section-map iframe {
  height: 336px;
  width: 100%;
}

footer {
  padding-top: 50px;
  padding-bottom: 50px;
  color: #000;
  text-align: center;
}

.grecaptcha-badge {
  display: none;
}

@media (min-width:992px) and (max-width:1199px) {
  .swiper {
    width: 100%
  }

  .about-text:nth-child(1) {
    margin-top: 5px
  }

  .about-text {
    font-size: 18px
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -10px;
  }

  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -10px;
  }

  #wpcf7-f5-o1 form p .wpcf7-form-control-wrap input {
    width: 300px;
    margin-right: 30px;
  }

  #wpcf7-f6-o2 form p .wpcf7-form-control-wrap input, #wpcf7-f6-o2 form textarea, #wpcf7-f6-o2 form p .wpcf7-submit {
    width: 100%;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .tab-info {
    flex-direction: column;
  }

  .tab-info__text span {
    margin-right: 7px;
  }

  .tab-info__button a button {
    margin-top: 40px;
  }

  .swiper-second .swiper-slide img, .plans-2 img {
    width: 100%;
  }

  #wpcf7-f5-o1 form p {
    flex-direction: column;
  }

  #wpcf7-f5-o1 form p .wpcf7-form-control-wrap input {
    width: 100%;
  }

  #wpcf7-f6-o2 form p .wpcf7-form-control-wrap input, #wpcf7-f6-o2 form textarea, #wpcf7-f6-o2 form p .wpcf7-submit {
    width: 100%;
  }
}


@media (min-width:320px) and (max-width:767px) {
  h2 {
    text-align: center;
    display: block;
    margin: 0 auto;
    transform: translate(0px, 0px);
  }

  .advantages-wrapp {
    flex-direction: column;
  }

  .icons {
    margin-right: 0;
    margin-bottom: 35px;
  }

  .advantages-wrapp__second {
    flex-direction: column;
  }

  .icons:nth-last-child(1) {
    margin-bottom: 0;
  }

  .swiper {
    width: 100%;
  }

  .swiper-slide img {
    width: 310px;
    display: block;
    object-fit: cover;
  }

  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 0;
  }

  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 0;
  }

  .about-text {
    font-size: 16px;
  }

  .plans h2, .plans-2 h2 {
    width: 80%;
  }

  .tab-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .tab-info__text {
    display: flex;
    flex-wrap: wrap;
  }

  .tab-info__text span {
    margin-bottom: 10px;
  }

  .tab-info {
    padding-left: 0;
  }

  .swiper-second .swiper-slide img {
    width: 320px;
    height: auto;
  }

  .plans-2 img {
    width: 320px;
    height: auto;
  }

  #wpcf7-f5-o1 form p {
    flex-direction: column;
  }

  #wpcf7-f5-o1 form p .wpcf7-form-control-wrap input {
    margin-right: 0;
  }

  #wpcf7-f6-o2 form p {
    margin-top: 50px;
  }

  #wpcf7-f6-o2 form p .wpcf7-form-control-wrap input, #wpcf7-f6-o2 form textarea, #wpcf7-f6-o2 form p .wpcf7-submit {
    width: 100%;
  }

  .contacts-info__adress, .contacts-info__email {
    margin-bottom: 25px;
  }

  footer {
    font-size: 12px;
  }

  .swiper-pagination__third {
    margin-top: 35px;
  }
}


@media (min-width:320px) and (max-width:991px) {
  .burger-mobile {
    display: block;
  }

  .header .burger-mobile {
    top: 35px;
  }

  header.sticky .burger-mobile {
    top: 28px;
  }
}