/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

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

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

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  font-family: "stolzl";
  font-weight: 300;
  color: #000;
  font-size: 16px;
  background-color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.btn {
  color: #fff;
  background: #4e5037;
  border-radius: 10px;
  transition: 200ms ease all;
  font-size: 14px;
  padding: 9.5px 12px;
}
.btn:hover {
  background: #1e1e15;
}

.header {
  padding: 10px 0 20px;
  position: fixed;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  background: #fff;
}
.header__burger {
  display: none;
  width: 35px;
  flex-direction: column;
  padding: 5px 0;
  gap: 6px;
  margin-left: 10px;
}
.header__burger span {
  width: 100%;
  display: inline-block;
  background: #000;
  height: 2px;
  min-height: 2px;
  border-radius: 4px;
  transition: 200ms ease all;
  position: relative;
}
.header__burger--active span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}
.header__burger--active span:nth-child(2) {
  opacity: 0;
}
.header__burger--active span:nth-child(3) {
  transform: rotate(-45deg);
  top: -8px;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  width: 215px;
}
.header__contacts {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__contacts-item img {
  width: 36px;
  transition: 200ms ease all;
}
.header__contacts-item:hover img {
  transform: scale(1.1);
}
.header__contacts-tel {
  transition: 200ms ease all;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 400;
}
.header__contacts-tel:hover {
  color: #455838;
}
.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 30px;
}
.header__nav-item {
  transition: 200ms ease all;
  font-size: 20px;
  font-weight: 300;
}
.header__nav-item:hover {
  color: #455838;
}

.main {
  margin-top: 140px;
}

.hero {
  padding-top: 30px;
}
.hero__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.hero__info {
  border-radius: 20px;
  background: #d1dabf;
  padding: 50px 60px 50px 50px;
  width: 100%;
  max-width: 812px;
}
.hero__title {
  font-size: 55px;
  padding-bottom: 40px;
}
.hero__img {
  max-width: 100%;
  flex: 1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
.hero__desc {
  font-size: 24px;
  padding-bottom: 40px;
}
.hero__btns {
  display: flex;
  gap: 30px;
}
.hero__btns a {
  color: #fff;
  border-radius: 10px;
  transition: 200ms ease all;
  background: #7c7f60;
  font-size: 20px;
  padding: 20px 60px 20px 20px;
  position: relative;
}
.hero__btns a:hover {
  background: #4e5037;
}
.hero__btns a::after {
  content: url("../images/arrow-w.png");
  position: absolute;
  right: 15px;
  bottom: 10px;
  z-index: 2;
}

.title {
  font-size: 30px;
  padding-bottom: 20px;
}

.services {
  padding-top: 40px;
}
.services__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 12px;
}
.services__item {
  background: #d1dabf;
  border-radius: 10px;
  padding: 16px 16px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.services__item-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.services__item-header span {
  font-size: 24px;
}
.services__item-img-holder {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px;
}
.services__item-img-holder img {
  max-width: 100%;
}
.services__btn {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 200ms ease all;
}
.services__btn:hover {
  color: #4e5037;
}
.services__btn::after {
  content: url("../images/arrow-b.png");
  transition: 200ms ease all;
}
.services__btn:hover::after {
  transform: translateX(15px);
}
.services__desc {
  font-size: 17px;
}

.advantages {
  padding-top: 200px;
  background: url("../images/advantages-bg.jpg") no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: -160px;
  padding-bottom: 250px;
}
.advantages__groups {
  display: flex;
  justify-content: space-between;
  gap: 55px;
  align-items: center;
}
.advantages__info {
  width: 100%;
  max-width: 600px;
}
.advantages__img {
  flex: 1;
  max-width: 100%;
  border-radius: 10px;
}
.advantages__item {
  margin-bottom: 40px;
  padding-left: 45px;
  position: relative;
}
.advantages__item-title {
  font-size: 24px;
  padding-bottom: 15px;
}
.advantages__item-desc {
  font-size: 18px;
}
.advantages__item::before {
  content: "";
  width: 23px;
  height: 23px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 3px;
  background: #7c7f60;
}

.feedback {
  margin-top: -200px;
}
.feedback__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.feedback__group {
  border-radius: 10px;
  background: url("../images/feedback-1.png") no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 900px;
  padding: 30px;
  color: #fff;
}
.feedback__title {
  font-size: 30px;
  padding-bottom: 30px;
}
.feedback__desc {
  font-size: 18px;
}
.feedback__form {
  background: #e9e9e9;
  flex: 1;
  border-radius: 10px;
  padding: 20px;
}
.feedback__form-title {
  font-size: 24px;
  color: #4e5037;
  font-weight: 500;
  padding-bottom: 10px;
}
.feedback__form-desc {
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 25px;
}

.form-group {
  margin-bottom: 25px;
}
.form-group .form-group-help {
  display: none;
}
.form-group__title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
}
.form-group__title span {
  color: #f65959;
}

