.alignwide {
  width: 100%;
}
.hidden {
  /* display: none; */
}
.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

html {
  box-sizing: border-box;
}

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

body {
  background-color: #fff;
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease-in;
}

a:hover {
  color: #83aa51;
}

ul li {
  list-style-position: inside;
  color: #000;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  list-style: none;
}

ul li::marker {
  color: #1F2F47;
}

ol li {
  list-style-position: inside;
  color: #000;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
}

main.foned {
  position: relative;
  overflow: hidden;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  padding: 20px 0;
}

.breadcrumbs span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
}

.breadcrumbs span.current-item {
  color: #0075FF;
}

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

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

.btn {
  width: 220px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease-in;
  background: #83aa51;
  border: 2px solid #83aa51;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}

.btn svg {
  transition: all 0.3s ease-in;
  margin-right: 10px;
}

.btn svg path {
  transition: all 0.3s ease-in;
}

.btn:hover {
  background-color: #fff;
  color: #83aa51;
}

.btn:hover svg path {
  fill: rgba(18, 223, 236, 0.5);
}

.btn:focus {
  letter-spacing: normal;
}

.btn.invert {
  background-color: #f6c4df;
  color: #fff;
}

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

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

/* --------------- burger ------------ */

#header .burger {
  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;
  margin-left: 15px;
  cursor: pointer;
}

#header .burger span {
  background-color: #83aa51;
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: #83aa51;
}

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

@media screen and (max-width: 992px) {
  #header .burger {
    display: flex;
  }

  #header .header__container ul#header_menu {
    display: none;
  }

  #header #mobile-mnu ul#header_menu {
    display: flex;
  }

  #header .burger.open_menu {
    display: flex;
  }
}

/* --------------- burger end ------------ */

/* ------------- header ---------------------- */

#header {
  padding: 20px 0;
  margin-bottom: 62px;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.site-header.painted {
  background-color: #fff;
}

#header .header__inner .logo .logo__text {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 40px;
}
#header .header__inner a.logo {
	color:#83aa51;
}
#header .header__inner a.logo:hover {
color:#000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__item {
  max-width: 817px;
  width: 100%;
  padding: 0 10px;
}

.header__socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 5px;
}

@media (max-width: 992px) {
	
#header .header__inner .logo .logo__text {
  font-size: 30px;
}
  .header__socials {
    justify-content: center;
  }

  .header__item {
    max-width: 210px;
  }
}

@media (max-width: 800px) {
	
#header .header__inner .logo .logo__text {
  font-size: 25px;
}
}

.socials__link {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

@media (max-width: 500px) {
  .socials__link {
    display: none;
  }
}

.socials__link:hover .header__phone {
  color: #83aa51;
}

.socials__link:hover .header__email {
  color: #83aa51;
}

.socials__link--item {
  /* background-color: #6c3700; */
  width: 22px;
  height: 22px;
  border-radius: 50%;
  line-height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.socials__link--item svg {
  width: 22px;
  height: 22px;
  object-fit: cover;
}
.socials__link--mobil {
  margin-right: 15px;
}

.socials__link+.socials__link {
  margin-left: 30px;
}

@media (max-width: 992px) {
  .socials__link+.socials__link {
    margin-left: 0;
  }
}

.header__phone {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #373B32;
}

@media (max-width: 1300px) {
  .header__phone {
    display: none;
  }
}

.header__email {
  font-family: 'PT Serif';
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #373B32;
}

@media (max-width: 1300px) {
  .header__email {
    display: none;
  }
}

.socials {
  display: flex;
  align-items: center;
}

#header_menu {
  display: flex;
  justify-content: space-between;
}

#header_menu li a {
  font-family: 'PT Serif';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

#header_menu li a:hover {
  color: #83aa51;
  border-bottom: 1px solid #83aa51;
}

.footer {
  padding: 30px 0;
  background-color: #373B32;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.privacy {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
  color: #EEF9FF;
  cursor: pointer;
}

