@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
html {
  font-size: 16px;
}

.wrapper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.container {
  max-width: 98%;
  margin: 0px auto;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3d5e1d;
  text-align: center;
}

.text-green {
  color: rgb(85, 134, 36);
  font-weight: 700;
}

.text-italic {
  font-style: italic;
}

.text-bold {
  font-weight: 700;
}

/*HEADER-----------------------------------------------*/
.header {
  /* .header__items */
  /* .header__item */
  /* .header__menu */
}
.header__items {
  padding: 1%;
  display: grid;
  grid-template-columns: 20% 60% 20%;
  background: -webkit-linear-gradient(90deg, #afe9c7, #c5e2d1, #e0f0e7); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(90deg, #afe9c7, #c5e2d1, #e0f0e7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.item-header {
  min-height: 100%;
  /* .item-header__img */
  /* .item-header__title */
  /* .item-header__img-second */
}
.item-header__img {
  width: 100%;
  height: 98%;
}
.item-header__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-header__title {
  height: 98%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Lobster", sans-serif;
  font-size: 5rem;
  text-transform: uppercase;
  line-height: 150%;
  letter-spacing: 10px;
  color: #3d5e1d;
}
.item-header__title p:last-child {
  margin-left: 1.875em;
}
.item-header__title p:first-child {
  margin-left: -1.875em;
}
.item-header__img-second {
  width: 100%;
  height: 98%;
}
.item-header__img-second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-header {
  padding: 10px 20px;
  background-color: #3d5e1d;
  /* .menu-header__list */
  /* .menu-header__link */
}
.menu-header__list {
  display: flex;
  justify-content: space-between;
}
.menu-header__link {
  color: #fff;
  font-size: 1.562rem;
  transition: all ease 0.5s;
}
.menu-header__link:hover {
  color: #eff21d;
  text-decoration: underline;
}
.menu-header__link_act {
  color: #eff0b1;
}

@media (max-width: 1350px) {
  .item-header__title {
    font-size: 4.375rem;
  }
  .menu-header__link {
    font-size: 1.25rem;
  }
}
@media (max-width: 1092px) {
  .item-header__title {
    font-size: 3.75rem;
  }
  .menu-header__list {
    align-items: center;
  }
  .menu-header__list li {
    text-align: center;
  }
  .menu-header__list li:not(:last-child) {
    margin-right: 1em;
  }
}
@media (max-width: 992px) {
  .item-header__title {
    font-size: 3.125rem;
  }
}
@media (max-width: 768px) {
  .item-header__title {
    font-size: 2.5rem;
  }
  .menu-header {
    background-color: #fff;
    position: relative;
  }
  .menu-header__list {
    display: none;
  }
  .menu-header__burger {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    width: 40px;
    height: 30px;
    z-index: 5;
    transition: all ease 0.5s;
  }
  .menu-header__burger span {
    position: absolute;
    background-color: rgb(85, 134, 36);
    left: 0;
    top: 14px;
    width: 100%;
    height: 3px;
    transition: all 0.3s ease 0s;
  }
  .menu-header__burger::before,
  .menu-header__burger::after {
    content: "";
    background-color: rgb(85, 134, 36);
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    transition: all 0.3s ease 0s;
  }
  .menu-header__burger::before {
    top: 0;
  }
  .menu-header__burger::after {
    bottom: 0;
  }
  .menu-header__burger.active span {
    transform: scale(0);
  }
  .menu-header__burger.active::before {
    transform: rotate(45deg);
    top: 19px;
  }
  .menu-header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 8px;
  }
  .menu-header__list.active {
    position: absolute;
    display: block;
    overflow: auto;
    top: 0px;
    left: 0;
    background-color: #E0F0E7;
    width: 100%;
    height: 100vh;
  }
  .menu-header__list.active li {
    margin: 0px;
  }
  .menu-header__list.active li a {
    color: rgb(85, 134, 36);
    font-size: 1.875rem;
  }
  .menu-header__list.active li:first-child {
    margin: 100px 0px 0px;
  }
  .menu-header__list.active li:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media (max-width: 650px) {
  .item-header__title {
    font-size: 1.875rem;
    letter-spacing: 7px;
  }
  .item-header__title p:first-child,
  .item-header__title p:last-child {
    margin: 0;
  }
}
@media (max-width: 420px) {
  .header__items {
    grid-template-columns: 25% 50% 25%;
  }
  .item-header__title {
    font-size: 1.25rem;
  }
  .menu-header__burger {
    width: 30px;
    height: 20px;
  }
  .menu-header__burger span {
    top: 9px;
    height: 2px;
  }
  .menu-header__burger::before,
  .menu-header__burger::after {
    height: 2px;
  }
  .menu-header__burger.active::before {
    top: 9px;
  }
  .menu-header__burger.active::after {
    bottom: 9px;
  }
  .menu-header__list.active li:first-child {
    margin-top: 70px;
  }
  .menu-header__list.active li a {
    font-size: 1.562rem;
  }
}
@media (max-width: 350px) {
  .header__items {
    grid-template-columns: 70% 30%;
  }
  .header__item:first-child {
    display: none;
  }
}
/*MAIN-----------------------------------------------------*/
.main {
  flex: 1 1 auto;
  padding: 40px 0px;
  /* .main__title */
  /* .main__items */
  /* .main__item */
}
.main__title {
  margin-bottom: 1em;
}
.main__items {
  display: grid;
  grid-template-columns: 30% 70%;
  column-gap: 20px;
}
.main__item {
  min-height: 100%;
}

.item-img {
  display: flex;
  flex-direction: column;
  /* .item-img__img-first */
  /* .item-img__img-second */
}
.item-img__img-first {
  margin-top: 10px;
  margin-bottom: 25px;
}
.item-img__img-first img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-img__img-second img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.item-text {
  font-size: 1.8181818182vw;
  line-height: 140%;
  padding-right: 15px;
}
.item-text p:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 1084px) {
  .title {
    font-size: 2.188rem;
  }
  .main__items {
    grid-template-columns: 100%;
    row-gap: 20px;
  }
  .item-img {
    flex-direction: row;
  }
  .item-img__img-first {
    margin: 0;
    margin-right: 15px;
  }
  .item-text {
    font-size: 1.562rem;
  }
}
@media (max-width: 768px) {
  .main__title {
    font-size: 1.875rem;
    margin-top: 30px;
  }
}
@media (max-width: 590px) {
  .main {
    padding-bottom: 20px;
  }
  .main__title {
    font-size: 1.375rem;
  }
  .item-img__img-second {
    display: none;
  }
  .item-text {
    font-size: 1.25rem;
  }
}
@media (max-width: 340px) {
  .item-text {
    font-size: 1.125rem;
  }
}
/*FOOTER-----------------------------------------------*/
.footer {
  position: relative;
  height: 300px;
  background: url("../img/footer.png") no-repeat;
  background-size: 100%;
  background-position: center;
  /* .footer__text */
}
.footer__text {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  font-family: "Lobster", sans-serif;
  font-size: 2.5rem;
  color: rgb(85, 134, 36);
}

