@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
body {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}

li,
ul,
a {
  text-decoration: none;
  list-style: none;
}

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

:root {
  --color-light-green: #a0cdbf;
  --color-bg-green: #35453b;
  --color-green: #4f7d6f;
  --color-dark-green: #4f7d6f;
  --color-blue: #abc6d9;
  --color-dark: #444444;
  --color-black: #000000;
  --color-rose: #c1a4ba;
  --color-white: #ffff;
  --color-orange: #ffaf85;
  --color-hover-green: #7ea196;
  --color-hover-blue: #8fa7b8;
  --color-hover-rose: #aa8fa4;
  --color-hover-orange: #d58c66;
}

.container {
  margin: 0 auto;
  max-width: 1360px;
}

.flex-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 1s;
  font-family: "Montserrat", sans-serif;
}

.btn-green {
  background-color: var(--color-light-green);
}

.btn-green:hover {
  background-color: #7ba195;
}

.btn-green:active {
  background-color: var(--color-white);
}

.dark-btn {
  border-radius: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  background-color: var(--color-dark);
  color: var(--color-white);
  font-weight: 400;
  font-size: 20px;
  transition: all 1s;
  font-family: "Montserrat", sans-serif;
}

.dark-btn:hover {
  background-color: var(--color-black);
}

.title {
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 36px);
  color: var(--color-black);
  text-align: center;
}

.text {
  color: var(--color-dark);
  font-weight: 400;
  font-size: clamp(12px, 1.3vw, 18px);
  transition: all 1s;
  text-align: center;
}

.navigate {
  border-top: 1px solid #000000;
  padding: 48px 0;
}
@media (max-width: 800px) {
  .navigate {
    padding: 28px 0;
  }
}
.navigate_body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 33px;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-dark);
}
@media (max-width: 800px) {
  .navigate_body {
    margin-left: 5%;
    font-size: 16px;
    gap: 15px;
  }
}
.navigate_body a {
  color: var(--color-dark);
  white-space: nowrap;
}

.section_top-title {
  color: var(--color-white);
  background-color: var(--color-bg-green);
  padding: 17px 0;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 800px) {
  .section_top-title {
    font-size: 22px;
  }
}
@media (max-width: 800px) {
  .section_top-img {
    width: 100%;
    max-width: 53px;
  }
}
.section_top-subtitle {
  font-weight: 400;
  font-size: 20px;
  background-color: var(--color-light-green);
  padding: 2px 0;
}
@media (max-width: 800px) {
  .section_top-subtitle {
    padding: 5px 0 5px 15px;
    font-size: 16px;
  }
}

.blue {
  background-color: var(--color-blue);
}

.green {
  background-color: var(--color-light-green);
}

.rose {
  background-color: var(--color-rose);
}

.orange {
  background-color: var(--color-orange);
}

.dark-green {
  background-color: var(--color-dark-green);
}

.blue-hover:hover {
  background-color: var(--color-hover-blue);
}

.green-hover:hover {
  background-color: var(--color-hover-green);
}

.rose-hover:hover {
  background-color: var(--color-hover-rose);
}

