@charset "UTF-8";
:root {
  --font-family: "Manrope", sans-serif;
  --content-width: 1440px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  /* container */
  --padding: 15px;
  --very-dark-gray:#333333;
  --dark-gray:#2D2D2D;
  --light-gray:#E2E2E2;
  --light-color: #fff;
  --bg-color:#E5E5E5;
  --dark-color: #000;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "AndadaPro";
  src: url("../fonts/../fonts/AndadaPro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "FiraSans";
  src: url("../fonts/../fonts/FiraSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "FiraSans";
  src: url("../fonts/../fonts/FiraSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Alegreya";
  src: url("../fonts/../fonts/Alegreya-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Pacifico";
  src: url("../fonts/../fonts/Pacifico-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
}
body.lock {
  overflow: hidden;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

.page__body {
  margin: 0;
  min-width: 360px;
  min-height: 100%;
  font-size: 16px;
}

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

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

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

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.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;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.centered {
  text-align: center;
}

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

.page--ios .dis-scroll {
  position: relative;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.social-icon {
  width: 35px;
  height: 35px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.social-icon:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.graph-modal__close {
  background-repeat: no-repeat;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  width: auto;
  height: auto;
  right: 20px;
  top: 20px;
  color: #718096;
  background-image: none;
}

.popup {
  max-width: 700px;
}

.modal-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.modal-subtitle {
  text-align: center;
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 300;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(241, 242, 248, 0.3);
  border: none;
  color: #51864a;
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  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;
}

.close-btn:hover {
  background: rgba(241, 242, 248, 0.5);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* Контент модального окна */
.modal-content {
  padding: 40px;
  color: #333;
  line-height: 1.6;
}

.section {
  margin-bottom: 35px;
  opacity: 0;
  -webkit-animation: fadeInUp 0.6s ease forwards;
  animation: fadeInUp 0.6s ease forwards;
}

.section:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.section:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.section:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.section:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.section:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.section-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #51864a;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(241, 242, 248, 0.8);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(45deg, #51864a, rgba(81, 134, 74, 0.8));
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.section:hover .section-title::after {
  width: 100px;
}

.section-content {
  color: #555;
}

.content-list {
  margin: 0;
  list-style: none;
  margin: 15px 0;
}

.content-list li {
  padding: 8px 0;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.content-list li:hover {
  color: #51864a;
  -webkit-transform: translateX(10px);
  -ms-transform: translateX(10px);
  transform: translateX(10px);
  background: rgba(81, 134, 74, 0.1);
  border-radius: 5px;
}

.content-list li:hover::before {
  color: rgba(81, 134, 74, 0.8);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

/* Особенности производства - сетка */
.features-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-card {
  background: linear-gradient(135deg, #f1f2f8 0%, rgba(241, 242, 248, 0.8) 100%);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(241, 242, 248, 0.6);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(45deg, #51864a, rgba(81, 134, 74, 0.8));
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.feature-card:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.feature-card:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 25px rgba(81, 134, 74, 0.2);
  box-shadow: 0 10px 25px rgba(81, 134, 74, 0.2);
  border-color: #51864a;
}

.feature-title {
  font-weight: 600;
  color: #51864a;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* CTA кнопка */
.cta-section {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(241, 242, 248, 0.8);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #51864a 0%, rgba(81, 134, 74, 0.8) 100%);
  color: white;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(241, 242, 248, 0.3)), to(transparent));
  background: linear-gradient(90deg, transparent, rgba(241, 242, 248, 0.3), transparent);
  -webkit-transition: left 0.6s;
  transition: left 0.6s;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 25px rgba(81, 134, 74, 0.4);
  box-shadow: 0 10px 25px rgba(81, 134, 74, 0.4);
}

/* Адаптивность */
@media (max-width: 768px) {
  .modal {
    width: 95%;
    margin: 10px;
  }
  .modal-content {
    padding: 15px;
  }
  .modal-title {
    font-size: 2rem;
  }
  .features-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
/* Скроллбар */
.modal::-webkit-scrollbar {
  width: 8px;
}

.modal::-webkit-scrollbar-track {
  background: #f1f2f8;
  border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, #51864a, rgba(81, 134, 74, 0.8));
  border-radius: 10px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(45deg, rgba(81, 134, 74, 0.8), #51864a);
}

.modal__form {
  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;
}

.modal__subtitle {
  margin: 0;
  padding: 20px 0px;
  font-family: Manrope;
  font-weight: 600;
  font-size: 40px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #594E42;
}

.modal__input {
  -webkit-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  border-radius: 30px;
  border: 2px solid rgba(22, 22, 22, 0.5019607843);
  outline: none;
  padding-left: 20px;
  width: 486px;
  height: 50px;
  margin-bottom: 10px;
  color: #718096;
}
.modal__input::-webkit-input-placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.modal__input::-moz-placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.modal__input:-ms-input-placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.modal__input::-ms-input-placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.modal__input::placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}

.modal__link {
  color: rgba(81, 134, 74, 0.8);
}

.modal-text {
  margin: 0 auto;
  max-width: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.modal-bootom {
  margin: 0;
  font-family: FiraSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 90%;
  letter-spacing: 0%;
  color: #594E42;
}
.modal-bootom span {
  color: rgba(81, 134, 74, 0.8);
  cursor: pointer;
}

input[type=checkbox] {
  accent-color: rgba(81, 134, 74, 0.8);
  width: 30px;
  height: 30px;
}

.modal-btn {
  border-color: #ffffff00;
  width: 345px;
  height: 60px;
  border-radius: 20px;
  background: rgba(81, 134, 74, 0.8);
  -webkit-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  font-family: Rubik;
  font-weight: 500;
  font-size: 26px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}

@media (max-width: 576px) {
  .modal__input {
    width: 300px;
  }
  .modal__subtitle {
    font-size: 20px;
    line-height: 20px;
  }
  .modal-btn {
    width: 300px;
    height: 50px;
    font-size: 26px;
    line-height: 121%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #fff;
  }
}
@media (max-width: 370px) {
  .modal__input {
    width: 250px;
  }
  .modal-btn {
    width: 250px;
  }
}
.modal-gallery {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

.modal-title {
  margin: 0;
  padding: 20px 0px;
  font-family: FiraSans;
  font-weight: 500;
  font-size: 26px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: bottom;
  color: #594E42;
}

.modal-descr {
  margin: 0;
  font-family: FiraSans;
  font-weight: 400;
  font-size: 16px;
  color: #594E42;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: bottom;
  margin-bottom: 10px;
}

.modal-img {
  width: 308px;
  height: 235px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 20px;
}

.modal-item {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 121%;
  letter-spacing: 0%;
  vertical-align: middle;
}

.modal-about {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.modal-table-item {
  width: 32px;
  height: 32px;
}

.modal-bottom-text {
  margin: 0;
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 121%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #353432;
}

.nav {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  -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: 991px) {
  .nav {
    background: #fff;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  -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: 991px) {
  .header {
    background: #fff;
  }
}
.header__container {
  position: relative;
  padding: 10px 0px;
}
.header__logo2 {
  position: absolute;
  left: 20px;
  top: 15px;
  width: 128px;
  height: 47px;
  cursor: pointer;
}
.header__logo {
  width: 140px;
  height: 47px;
}
.header__logo-nav {
  margin-left: -15px;
}
@media (max-width: 991px) {
  .header__logo {
    width: 120px;
    height: 38px;
  }
}
.header__pre {
  margin: 0;
  display: inline;
  font-family: Manrope;
  font-weight: 700;
  font-size: 25px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  color: #242424;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.header__pre:hover {
  color: rgba(81, 134, 74, 0.8);
}
@media (max-width: 991px) {
  .header__pre {
    font-size: 20px;
  }
}
.header__top {
  width: 100%;
  padding: 0px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .header__top {
    -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;
    gap: 5px;
  }
}
.header__text {
  margin: 0;
  max-width: 197px;
  font-family: Commissioner;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -3%;
  vertical-align: middle;
  color: #fff;
}
@media (max-width: 1250px) {
  .header__text {
    max-width: 130px;
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 992px) {
  .header__text {
    max-width: 300px;
  }
}
.header__phone {
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-size: 25px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  color: #242424;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.header__phone:hover {
  color: rgba(81, 134, 74, 0.8);
}
@media (max-width: 991px) {
  .header__phone {
    font-size: 20px;
  }
}

.menu__icon {
  display: none;
  color: #303030;
}
@media (max-width: 992px) {
  .menu__icon {
    display: block;
    position: absolute;
    top: 30px;
    right: 10px;
    width: 30px;
    height: 18px;
    z-index: 101;
    cursor: pointer;
  }
  .menu__icon span {
    background-color: #303030;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 100%;
    height: 2px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .menu__icon span:first-child {
    top: 0;
  }
  .menu__icon span:last-child {
    top: auto;
    bottom: 0;
  }
  .menu__icon.active span {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  .menu__icon.active span:first-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
  }
  .menu__icon.active span:last-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
  }
}
@media (max-width: 768px) {
  .menu__icon {
    top: 25px;
  }
}
.menu__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 63px;
  border-top: 1px solid #367288;
  border-bottom: 1px solid #367288;
  -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: 991px) {
  .menu__body {
    position: absolute;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 65%;
    background-color: rgba(0, 0, 0, 0.8);
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
}
.menu__body.active {
  left: 0;
}
.menu__list {
  list-style-type: none;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 30px;
    gap: 0;
    height: 100%;
    width: 100%;
    background: #f1f2f8;
    overflow: auto;
  }
}
@media (max-width: 991px) {
  .menu__item {
    margin-bottom: 20px;
  }
}
.menu__item-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.menu__item-home::before {
  content: url("../img/home.svg");
  width: 14px;
  height: 14px;
  margin-bottom: 4px;
}
@media (max-width: 991px) {
  .menu__item-home {
    display: block;
  }
  .menu__item-home::before {
    display: none;
  }
}
.menu__item-hidden {
  display: none;
}
@media (max-width: 991px) {
  .menu__item-hidden {
    display: block;
  }
}
.menu__link {
  font-family: Manrope;
  font-weight: 700;
  font-size: 17px;
  line-height: 17px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
  color: #303030;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.menu__link:hover {
  color: rgba(81, 134, 74, 0.8);
}
@media (max-width: 991px) {
  .menu__link {
    display: block;
    font-size: 20px;
    line-height: 22px;
    text-align: left !important;
  }
}

@media (max-width: 992px) {
  .header__social {
    display: none;
  }
}
.hero__container {
  position: relative;
  padding-top: 209px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 50px;
}
.hero__right {
  position: absolute;
  right: -50px;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  width: 960px;
  height: 540px;
}
.hero__blog {
  width: 100%;
  min-height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hero__title {
  margin: 0;
  max-width: 408px;
  font-family: Manrope;
  font-weight: 800;
  font-size: 46px;
  line-height: 121%;
  letter-spacing: 2%;
  vertical-align: middle;
  text-transform: uppercase;
  color: #4A4A4A;
  margin-bottom: 40px;
}
.hero__subtitle {
  margin: 0;
  max-width: 481px;
  font-family: Manrope;
  font-weight: 500;
  font-size: 24px;
  line-height: 121%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 70px;
}
.hero__btn {
  width: 311px;
  height: 50px;
  background: #f1f2f8;
  border-radius: 15px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-family: Manrope;
  font-weight: 500;
  font-size: 25px;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  color: #000;
  margin-bottom: 50px;
}
.hero .whatsapp-button {
  position: fixed;
  right: -15px;
  bottom: 20px;
  z-index: 9999;
  border-radius: 50%;
  width: 55px; /* ширина кнопки */
  height: 55px; /* высота кнопки */
  font-size: 35px; /* размер иконки */
  line-height: 53px; /* центровка иконки в кнопке */
  text-align: center;
  color: #fff;
  background: #25D366; /* цвет кнопки */
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.hero .whatsapp-button a {
  color: #fff;
}
.hero .whatsapp-button::before,
.hero .whatsapp-button::after {
  content: " ";
  position: absolute;
  inset: -20px;
  display: block;
  border: 50%;
  border: 1px solid #25D366; /* цвет анимированных волн от кнопки */
  border-radius: 50%;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: animate 1.5s linear infinite;
  animation: animate 1.5s linear infinite;
}
.hero .whatsapp-button::after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@-webkit-keyframes animate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes animate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@media (max-width: 1250px) {
  .hero__container {
    padding-top: 209px;
  }
  .hero__right {
    width: 600px;
    height: 400px;
  }
}
@media (max-width: 992px) {
  .hero__title {
    max-width: 500px;
    font-size: 36px;
    line-height: 121%;
  }
  .hero__subtitle {
    font-size: 20px;
  }
  .hero__right {
    width: 500px;
    height: 350px;
  }
}
@media (max-width: 768px) {
  .hero__container {
    padding: 150px 15px 200px 15px;
  }
  .hero__right {
    left: 20px;
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    margin-bottom: 30px;
  }
  .hero__btn {
    width: 211px;
    height: 40px;
    font-size: 20px;
    line-height: 150%;
  }
}
@media (max-width: 400px) {
  .hero__right {
    left: -10px;
    width: 100%;
    height: 200px;
  }
}
.hero-blog__title {
  margin: 0 auto;
  padding: 150px 0px 50px 0px;
  max-width: 800px;
  font-family: AndadaPro;
  font-weight: 400;
  font-size: 70px;
  line-height: 80%;
  letter-spacing: 0%;
  text-align: center;
  color: #4a3d52;
}
.hero-blog__blog {
  max-width: 1000px;
  padding: 20px;
}
.hero-blog__banner {
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 15px;
  width: 600px;
  height: 300px;
}

.blog-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .blog-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .blog-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .blog-grid {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
}
.blog-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 20px rgba(107, 91, 115, 0.08);
  box-shadow: 0 4px 20px rgba(107, 91, 115, 0.08);
  -webkit-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(40px) scale(0.95);
  -ms-transform: translateY(40px) scale(0.95);
  transform: translateY(40px) scale(0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.blog-card.visible {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.blog-card:hover {
  -webkit-transform: translateY(-12px) scale(1.02);
  -ms-transform: translateY(-12px) scale(1.02);
  transform: translateY(-12px) scale(1.02);
  -webkit-box-shadow: 0 20px 40px rgba(107, 91, 115, 0.15);
  box-shadow: 0 20px 40px rgba(107, 91, 115, 0.15);
}

.card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #f8f5f2, #ede7e0, #e8ddd4);
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.card-image:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
}

.card-content {
  padding: 30px 25px;
}

.card-title {
  font-size: 1.25em;
  font-weight: 600;
  color: #4a3d52;
  margin-bottom: 15px;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.card-excerpt {
  color: #7a6b7f;
  font-size: 0.95em;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 400;
}

.card-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.8em;
  color: #a69aab;
  margin-bottom: 20px;
  font-weight: 500;
}

.read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #8b7694;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.read-more:hover {
  color: #6b5273;
  -webkit-transform: translateX(2px);
  -ms-transform: translateX(2px);
  transform: translateX(2px);
}

.read-more::after {
  content: "→";
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  font-weight: 400;
}

.read-more:hover::after {
  -webkit-transform: translateX(6px);
  -ms-transform: translateX(6px);
  transform: translateX(6px);
}

.loading-more {
  text-align: center;
  padding: 60px 20px;
  color: #a69aab;
  font-size: 0.95em;
  font-style: italic;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.loading-more.show {
  opacity: 1;
}

.end-message {
  text-align: center;
  padding: 40px 20px;
  color: #8b7694;
  font-size: 0.9em;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.end-message.show {
  opacity: 1;
}

@-webkit-keyframes gentlePulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes gentlePulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.loading-more.show::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  margin-left: 8px;
  -webkit-animation: gentlePulse 1.5s infinite;
  animation: gentlePulse 1.5s infinite;
}

.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 150px 20px;
}

.header-blog {
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.6) !important;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.site-title {
  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;
  gap: 10px;
  font-size: 24px;
  color: #8b7b8b;
  margin-bottom: 5px;
  font-weight: 300;
  font-style: italic;
}
.site-title span {
  margin-top: 10px;
}

.subtitle {
  color: #a39ca3;
  font-size: 18px;
  line-height: 90%;
  font-style: italic;
}

.article {
  background: rgba(255, 255, 255, 0.8);
  padding: 50px;
  border-radius: 25px;
  -webkit-box-shadow: 0 20px 40px rgba(139, 123, 139, 0.1);
  box-shadow: 0 20px 40px rgba(139, 123, 139, 0.1);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  margin-bottom: 40px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.article:hover {
  -webkit-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 30px 60px rgba(139, 123, 139, 0.15);
  box-shadow: 0 30px 60px rgba(139, 123, 139, 0.15);
}

.article-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8d8e8;
}

.author {
  color: #9d8f9d;
  font-size: 0.95em;
  font-weight: 500;
}

.date {
  color: #b5aab5;
  font-size: 0.9em;
}

.article-title {
  font-size: 2.2em;
  color: #7a6b7a;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.3;
}

.article-content {
  font-size: 1.1em;
  line-height: 1.8;
  color: #6b6b6b;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content p:first-of-type::first-letter {
  font-size: 4em;
  float: left;
  line-height: 0.8;
  margin: 8px 12px 0 0;
  color: #a39ca3;
  font-weight: bold;
}

.quote {
  border-left: 4px solid #d4c4d4;
  padding: 20px 30px;
  margin: 30px 0;
  background: rgba(212, 196, 212, 0.1);
  border-radius: 0 15px 15px 0;
  font-style: italic;
  color: #8b7b8b;
}


.reading-controls {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 15px;
  -webkit-box-shadow: 0 10px 25px rgba(139, 123, 139, 0.2);
  box-shadow: 0 10px 25px rgba(139, 123, 139, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 100;
}

.font-size-btn {
  background: none;
  border: 2px solid #d4c4d4;
  color: #8b7b8b;
  padding: 8px 12px;
  margin: 0 3px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.font-size-btn:hover {
  background: #d4c4d4;
  color: white;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#d4c4d4), to(#a39ca3));
  background: linear-gradient(90deg, #d4c4d4, #a39ca3);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  z-index: 1000;
}

@media (max-width: 992px) {
  .content-blog {
    padding: 20px 15px;
  }
  .article {
    padding: 30px 25px;
  }
  .article-title {
    font-size: 1.4em;
  }
  .reading-controls {
    width: 100%;
    top: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .font-size-btn {
    font-size: 14px;
  }
}
.fade-in {
  -webkit-animation: fadeIn 1s ease-in;
  animation: fadeIn 1s ease-in;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.services__card {
  height: 430px;
}
.services__card-content {
  padding: 10px 25px;
}
.services__title {
  padding: 30px 0px 40px 0px;
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-size: 40px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #594E42;
}
.services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  gap: 30px;
  margin-bottom: 50px;
}
.services__item {
  position: relative;
  border-radius: 15px;
  width: 308px;
  min-height: 441px;
}
.services__img {
  border-radius: 15px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  width: 308px;
  max-height: 244px;
  -o-object-fit: cover;
  object-fit: cover;
}
.services__text {
  margin: 0;
  font-family: FiraSans;
  font-weight: 500;
  font-size: 26px;
  color: #594E42;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: bottom;
  padding: 20px 0px;
}
.services__text-blog {
  text-align: left;
  padding-bottom: 80px;
}
.services__descr {
  margin: 0;
  font-family: FiraSans;
  font-weight: 400;
  font-size: 16px;
  color: #594E42;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: bottom;
  margin-bottom: 60px;
}
.services__descr-blog {
  position: absolute;
  bottom: 0px;
  left: 0;
}
.services__btn {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  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;
  width: 261px;
  height: 40px;
  border-radius: 15px;
  border: 2px solid rgba(89, 78, 66, 0.6);
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-family: FiraSans;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  color: #594E42;
}

@media (max-width: 768px) {
  .services__container {
    padding-bottom: 10px;
  }
  .services__item {
    width: 160px;
    min-height: 300px;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .services__item-blog {
    min-height: 250px;
  }
  .services__img {
    width: 160px;
    height: 110px;
  }
  .services__text {
    font-size: 18px;
    line-height: 18px;
    padding: 10px 0px;
  }
  .services__descr {
    font-size: 14px;
    color: #594E42;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
    margin-bottom: 20px;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .services__btn {
    border: none;
    width: 160px;
    height: 40px;
    font-size: 20px;
    line-height: 120%;
  }
}
@media (max-width: 400px) {
  .services__item {
    width: 150px;
    min-height: 290px;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .services__item-blog {
    min-height: 250px;
  }
  .services__img {
    width: 160px;
    height: 100px;
  }
  .services__text {
    font-size: 18px;
    line-height: 18px;
    padding: 10px 0px;
  }
  .services__descr {
    font-size: 14px;
    color: #594E42;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
    margin-bottom: 20px;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .services__btn {
    border: none;
    width: 160px;
    height: 40px;
    font-size: 20px;
    line-height: 120%;
  }
}
.about__container {
  margin: 0 auto;
  max-width: 1250px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
}
.about__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.about__left {
  position: relative;
  width: 500px;
  height: 450px;
}
.about__right {
  max-width: 700px;
  padding-top: 20px;
}
.about__background-video {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 500px;
  height: 500px;
}
.about__title {
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-size: 30px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #594E42;
  margin-bottom: 20px;
}
.about__subtitle {
  margin: 0;
  font-family: AndadaPro;
  font-weight: 400;
  font-size: 60px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #9F5C0F;
  text-align: center;
}
.about__item {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about__item::before {
  content: url("../img/check.png");
  width: 25px;
  height: 25px;
}
.about__descr {
  margin: 0;
  font-family: FiraSans;
  font-weight: 400;
  font-size: 18px;
  color: #594E42;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: left;
  margin-bottom: 5px;
}

@media (max-width: 1300px) {
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
  }
  .about__title-box {
    display: block;
  }
  .about__title {
    text-align: left;
    padding-left: 20px;
    margin-bottom: 0;
  }
  .about__right {
    max-width: 1000px;
    height: auto;
  }
  .about__left {
    height: 400px;
  }
  .about__background-video {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .about__title-box {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .about__left {
    width: 350px;
    height: 250px;
  }
  .about__background-video {
    height: 250px;
    width: 350px;
  }
}
.exposition__container {
  margin: 0 auto;
  padding-bottom: 30px;
}
.exposition__title {
  margin: 0;
  padding: 60px 0px 30px 0px;
  font-family: Manrope;
  font-weight: 700;
  font-size: 50px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #5C5C5C;
}
.exposition .swiper-button-prev {
  position: absolute;
  top: 395px;
  left: 43%;
  width: 46px;
  height: 46px;
  background-image: url("../img/prev.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  line-height: 60px;
  z-index: 100 !important;
}
.exposition .swiper-button-prev::after {
  display: none;
}
.exposition .swiper-button-next {
  position: absolute;
  top: 395px;
  right: 43%;
  width: 46px;
  height: 46px;
  background-image: url("../img/next.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  line-height: 60px;
  z-index: 100 !important;
}
.exposition .swiper-button-next::after {
  display: none;
}
.exposition .swiper {
  position: relative;
  width: 1322px;
  height: 420px;
}
.exposition .swiper > .swiper-slide__content {
  position: absolute;
  top: 0;
}
.exposition .swiper-slide {
  height: 320px;
  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: all 200ms linear;
  transition: all 200ms linear;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.exposition .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.exposition .swiper-img {
  border-radius: 20px;
  width: 500px;
  height: 320px;
}

@media (max-width: 1500px) {
  .swiper {
    width: 900px !important;
    height: 380px !important;
  }
  .swiper-slide {
    height: 280px !important;
  }
  .swiper-img {
    width: 350px !important;
    height: 280px !important;
  }
  .swiper-button-prev {
    position: absolute;
    top: 355px !important;
    left: 40% !important;
  }
  .swiper-button-next {
    position: absolute;
    top: 355px !important;
    right: 40% !important;
  }
}
@media (max-width: 991px) {
  .exposition__title {
    padding: 10px 0px 30px 0px;
    font-size: 36px;
    line-height: 121%;
  }
  .swiper {
    width: 700px !important;
    height: 280px !important;
  }
  .swiper-slide {
    height: 200px !important;
  }
  .swiper-img {
    width: 250px !important;
    height: 200px !important;
  }
  .swiper-button-prev {
    position: absolute;
    border-radius: 100%;
    width: 36px !important;
    height: 36px !important;
    top: 265px !important;
    left: 40% !important;
  }
  .swiper-button-next {
    border-radius: 100%;
    width: 36px !important;
    height: 36px !important;
    top: 265px !important;
    right: 40% !important;
  }
}
@media (max-width: 768px) {
  .swiper {
    width: 400px !important;
    height: 180px !important;
    overflow: hidden;
  }
  .swiper-slide {
    height: 130px !important;
  }
  .swiper-img {
    width: 130px !important;
    height: 130px !important;
  }
  .swiper-button-prev {
    position: absolute;
    top: 165px !important;
    left: 30% !important;
  }
  .swiper-button-next {
    position: absolute;
    top: 165px !important;
    right: 30% !important;
  }
}
@media (max-width: 400px) {
  .swiper {
    width: 370px !important;
  }
  .swiper-slide {
    height: 100px !important;
  }
  .swiper-img {
    width: 120px !important;
    height: 100px !important;
  }
}
.calculation__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
}
.calculation__title {
  margin: 0;
  font-family: Manrope;
  font-weight: 600;
  font-size: 53px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: right;
  vertical-align: middle;
  color: #594E42;
  margin-bottom: 35px;
}
.calculation__left {
  width: 750px;
  height: 600px;
}
.calculation__box {
  width: 480px;
}
.calculation__inp {
  border: 2px solid rgba(22, 22, 22, 0.5019607843);
  padding: 0px 32px;
  border-radius: 30px;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
}
.calculation__inp::-webkit-input-placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.calculation__inp::-moz-placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.calculation__inp:-ms-input-placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.calculation__inp::-ms-input-placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.calculation__inp::placeholder {
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
}
.calculation__btn {
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  box-shadow: 0px 0px 10px 2px rgba(255, 255, 255, 0.2509803922);
  border-radius: 20px;
  margin-top: 10px;
  width: 100%;
  height: 65px;
  background: rgba(81, 134, 74, 0.8);
  font-family: FiraSans;
  font-weight: 500;
  font-size: 30px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
  -webkit-transition: 0.6s ease-in-out;
  transition: 0.6s ease-in-out;
}
.calculation__btn:hover {
  color: #0F0F0E;
  background-color: #fff;
}
.calculation__text {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.calculation__bootom {
  margin: 0;
  font-family: FiraSans;
  font-weight: 400;
  font-size: 14px;
  line-height: 90%;
  letter-spacing: 0%;
  color: #594E42;
}
.calculation__bootom span {
  color: rgba(81, 134, 74, 0.8);
  cursor: pointer;
}
.calculation input[type=checkbox] {
  accent-color: rgba(81, 134, 74, 0.8);
  width: 40px;
  height: 40px;
}
.calculation__agree {
  margin-left: 80px;
  max-width: 400px;
  font-family: Rubik;
  font-weight: 400;
  font-size: 14px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: center;
}
.calculation__text-bottom {
  margin: 0;
  font-family: Rubik;
  font-weight: 400;
  font-size: 18px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #0F0F0E;
  margin-bottom: 10px;
}
.calculation .control-file {
  width: 100%;
  position: relative;
  margin: 0;
  text-align: center;
}
.calculation #fileFF {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
}
.calculation .input__file-icon-wrapper {
  height: 50px;
  width: 60px;
  margin-right: 5px;
  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;
  border-right: 1px solid #fff;
}
.calculation .input__file-button-text {
  line-height: 1;
  margin-top: 1px;
}
.calculation .input__file-button {
  border: 2px solid rgba(22, 22, 22, 0.5019607843);
  padding: 0px 20px;
  border-radius: 30px;
  width: 100%;
  height: 50px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-family: FiraSans;
  font-weight: 400;
  font-size: 22px;
  line-height: 90%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
  cursor: pointer;
  margin-bottom: 10px;
}

@media (max-width: 1300px) {
  .calculation__left {
    margin-top: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    width: 450px;
    height: 400px;
  }
}
@media (max-width: 992px) {
  .calculation__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .calculation__left {
    margin-top: 0;
  }
  .calculation__title {
    text-align: center;
    font-size: 35px;
    line-height: 90%;
  }
  .calculation__box {
    width: 400px;
  }
  .calculation__btn {
    height: 50px;
  }
}
@media (max-width: 768px) {
  .calculation__container {
    background-image: none !important;
  }
  .calculation__box {
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .calculation__left {
    width: 300px;
    height: 270px;
  }
  .calculation__box {
    width: 300px;
  }
  .calculation__inp {
    height: 40px;
    margin-bottom: 10px;
  }
  .calculation__inp::-webkit-input-placeholder {
    font-family: FiraSans;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #594E42;
  }
  .calculation__inp::-moz-placeholder {
    font-family: FiraSans;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #594E42;
  }
  .calculation__inp:-ms-input-placeholder {
    font-family: FiraSans;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #594E42;
  }
  .calculation__inp::-ms-input-placeholder {
    font-family: FiraSans;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #594E42;
  }
  .calculation__inp::placeholder {
    font-family: FiraSans;
    font-weight: 400;
    font-size: 16px;
    line-height: 90%;
    letter-spacing: 0%;
    text-align: justify;
    vertical-align: middle;
    color: #594E42;
  }
  .input__file-button {
    font-size: 16px !important;
  }
  .calculation__btn {
    text-transform: uppercase;
    font-size: 16px;
    height: 40px;
  }
}
.ed__title {
  margin: 0;
  padding: 60px 0px 30px 0px;
  font-family: Manrope;
  font-weight: 700;
  font-size: 55px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #594E42;
}
.ed .wrap {
  max-width: 100%;
  margin: auto;
  padding: 20px;
}
.ed .items-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  gap: 20px;
}
.ed .items-wrap:before,
.ed .items-wrap:after {
  content: "";
  height: 100%;
  top: 0;
  width: 10%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.ed .items-wrap:before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}
.ed .items-wrap:after {
  right: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.ed .items {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  min-width: 100%;
}
.ed .item {
  background: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 200px;
  min-height: 100px;
  counter-increment: item;
  border-radius: 6px;
  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;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  margin: 10px 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.ed .item:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.ed .marquee {
  -webkit-animation: scroll 20s linear infinite;
  animation: scroll 20s linear infinite;
}
.ed .reverce {
  animation-direction: reverse;
}
.ed .items-wrap:hover .marquee {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.ed .perfscan {
  margin: 20px 0;
  text-align: center;
  bottom: 0;
  background: #fff;
  padding: 5px;
}
.ed .perfscan hr {
  border: solid #999;
  border-width: 1px 0 0 0;
  max-width: 50%;
  margin: 0 auto 20px;
}
.ed .perfscan a {
  color: #000;
  font-weight: bold;
}
@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
    transform: translateX(calc(-100% - 20px));
  }
}
@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(calc(-100% - 20px));
    transform: translateX(calc(-100% - 20px));
  }
}

@media (max-width: 992px) {
  .ed__title {
    font-size: 36px;
    padding: 30px 0px 30px 0px;
  }
}
@media (max-width: 768px) {
  .ed__container {
    padding: 0;
  }
  .wrap {
    padding: 10px;
  }
  .items-wrap {
    gap: 10px;
  }
  .item {
    width: 100px;
    height: 50px;
  }
}
.advantages__title {
  margin: 0;
  padding: 80px 0px 20px 0px;
  font-family: Manrope;
  font-weight: 700;
  font-size: 50px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: middle;
  color: #594E42;
}
.advantages__list {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px;
}
.advantages__item {
  width: 400px;
  height: 372px;
}
.advantages__img {
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 20px;
  width: 100%;
  height: 254px;
}
.advantages__text {
  margin: 0;
  padding: 10px 0px;
  font-family: Manrope;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: -2%;
  vertical-align: middle;
  color: #594E42;
}
.advantages__descr {
  margin: 0;
  font-family: FiraSans;
  font-weight: 400;
  font-size: 20px;
  line-height: 121%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #594E42;
}

@media (max-width: 992px) {
  .advantages__title {
    padding: 60px 0px 40px 0px;
    font-family: Manrope;
    font-weight: 700;
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .advantages__title {
    text-align: center;
    line-height: 100%;
  }
  .advantages__item {
    width: 350px;
    height: auto;
  }
  .advantages__img {
    width: 100%;
    height: 200px;
  }
  .advantages__text {
    font-size: 20px;
  }
  .advantages__descr {
    font-size: 16px;
  }
}
.contacts {
  padding-bottom: 100px;
}
.contacts__title {
  margin: 0;
  padding: 80px 0px 30px 0px;
  font-family: Alegreya;
  font-weight: 400;
  font-size: 56.88px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: left;
  vertical-align: middle;
  color: #594E42;
}
.contacts__inner {
  margin: 0 auto;
  max-width: 1007px;
}
.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.contacts__text {
  margin: 0;
  font-family: Manrope;
  font-weight: 500;
  font-size: 24.82px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  color: rgba(89, 78, 66, 0.8);
  margin-bottom: 16px;
}
.contacts__link {
  font-family: Manrope;
  font-weight: 500;
  font-size: 24.82px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #594E42;
  margin-bottom: 5px;
}
.contacts__social {
  gap: 24px;
}

.blog__title {
  padding: 30px 0px 40px 0px;
  margin: 0;
  font-family: Manrope;
  font-weight: 700;
  font-size: 40px;
  line-height: 121%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #594E42;
}
.blog__more {
  margin: 0 auto;
  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;
  width: 261px;
  height: 40px;
  background: #f1f2f8;
  border-radius: 15px;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.2509803922);
  font-family: FiraSans;
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 2%;
  text-align: center;
  vertical-align: middle;
  color: #594E42;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2509803922);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2509803922);
}

@media (max-width: 768px) {
  .blog__container {
    padding-bottom: 10px;
  }
  .blog__item {
    width: 160px;
    min-height: 341px;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .blog__item-blog {
    min-height: 250px;
  }
  .blog__img {
    width: 160px;
    height: 100px;
  }
  .blog__text {
    font-size: 18px;
    line-height: 18px;
    padding: 10px 0px;
  }
  .blog__descr {
    font-size: 14px;
    color: #594E42;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: bottom;
    margin-bottom: 20px;
    word-break: break-word;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .blog__btn {
    border: none;
    width: 160px;
    height: 40px;
    font-size: 20px;
    line-height: 120%;
  }
}
.footer__container {
  background: #f1f2f8;
  color: #594E42;
}
.footer__blog {
  background: #f1f2f8;
  -webkit-box-shadow: -2px 1px 8px 0px rgba(34, 60, 80, 0.2);
  box-shadow: -2px 1px 8px 0px rgba(34, 60, 80, 0.2);
}
.footer__inner {
  margin: 0 auto;
  max-width: 1440px;
  position: relative;
  padding: 30px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 140px;
}
.footer__nav {
  padding: 20px 15px 0px 15px;
  color: #fff;
}
.footer__logo {
  -o-object-fit: contain;
  object-fit: contain;
  width: 140px;
  height: 47px;
  color: #fff;
}
.footer__logo-text {
  margin: 0;
  min-width: 120px;
  font-family: Pacifico;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
}
.footer__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.footer__item {
  max-width: 208px;
}
.footer__link {
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-family: Alegreya;
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0%;
  margin-bottom: 5px;
  color: #594E42;
}
.footer__copyright {
  position: absolute;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: justify;
  vertical-align: middle;
  color: #594E42;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 10px;
}
.footer__copyright span {
  font-weight: 500;
}
.footer__copyright-blog {
  color: #594E42;
}
.footer__confidentiality {
  margin: 0;
  text-transform: uppercase;
  font-family: Alegreya;
  font-weight: 400;
  font-size: 20px;
  color: #594E42;
  line-height: 22px;
  letter-spacing: 0%;
  margin-bottom: 5px;
  cursor: pointer;
}

@media (max-width: 992px) {
  .footer__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
  .footer__logo-link {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  .footer__copyright {
    position: static;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  .footer__container {
    padding-bottom: 10px;
  }
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}/*# sourceMappingURL=main.css.map */
.hidden-fields-container, .wpcf7-not-valid-tip, .screen-reader-response{
	display: none;
}

.wpcf7-list-item input{
  max-width: 25.19px;
  max-height: 40px;
}
.form-group p, .modal__form p{
  margin: 0px!important;
}

.calculation__btn  {
	    border-color: #ffffff00!important;
}