.developer {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #EEF9FF;
}

.developer:hover {
  color: #EEF9FF;
}

.privacy:hover,
.developer span:hover {
  color: #83aa51;
}

.developer span {
  font-family: 'Raleway';
  font-weight: 900;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #EEF9FF;
  margin-left: 15px;
}

.privacy-modal {
  text-decoration: underline;
  cursor: pointer;
}

@media (max-width: 575px) {
  .privacy {
    margin-bottom: 10px;
  }
}

/* ---------------- modal -------------------- */

.modal-callback {
  max-width: 1170px;
  display: flex;
}

.modal-img {
  max-width: 781px;
  height: auto;
}

.contactform__modal2 .close_modal svg,
.contactform__modal3 .close_modal svg {
  color: #83aa51;
  width: 25px;
  height: 25px;
  display: block;
}

.contactform__modal2 .close_modal:hover svg,
.contactform__modal3 .close_modal:hover svg {
  color: #6c3700;
}

#modal-main .close_modal,
.contactform__modal2 .close_modal {
  display: block;
  position: absolute;
  right: 8px;
  top: 8px;
  cursor: pointer;
}

.contactform__modal3 .close_modal {
  display: block;
  position: absolute;
  right: 15px;
  top: 8px;
  cursor: pointer;
}

.contactform__modal2 {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  color: #000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateZ(1010px) translate(-50%, -400%);
  max-width: 450px;
  width: 100%;
  transition: all 0.4s ease-in;
  z-index: 100400;
  border-radius: 10px;
  padding: 90px 80px 60px 80px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  background-image: url('../images/modal-bg.png');
  background-repeat: no-repeat;
  background-position: top center;
}

#modal-thank.contactform__modal2 {
  flex-direction: row;
  background-color: #fff;
  color: #000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateZ(1010px) translate(-50%, -400%);
  max-width: 450px;
  width: 100%;
  transition: all 0.4s ease-in;
  z-index: 100400;
  border-radius: 10px;
  padding: 90px 80px 60px 80px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  background-image: url('../images/thank-bg1.png');
  background-repeat: no-repeat;
  background-position: top center;
}

.contactform__modal2.modal-open {
  transform: translateZ(1010px) translate(-50%, -50%) !important;
}

.contactform__modal2 .title {
  display: block;
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 36px;
  line-height: 128%;
  color: #333333;
  text-align: left;
  margin: 0;
}

.contactform__modal2 .order_modal {
  display: flex;
  padding-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}

.contactform__modal2 .order_modal .order_left {
  flex-grow: 1;
  width: 50%;
}

.contactform__modal2 .order_modal .order_right {
  flex-grow: 1;
  width: 45%;
}

.contactform__modal2 .order_modal .modal2_foot {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 15px;
}

.contactform__modal2 .order_modal .modal2_foot .modal-radio span a {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 14px;
  line-height: 143%;
  color: #373B32;
}

.contactform__modal2 .order_modal .modal2_foot .modal-radio span a:hover {
  color: #83aa51;
}

.contactform__modal2 .order_modal .wpcf7-form-control-wrap input {
  background: #FFFFFF;
  border: 1px solid #83aa51;
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  height: 54px;
  margin: 5px 0;
  outline: none;
  padding-left: 20px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #C4C4C4;
}

.contactform__modal2 .order_modal .wpcf7-form-control-wrap textarea {
  background: #FFFFFF;
  border: 2px solid #E5E5E5;
  box-sizing: border-box;
  border-radius: 15px;
  max-width: 270px;
  width: 100%;
  height: 170px;
  margin: 15px 0;
  outline: none;
  padding-left: 20px;
  padding: 17px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #C4C4C4;
}

.wpcf7-list-item {
  margin: 0;
}

.contactform__modal2 .order_modal .order_left .modal-radio {
  padding-top: 10px;
}