@media (max-width: 1250px) {
  .footer__text {
    font-size: 1.875rem;
  }
}
@media (max-width: 992px) {
  .footer {
    height: 200px;
  }
  .footer__text {
    font-size: 1.25rem;
  }
}
@media (max-width: 630px) {
  .footer {
    height: 110px;
  }
  .footer__text {
    font-size: 1rem;
  }
}
@media (max-width: 500px) {
  .footer {
    height: 50px;
    padding: 10px;
    background: none;
    background-color: #f3f3a2;
    border-radius: 10px;
    line-height: 120%;
    text-align: center;
  }
}
/*PAGE-----------------------------------------------*/
.page {
  /* .page__img */
  /* .page__text */
  /* .page__buttons */
  /* .page__button */
}
.page__img {
  max-width: 600px;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page__text {
  margin-bottom: 50px;
  font-size: 1.75rem;
  line-height: 150%;
}
.page__text p:not(:last-child) {
  margin-bottom: 0.536em;
}
.page__text ol {
  margin-bottom: 0.536em;
  list-style-position: inside;
}
.page__buttons {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  justify-content: center;
  align-items: center;
}
.page__button {
  transition: all ease 0.5s;
}
.page__button:hover {
  transform: scale(1.03);
}

.button-page {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* .button-pagegood__img */
  /* .button-pagegood__text */
}
.button-page:nth-child(2) img {
  border-radius: 70px;
}
.button-page__body {
  width: 40%;
  text-align: center;
}
.button-page__img {
  padding-bottom: 15px;
}
.button-page__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.button-page__text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000;
}