.input__field {
  color: #000;
  font-size: 14px;
  padding: 0 0 5px;
  border-bottom: 1px solid #b1b1b1;
  width: 100%;
}
.input__field::-webkit-input-placeholder {
  font-weight: 300;
}

.form-note {
  font-size: 11px;
  font-weight: 200;
  margin-bottom: 15px;
}
.form-note a {
  color: #6d8f56;
  text-decoration: underline;
}

.form-submit {
  padding: 10px 25px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  cursor: pointer;
  transition: 200ms ease all;
  background-color: #4e5037 !important;
  border-radius: 7px;
}
.form-submit:hover {
  background-color: #6d8f56 !important;
}

.tariffs {
  padding-top: 40px;
}
.tariffs__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
}
.tariffs__item-header {
  background: #d1dabf;
  border-radius: 10px;
  padding: 25px 25px 15px;
  margin-bottom: 10px;
}
.tariffs__item-title {
  font-size: 24px;
  padding-bottom: 20px;
}
.tariffs__item-cost {
  font-size: 36px;
}
.tariffs__item-cost span {
  font-size: 24px;
  color: #7a7a7a;
}
.tariffs__item-inner {
  border-radius: 10px;
  padding: 25px 15px 30px;
  background: #d1dabf;
}
.tariffs__item-desc {
  margin-bottom: 20px;
  font-size: 18px;
  position: relative;
  padding-left: 25px;
}
.tariffs__item-desc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #7c7f60;
}
.tariffs__item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  border-radius: 10px;
  font-size: 18px;
  color: #fff;
  padding: 20px 15px;
  background: #4e5037;
  transition: 300ms ease all;
}
.tariffs__item-btn::after {
  content: url("../images/arrow-btn-2.png");
  margin-left: 20px;
  transition: 200ms ease all;
}
.tariffs__item-btn:hover {
  background: #1e1e15;
}
.tariffs__item-btn:hover::after {
  transform: translateX(10px);
}
.tariffs__item--special {
  color: #fff;
}
.tariffs__item--special .tariffs__item-header,
.tariffs__item--special .tariffs__item-inner {
  background: #4e5037;
}
.tariffs__item--special .tariffs__item-btn {
  background: #fff;
  color: #4e5037;
}
.tariffs__item--special .tariffs__item-btn::after {
  content: url("../images/arrow-btn.png");
}
.tariffs__item--special .tariffs__item-btn:hover {
  background: #d1dabf;
}

.feedback--stock {
  margin-top: 0;
  padding-top: 40px;
}
.feedback--stock .feedback__group {
  border-radius: 10px;
  background: url(../images/feedback-2.png) no-repeat;
  background-position: center;
  background-size: cover;
}

.date-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 75%;
  margin-top: 40px;
}

.date__group {
  text-align: center;
}
.date__group span {
  font-size: 18px;
  display: inline-flex;
  padding-top: 10px;
  color: #fff;
}

.date__time {
  font-size: 70px;
  border-radius: 10px;
  font-weight: 500;
  background: #fff;
  color: #000;
  padding: 10px;
  min-width: 120px;
}

.date-container .divider {
  font-size: 60px;
  position: relative;
  top: -20px;
  color: #fff;
}

.date__item {
  font-size: 60px;
  border-radius: 10px;
  font-weight: 500;
  background: #fff;
  color: #000;
  padding: 10px;
  min-width: 120px;
}

