/*============= ALIGNES ===============*/
.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
  }
}
/* =========== BASE CONFIG =========== */
:root {
  --White: #FFF;
  /* --Backgorund: #EDDEC7; */
    --Backgorund: #eee5d8;
  --Black: #4A535A ;
  --Grey: #9A9089;
  /* --Green-light: #eee5d8; */
  --Green-light: #EDDEC7;
  --Primary: #4A535A;
  --Secondary: #898079;
}

html {
  box-sizing: border-box;
}

#header .callback-btn{
  cursor: pointer;
  color: var(--Primary, #727958);
}

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  box-sizing: inherit;
}

.simplebar-content > *:first-child {
  margin-top: 0;
}
.simplebar-content > *:last-child {
  margin-bottom: 0;
}

.simple-scroll-block {
  padding-right: 45px;
}

/**
  * Reinstate scrolling for non-JS clients
  */
.simplebar-content-wrapper {
  scrollbar-width: auto;
  -ms-overflow-style: auto;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: initial;
  width: initial;
  height: initial;
}

.simplebar-track.simplebar-vertical {
  width: 6px;
}

.simplebar-scrollbar::before {
  background-color: var(--Primary);
}

body {
  background-color: var(--Backgorund);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}
ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.breadcrumbs {
  padding: 20px 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #DFDFDF;
}
.breadcrumbs span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.breadcrumbs span.current-item {
  color: #121212;
}