.orange-hover:hover {
  background-color: var(--color-hover-orange);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.application {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.application_modal {
  background-color: var(--color-bg-green);
  border-radius: 15px;
  max-width: 670px;
  position: relative;
  width: 800px;
}
@media (max-width: 800px) {
  .application_modal {
    max-width: 325px;
    padding: 0 6px;
    background-color: #a0cdbf;
  }
}
.application_decor {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 800px) {
  .application_decor {
    display: none;
  }
}
.application_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}
.application_title {
  z-index: 1000;
  font-weight: 600;
  font-size: 27px;
  color: var(--color-white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
@media (max-width: 800px) {
  .application_title {
    display: none;
  }
}
.application_subtitle {
  font-weight: 400;
  font-size: 20px;
  color: white;
  margin-bottom: 11px;
  z-index: 1000;
}
@media (max-width: 800px) {
  .application_subtitle {
    display: none;
  }
}
.application_mobile-title {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 25px;
  color: #2c2c2c;
}
@media (min-width: 800px) {
  .application_mobile-title {
    display: none;
  }
}
.application_input-wrapper {
  padding-top: 10px;
  width: 100%;
  max-width: 580px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 17px;
  padding: 0 80px;
  margin-bottom: 31px;
}
@media (max-width: 800px) {
  .application_input-wrapper {
    margin-bottom: 24px;
    max-width: 300px;
  }
}
.application_input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 10px 0 10px 18px;
}
@media (max-width: 800px) {
  .application_input {
    padding: 9px;
    text-align: center;
  }
}
.application_input::-moz-placeholder {
  font-weight: 400;
  font-size: 20px;
  color: #35453b;
  font-family: "Montserrat", sans-serif;
}
.application_input::placeholder {
  font-weight: 400;
  font-size: 20px;
  color: #35453b;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 800px) {
  .application_input::-moz-placeholder {
    font-size: 18px;
  }
  .application_input::placeholder {
    font-size: 18px;
  }
}
.application_btn {
  padding: 19px 106px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 20px;
  z-index: 1000;
}
@media (max-width: 800px) {
  .application_btn {
    background-color: #444444;
    padding: 12px 33px;
  }
}

.application.active {
  display: flex;
  z-index: 2000;
}

.succes-active {
  background-color: white;
  color: black;
}

.header {
  position: relative;
}
.header_top {
  display: flex;
  gap: 234px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  padding: 9px 0 14px 0;
  background-color: var(--color-bg-green);
  color: var(--color-white);
  padding-left: 280px;
}
@media (max-width: 1560px) {
  .header_top {
    padding-left: 95px;
  }
}
@media (max-width: 1200px) {
  .header_top {
    display: none;
  }
}
.header_top-tel {
  color: var(--color-white);
}
.header_body {
  display: flex;
  gap: 229px;
  align-items: center;
  padding: 5px 0;
}
@media (max-width: 800px) {
  .header_body {
    gap: 0;
    justify-content: space-between;
    padding: 15px 15px;
  }
}
.header_body-logo {
  width: 100%;
  max-width: 203px;
}
@media (max-width: 800px) {
  .header_body-logo {
    max-width: 103px;
  }
}

.nav_list {
  display: flex;
  gap: 66px;
  align-items: center;
  position: absolute;
}
@media (max-width: 793px) {
  .nav_list {
    display: none;
  }
}
.nav_item {
  flex-shrink: 0;
  transition: all 1s;
  cursor: pointer;
}
.nav_link:hover {
  color: var(--color-black);
  text-decoration: underline;
}

.burger {
  display: none;
  cursor: pointer;
}

@media (max-width: 800px) {
  .burger {
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 100;
  }
}
.burger div {
  width: 15px;
  height: 2px;
  background-color: var(--color-bg-green);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu_link {
  font-weight: 400;
  font-size: 15px;
  color: var(--color-black);
}
@media (min-width: 793px) {
  .mobile-menu_link {
    display: none;
  }
}
.mobile-menu_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  top: 88px;
  transform: translateX(150%);
  transition: transform 0.3s ease;
  position: fixed;
  z-index: 100;
  padding: 25px 25px 33px 28px;
  border-bottom-left-radius: 15px;
  align-items: flex-end;
  background-color: var(--color-white);
}
@media (min-width: 793px) {
  .mobile-menu_list {
    display: none;
  }
}
.mobile-menu_list.active-list {
  transform: translateX(50%);
}
.mobile-menu_links {
  color: var(--color-black);
  font-weight: 400;
  font-size: 14px;
}

@media (max-width: 450px) {
  #firstSwiper {
    display: none;
  }
}

.swiper-slide_textWrap {
  position: absolute;
  top: 30px;
  z-index: 1000;
  max-width: 750px;
}
@media (max-width: 800px) {
  .swiper-slide_textWrap {
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.swiper-slide_title {
  font-weight: 700;
  font-size: 36px;
  color: var(--color-blue);
  line-height: 122%;
}
@media (max-width: 800px) {
  .swiper-slide_title {
    font-size: 30px;
  }
}
.swiper-slide_text {
  font-weight: 400;
  font-size: 18px;
  color: var(--color-white);
  line-height: 122%;
  padding-top: 7px;
}
.swiper-slide_img {
  display: block;
  position: relative;
}
.swiper-slide_btn-wrap {
  padding: 10px 22px;
  background-color: var(--color-light-green);
  margin-top: 10px;
  font-weight: 400;
  font-size: 18px;
  transition: all 1s;
  max-width: 300px;
}
@media (min-width: 920px) {
  .swiper-slide_btn-wrap {
    display: none;
  }
}
.swiper-slide_btn {
  padding: 12px 52px;
  background-color: var(--color-light-green);
  position: absolute;
  z-index: 1000;
  display: flex;
  right: 280px;
  bottom: 41px;
  font-weight: 400;
  font-size: 20px;
  transition: all 1s;
}
@media (max-width: 1560px) {
  .swiper-slide_btn {
    right: 110px;
  }
}
@media (max-width: 920px) {
  .swiper-slide_btn {
    display: none;
  }
}
.swiper-slide_btn:hover {
  background-color: #7ba195;
}
.swiper-slide_btn:active {
  background-color: var(--color-white);
}

.pagination {
  position: absolute;
  margin-bottom: 60px;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #ccc;
  opacity: 1;
  border-radius: 50%;
}

.pagination .swiper-pagination-bullet-active {
  background-color: #4f7d6f;
}

.navigation {
  position: absolute;
  top: 52%;
  left: 48%;
  width: 1330px;
  max-width: 90%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  pointer-events: auto;
  z-index: 100;
}

@media (max-width: 800px) {
  .navigation {
    display: none;
  }
}
.prev,
.next {
  pointer-events: auto;
  cursor: pointer;
}

@media (min-width: 450px) {
  .slider-mobile {
    display: none;
  }
}
.slider-mobile_swiper-slide {
  position: relative;
}
.slider-mobile_img {
  width: 100%;
  max-width: 450px;
}
.slider-mobile_info {
  position: absolute;
  top: 25px;
  text-align: center;
  color: var(--color-white);
  padding: 0 33px;
}
.slider-mobile_title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
}
.slider-mobile_text {
  font-weight: 400;
  font-size: 17px;
}
.slider-mobile_pagination {
  position: absolute;
  bottom: 27px;
  margin-bottom: 27px;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-mobile_pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #ccc;
  opacity: 1;
  border-radius: 50%;
}
.slider-mobile_pagination .swiper-pagination-bullet-active {
  background-color: #4f7d6f;
}

.main {
  padding-top: 38px;
  margin-bottom: 45px;
}
@media (max-width: 800px) {
  .main {
    margin: 0 15px;
  }
}
.main_title {
  margin-bottom: 14px;
  color: var(--color-black);
}
@media (max-width: 800px) {
  .main_title {
    margin-bottom: 50px;
  }
}
.main_subtitle {
  margin-bottom: 34px;
  color: var(--color-black);
}
@media (max-width: 800px) {
  .main_subtitle {
    display: none;
  }
}
.main_body {
  margin-bottom: 31px;
}

.body-item {
  display: flex;
  gap: 18px;
  align-items: center;
  border-radius: 15px;
  padding: 20px 55px;
  flex-shrink: 0;
  align-self: stretch;
  flex: 1;
  cursor: pointer;
  transition: all 1s;
}
@media (max-width: 700px) {
  .body-item {
    justify-content: center;
  }
}

.services {
  margin-bottom: 64px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.services_title {
  margin-bottom: 14px;
  color: var(--color-black);
}
@media (max-width: 800px) {
  .services_title {
    margin-bottom: 58px;
    padding-top: 25px;
  }
}
.services_subtitle {
  margin-bottom: 37px;
  color: var(--color-black);
}
@media (max-width: 800px) {
  .services_subtitle {
    display: none;
  }
}
.services_body {
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .services_body {
    margin-bottom: 20px;
  }
}
.services_img {
  width: 100%;
  max-width: 440px;
}
@media (max-width: 1700px) {
  .services_img {
    max-width: 435px;
  }
}
.services_item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.services_item-text {
  position: absolute;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  top: 23px;
  font-weight: 600;
  font-size: 20px;
  color: var(--color-white);
}
.services_item-bottom {
  background-color: var(--color-light-green);
  padding: 13px 120px;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 800px) {
  .services_item-bottom {
    display: none;
  }
}
.services_btn {
  align-self: center;
  padding: 14px 50px;
}
@media (max-width: 800px) {
  .services_btn {
    padding: 13px 70px;
  }
}

.works {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.works_title {
  margin-bottom: 54px;
  color: var(--color-black);
}
.works_body {
  display: flex;
  margin-bottom: 20px;
  justify-content: center;
}
@media (max-width: 800px) {
  .works_body {
    display: none;
  }
}
.works_body-img {
  width: 100%;
  max-width: 325px;
}
@media (max-width: 1700px) {
  .works_body-img {
    max-width: 315px;
  }
}
.works_btn {
  margin: 0 auto;
  padding: 14px 83px;
}
@media (max-width: 800px) {
  .works_btn {
    padding: 13px 103px;
  }
}

@media (min-width: 800px) {
  .works-mobile {
    display: none;
  }
}
.works-mobile_swiper-slide {
  display: flex;
  justify-content: center;
}
.works-mobile_img {
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
  height: auto;
}

.reviews {
  margin-bottom: 64px;
}
@media (max-width: 800px) {
  .reviews {
    margin: 40px 15px;
  }
}
.reviews_title {
  margin-bottom: 51px;
}
.reviews_slider {
  position: relative;
  width: 1280px;
  height: 467px;
  overflow: hidden;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .reviews_desktop {
    display: none;
  }
}
.reviews_slides {
  display: flex;
  gap: 78px;
  justify-content: center;
  margin: 0 83px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}
.reviews_slide {
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews_prev, .reviews_next {
  width: 32px;
  height: 63px;
  color: var(--color-light-green);
  transition: all 1s;
  position: absolute;
  top: 50%;
  cursor: pointer;
  z-index: 10;
}
@media (max-width: 500px) {
  .reviews_prev, .reviews_next {
    width: 22px;
    height: 43px;
  }
}
.reviews_prev {
  left: 0;
}
@media (max-width: 500px) {
  .reviews_prev {
    margin-right: 5px;
  }
}
.reviews_next {
  transform: scaleX(-1);
  right: 0;
}

.active-nav {
  color: #7ba195;
}

@media (min-width: 800px) {
  .reviews-mobile {
    display: none;
  }
}
.reviews-mobile_swiper {
  position: relative;
}
.reviews-mobile_img {
  width: 100%;
  max-width: 600px;
}
.reviews-mobile_pagination {
  padding-top: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.reviews-mobile_pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #ccc;
  opacity: 1;
  border-radius: 50%;
}
.reviews-mobile_pagination .swiper-pagination-bullet-active {
  background-color: #4f7d6f;
}

.how {
  margin-bottom: 43px;
}
.how_title {
  margin-bottom: 75px;
  color: var(--color-black);
}
@media (max-width: 800px) {
  .how_title {
    margin-bottom: 50px;
  }
}
.how_content {
  margin: 0 124px;
  justify-content: center;
}
@media (max-width: 800px) {
  .how_content {
    display: none;
  }
}

.how-body {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 325px;
  height: 325px;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 25px;
}
.how-body_text {
  font-weight: 600;
  font-size: 32px;
  color: var(--color-dark);
  text-align: center;
}
@media (max-width: 800px) {
  .how-body_text {
    font-size: 22px;
  }
}

@media (min-width: 800px) {
  .how-mobile {
    display: none;
  }
}
.how-mobile_info {
  display: flex;
  flex-direction: column;
  gap: 27px;
  align-items: center;
  justify-content: center;
}
.how-mobile_body {
  text-align: center;
  font-weight: 500;
  font-size: 18px;
  padding: 6px 0;
  min-width: 250px;
  color: var(--color-black);
}

.border-blue {
  border-bottom: 2px solid var(--color-blue);
}

.border-green {
  border-bottom: 2px solid var(--color-light-green);
}

.border-orange {
  border-bottom: 2px solid var(--color-orange);
}

.request {
  margin-bottom: 49px;
}
.request_title {
  margin-bottom: 15px;
  color: var(--color-black);
}
@media (max-width: 800px) {
  .request_title {
    margin-bottom: 50px;
  }
}
.request_subtitle {
  margin-bottom: 57px;
  color: var(--color-black);
}
@media (max-width: 800px) {
  .request_subtitle {
    display: none;
  }
}
.request_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .request_body {
    margin-bottom: 50px;
  }
}
.request_input {
  border-radius: 7px;
  border: 2px solid var(--color-dark);
  padding: 10px 160px 7px 13px;
}
@media (max-width: 800px) {
  .request_input {
    padding: 10px 116px;
    text-align: center;
  }
}
.request_input::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.request_input::placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 800px) {
  .request_input::-moz-placeholder {
    color: var(--color-black);
    font-size: 18px;
  }
  .request_input::placeholder {
    color: var(--color-black);
    font-size: 18px;
  }
}
.request_btn {
  padding: 14px 50px;
}
@media (max-width: 800px) {
  .request_btn {
    padding: 13px 70px;
  }
}
.request_btn:active {
  background-color: var(--color-hover-green);
}

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

.input-body {
  margin-bottom: 35px;
  display: flex;
  gap: 20px;
}
@media (max-width: 800px) {
  .input-body {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.footer {
  background-color: var(--color-salat);
  padding: 25px 0px 0 0px;
  border-top: 2px solid #35453b;
}
.footer_top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 44px;
}
@media (max-width: 800px) {
  .footer_top {
    display: none;
  }
}
.footer_top-logo {
  display: block;
}
@media (max-width: 800px) {
  .footer_top-logo {
    order: -1;
    width: 100%;
    max-width: 160px;
    margin-bottom: 20px;
  }
}
.footer_bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background-color: var(--color-bg-green);
  color: var(--color-white);
  font-weight: 400;
  font-size: 16px;
  padding: 17px 0;
}
@media (max-width: 800px) {
  .footer_bottom {
    display: none;
  }
}
.footer_bottom-tel {
  color: var(--color-white);
}

.footer-nav_list {
  max-height: 120px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  flex-wrap: wrap;
  -moz-column-gap: 95px;
       column-gap: 95px;
}
.footer-nav_link {
  color: var(--color-black);
  font-weight: 400;
  font-size: 18px;
}

.footer-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 27px;
  gap: 21px;
}
@media (min-width: 800px) {
  .footer-mobile {
    display: none;
  }
}
.footer-mobile_bottom {
  display: flex;
  gap: 45px;
}

.logo {
  width: 100%;
  max-width: 108px;
}

.mobile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mobile-contact {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--color-black);
}

.mobile-link {
  color: var(--color-black);
}

.mobile-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ourwork {
  margin-bottom: 35px;
}
.ourwork_bottom {
  padding-top: 24px;
}
@media (max-width: 800px) {
  .ourwork_bottom {
    margin: 0 15px;
  }
}

.row {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 800px) {
  .row {
    margin: 0 15px;
  }
}

.bottom-body {
  position: relative;
}
.bottom-body_img {
  width: 100%;
  max-width: 440px;
  border-radius: 10px;
  min-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bottom-body_group {
  position: absolute;
  bottom: 35px;
  left: 32px;
}
.bottom-body_name {
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
  margin-bottom: 9px;
}
.bottom-body_btn {
  font-weight: 400;
  font-size: 20px;
  padding: 13px 31px;
  color: var(--color-dark);
}

.icon {
  position: absolute;
  top: 17px;
  right: 21px;
  width: 100%;
  max-width: 68px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-light-green);
  text-align: center;
}

.icon img {
  padding-top: 11px;
}

.service {
  margin-bottom: 44px;
}

.service-bottom {
  padding-top: 42px;
}
@media (max-width: 950px) {
  .service-bottom {
    padding-top: 12px;
  }
}

.service-body {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 800px) {
  .service-body {
    margin: 0 15px;
  }
}
.service-body_img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.service-body_title {
  position: absolute;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  top: 23px;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
}
@media (max-width: 800px) {
  .service-body_title {
    padding: 0 10px;
    font-size: 21px;
  }
}
.service-body_btn {
  position: absolute;
  font-weight: 400;
  font-size: 20px;
  bottom: 32px;
  white-space: nowrap;
  left: 50%;
  transform: translateX(-50%);
  padding: 11px 21px;
  color: var(--color-black);
  padding: 13px 44px;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-overlay.active {
  display: flex;
  z-index: 2000;
}

.modal {
  max-width: 1170px;
  display: flex;
  gap: 20px;
  background-color: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  color: black;
}
@media (max-width: 800px) {
  .modal {
    flex-wrap: wrap;
    margin: 0 15px;
  }
}
.modal_img {
  width: 100%;
  max-width: 555px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.modal_body {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.modal-text {
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 800px) {
  .modal-text {
    font-size: 14px;
  }
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.modal-info_group {
  display: flex;
  padding: 18px 5px 18px 31px;
  border-radius: 15px;
  align-items: center;
  gap: 13px;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 800px) {
  .modal-info_group {
    font-size: 16px;
    padding: 11px;
  }
}

.short {
  max-width: 440px;
}

.servicePage {
  margin-bottom: 21px;
}
.servicePage_body {
  padding-top: 21px;
}
@media (max-width: 800px) {
  .servicePage_body {
    justify-content: center;
    margin: 0 15px;
  }
}

.servicePage-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.servicePage-left_top {
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .servicePage-left_top {
    margin-bottom: 20px;
  }
}
.servicePage-left_img {
  width: 100%;
  max-width: 669px;
  height: 669px;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
@media (max-width: 800px) {
  .servicePage-left_img {
    height: auto;
    aspect-ratio: auto;
  }
}
.servicePage-left_price {
  margin-bottom: 30px;
  color: var(--color-dark);
  font-weight: 600;
  font-size: 32px;
}
.servicePage-left_btn {
  padding: 13px 137px;
  color: var(--color-dark);
  white-space: nowrap;
}
@media (max-width: 800px) {
  .servicePage-left_btn {
    padding: 11px 57px;
  }
}

.servicePage-right {
  display: flex;
  flex-direction: column;
}
.servicePage-right_images {
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .servicePage-right_images {
    justify-content: center;
  }
}
.servicePage-right_img {
  width: 100%;
  max-width: 325px;
}
.servicePage-right_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 120px;
}
@media (max-width: 800px) {
  .servicePage-right_info {
    margin-bottom: 30px;
  }
}
.servicePage-right_body {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0 18px 34px;
  border-radius: 15px;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 800px) {
  .servicePage-right_body {
    font-size: 16px;
  }
}
.servicePage-right_body:nth-child(1) {
  max-width: 640px;
  width: 100%;
}
@media (max-width: 800px) {
  .servicePage-right_body:nth-child(1) {
    max-width: 340px;
  }
}
.servicePage-right_body:nth-child(2) {
  max-width: 555px;
  width: 100%;
}
@media (max-width: 800px) {
  .servicePage-right_body:nth-child(2) {
    max-width: 300px;
  }
}
.servicePage-right_body:nth-child(3) {
  max-width: 440px;
  width: 100%;
}
@media (max-width: 800px) {
  .servicePage-right_body:nth-child(3) {
    max-width: 250px;
  }
}
.servicePage-right_text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 669px;
  font-weight: 400;
  font-size: 20px;
}

.aboutUs {
  margin-bottom: 50px;
}
.aboutUs_body {
  padding-top: 56px;
}
@media (max-width: 800px) {
  .aboutUs {
    margin: 0 15px;
  }
}

.aboutUs-top {
  font-size: 20px;
  margin-bottom: 50px;
}
.aboutUs-top_left {
  max-width: 670px;
}
.aboutUs-top_left-title {
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 50px;
}
.aboutUs-top_left-text {
  margin-bottom: 50px;
}
.aboutUs-top_left-text span {
  font-weight: 700;
}
.aboutUs-top_left-list {
  display: flex;
  flex-direction: column;
  padding-top: 10px;
  margin-bottom: 50px;
}
.aboutUs-top_left-item {
  list-style-type: disc;
  font-weight: 600;
  margin-left: 30px;
}
.aboutUs-top_body {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-top: 30px;
}
.aboutUs-top_info {
  border-radius: 15px;
  padding: 8px 0 10px 20px;
}
.aboutUs-top_info p {
  font-weight: 600;
}
.aboutUs-top_right {
  max-width: 670px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.aboutUs-top_right-logo {
  width: 100%;
  max-width: 428px;
  margin-bottom: 40px;
}
@media (max-width: 800px) {
  .aboutUs-top_right-logo {
    display: none;
  }
}
.aboutUs-top_right-img {
  width: 100%;
  max-width: 670px;
  margin-bottom: 55px;
}
@media (max-width: 800px) {
  .aboutUs-top_right-img {
    margin-bottom: 40px;
  }
}
.aboutUs-top_right-title {
  align-self: self-start;
  margin-bottom: 51px;
  font-weight: 600;
  font-size: 32px;
}
.aboutUs-top_right-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 20px;
}
.aboutUs-top_right-item {
  list-style-type: decimal;
}

.aboutUs-bottom_title {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
}
.aboutUs-bottom_body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 21px;
  padding-top: 29px;
  margin-bottom: 30px;
}

.aboutUs-bottom-row {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 400px;
  border-radius: 15px;
  padding: 26px;
}
@media (max-width: 800px) {
  .aboutUs-bottom-row {
    min-width: 300px;
  }
}

.aboutUs-bottom-row p {
  font-weight: 600;
  font-size: 30px;
}
@media (max-width: 800px) {
  .aboutUs-bottom-row p {
    font-size: 20px;
  }
}

.blog_body {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  margin-bottom: 106px;
}
@media (max-width: 800px) {
  .blog_body {
    margin: 0 15px;
    margin-bottom: 55px;
  }
}
.blog_body-img-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.blog_body-img-wrapper:hover .blog_body-overlay {
  opacity: 1;
}
.blog_body-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.blog_body-more {
  color: white;
  font-weight: 400;
  font-size: 20px;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 10px;
}
.blog_body-topik {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-green);
  border-radius: 15px;
  padding: 15px 15px 47px 15px;
  color: var(--color-white);
  position: relative;
  width: 100%;
  max-width: 630px;
}
.blog_body-topik:hover .blog_body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
.blog_body-date {
  position: absolute;
  top: 30px;
  right: 36px;
  color: var(--color-black);
  font-weight: 400;
  font-size: 20px;
  background-color: var(--color-light-green);
  border-radius: 12px;
  padding: 5px 20px;
}
.blog_body-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.blog_body-title {
  font-weight: 600;
  font-size: 24px;
  padding-top: 12px;
  width: 100%;
}
@media (max-width: 800px) {
  .blog_body-title {
    font-size: 18px;
  }
}
.blog_body-text {
  font-weight: 400;
  font-size: 24px;
  padding-top: 4px;
}
@media (max-width: 800px) {
  .blog_body-text {
    font-size: 18px;
  }
}

.article_title {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .article_title {
    font-size: 20px;
  }
}
.article_text {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 76px;
}
@media (max-width: 800px) {
  .article_text {
    font-size: 20px;
    margin-left: 15px;
  }
}
.article_info {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 77px;
}
@media (max-width: 800px) {
  .article_info {
    margin: 0 15px;
    margin-bottom: 50px;
  }
}
.article_info-subtitle {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 800px) {
  .article_info-subtitle {
    font-size: 20px;
  }
}
.article_info-text {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 800px) {
  .article_info-text {
    font-size: 18px;
  }
}
.article_info-descr {
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 800px) {
  .article_info-descr {
    font-size: 18px;
  }
}
.article_info-list {
  font-weight: 400;
  font-size: 20px;
  margin-left: 27px;
}
@media (max-width: 800px) {
  .article_info-list {
    font-size: 18px;
  }
}
.article_info-item {
  list-style-type: disc;
}
.article_bottom {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 134px;
  padding-top: 30px;
}
@media (max-width: 800px) {
  .article_bottom {
    margin-bottom: 50px;
  }
}
.article_bottom-text {
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 800px) {
  .article_bottom-text {
    font-size: 20px;
    margin-left: 15px;
  }
}

.contacts_body {
  padding-top: 32px;
  margin-bottom: 50px;
}
@media (max-width: 800px) {
  .contacts_body {
    margin: 0 15px;
  }
}
.contacts_body-left {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 19px;
}
.contacts_body-right {
  width: 100%;
  max-width: 670px;
  height: 630px;
  padding-top: 20px;
}
@media (max-width: 600px) {
  .contacts_body-right {
    margin-bottom: 50px;
  }
}

.left-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  max-width: 670px;
  gap: 26px;
}
@media (max-width: 450px) {
  .left-top {
    display: flex;
    flex-wrap: wrap;
  }
}

.contacts-row {
  display: flex;
  align-self: flex-start;
  align-items: center;
  gap: 11px;
}
.contacts-row_col {
  display: flex;
  flex-direction: column;
}

.contacts-row a {
  color: var(--color-dark);
}

.col-title {
  color: var(--color-dark);
  font-weight: 600;
  font-size: 24px;
}

@media (max-width: 800px) {
  .col-title {
    font-size: 18px;
  }
}
.col-text {
  font-weight: 400;
  font-size: 20px;
}

@media (max-width: 800px) {
  .col-text {
    font-size: 18px;
  }
}
.left-bottom {
  background-color: var(--color-bg-green);
  border-radius: 15px;
  max-width: 670px;
  position: relative;
  height: 100%;
}
.left-bottom_decor {
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.left-bottom_body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.left-bottom_title {
  z-index: 1000;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-white);
  padding-top: 18px;
  margin-bottom: 17px;
}
.left-bottom_input {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 17px;
  border: 1px solid transparent;
  padding: 12px 0 17px 15px;
}
@media (max-width: 600px) {
  .left-bottom_input {
    padding: 12px 6px;
  }
}
.left-bottom_input::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.left-bottom_input::placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
}
.left-bottom_input:focus {
  outline: none;
}
.left-bottom_btn {
  z-index: 1000;
  color: var(--color-white);
  padding: 19px 106px;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .left-bottom_btn {
    padding: 12px 56px;
  }
}

.input-wrapper {
  max-width: 600px;
  z-index: 1000;
}

@media (max-width: 800px) {
  .input-wrapper {
    max-width: 350px;
    margin-right: 7px;
  }
}
.map {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}/*# sourceMappingURL=main.css.map */