.contactform__modal2 .wpcf7-list-item-label span {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  color: #000;
  padding-left: 20px;
}

.contactform__modal2 .wpcf7-list-item-label span a {
  color: #6c3700;
  text-decoration: underline;
  padding-left: 20px;
}

.contactform__modal2 .order_modal .wpcf7-form-control-wrap input[type="checkbox"] {
  appearance: none;
  display: contents;
  text-align: right;
}

#modal-order input[type="checkbox"]~.wpcf7-list-item-label:before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #373B32;
  background-color: #ffffff;
  cursor: pointer;
  left: 0;
  margin-top: 1px;
}

#modal-order input[type="checkbox"]:checked~.wpcf7-list-item-label:before {
  background-image: url('../images/check.png');
  background-repeat: no-repeat;
  background-position: center;
}

.contactform__modal2 .order_modal .wpcf7-form-control-wrap input::placeholder,
.contactform__modal2 .order_modal .wpcf7-form-control-wrap textarea::placeholder {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #C4C4C4;
}

.contactform__modal2 .order_modal p input.wpcf7-form-control {
  text-align: center;
  width: 100%;
  height: 54px;
  background: #83aa51;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
  border: 1px solid #83aa51;
  margin-top: 15px;
  border-radius: 10px;
}

.contactform__modal2 .order_modal p input.wpcf7-form-control:hover {
  background: #fff;
  color: #83aa51;
}

.contactform__modal2 .wpcf7-spinner {
  display: none;
}

@media (max-width: 768px) {
  .contactform__modal2 {
    max-width: 425px;
    padding: 60px 15px;
  }

  .contactform__modal2 .order_modal .order_left {
    width: 100%;
  }

  .contactform__modal2 .order_modal .modal2_foot .modal-radio {
    margin-bottom: 10px;
  }
}

@media (max-width: 425px) {
  .contactform__modal2 {
    max-width: 310px;
    padding: 60px 15px;
  }

  .contactform__modal2 .order_modal .order_left {
    width: 100%;
  }

  .contactform__modal2 .order_modal .modal2_foot .modal-radio {
    margin-bottom: 10px;
  }
}

.private_link {
  display: inherit;
  text-decoration: underline;
  cursor: pointer;
}

#modal-order .wpcf7-list-item-label {
  padding: 0;
  flex-grow: 1;
  font-family: 'Inter';
  font-weight: 300;
  font-size: 14px;
  line-height: 143%;
  color: #373B32;
}

#modal-order .wpcf7-list-item {
  padding-left: 25px;
}

/* ---------------- modal end -------------------- */

/* ------------ модалка политика ------------ */

.contactform__modal3 {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 1;
  padding: 100px 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 100500;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.4);
}

.contactform__modal3.modal-open {
  visibility: visible;
  opacity: 1;
  transition: ease-in-out 0.4s;
}

.contactform__modal3.modal-open .content {
  position: relative;
  border-radius: 15px;
  margin: auto;
  max-width: 100%;
  background-color: #fff;
  width: 1170px;
  padding: 90px 80px 80px 80px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%), 0 6px 20px 0 rgb(0 0 0 / 19%);
  background-image: url('../images/modal-bg2.png');
  background-repeat: no-repeat;
  background-position: top center;
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 18px;
  line-height: 144%;
  color: #373B32;
}

.contactform__modal3.modal-open .content h2 {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 36px;
  line-height: 128%;
  color: #333333;
  margin-bottom: 40px;
}

@media (max-width: 450px) {
.contactform__modal3.modal-open .content h2 { 
font-size: 23px;
word-break: break-all;
}

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

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

#footer .contactform__modal {
  display: block;
  flex-direction: row;
  background-color: #F6F6F6;
  color: #000;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -400%);
  max-width: 1170px;
  width: 100%;
  border-radius: 10px;
  transition: all 0.4s ease-in;
  z-index: 9999;
  /* padding: 90px 80px 25px 80px; */
  background-image: url('../images/modal-bg3.png');
  background-position: top center;
  background-repeat: no-repeat;
  height: 90vh;
  overflow-y: auto;
}