.container-wide {
  max-width: 1750px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

span {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

h1 {
  color: var(--Head, #231F20);
  font-family: "Lora", sans-serif;
  font-size: calc(0.005 * 100vw + 46.4px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
h1.page-title {
  margin-bottom: 40px;
}

h2 {
  color: var(--Head, #231F20);
  font-family: "Lora", sans-serif;
  font-size: calc(0.0075 * 100vw + 33.6px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
h2.block-title {
  margin-bottom: 60px;
}

h3 {
  color: var(--Head, #231F20);
  font-family: "Lora", sans-serif;
  font-size: calc(0.0075 * 100vw + 21.6px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.p1 {
  color: var(--Main-text, #444041);
  font-size: calc(0.0075 * 100vw + 21.6px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.p2 {
  color: var(--Main-text, #444041);
  font-size: calc(0.0025 * 100vw + 19.2px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.p3 {
  color: var(--Main-text, #444041);
  font-size: calc(0.0025 * 100vw + 15.2px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.p4 {
  color: var(--Main-text, #444041);
  font-size: calc(0.00125 * 100vw + 13.6px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.btn {
  cursor: pointer;
  display: flex;
  width: 410px;
  height: 80px;
  padding: 26px 30px 25px 70px;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-radius: 100px;
  background: var(--Primary, #727958);
  border: none;
  color: var(--White, #FFF);
  font-size: calc(0.0025 * 100vw + 19.2px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.15s ease-in, background-color 0.15s ease-in;
}
.btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: rotate 0.15s ease-in;
}
.btn svg path {
  stroke: var(--White);
  transition: stroke 0.15s ease-in;
}
.btn:hover {
  background-color: var(--Secondary);
}
.btn:hover svg {
  rotate: 45deg;
}
.btn-mini {
  display: inline-flex;
  padding: 10px 30px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  background-color: var(--Primary, #727958);
  white-space: nowrap;
  color: var(--White, #FFF);
  font-size: calc(0.0025 * 100vw + 19.2px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: background-color 0.15s ease-in;
}
.btn-mini:hover {
  background-color: var(--Secondary, #262F06);
}

.input {
  display: flex;
  width: 410px;
  height: 80px;
  padding: 0 40px;
  align-items: center;
  border-radius: 120px;
  border: 1px solid var(--Green-light, #E8ECDB);
  background: var(--White, #FFF);
  color: var(--Secondary, #262F06);
  font-size: calc(0.00125 * 100vw + 13.6px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: border-color 0.15s ease-in, color 0.15s ease-in;
}
.input:hover, .input:focus-visible {
  border-color: var(--Black);
  color: var(--Black, #3D3D3D);
}
.input.error {
  border-color: #FF1717;
  color: #FF1717;
}

.swiper-slide * {
  box-sizing: border-box;
}
.swiper-additionals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}
.swiper-pagination {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  right: 0 !important;
  width: fit-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.swiper-pagination-bullet {
  width: 20px !important;
  height: 6px !important;
  margin: 0 !important;
  opacity: 1 !important;
  background-color: var(--Green-light) !important;
  border-radius: 3px !important;
  transition: background-color 0.15s ease-in, border-color 0.15s ease-in, width 0.15s ease-in;
}
.swiper-pagination-bullet-active {
  width: 50px !important;
  background-color: var(--Primary) !important;
}
.swiper-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
.swiper-btn-prev {
  scale: -1;
}
.swiper-btn-prev, .swiper-btn-next {
  cursor: pointer;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--Primary);
  transition: background-color 0.15s ease-in;
}
.swiper-btn-prev:hover, .swiper-btn-next:hover {
  background-color: var(--Secondary);
}
.swiper-btn-prev svg path, .swiper-btn-next svg path {
  stroke: var(--White);
  transition: stroke 0.15s ease-in;
}

.phone,
.email {
  white-space: nowrap;
}

.text-block {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit; /* 22.4px */
}
.text-block.accent ol {
  counter-reset: num;
}
.text-block.accent ol li {
  position: relative;
  list-style: none;
  padding-left: 47px;
}
.text-block.accent ol li::before {
  content: counter(num);
  counter-increment: num;
  position: absolute;
  left: 0;
  z-index: -1;
  display: flex;
  width: 30px;
  height: 30px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--Accent);
  border-radius: 50%;
  color: var(--Card);
  text-align: center;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: calc(0.00125 * 100vw + 11.6px);
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
}
.text-block p {
  margin-bottom: 25px;
}
.text-block p:last-child {
  margin-bottom: 0;
}
.text-block ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.text-block ul li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit; /* 22.4px */
}
.text-block ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
}
.text-block ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}
.text-block ol li {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit; /* 22.4px */
}
.text-block h2 {
  margin-top: 40px;
  margin-bottom: 35px;
}
.text-block h3 {
  margin-top: 35px;
  margin-bottom: 30px;
}
.text-block h4 {
  margin-top: 30px;
  margin-bottom: 25px;
}
.text-block h5 {
  margin-top: 25px;
  margin-bottom: 20px;
}
.text-block h6 {
  margin-top: 20px;
  margin-bottom: 15px;
}

.block-margin {
  margin-bottom: 100px;
}
.block-padding {
  padding: 60px 0 100px 0;
  border-radius: 70px;
}

#main,
#primary {
  min-height: 83vh;
}

/*====== NAVIGATION ===========*/
.navigation.pagination {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  text-align: center;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  text-align: center;
}
.navigation.pagination .page-numbers {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #1C0130;
  margin: 0 10px;
}
.navigation.pagination .page-numbers.current {
  font-weight: 750;
}
.navigation.pagination a.prev {
  margin-right: 100px;
  margin-left: -100px;
}
.navigation.pagination a.next {
  margin-right: -100px;
  margin-left: 100px;
}

/*============ HEADER =================*/
#header {
  margin-bottom: 30px;
	position: sticky;
	top: 0;
	z-index: 2000;
}
#header .header__content {
  display: flex;
  padding: 16px 0 18px 0;
  justify-content: center;
  align-items: center;
  border-radius: 70px;
  background: var(--White, #FFF);
	
}
#header .header__content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-shrink: 0;
}
#header .header .logo {
  width: 100px;
  height: 70px;
  flex-shrink: 0;
}
#header .header .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header .header .menuTop {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
#header .header .menuTop li {
  list-style: none;
}
#header .header .menuTop li a {
  color: var(--Black, #3D3D3D);
  font-size: calc(0.00125 * 100vw + 13.6px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: color 0.15s ease-in;
}
#header .header .menuTop li a:hover {
  color: var(--Primary);
}
#header .header .socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
#header .header .socials .social {
  display: flex;
  width: 50px;
  height: 50px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  background: var(--Green-lighjt, #E8ECDB);
  transition: background-color 0.15s ease-in;
}
#header .header .socials .social:hover {
  background: var(--Green-lighjt, #e0e7c8);
}
#header .header .socials .social__icon {
  width: 24px;
  height: 24px;
}
#header .header .socials .social__icon img, #header .header .socials .social__icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#header .header .phone-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: none;
  flex-direction: column;
  background-color: transparent;
  height: 40px;
  width: 40px;
  justify-content: space-evenly;
  align-items: center;
  border-radius: 2px;
  flex-shrink: 0;
}
#header .burger.open_menu span {
  background-color: var(--Primary);
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
  pointer-events: none;
}
#header .burger.open_menu.clicked {
  background-color: var(--Primary);
}
#header .burger.open_menu.clicked span {
  background-color: #fff;
}
#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 320px;
  background-color: #f1f2f3;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 9999;
}
#header #mobile-mnu #close-mnu {
  font-size: 45px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: block;
  color: var(--Primary);
}
#header #mobile-mnu a {
  font-size: 16px;
  line-height: 1;
  color: var(--Black);
  font-weight: 450;
}
#header #mobile-mnu a:hover {
  color: var(--Primary);
}
#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}
#header #mobile-mnu .menuTop {
  list-style-type: none;
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li {
  margin-bottom: 10px;
}
#header #mobile-mnu .menuTop li a {
  font-size: 16px;
  line-height: 1;
  color: var(--Black);
  font-weight: 450;
}
#header #mobile-mnu .menuTop li a:hover {
  color: var(--Primary);
}
#header #mobile-mnu .menuTop li.active a {
  color: var(--Primary);
}
#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  width: 100%;
}
#header #mobile-mnu .adresses__holder:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: var(--Black);
  font-weight: 450;
}
#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--Black);
  font-weight: 450;
}
#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--Primary);
}
#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .email__holder .email__item svg path {
  stroke: var(--Primary);
}
#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
}
#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--Black);
  font-weight: 450;
}
#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--Primary);
}
#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}
#header #mobile-mnu .phones__holder .phone__item svg path {
  stroke: var(--Primary);
}
#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}
#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--Green-light);
  transition: background-color 0.3s ease-in;
}
#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: var(--Primary);
}
#header #mobile-mnu.opened {
  transform: translateX(0);
}