.about {
  padding-top: 40px;
  padding-bottom: 60px;
  background: url("../images/about-bg.jpg") no-repeat;
  background-position: bottom;
  background-size: cover;
}
.about .about__groups {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}
.about__image {
  width: 100%;
  max-width: 385px;
  border-radius: 10px;
}
.about__name {
  font-size: 24px;
  padding-bottom: 20px;
}
.about p {
  font-size: 20px;
  padding-bottom: 15px;
  font-weight: 200;
}
.about__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 15px;
  margin: 20px 0;
}
.about__items span {
  font-size: 18px;
  font-weight: 300;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.about__items span::before {
  content: url("../images/a-check.png");
}
.about__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: #d1dabf;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 300;
  padding: 4px 20px;
  margin-bottom: 20px;
}
.about__features {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-top: 20px;
  text-align: center;
}
.about__features .about__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.about__features .about__item span:first-child {
  font-size: 36px;
}
.about__features .about__item span:last-child {
  font-size: 18px;
}

.cer__slider {
  overflow-x: hidden;
}
.cer__slider-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin-top: 40px;
}
.cer__box {
  overflow: hidden;
  padding: 30px;
}
.cer__slide {
  max-width: 225px;
  border-radius: 10px;
}
.cer__slide a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.cer__slide img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.cer__slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cer__slider-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 16px;
  height: 16px;
  background: #7c7f60;
}
.cer__slider-pagination .swiper-pagination-bullet-active {
  background: #4e5037;
}

.form-submit-holder {
  text-align: center;
}

.modal__form-title {
  text-align: center;
  font-size: 24px;
  padding-bottom: 15px;
}

.modal {
  padding-top: 30px;
  padding-bottom: 30px;
}
.modal-success {
  display: none;
}

.form-note-spec {
  font-size: 13px;
  padding-top: 12px;
}
.form-note-spec span {
  color: #f33644;
}

.btn-holder {
  text-align: center;
}

.form-group--error .form-group-help {
  display: block;
  color: #f70400;
  font-size: 12px;
  padding-top: 8px;
}

.modal--success .modal-content {
  display: none;
}
.modal--success .modal-success {
  display: block;
  text-align: center;
  padding-top: 40px;
}
.modal--success .modal-success .modal__form-title {
  margin-top: 35px;
}