#footer .contactform__modal .close_modal {
  display: block;
  color: #83aa51;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 17px;
  top: 10px;
  cursor: pointer;
}

#footer .contactform__modal .close_modal:hover svg {
  color: #6c3700;
}

#footer .contactform__modal .left__side {
  display: flex;
  flex-direction: column;
  max-width: 380px;
  width: 100%;
  align-items: center;
  position: relative;
  margin-right: 40px;
}

#footer .contactform__modal .left__side .logo {
  object-fit: contain;
  margin-bottom: 30px;
}

#footer .contactform__modal .left__side .title {
  color: #464646;
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
  margin-right: auto;
}

#footer .contactform__modal .left__side .subtitle {
  font-weight: 400;
  color: #464646;
  font-size: 16px;
  margin-bottom: 40px;
  text-align: left;
  margin-right: auto;
}

#footer .contactform__modal .left__side .contact_form {
  text-align: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  column-gap: 5px;
  row-gap: 15px;
}

#footer .contactform__modal .left__side .contact_form .form_input {
  width: 45%;
  flex-grow: 1;
}

#footer .contactform__modal .left__side .contact_form .form_input label {
  display: block;
  color: #364163;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  text-align: left;
}

#footer .contactform__modal .left__side .contact_form .form_input input {
  background: #FFFFFF;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 0;
  height: 54px;
  text-align: left;
  max-width: 100%;
  width: 100%;
  outline: none;
  font-size: 18px;
  line-height: 24px;
  color: #464646;
  font-weight: 400;
  padding-left: 20px;
}

#footer .contactform__modal .left__side .contact_form .form_input input:focus {
  border-color: #4EB958;
}

#footer .contactform__modal .left__side .contact_form .form_input textarea {
  background: #FFFFFF;
  border: 1px solid #fff;
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  resize: none;
  height: 100px;
  outline: none;
  font-size: 18px;
  line-height: 24px;
  padding: 20px;
}

#footer .contactform__modal .left__side .contact_form .form_input textarea:focus {
  border-color: #4EB958;
}

#footer .contactform__modal .left__side .contact_form .form_input input.wpcf7-not-valid {
  border-color: red;
}

#footer .contactform__modal .left__side .contact_form .form_input .wpcf7-not-valid-tip {
  display: none;
}

#footer .contactform__modal .left__side .contact_form .form_input.textarea {
  width: 100%;
}

#footer .contactform__modal .left__side .contact_form .submit {
  width: 100%;
}

#footer .contactform__modal .left__side .contact_form .submit>p {
  width: 100%;
}

#footer .contactform__modal .left__side .contact_form .file {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
}

#footer .contactform__modal .left__side .contact_form .file input[type=file] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: contents;
}

#footer .contactform__modal .left__side .contact_form .file #form-file {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  column-gap: 10px;
  color: #464646;
  font-size: 16px;
  line-height: 21px;
  cursor: pointer;
  transition: color .3s ease-in;
}

#footer .contactform__modal .left__side .contact_form .file #form-file:hover {
  color: #4EB958;
}

#footer .contactform__modal .left__side .contact_form .file .file1 {
  display: contents;
}

#footer .contactform__modal .left__side .contact_form input[type=submit] {
  max-width: 100%;
  width: 100%;
}

#footer .contactform__modal .left__side .contact_form .submit {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #464646;
}

#footer .contactform__modal .left__side .contact_form .submit span {
  margin: 0;
}

#footer .contactform__modal .left__side .contact_form .submit a {
  text-decoration: underline;
}

#footer .contactform__modal .left__side .contact_form .submit label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: contents;
}