/*============ FOOTER ===============*/
#footer .footer {
  padding: 30px 0;
  border-radius: 70px 70px 0px 0px;
  border-top: 1px solid var(--White, #FFF);
  background: var(--White, #FFF);
}
#footer .footer-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
#footer .footer__policy {
  color: var(--Black, #3D3D3D);
  font-size: calc(0.00125 * 100vw + 11.6px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
  text-decoration-line: underline;
  transition: color 0.15s ease-in;
}
#footer .footer__policy:hover {
  color: var(--Primary);
}
#footer .footer__grampus {
  display: flex;
  gap: 14px;
  color: var(--Black, #3D3D3D);
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: calc(0.00125 * 100vw + 11.6px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}
#footer .footer__additional-text {
  color: var(--Black, #3D3D3D);
  text-align: right;
  font-size: calc(0.00125 * 100vw + 11.6px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 19.6px */
}

/* ============== MODAL ============= */
.wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .ajax-loader {
  display: none;
}
.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  width: 503px;
  height: fit-content;
  max-height: 90vh;
  max-width: 90vw;
  background-color: var(--White);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  pointer-events: none;
  transition: transform 0.3s ease-in;
  z-index: 99999;
  border-radius: 60px;
  padding: 80px 15px 50px 15px;
}
.theme-modal.modal-open {
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.theme-modal__title {
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}
.theme-modal__subtitle {
  margin-bottom: 50px;
  color: var(--Black, #3D3D3D);
  text-align: center;
}
.theme-modal#modal-success, .theme-modal#modal-error {
  width: 711px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-modal .close-modal {
  position: absolute;
  right: 40px;
  top: 50px;
  cursor: pointer;
}
.theme-modal .close-modal svg{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.theme-modal .form {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.theme-modal .form__title {
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}
.theme-modal .form__subtitle {
  max-width: 392px;
  color: var(--Black, #3D3D3D);
  text-align: center;
}
.theme-modal .form__inputs {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.theme-modal .form .policy {
  max-width: 430px;
  margin-bottom: 15px;
  text-align: center;
}
.theme-modal .form .policy a {
  color: var(--Primary);
}

/*SERVICE-CARD*/
.service-card {
  overflow: hidden;
  position: relative;
  min-height: 513px;
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-radius: 70px;
  z-index: 1;
}
.service-card:hover .service-card__title {
  background-color: var(--White);
  color: var(--Primary, #727958);
}
.service-card:hover .service-card__thumbnail::before {
  opacity: 0;
}
.service-card:hover .service-card__readmore {
  opacity: 1;
}
.service-card__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.service-card__thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
  transition: opacity 0.15s ease-in;
}
.service-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__title {
  width: fit-content;
  padding: 30px 70px;
  margin: auto 60px 70px 60px;
  border-radius: 70px;
  color: var(--White, #FFF);
  transition: color 0.15s ease-in, background-color 0.15s ease-in;
}
.service-card__readmore {
  width: 260px;
  height: 255px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-right: 20px;
  margin-left: auto;
  border-radius: 70px;
  background: var(--Green-lighjt, #E8ECDB);
  opacity: 0;
  color: var(--Black, #3D3D3D);
  text-align: center;
  transition: opacity 0.15s ease-in;
}

/*STOCK-CARD*/
.stock-card {
  display: flex;
  border-radius: 70px;
  background: var(--Green-light, #E8ECDB);
}
.stock-card__content {
  display: flex;
  flex-direction: column;
  margin: 60px 0 60px calc((100% - 1290px) / 2);
}
.stock-card__additionel-text {
  margin-bottom: 30px;
  color: var(--Black, #3D3D3D);
}
.stock-card__title {
  margin-bottom: 20px;
  color: var(--Primary, #727958);
}
.stock-card__text {
  color: var(--Primary, #727958);
}
.stock-card__btn {
  margin-top: 40px;
}
.stock-card__thumbnail {
  overflow: hidden;
  width: 715px;
  height: 526px;
  flex-shrink: 0;
  border-radius: 70px;
  margin: 20px 20px 20px 30px;
}
.stock-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-hover {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.15s ease-in;
  z-index: 1;
}
.image-hover::before {
  content: url("../images/hover.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.image-hover:hover {
  opacity: 1;
}

/* ============= MEDIA QUERIES =========== */
@media (max-width: 1720px) {
  #header .header__content-wrapper {
    flex-wrap: wrap;
  }
  #header .header .menuTop {
    order: 4;
    width: 100%;
  }
  #header .header .logo {
    margin-left: 15px;
  }
}
.error-page__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 80px 0;
}
.error-page__number {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  color: var(--Primary, #727958);
  font-family: "Lora", sans-serif;
  font-size: calc(0.1125 * 100vw + 84px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.error-page__number svg {
  aspect-ratio: 220/347;
  width: 100%;
  height: auto;
}
.error-page__title {
  margin-bottom: 20px;
  color: var(--head, #091826);
  text-align: center;
}
.error-page__subtitle {
  max-width: 670px;
  margin-bottom: 45px;
  color: var(--Main-text, #343434);
  text-align: center;
}

@media (max-width: 1440px) {
  .stock-card__content {
    margin-left: 15px;
  }
  .service-card {
    min-height: 350px;
  }
  .service-card__title {
    padding: 15px 35px;
    margin: auto 30px 35px 30px;
  }
  .service-card__readmore {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 1290px) {
  .stock-card__thumbnail {
    width: 40%;
  }
  .swiper-grid>.swiper-wrapper{
    flex-wrap: nowrap !important;
    display: flex !important;
    width: 100%;
  }
  /* #gallery-block .swiper-slide {
    height: 40px;
  } */
}
@media (max-width: 992px) {
  .stock-card {
    padding: 25px;
    flex-direction: column-reverse;
    gap: 30px;
  }
  .stock-card__content {
    margin: 0;
  }
  .stock-card__thumbnail {
    aspect-ratio: 16/5;
    width: 100%;
    height: auto;
    margin: 0;
  }
  .service-card {
    min-height: 350px;
  }
  .service-card__title {
    padding: 15px 35px;
    margin: auto 30px 35px 30px;
  }
  .service-card__readmore {
    width: 150px;
    height: 150px;
    border-radius: 60px;
  }
  .block-margin {
    margin-bottom: 75px;
  }
}
@media (max-width: 769px) {
  #header .phone-wrapper .p2{
    font-size: 16px;
  }
  .theme-modal .close-modal{
    width: 24px;
    height: 24px;
  }
  .text-block p {
    margin-bottom: 15px;
  }
  .error-page__number {
    gap: 15px;
    margin-bottom: 20px;
  }
  .error-page__title {
    margin-bottom: 15px;
  }
  .error-page__subtitle {
    margin-bottom: 25px;
  }
  .theme-modal {
    padding-top: 40px;
    padding-bottom: 20px;
    border-radius: 30px;
  }
  .theme-modal__title {
    margin-bottom: 10px;
  }
  .theme-modal__subtitle {
    margin-bottom: 25px;
  }
  .theme-modal .close-modal {
    top: 15px;
    right: 15px;
  }
  .theme-modal .form__title {
    margin-bottom: 10px;
  }
  .theme-modal .form__inputs {
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 25px;
  }
  #footer .footer {
    padding: 15px 0;
    border-radius: 30px;
  }
  #footer .footer-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .input {
    height: 60px;
    padding: 0 20px;
  }
  .stock-card {
    gap: 20px;
    padding: 20px;
    border-radius: 30px;
  }
  .stock-card__thumbnail {
    border-radius: 30px;
  }
  .stock-card__title {
    margin-bottom: 15px;
  }
  .swiper-btn-prev, .swiper-btn-next {
    width: 35px;
    height: 35px;
  }
  .swiper-btn-prev svg, .swiper-btn-next svg {
    width: 20px;
    height: 20px;
  }
  h2.block-title {
    margin-bottom: 30px;
  }
  .service-card {
    min-height: unset;
    gap: 20px;
  }
  .service-card__title {
    padding: 15px 20px;
    margin: auto 20px 25px 20px;
  }
  .service-card__readmore {
    width: auto;
    height: auto;
    padding: 15px 25px;
  }
  .swiper-additionals {
    margin-top: 20px;
  }
  .block-margin {
    margin-bottom: 50px;
  }
  .block-padding {
    padding: 30px 0 50px 0;
    border-radius: 30px;
  }
  .btn {
    width: 350px;
    height: auto;
    padding: 15px 15px 15px 35px;
  }
  #header .header__content {
    padding: 15px 0;
  }
  #header .header__content-wrapper {
    gap: 15px;
  }
  #header .header .socials .social {
    width: 40px;
    height: 40px;
  }
  #header .header .socials .social__icon {
    width: 20px;
    height: 20px;
  }
  #header .header .phone-wrapper {
    margin-left: auto;
  }
  #header .header .burger {
    display: flex;
  }
  #header .header .menuTop {
    display: none;
  }
}
@media (max-width: 576px) {
  .text-block p {
    margin-bottom: 5px;
  }
  .error-page__number {
    gap: 5px;
    margin-bottom: 10px;
  }
  .error-page__title {
    margin-bottom: 10px;
  }
  .error-page__subtitle {
    margin-bottom: 15px;
  }
  .theme-modal {
    padding-bottom: 15px;
    border-radius: 15px;
  }
  .theme-modal__subtitle {
    margin-bottom: 15px;
  }
  #footer .footer {
    padding: 10px 0;
    border-radius: 15px;
  }
  .input {
    height: 40px;
    padding: 0 15px;
  }
  .swiper-additionals {
    margin-top: 15px;
  }
  .stock-card {
    padding: 15px;
    border-radius: 15px;
  }
  .stock-card__thumbnail {
    border-radius: 15px;
  }
  .stock-card__title {
    margin-bottom: 10px;
  }
  .stock-card__btn {
    margin-top: 15px;
  }
  h2.block-title {
    margin-bottom: 15px;
  }
  .service-card {
    border-radius: 45px;
    gap: 15px;
  }
  .service-card__title {
    width: auto;
    padding: 10px 15px;
    margin: auto 10px 15px 10px;
    text-align: center;
  }
  .service-card__readmore {
    padding: 10px 15px;
  }
  .block-margin {
    margin-bottom: 25px;
  }
  .block-padding {
    padding: 15px 0 25px 0;
    border-radius: 15px;
  }
  .btn {
    width: fit-content;
    height: fit-content;
    padding: 10px 10px 10px 15px;
  }
  .btn svg {
    width: 20px;
    height: 20px;
  }
  #header .header__content {
    padding: 10px 0;
  }
  #header .header__content-wrapper {
    gap: 10px;
  }
  #header .header .socials {
    display: none;
  }
}
@media (max-width: 498px) {
  .input {
    width: 100%;
  }
}
@media (max-width: 375px) {
  #header .header__content {
    border-radius: 35px;
  }
  #header .header .phone-wrapper {
    margin-left: unset;
    margin-right: auto;
  }
  #header .header .logo {
    width: 100%;
    margin-left: 0px;
  }
  
}

.swiper-button-disabled{
  pointer-events: none;
  opacity: 0.5;
}

/* ДОРАБОТКИ */

.grampus-cookie-notice {
    display: none;
    position: sticky;
    bottom: 0;
    margin: 0 auto;
    width: 80%;
    height: fit-content;
    padding: 10px 0;
    z-index: 2000;
    background-color: var(--cookie-bg, #fff);
    padding: 30px;
    border-radius: 20px;
}

.cookie-notice-container{
    flex-direction: row;
}

.grampus-cookie-notice p{
    text-align: center;
}

.grampus-cookie-notice button{
  background-color: var(--Black);
}

.grampus-cookie-accept-button{
    background-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 10px;
}

@media (max-width: 600px){
    .grampus-cookie-accept-button{
        width: 100%;
    }
    .cookie-notice-container{
    flex-direction: column;
    }
}


.policy-checkbox input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
    
        border: 1px solid #ccc;
        border-radius: 2px;
        outline: none;
        cursor: pointer;
        position: relative;
        vertical-align: middle;
        border: 1px solid #000000;
        padding: 0;
    }
    
    /* Стиль для отмеченного чекбокса */
    .policy-checkbox input[type="checkbox"]:checked {
        background-color: #007bff;
        border-color: #007bff;
    }
    
    /* Галочка внутри чекбокса */
    .policy-checkbox input[type="checkbox"]:checked::after {
        content: "✓";
        position: absolute;
        color: white;
        font-size: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    /* Стиль для ошибки (только чекбокс) */
    .policy-checkbox input[type="checkbox"].error {
        border-color: red;
        box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
    }
    
    .policy-checkbox{
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    }
    
    #consent-checkbox{
        width: 20px !important;
        height: 20px !important;
        border: 1px solid #000000 !important;
    }

.policy-checkbox label{
        width: 90% !important;
    }

/*# sourceMappingURL=main.css.map */