.footer {
  padding-top: 40px;
  color: #fff;
  background: #7c7f60;
  padding-bottom: 50px;
}
.footer__box {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}
.footer__group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__contact {
  font-size: 18px;
  margin-bottom: 4px;
}
.footer__contact:hover {
  text-decoration: underline;
}
.footer .header__contacts {
  margin: 20px 0;
}
.footer__nav {
  font-size: 18px;
}
.footer__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer__items a {
  font-size: 18px;
  margin-bottom: 4px;
  text-decoration: underline;
}
.footer__items a:hover {
  text-decoration: none;
}
.footer__title {
  font-size: 24px;
  padding-bottom: 20px;
}
.footer .hero__btns a {
  background: #4e5037;
}
.footer .hero__btns a:hover {
  background: #2f3021;
}
.footer__line {
  padding-bottom: 20px;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.footer__line .develop {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 200;
}
.footer__line .develop a {
  display: inline-block;
  margin: 0 5px;
  text-decoration: underline;
}
.footer__line .develop img {
  position: relative;
  top: -1px;
}
.footer__line .politic {
  font-size: 12px;
  text-decoration: underline;
}

.blocker {
  z-index: 99;
}

@media (max-width: 1365px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  body {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .hero__title {
    font-size: 35px;
    padding-bottom: 20px;
  }
  .hero__info {
    padding: 20px;
  }
  .hero__info .hero__btns {
    flex-direction: column;
    gap: 15px;
  }
  .services__item-header span {
    font-size: 20px;
  }
  .advantages__img {
    max-width: 45%;
  }
  .feedback__form {
    min-width: 320px;
    max-width: 320px;
    flex: none;
  }
  .tariffs__item-title {
    font-size: 22px;
  }
  .tariffs__items {
    grid-gap: 15px;
  }
  .date-container {
    max-width: 100%;
  }
  .date__item {
    font-size: 40px;
    min-width: 80px;
  }
  .about .about__groups {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .footer__line {
    flex-direction: column;
  }
}
@media (max-width: 989px) {
  .header__nav {
    gap: 15px;
  }
  .hero__container {
    flex-direction: column;
    gap: 15px;
  }
  .hero__img {
    max-height: 450px;
    -o-object-position: center;
       object-position: center;
  }
  .services__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__groups {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .advantages__img {
    display: none;
  }
  .feedback__container {
    flex-direction: column;
    align-items: center;
  }
  .tariffs__item-header {
    padding: 15px;
  }
  .tariffs__item-title {
    font-size: 17px;
  }
  .tariffs__item-cost {
    font-size: 22px;
  }
  .tariffs__item-cost span {
    font-size: 18px;
  }
  .tariffs__item-desc {
    font-size: 15px;
  }
  .tariffs__item-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
  .date-container {
    justify-content: flex-start;
  }
  .cer__slide {
    max-width: none;
  }
  .cer__slide img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .cer__slider-container {
    gap: 0;
  }
  .cer__box {
    padding: 0 0 30px;
  }
  .slider__left,
  .slider__right {
    display: none;
  }
  .footer__box {
    gap: 15px;
  }
  .footer__title {
    font-size: 20px;
  }
  .footer__items a {
    font-size: 15px;
  }
  .footer .hero__btns a {
    padding: 15px;
    font-size: 15px;
  }
  .footer .hero__btns a::after {
    content: none;
  }
  .footer__nav {
    font-size: 15px;
  }
  .footer__box {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .header__burger {
    display: flex;
  }
  .header__nav {
    display: none;
  }
  .header__top .callback-btn {
    display: none;
  }
  .header__top .header__contacts-item img {
    width: 20px;
  }
  .header__logo img {
    width: 165px;
  }
  .header__contacts-tel {
    font-size: 14px;
  }
  .main {
    margin-top: 80px;
  }
  .hero__title {
    font-size: 24px;
  }
  .hero__desc {
    font-size: 18px;
    padding-bottom: 15px;
  }
  .services__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .tariffs__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .date__item {
    font-size: 25px;
    min-width: 50px;
  }
  .date-container {
    gap: 10px;
  }
  .date__group span {
    font-size: 15px;
  }
  .about__image {
    max-height: 300px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .about__items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }
  .about__features {
    gap: 15px;
    justify-content: space-between;
  }
  .about__features .about__item span:first-child {
    font-size: 24px;
  }
  .footer__box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__group,
  .footer__nav,
  .footer__items {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer__logo {
    margin-bottom: 15px;
  }
  .footer__line {
    padding-top: 15px;
  }
  .header--active .header__nav {
    display: flex;
    position: absolute;
    left: 0;
    top: 75px;
    background: #fff;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
    padding-bottom: 15px;
    padding-left: 15px;
    padding-top: 0;
  }
  .header--active .header__nav .header__nav-item {
    font-size: 16px;
  }
}
@media (max-width: 479px) {
  .header {
    padding-bottom: 10px;
  }
  .header__logo img {
    width: 105px;
  }
  .header__contacts-tel {
    font-size: 13px;
  }
  .header__contacts {
    gap: 5px;
  }
  .main {
    margin-top: 30px;
  }
  .hero .hero__btns a {
    color: #fff;
    border-radius: 10px;
    transition: 200ms ease all;
    background: #7c7f60;
    font-size: 13px;
    padding: 14px 35px 14px 20px;
    position: relative;
  }
  .feedback__title {
    font-size: 25px;
    padding-bottom: 20px;
  }
  .feedback__desc {
    font-size: 15px;
  }
  .date-container {
    gap: 5px;
  }
  .feedback__group {
    padding: 30px 15px;
  }
  .date__item {
    font-size: 22px;
    min-width: 45px;
  }
  .about__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .about__features {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .header--active .header__nav {
    top: 57px;
  }
}/*# sourceMappingURL=index.css.map */