#footer .contactform__modal .left__side .contact_form .submit label span.wpcf7-list-item-label:before {
  content: '';
  border-radius: 50%;
  display: inline-flex;
  flex-shrink: 0;
  width: 11px;
  height: 11px;

  border: 2px solid #F6F6F6;
  box-shadow: 0 0 0 2px #464646;
  margin-right: 10px;
  background: #F6F6F6;
}

#footer .contactform__modal .left__side .contact_form .submit label input:checked+span:before {
  background-color: #4EB958;
}

#footer .contactform__modal#modal-privacy {
  max-width: 1170px;
  width: 100%;
  height: 80vh;
}

#footer .contactform__modal#modal-privacy .left__side {
  height: 100%;
  overflow-y: scroll;
  justify-content: flex-start;
}

#footer .contactform__modal.modal-open {
  top: 50%;
  transform: translate(-50%, -50%);
}




/* ------------ модалка политика end ------------ */

/* ------------- Бургер меню ---------------- */

#header .burger {
  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;
  margin-left: 15px;
  cursor: pointer;
}

#header .burger span {
  background-color: #6c3700;
  width: 30px;
  height: 4px;
  transition: all 0.3s ease-in;
}

#header .burger.open_menu.clicked {
  background-color: #6c3700;
}

#header .burger.open_menu.clicked span {
  background-color: #fff;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 320px;
  background-color: white;
  padding: 30px;
  transition: all 0.3s ease-in;
  transform: translateX(-350px);
  z-index: 999999999;
}

#header #mobile-mnu #header_menu {
  flex-direction: column;
  row-gap: 40px;
}

#header #mobile-mnu.opened {
  transform: translateX(0);
}

#header #mobile-mnu #close-mnu {
  font-size: 35px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  transform: rotate(45deg);
  display: block;
  color: black;
}

#header #mobile-mnu a {
  /* color: black; */
}

#header .logo_href {
  max-width: 160px;
}

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
}

#header #mobile-mnu #header_menu {
  list-style-type: none;
  margin-bottom: 30px;
}

#header #mobile-mnu #header_menu li {
  margin-bottom: 5px;
  border-bottom: 1px solid transparent;
}

#header #mobile-mnu #header_menu li:hover {
  border-color: #fff;
}

@media screen and (max-width: 992px) {
  #header .burger {
    display: flex;
  }

  #header .container ul#header_menu {
    display: none;
  }

  #header #mobile-mnu ul#header_menu {
    display: flex;
  }

  #header .burger.open_menu {
    display: flex;
  }
}

@media screen and (max-width: 750px) {
  .header__btn_main {
    display: none;
  }
    #header .header__inner .logo .logo__text {
/*       font-size: 20px; */
    }
}

@media screen and (max-width: 480px) { 
  .header__socials {
    display: none;
  }

}

#modal-thank {
  display: block;
  width: 450px;
  height: 519px;
  background-image: url('../images/thank-bg.png');
  background-position: bottom;
  background-repeat: no-repeat;
}

/* ----------- modal-main ----------- */

.contactform__modal1 {
  display: flex;
}

#modal-main {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  color: #000;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -300%);
  max-width: 1170px;
  width: 100%;
  transition: all 0.4s ease-in;
  z-index: 9999;
  height: 781px;
}

#modal-main.modal-open {
  transform: translate(-50%, -50%);
}

.main_left--img {
  width: 500px;
  height: 781px;
}

.main_right {
  width: 670px;
  height: 781px;
  padding: 55px 80px 55px 50px;
  overflow: overlay;
}

.modal-main__title {
  font-family: 'Manrope';
  font-weight: 800;
  font-size: 36px;
  line-height: 46px;
  color: #010000;
  margin-bottom: 25px;
}

.modal-main__text p {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #010000;
  margin-bottom: 15px;
}

.modal-main__text ul {
  margin-bottom: 35px;
  padding-left: 20px;
}

.modal-main__text ul li {
  position: relative;
}

