/* ==== Шрифты ==== */
@font-face {
  font-family: 'WixMadeforText';
  src: url('../fonts/WixMadeforText-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'WixMadeforText';
  src: url('../fonts/WixMadeforText-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'WixMadeforText';
  src: url('../fonts/WixMadeforText-Bold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}


/* ==== Нормализация и сброс ==== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;

}

body {
  margin: 0;
  font-family: 'WixMadeforText', sans-serif;
  font-weight: 500;
  background-color: var(--bg-color);
  color: #000;
  font-size: 18px;
  min-width: 340px;
  overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;

  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

textarea{
  resize: none;
}
button {
  cursor: pointer;
  background-color: transparent;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

h1 {
  font-size: 32px;
  color: var(--text-green);
  font-weight: 700;
  line-height: 32px;


}

h2 {
  font-size: 28px;
  color: var(--text-green);
  font-weight: 800;
  line-height: 34px;
  margin-bottom: 39px;

}

h3 {

  color: var(--text-button-black);
  font-size: 19px;

  font-weight: 600;
  line-height: 24.20px;
  word-wrap: break-word;
  padding-bottom: 10px;
}
section {
  margin-bottom: 100px;

}

/* Удаляет особенности форм элементов в некоторых браузерах */
[type='search'] {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::placeholder {
  color: inherit;
  opacity: 0.5;
}



:root {
  --bg-color: #E9E9E9;
  --text-green: #1FB25A;
  --bg-white: #FEFEFE;
  --button-white: #E9E9E9;
  --button-green: #1FB25A;
  --text-button-whithe: #fff;
  --text-button-black: #222222;
}

/* UI компоненты */
.button {
  border-radius: 8.60px;
  background-color: var(--button-white);
  padding: 12px 22px 12px 22px;
  cursor: pointer;
}

.button:hover {
  color: var(--text-button-whithe);
  background-color: var(--button-green);

}

.checkbox-container {
  display: flex;
  align-items: start;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding-left: 28px;

}

.checkbox-container a {
  color: var(--text-green);
  text-decoration: underline;

}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-container .checkmark {
  position: absolute;
  left: 0;
  top: 4px;
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #28a745;
  /* Зеленая рамка */
  border-radius: 3px;
  transition: 0.2s;
}

.checkbox-container input:checked~.checkmark {
  background-color: #28a745;
  /* Заливка при выборе */
  background-image: url("data:image/svg+xml,%3Csvg fill='white' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.292 5.708a1 1 0 00-1.414 0L9 15.586l-3.878-3.878a1 1 0 00-1.414 1.414l4.585 4.586a1 1 0 001.414 0l10.085-10.086a1 1 0 000-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* BURGER */
.burger {
  display: none;
}

.mobile-menu {
  display: none;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 760px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal-header {
  font-size: 32px;
  margin-bottom: 10px;
  color: var(--text-green);
  position: relative;
}

.modal form input,
.modal form textarea {
  width: 100%;
  padding: 8px;
  margin: 15px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: var(--bg-color);
  font-size: 18px;

  font-weight: 500;
  line-height: 20.09px;
  border: none;
  padding: 16px 26px;
  border-radius: 10px;
}

.modal form label.checkbox-label {
  display: block;

  margin: 10px 0;
  font-size: 0.9em;
}

.modal form label.checkbox-label a {
  color: var(--text-green);
  text-decoration: underline;
}

.modal form label.checkbox-label input {
  height: 23px;
  width: 23px;
  margin-right: 15px;
}

.modal-buttons {
  text-align: left;
  margin-top: 10px;
}

.modal-buttons button {
  margin-left: 10px;
  padding: 14px 53px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.modal-buttons button:hover {

}

.model-cls {
  position: absolute;
  top: -20px;
  right: 0;
  color: #1FB25A;
}

.submit-btn {
  background-color: #4CAF50;
  color: white;
}
.submit-btn:hover{
   background-color: var(--button-white);
   color: var(--text-button-black);
}

.submit-btn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}

.error {
  display: none;
  color: red;
  font-size: 14px;
  margin: 5px 0 5px;
}

.error.show {
  display: block;
}

.container {
  max-width: 1790px;
  margin: 0 auto;
  padding: 0 35px;

}

/* VIEDO*/

.video-preview-container {
  position: relative;
  width: 100%;


}

.video-preview {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.30);
  color: white;
  border: none;
  font-size: 16px;
  border-radius: 8.60px;
  padding: 20px 29px;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.play-button img {
  transform: translate(50%, 25%);

}

.play-button:hover {
  background-color: var(--button-green);

}
/* VIEDO MODAL*/
.modal-video {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-video-content {
  position: relative;
  max-width: 87%;
  max-height: 80%;
  margin: 3% auto;
}

.modal-video video {
  width: 90%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.close-btn-video {
  position: absolute;
  top: -30px;
  right: -10px;
  color: white;
  font-size: 36px;
  cursor: pointer;

}


/* Header */
.header {
  display: flex;

  z-index: 1000;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 3px;
  width: 100%;
  margin-top: 23px;
  margin-bottom: 23px;
}



.header-l,
.header-r {
  display: flex;
  align-items: center;
}

.header-logo {
  margin-right: 30px;
}

.header-nav {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  grid-column-gap: 20px;
}

.header-nav a {}

.header-r {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-media {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-right: 57px;


}

.header-contact {
  font-weight: 600;
  font-size: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding-right: 33px;
  grid-column-gap: 37px;


}


.header-contact a {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-contact a:hover {
  color: var(--text-green);
}

.header-contact a img {
  margin-right: 10px;
}

.header-contact-button {
  display: none;
}

/* ABOUT */
.about {
  overflow: hidden;
}

.about img {
  margin-bottom: 50px;
  max-width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.about-c {
  display: flex;
}

.about-text {
  max-width: 850px;
  flex-shrink: 2;
  margin-right: 75px;
  font-size: 16px;
  font-weight: 500;

}

.about-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
  flex-shrink: 1;

}

.about-info hr {
  position: absolute;
  display: flex;
  align-self: center;
  color: rgba(34, 34, 34, 0.20);
  size: 1px;
  width: 100%;
  top: 64px;
}



.about-info div p {
  color: var(--text-green);
  font-size: 28px;
  font-weight: 800;
  padding-bottom: 34px;
  display: flex;
  justify-content: center;
  position: relative;



}



/* slider */
.swiper-wrapper-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-wrapper {
  display: flex;
  height: auto;
}

.swiper-slide {
  background-color: var(--bg-white);
  border-radius: 20px;
  height: 100%;
  width: 415px !important;
  flex-shrink: 1;
}

.swiper-slide img {
  width: 415px;
  height: 306px;
  object-fit: cover;
  border-radius: 20px;

}

.swiper-slide div {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 445px;

}

.swiper-slide h3 {
  height: 52px;
}

.swiper-slide-content {
  height: 445px !important;
}

.swiper-slide div p {
  max-width: 375px;
  opacity: 0.70;
  color: var(--text-button-black);
  font-size: 16px;
  font-weight: 500;
  line-height: 25.20px;
  word-wrap: break-word;


}

.swiper-slide button {
  padding: 15px;
  max-width: 177px;
  font-weight: 600;
  margin-top: auto;
  font-size: 16px;
  background: rgba(232.93, 232.93, 232.93, 0.50);
  border-radius: 8.60px;
  color: var(--text-green);
}

.swiper-slide button:hover {
  color: var(--text-button-whithe);
  background-color: var(--button-green);
}

.swiper-button-next,
.swiper-button-prev {
  background-color: var(--bg-white);
  height: 46px !important;
  width: 46px !important;
  border-radius: 50%;
  font-size: 16px;
  top: 130px !important;
  left: -150px;
  position: absolute;
  margin-left: -35px;
  margin-right: -35px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--button-green);

}

.swiper-button-next img {
  transform: rotate(180deg);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 0 !important;
}




/* SERVICE*/
.service-c {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}

.service-c li {
  display: flex;
  grid-row: 2;
  background-color: var(--bg-white);
  border-radius: 20px;
  height: 100%;


}

.service-c li h3 {
  padding-bottom: 10px;
  height: 53px;

}

.service-c li img {

  height: 100%;
  border-radius: 20px;

}

.service-c li div {
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;

}

.service-c li p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25.20px;
  opacity: 0.70;
  margin-bottom: 15px;


}

.service-c li button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 192px;
  height: 43px;

  margin-top: auto;
  font-size: 16px;
  background: rgba(232.93, 232.93, 232.93, 0.50);
  border-radius: 8.60px;
  color: var(--text-green);
  font-weight: 500;
  line-height: 25.20px;

}

.service-c li button:hover {
  background-color: var(--button-green);
  color: var(--text-button-whithe);

}
/* FOOTER*/
footer {
  background-color: var(--text-button-black);
  padding: 62px 100px 50px 100px;

  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.footer-img {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;

}

.footer-logo {
  width: 100%;
}

.footer-logo {
  width: auto;
  object-fit: cover;
}

.footer-con {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.footer-l-nav {
  display: flex;
  gap: 16px;
}

.footer-l-nav a {
  background: rgba(232.93, 232.93, 232.93, 0.20);
  color: var(--text-button-whithe);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  gap: 10px;
}

.footer-r {
  display: flex;
  height: 48px;
  justify-content: space-between;

}

.footer-media {

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-right: 57px;

}

.footer-contact {
  font-weight: 600;
  font-size: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-right: 33px;
  color: var(--text-button-whithe);

}


.footer-contact a {
  display: flex;
  align-items: center;
}


.footer-contact a:hover {
  color: var(--text-green);
}

.footer-contact a img {
  margin-right: 10px;
}

.footer-contact-button {
  display: none;
}

.footer hr {
  color: var(--bg-white);
  opacity: 0.20;
}

.footer-prc {
  opacity: 0.70;
  color: var(--text-button-whithe);
  font-size: 16px;
  font-weight: 500;
  line-height: 22.40px;
  word-wrap: break-word;
  padding-top: 31px;
  padding-bottom: 50px;
}

.footer-prc:hover {
  color: var(--text-green);
}

@media (max-width: 1760px) {
  .service-c {
    flex-direction: column;
    row-gap: 20px;
  }

  .service-c li {
    height: 307px;

  }

  .header-media {
    margin-right: 17px;


  }
}

@media (max-width: 1500px) {
  .header-contact {
    display: none;
  }

  .header-contact-button {
    display: block;
  }

  .about-text {
    margin-right: 30px;
  }

  footer {
    padding: 62px 15px;
  }

  .footer-con {
    flex-direction: column;
    row-gap: 30px;
  }

  .footer-r {
    height: 100%;
  }

  .footer-media {
    margin-right: 27px;
  }

  .footer-prc {

    padding-bottom: 0;
  }
}

@media (max-width: 1170px) {
  section {
    margin-bottom: 50px;
  }

  .header-l {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-right: 17px;
  }

  .header-media {
    display: none;
  }

  .about-c {
    display: flex;
    flex-direction: column;
    grid-gap: 50px;
  }

  .about-text {
    margin-right: 0;
    max-width: 100%;
    font-size: 14px;
    font-weight: 600;
    line-height: 21.40px;

  }

  .swiper-slide img {
    width: 439px !important;
  }

  .swiper-slide {
    width: 439px !important;
  }
}

@media (max-width: 980px) {

  .button {
    padding: 7px 12px;
    font-size: 12px;
  }

  .header {}

  .header-logo img {
    object-fit: cover;
    width: 167px !important;
  }

  .header-media {
    display: none;
  }

  .header-nav {
    column-gap: 10px;
  }

  .service-c li {
    flex-direction: column;
    height: 100%;
  }

  .service-c li img {
    flex-direction: column;
    object-fit: cover;
    max-width: 100%;
    height: 234px;
  }

  .footer-r {

    flex-direction: column-reverse;
  }

  .footer-media {
    display: flex;
    margin-top: 27px;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;

  }

}

@media (max-width: 640px) {
  section {
    overflow-x: hidden;
  }

  .container {
    max-width: 1750px;
    margin: 0 auto;
    padding: 0 15px;

  }

  h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 20px;

  }

  h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 21.60px;

  }

  .logo {
    font-size: 1.2rem;
  }

  .burger {
    width: 33px;
    height: 33px;
  }

  .about-c {
    grid-gap: 15px;
  }

  .about img {
    margin-bottom: 10px;
    height: 137px;
    
  }

  .about-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 18.40px;
  }

  .about-text b {
    font-size: 14px;
    font-weight: 800;
    line-height: 18.40px;
  }

  .about-info {
    flex-direction: column;
    align-items: start;
    grid-gap: 25px;
    padding-left: 13px;
    border-left: 1px solid rgba(34, 34, 34, 0.20);
    font-size: 16px;
    font-weight: 600;
  }

  .about-info div p {
    padding-bottom: 0;
    align-items: start;
    justify-content: start;
    font-size: 22px;
    font-weight: 800
  }

  .about-info hr {
    display: none;
  }

  .swiper-slide div p {
    font-size: 14px;
    line-height: 19.60px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  .swiper-slide div {
    height: 405px;
  }

  .service-c li {
    font-size: 14px;
  }

  .service-c li p {
    opacity: 0.70;

    font-size: 14px;
    font-weight: 500;
    line-height: 19.60px
  }

  .footer-l-nav {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .footer-img {
    display: none;
  }

  .footer-logo img {
    width: 244px;
    object-fit: cover;
    margin-bottom: 24px;
  }

  .swiper-slide button {
    padding: 11px 15px;


  }

  /* Мобильное меню */
  .mobile-menu {
    display: none;
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    min-height: calc(100vh - 60px);
    /* или под вашу высоту шапки */
    background: var(--bg-color);
    z-index: 5;
    padding: 2rem 1rem;
    font-size: 18px;
  }

  .mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .menu-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  .header-logo {
    margin-right: 10px;
  }

  .menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 90px;
  }

  .menu-links a {
    font-size: 1.2rem;
    text-decoration: none;
    color: #333;
    padding: 15px 21px;
    background-color: var(--text-button-whithe);
    border-radius: 20px;
  }

  .menu-links a:hover {
    background-color: var(--button-green);
    color: var(--text-button-whithe);
  }

  .header-contact-menu {
    display: flex;
    text-align: center;

    color: #555;
    row-gap: 20px;
    align-self: flex-end;
  }

  .header-contact-menu a:hover {
    color: var(--text-green);
  }

  .header-contact-menu img {
    margin-right: 10px;
  }


  .no-scroll {
    overflow: hidden;
    height: 100vh;
  }

  .header-l {
    padding-right: 0;
  }

  .header-nav {
    display: none;
  }

  .header-media {
    display: flex;
    align-items: center;
  }

  .header-media a img {
    width: 28px !important;
    height: 100%;

    object-fit: cover;
  }

  .burger {
    display: inline;
  }

  .header-media {
    margin-right: 14px;
    grid-gap: 10px;
  }

  .header-contact-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: auto;
  }

  .header-contact-menu a {
    display: flex;
    align-items: center;
  }



  .play-button {
    padding: 14px 21px;
    transform: translate(-50%, -100%);
    font-size: 14px;
    padding: 11px 19px;

  }

  .swiper-slide img {
    width: 306px !important;
    height: 234px !important;
  }

  .swiper-slide {
    width: 306px !important;
  }

  .swiper-slide-content {
    height: 375px !important;
  }

}

.modal-buttons .submit-btn {
    margin-left: 10px;
    padding: 14px 53px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	background-color: #4CAF50!important;
    color: white!important;
	width: auto!important;
}
input.soglasie {
left: -50%;
top: -10px;
opacity: 1;
height:17px;
}

.checkbox-container .checkmark { 
display:none;
}
.about-text {
    flex-shrink: 1;
}