@media (max-width: 1092px) {
  .page__img {
    float: none;
    max-width: 80%;
    margin: 0px auto;
    margin-bottom: 30px;
  }
  .button-page__text {
    font-size: 1.25rem;
  }
  .button-page:nth-child(2) img {
    border-radius: 40px;
  }
}
@media (max-width: 768px) {
  .button-page__body {
    width: 50%;
  }
}
@media (max-width: 530px) {
  .page__img {
    max-width: 90%;
  }
  .page__text {
    font-size: 1.375rem;
  }
  .button-page:nth-child(2) img {
    border-radius: 20px;
  }
  .button-page__text {
    font-size: 1rem;
  }
}
@media (max-width: 440px) {
  .page__text {
    font-size: 1.25rem;
  }
  .page__buttons {
    grid-template-columns: 100%;
    row-gap: 30px;
  }
}
/*OTZIVI*/
.main {
  /* .main__otziv */
}
.main__kroshki {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
.main__kroshki a {
  color: #000;
}
.main__kroshki a:hover {
  text-decoration: underline;
}
.main__otziv {
  margin-bottom: 50px;
}

.otziv {
  /* .otziv__items */
  /* .otziv__item */
  /* .otziv__text */
}
.otziv__items {
  display: grid;
  grid-template-columns: 20% 80%;
  align-items: center;
  margin-bottom: 20px;
}
.otziv__text {
  display: none;
}

.otziv-img {
  display: flex;
  justify-content: center;
}
.otziv-img img {
  width: 60%;
}

.otziv-content {
  /* .otziv-content__title */
  /* .otziv-content__subtitle */
  /* .otziv-content__describe */
  /* .otziv-content__button */
}
.otziv-content__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: rgb(136, 42, 62);
  margin-bottom: 0.5em;
}
.otziv-content__subtitle {
  font-size: 1.562rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.6em;
}
.otziv-content__describe {
  font-style: italic;
  font-size: 1.562rem;
  margin-bottom: 0.8em;
}
.otziv-content__button {
  display: inline-block;
  padding: 0.5em;
  border-radius: 10px;
  font-size: 1.25rem;
  border: 1px solid #3d5e1d;
  cursor: pointer;
}
.otziv-content__button:hover {
  background-color: #3d5e1d;
  color: #fff;
}

.text-otziv {
  padding: 0px 0.6em;
  font-size: 1.562rem;
  line-height: 150%;
  /* .text-otziv__img */
}
.text-otziv ol,
.text-otziv ul {
  margin-bottom: 15px;
}
.text-otziv p:not(:last-child) {
  margin-bottom: 15px;
}
.text-otziv li {
  list-style-position: inside;
}
.text-otziv li:not(:last-child) {
  margin-bottom: 10px;
}
.text-otziv ul li {
  list-style: disc;
  list-style-position: inside;
}
.text-otziv__img {
  width: 20%;
  float: left;
  margin-right: 20px;
}
.text-otziv__img img {
  width: 100%;
}

.otziv__text.open {
  display: block;
}

@media (max-width: 992px) {
  .otziv-content__title {
    font-size: 1.562rem;
  }
  .otziv-content__subtitle,
  .otziv-content__describe {
    font-size: 1.25rem;
  }
  .text-otziv__img {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .main__kroshki {
    font-size: 1rem;
  }
  .otziv__items {
    grid-template-columns: 25% 75%;
  }
  .otziv-img img {
    width: 80%;
  }
  .otziv-content__button {
    font-size: 1.125rem;
  }
  .text-otziv {
    font-size: 1.25rem;
  }
  .text-otziv__img {
    width: 40%;
  }
}
@media (max-width: 470px) {
  .main__kroshki {
    display: none;
  }
  .otziv__items {
    grid-template-columns: 100%;
  }
  .otziv-img {
    display: none;
  }
  .otziv-content__title {
    font-size: 1.375rem;
  }
  .text-otziv {
    font-size: 1.125rem;
  }
  .text-otziv__img {
    width: 80%;
    margin: 0px auto;
    float: none;
  }
}