.modal-main__text ul li::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  top: 5px;
  left: -20px;
  height: 10px;
  background-image: url('../images/point.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.modal-main__text ul li+li {
  margin-top: 10px;
}

.contactform__modal1 .order_modal {
  display: flex;
  padding-top: 45px;
  flex-direction: row;
  flex-wrap: wrap;
}

.contactform__modal1 .order_modal .order_left {
  flex-grow: 1;
  width: 50%;
}

.contactform__modal1 .order_modal .order_right {
  flex-grow: 1;
  width: 45%;
}

.contactform__modal1 .order_modal .modal2_foot {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
}

/* ---------------- modal-product ----------- */

#modal-product .product__holder {
  display: flex;
  padding: 90px 80px 60px 80px;
}

@media(max-width: 1170px) {
  #modal-product .product__holder {
    flex-wrap: wrap;
  }
}

.product__title {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 36px;
  line-height: 128%;
  color: #333333;
  margin-bottom: 35px;
}

.product__desc {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
  margin-bottom: 25px;
}

.product__chars {
  margin-bottom: 25px;
}

.product__chars--item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #83aa51;
  height: 45px;
  align-items: center;
}

.product__chars--title {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

.product__chars--text {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

.configuration {
  margin-bottom: 26px;
}

.configuration__label {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 24px;
  line-height: 142%;
  color: #333333;
  margin-bottom: 20px;
}

.configuration__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #83aa51;
  height: 45px;
}

.configuration__item--title {
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

.configuration__item--price {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

.product__annotation {
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #373B32;
}

.modal-product__form {
  background-color: #6c3700;
  padding: 35px 40px 25px 80px;
  border-radius: 0 0 10px 10px;
}

@media (max-width: 425px) {
  .modal-product__form {
    padding: 35px 40px 25px 30px;
  }
}

.modal-product {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  align-items: center;
}

@media (max-width: 1170px) {
  .modal-product {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 750px) {
  .modal-product {
    grid-template-columns: 1fr;
  }
}

.modal-product__title {
  width: 169px;
  font-family: 'PT Serif';
  font-weight: 700;
  font-size: 36px;
  line-height: 128%;
  color: #FFFFFF;
}

.modal-product__inputs {
  display: flex;
}

@media (max-width: 600px) {
  .modal-product__inputs {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.modal-product__name,
.modal-product__tell {
  width: 198px;
  background: #6c3700;
  border: 1px solid #FFFFFF;
  border-radius: 10px;
  padding: 15px 40px;
  outline: 0;
  outline-offset: 0;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}

.modal-product__name::placeholder,
.modal-product__tell::placeholder {
  font-family: 'Inter';
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #FFFFFF;
}

.modal-product__name {
  margin-right: 20px;
}

.modal-product__btn {
  text-align: center;
  max-width: 167px;
  width: 100%;
  height: 54px;
  background: #fff;
  border-radius: 10px;
  font-family: 'Inter';
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #6c3700;
  cursor: pointer;
  border: none;
  border: 2px solid #FFFFFF;
  margin-right: 20px;
}

.modal-product__btns {
  display: flex;
  align-items: center;
}

@media (max-width: 600px) {
  .modal-product__btns {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 1170px) {
  .modal-product__btns {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
  }
}

@media (max-width: 750px) {
  .modal-product__btns {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
}

.wpcf7-form-control-wrap {
  max-width: 300px;
  font-family: 'Inter';
  font-weight: 300;
  font-size: 14px;
  line-height: 143%;
  color: #FFFFFF;
}

.modal-product .privacy-modal {
  font-family: 'Inter' !important;
  font-weight: 300 !important;
  font-size: 14px !important;
  line-height: 143% !important;
  color: #FFFFFF !important;
}

.wpcf7-list-item label input {
  display: none;
}

/* ------------- слайдер в модалке --------------- */

/*================| swiper-modal |================*/

/*#swiper-modal .items_block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}*/
#swiper-modal {
  /*overflow: hidden;*/
  /*margin-bottom: 100px;*/
}

#swiper-modal .items_block {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

#swiper-modal .item_slider,
#swiper-modal .item_info {
  width: 100%;
}

#swiper-modal .item_slider {
  position: relative;
}

#swiper-modal .swiper-main-single,
#swiper-modal .swiper-thumbs-single {
  overflow: hidden;
}

#swiper-modal .swiper-main-single {
  max-height: 500px;
}

#swiper-modal .swiper-thumbs-single {
  width: 90%;
  margin: auto;
}

#swiper-modal .slider-single-cars {
  position: sticky;
  top: 20%;
}

#swiper-modal .swiper-slide {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
}

#swiper-modal .swiper-slide img {
  border-radius: 5px;
  width: 100%;
  object-fit: contain;
  /*height: 100%;*/
}

#swiper-modal .swiper-thumbs-single .swiper-slide,
#swiper-modal .swiper-thumbs-single .swiper-slide img {
  height: 100px;
  max-width: 100px;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
  border: 1px solid #83aa51;
  border-radius: 10px;
}

#swiper-modal .slide-thumbs {
  position: relative;
}

#swiper-modal .swiper-button-prev-single {
  background-image: url('../images/prev.svg');
  top: 42%;
  left: 0;
}

#swiper-modal .swiper-button-next-single {
  background-image: url('../images/next.svg');
  top: 42%;
  right: 0;
}

#swiper-modal .swiper-button-prev-single,
#swiper-modal .swiper-button-next-single {
  position: absolute;
  width: 8px;
  height: 14px;
  /*display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;*/
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

#swiper-modal .desc {
  margin-bottom: 30px;
}

#swiper-modal .click {
  margin-right: 30px;
}

@media (max-width: 1315px) {
  #swiper-modal .swiper-thumbs-single {
    width: 90%;
    margin: auto;
  }
}

@media (max-width: 1015px) {
  #swiper-modal .items_block {
    display: block;
  }

  #swiper-modal .item_slider,
  #swiper-modal .item_info {
    width: 100%;
  }

  #swiper-modal .swiper-thumbs-single {
    width: 90%;
  }
}

@media (max-width: 660px) {
  #swiper-modal .swiper-thumbs-single {
    width: 90%;
  }
}

@media (max-width: 550px) {
  #swiper-modal .swiper-thumbs-single {
    width: 71%;
  }

  #swiper-modal .swiper-thumbs-single .swiper-slide,
  #swiper-modal .swiper-thumbs-single .swiper-slide img {
    height: 60px;
    max-width: 60px;
  }

  #swiper-modal .swiper-wrapper {
    padding-top: 10px;
  }

  #swiper-modal .butt {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 460px) {
  #swiper-modal .butt {
    flex-direction: column;
    width: fit-content;
    align-items: center;
    justify-content: center;
    row-gap: 20px;
    margin: auto;
  }

  #swiper-modal .click {
    margin-right: 0px;
  }
}

@media (max-width: 350px) {

  #swiper-modal .swiper-button-prev-single,
  #swiper-modal .swiper-button-next-single {
    width: 45px;
    height: 45px;
    top: 25%;
  }
}

@media (max-width: 425px) {
  .logo__img {
    width: 130px;
  }
}

.socials__link--itm {
  margin-right: 15px;
}

/*================| END swiper-modal |================*/

@media (max-width: 425px) {
  .product__title {
    font-size: 24px;
  }

  .product__desc {
    font-size: 12px;
  }

  .product__chars--title {
    font-size: 12px;
  }

  .product__chars--text {
    font-size: 12px;
  }

  .configuration__label {
    font-size: 18px;
  }

  .configuration__item--title {
    font-size: 12px;
  }

  .configuration__item--price {
    font-size: 12px;
  }

  #modal-product .product__holder {
    padding: 90px 15px 60px 15px;
  }
}