body, html {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
* {
  outline: none !important;
  box-sizing: border-box;
}
body {
  font-family: "Raleway", sans-serif;
  /* font-family: "Inter", sans-serif; */
  background: #F8F8F8;
  padding-top: 180px;
}
header {
  font-family: "Inter", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
section {
  scroll-margin-top: 180px;
}

.container_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 10px;
}
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0px 44px;
}
.c_header {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 10;
}
.c_header_top_wrap {
  padding: 20px 52px;
  border-radius: 30px;
  background: #FFF;
  box-shadow: 0px 1px 4px 1px rgba(0,0,0,0.09);
  transition: .3s;
}
.c_header.is_open .c_header_top_wrap {
  box-shadow: none;
}
.c_header_top_bar {
  margin-bottom: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(117, 117, 117, 0.20);
}
.c_header_top_bar_flex {
  display: flex;
  align-items: center;
}
.c_header_phone_list {
  display: flex;
  align-items: center;
  gap: 36px;
}
.c_header_phone_list_item {
  display: flex;
  align-items: center;
  gap: 24px;
  transition: .3s;
}
.c_header_phone_list_item_icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #41A744;
  flex-shrink: 0;
}
.c_header_phone_list_item_wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c_header_phone_list_item_phone {
  color: #3A3A3A;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
.c_header_phone_list_item_text {
  color: #404040;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.c_header_contact_list {
  margin-right: 64px;
}
.c_header_fill_link {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  background: #41A744;
  padding: 8px 16px 8px 6px;
  cursor: pointer;
  color: #FFF;
  transition: .3s;
}
.c_header_fill_link_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background: #FFF;
}
.c_header_fill_link_text {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
.c_header_fill_link:hover {
  opacity: .8;
}
.c_header_callback {
  margin-left: auto;
  margin-right: 10px;
}
.c_header_fill_link.c_header_nofill_link {
  background: #F9F9F9;
  color: #3A3A3A;
}
.c_header_nofill_link .c_header_fill_link_icon {
  background: rgba(65, 167, 68, 0.20);
}

.c_header_top_menu_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c_header_top_menu_list_item {
  color: #4C4C4C;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  transition: .3s;
}
.c_header_top_menu_list_item:hover {
  opacity: .8;
}

.c_burger_btn {
  display: none;
}
.c_burger_btn_icon {
  position: relative;
}
.c_burger_btn_icon > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}
.c_burger_btn .c_burger_btn_icon__closed {
  opacity: 1;
}
.c_burger_btn .c_burger_btn_icon__opened {
  opacity: 0;
}
.c_header.is_open .c_burger_btn .c_burger_btn_icon__closed {
  opacity: 0;
}
.c_header.is_open .c_burger_btn .c_burger_btn_icon__opened {
  opacity: 1;
}

.c_header_phone_dropdown_wrap {
  position: relative;
  margin-right: 10px;
  display: none;
}
.c_header_phone_dropdown_wrap .c_header_phone_list_item {
  border-radius: 20px;
  border: 1px solid #41A744;
  background: #F9F9F9;
  padding: 6px 16px 7px 6px;
}
.c_header_phone_dropdown_wrap .c_header_phone_list_item_icon {
  background: rgba(65, 167, 68, 0.20);
}
.c_header_phone_dropdown_wrap .c_header_phone_list_item_icon:not(:has(svg)) {
  opacity: 0;
}
.c_header_phone_dropdown_wrap .c_header_phone_list_item {
  gap: 14px;
}
.c_header_phone_dropdown_wrap .c_header_phone_list_item_wrap {
  gap: 4px;
}
.c_header_phone_dropdown_arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  width: 24px;
  cursor: pointer;
  transition: .3s;
}
.c_header_phone_dropdown_arrow svg {
  transition: .3s;
}
.c_header_phone_dropdown_arrow:hover {
  opacity: .8s;
}
.c_header_phone_dropdown_list {
  position: absolute;
  top: calc(100% - 1px);
  width: 100%;
  background: #F9F9F9;
  border: 1px solid #41A744;
  border-radius: 20px;
  border-top: unset;
  display: block;

  transform-origin: top;
  transition: .3s;
  transform: scaley(0);
  opacity: 0;
  z-index: 5;
}
.c_header_phone_dropdown_list .c_header_phone_list_item {
  border: none;
}

.c_header_phone_dropdown_wrap.is_open > .c_header_phone_list_item {
  border-bottom: 1px solid transparent;
  border-radius: 20px 20px 0px 0px;
}
.c_header_phone_dropdown_wrap.is_open .c_header_phone_dropdown_list {
  border-radius: 0px 0px 20px 20px;
  transform: scaley(1);
  opacity: 1;
}
.c_header_phone_dropdown_wrap.is_open .c_header_phone_dropdown_arrow svg {
  transform: rotate(180deg);
}

.c_header_mob_menu_wrap {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;

  margin-top: 10px;
  padding: 14px 18px;
  border-radius: 30px;
  background: #FFF;
  transition: .4s;
  height: calc(100vh - 102px);

  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
}
.c_header_mob_menu_list {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  min-height: 0;
  gap: 4px;
  margin-bottom: 24px;

  overflow-y: auto;
}
.c_header_mob_menu_item {
  display: block;
  padding: 20px 24px;
  border-radius: 20px;
  background: #F9F9F9;

  color: #4C4C4C;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  transition: .3s;
}
.c_header_mob_menu_item:hover {
  opacity: .8;
}

.c_header_mob_phone_list {
  flex-shrink: 0;
}
.c_header_mob_phone_list .c_header_phone_list_item {

}
.c_header_mob_phone_list .c_header_phone_list_item_icon {
  background: #EEF6EE;
}
.c_header_mob_phone_list .c_header_phone_list_item_icon:not(:has(svg)) {
  display: none;
}
.c_header_mob_phone_list .c_header_email_list_item {
  margin-left: auto;
}

.c_header {
  transition: .3s;
}
.c_header.is_open {
  background: #F8F8F8;
}
.c_header.is_open .c_header_mob_menu_wrap {
  position: relative;
  visibility: visible;
  transform: scaleY(1);
  opacity: 1;
}

.banner {
  margin-bottom: 50px;
}
.banner_wrap {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.banner_map {
  position: relative;
  border-radius: 30px;
  background: #FFF;
  overflow: hidden;
  flex: 1;
  flex-shrink: 0;
  padding: 40px 10px;
}
.banner_map_img {
  position: absolute;
  width: calc(100% - 108px);
  height: calc(100% - 34px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.banner_map_container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.banner_main_logo {
  width: 314px;
  margin-bottom: 28px;
}
.banner_logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.banner_logo_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 102px;
  height: 102px;
  background: #F7F7F7;
  border-radius: 50%;
  overflow: hidden;
}
.banner_logo_item img {

}
.banner_logo_sep {
  width: 8px;
  height: 8px;
  background: #379D36;
  border-radius: 50%;
}


.banner_logo_item img {
  width: calc(100% - 15px);
}
.banner_title {
  color: #3A3A3A;
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  line-height: 140%;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.banner_subtitle {
  color: #3A3A3A;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 54px;
}
.banner_adv_wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* display: flex;
  justify-content: center;
  align-items: center; */
  gap: 24px;
}
.banner_adv_item {
  padding: 18px 22px;
  border-radius: 20px;
  background: #379D36;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #FFF;
  text-align: center;
}
.banner_adv_item_title {
  font-family: Inter;
  font-size: 22px;
  font-weight: 700;
  line-height: 100%;
}
.banner_adv_item_text {
  font-family: Raleway;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.banner_video_wrap {
  position: relative;
  width: 100%;
  max-width: 666px;
  /* aspect-ratio: 666 / 680; */
  border-radius: 30px;
  overflow: hidden;
}
.banner_video_wrap > * {
  position: relative;
  z-index: 2;
}
.banner_img_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: .3s;
}
.banner_video_name {
  position: absolute;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(42px);
  right: 16px;
  bottom: 20px;
  left: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: .3s;
}
.banner_video_name_wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #FFF;
}
.banner_video_name_inner {
  font-family: Raleway;
  font-size: 36px;
  font-weight: 600;
  line-height: 140%;
}
.banner_video_name_subinner {
  font-family: Raleway;
  font-size: 19px;
  font-weight: 500;
  line-height: 140%;
}
.banner_video_name_icon_wrap {
  width: 87px;
  height: 87px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .3s;
  flex-shrink: 0;
}
.banner_video_name_icon {
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #41A744;
  border-radius: 50%;
}
.banner_video_name_icon_wrap:hover {
  opacity: .8;
}
.banner_video_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  transition: .3s;
  opacity: 0;
}
.banner_video_bg video {
  width: 100%;
  height: 100%;
  background: #000;
  object-fit: cover;
}
.banner_video_wrap.is_watching .banner_img_bg {
  opacity: 0;
  z-index: 1;
}
.banner_video_wrap.is_watching .banner_video_name {
  opacity: 0;
  z-index: 1;
}
.banner_video_wrap.is_watching .banner_video_bg {
  opacity: 1;
}

.application {
  margin-bottom: 72px;
}
.section_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 34px;
  margin-bottom: 25px;
}
.section_top_title {
  color: #2C2C2C;
  font-size: 44px;
  font-weight: 600;
  line-height: 140%;
}
.section_top_controls {
  
}
.c_arrow_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.c_arrow_slider {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #FFF;
  width: 64px;
  height: 64px;
  cursor: pointer;
  transition: .3s;
}
.c_arrow_slider:hover {
  opacity: .8;
}
.c_arrow_slider.swiper-button-lock {
  display: none;
}
.c_arrow_slider.swiper-button-disabled {
  pointer-events: none;
  opacity: .4;
}

.application_wrap {
  background: #FFF;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 34px;
  padding: 20px 20px 20px 48px;
  height: auto;
}
.application_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding-top: 70px;
  color: #2C2C2C;
}
.application_text_title {
  font-size: 40px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 10px;
}
.application_text_subtitle {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 18px;
}
.application_text_btn {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 30px;
  border-radius: 30px;
  background: #EE2D25;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
  transition: .3s;
}
.application_text_btn:hover {
  opacity: .7;
}
.application_gallery {
  width: 828px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.application_gallery_item {
  display: block;
  width: 411px;
  border-radius: 30px;
  overflow: hidden;
}
.application_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.companies_slide {
  border-radius: 30px;
  background: #FFF;
  width: 596px;
  height: auto;
  padding: 14px;
}
.companies_slide_top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  margin-bottom: 14px;
}
.companies_slide_top > img {
  max-height: 100%;
}
.companies_slide_content {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #E8E8E8;
}
.companies_slide_title {
  margin-bottom: 8px;
  color: #1D1D1D;
  font-size: 30px;
  font-weight: 600;
  line-height: 160%;
}
.companies_slide_text {
  color: #4C4C4C;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
.companies_slide_info {
  /* padding: 0px 14px 14px; */
  /* flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; */
}
.companies_slide_info_wrap {
  display: flex;
  align-items: stretch;
  gap: 4px;
  margin-bottom: 4px;
}
.companies_slide_rating {
  width: 250px;
  border-radius: 30px;
  /* background: #F9F9F9; */
  background: #f6f6f6;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  padding: 14px;
  flex-shrink: 0;
}
.companies_slide_rating iframe {
  transition: .3s;
}
.companies_slide_rating iframe:hover {
  opacity: .5;
}
.companies_slide_site {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-radius: 30px;
  background: #F9F9F9;
  padding: 14px;
}
.companies_slide_site_text {
  color: #4C4C4C;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}
.companies_slide_site_link {
  text-align: center;
  color: #1D1D1D;
  font-size: 17px;
  font-weight: 600;
  line-height: 160%; /* 27.2px */
  text-decoration: underline;
  transition: .3s;
  white-space: nowrap;
}
.companies_slide_site_link:hover {
  opacity: .7;
}
.companies_slide_soc_wrap {
  padding: 14px;
  border-radius: 30px;
  background: #F9F9F9;
  display: flex;
  align-items: center;
  gap: 36px;
}
.companies_slide_soc_item {
  height: 21px;
  transition: .3s;
}
.companies_slide_soc_item img {
  height: 100%;
  width: auto;
}
.companies_slide_soc_item:hover {
  opacity: .7;
}
.companies {
  margin-bottom: 48px;
}

.map {
  background: #E8F3E9;
  padding-top: 48px;
  position: relative;
  height: 1000px;
  /* height: calc(100vh - 200px); */
  margin-bottom: 64px;
}
.map > .container {
  position: relative;
  z-index: 2;
}
.map_inner {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  overflow: hidden;
}
.map_inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map_popup {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-90%, -50%);
  border-radius: 30px;
  background: #FFF;
  padding: 14px;
}
.map_popup_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 14px;
  margin-bottom: 18px;
}
.map_popup_name {
  color: #1D1D1D;
  font-size: 28px;
  font-weight: 600;
  line-height: 160%; /* 44.8px */
}
.map_popup_close {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.map_popup_close svg {
  transition: .3s;
}
.map_popup_close:hover svg {
  opacity: .5;
}
.map_popup_content {
  border-radius: 10px;
  background: #F9F9F9;
  padding: 14px;
}
.map_popup_tabs {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0px 16px;
  margin-bottom: 18px;
}
.map_popup_tabs_item {
  color: rgba(29, 29, 29, 0.30);
  font-family: Raleway;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%; /* 30.8px */
  transition: .3s;
  cursor: pointer;
}
.map_popup_tabs_item.active {
  color: #1D1D1D;
}
.map_popup_tabs_item:not(.active):hover {
  color: rgba(29, 29, 29, 0.70);
}
.map_popup_tabs_content {
  display: none;
  /* grid-template-columns: repeat(3, 1fr);
  gap: 4px; */
}
.map_popup_tabs_content.active {
  display: block;
}
.map_popup_tabs_content_item {
  border-radius: 20px;
  background: #FFF;
  padding: 2px 2px 11px 2px;
}
.map_popup_tabs_content_item_bg {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
}
.map_popup_tabs_content_item_bg::before {
  position: absolute;
  z-index: 2;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 55%, rgba(0, 0, 0, 0.70) 80%);
  /* background-color: #000;
  opacity: .2; */
}
.map_popup_tabs_content_item_bg img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.map_popup_tabs_content_item_name {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 14px;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
  /* text-shadow: 1px 1px 1px #0000006e; */
}
.map_popup_tabs_content_item_info {
  padding: 12px 14px 0px;
}
.map_popup_tabs_content_item_info_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  color: #000;
  margin-bottom: 10px;
}
.map_popup_tabs_content_item_info_row_name {
  font-size: 14px;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
}
.map_popup_tabs_content_item_info_row_value {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%; /* 19.6px */
}
.map_popup_tabs_content_item_info_link {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  margin-top: 2px;
  border-radius: 30px;
  background: rgba(238, 45, 37, 0.10);

  color: #EE2D25;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%; /* 19.6px */

  transition: .3s;
}
.map_popup_tabs_content_item_info_link:hover {
  /* color: #ee2c2587; */
  opacity: .5;
}
.map_popup_tabs_slide {
  width: 246px;
}

/* Viewport — контейнер скролла */
#map-viewport {
  width: 100%;
  height: 100%; /* подгони под дизайн */
  overflow: auto;
  position: relative;
  cursor: grab;
}
#map-viewport.is-panning { cursor: grabbing; }

/* Канвас карты */
#map-canvas-front {
  position: relative;
  width: 100%;
  user-select: none;
}

#map-svg-front {
  display: block;
  width: 100%;
  height: auto;
}

#map-points-front {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-front-point {
  position: absolute;
  pointer-events: all;
  transform: translate(-50%, -100%);
  transform-origin: bottom center;
  cursor: pointer;
}

.map-front-point img {
  width: 32px;
  height: 32px;
  display: block;
  object-fit: unset;
}

.map-front-point:hover img {
    filter: brightness(1.2);
}


#map-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: inherit;
}

#map-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

#map-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 0 20px;
  pointer-events: none;
  user-select: none;
}

#map-overlay-inner svg {
  opacity: 0.9;
}




.clients {
  margin-bottom: 133px;
}
.clients_slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  width: 596px;
  height: 562px;
  border-radius: 30px;
  overflow: hidden;
  transition: .3s;
}
.clients_slide:hover {
  opacity: .9;
}
.clients_slide:before {
  position: absolute;
  content: '';
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: .1;
}
.clients_slide_bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.clients_slide_content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #FFF;
}
.clients_slide_content_title {
  font-family: Raleway;
  font-size: 36px;
  font-weight: 600;
  line-height: 140%; /* 50.4px */
  text-shadow: 1px 1px 2px #00000091;
}
.clients_slide_content_text {
  font-family: Raleway;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%; /* 28px */
}

.partners {
  margin-bottom: 129px;
}
.partners_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 300px;
  border-radius: 30px;
  background: #FBFBFB;
  overflow: hidden;
  transition: .3s;
  padding: 14px;
}
.partners_slide:hover {
  opacity: .8;
}
.partners_slide img {
  max-height: 100%;
}


.container:has(.swiper-initialized:not(.application_slider):not(.team_slider):not(.companies_slider):not(.clients_slider)) {
  padding-right: 0px;
}
.container:has(.swiper-initialized:not(.application_slider):not(.team_slider):not(.companies_slider):not(.clients_slider)) .swiper {
  padding-right: 44px;
}

.reviews {
  margin-bottom: 128px;
}
.reviews_slide {
  width: 450px;
  height: auto;
  border-radius: 30px;
  background: #FFF;
  padding: 4px 10px 14px;
}
.reviews_slide_bg {
  display: block;
  position: relative;
  height: 490px;
  margin-bottom: 20px;
  border-radius: 30px;
  overflow: hidden;
  transition: .3s;
}
.reviews_slide_bg:hover {
  opacity: .8;
}
.reviews_slide_text {
  text-align: center;
  font-family: Inter;
  color: #2C2C2C;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
}
.reviews_slide_bg > img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
  object-fit: contain;
}
.reviews_slide_bg .reviews_slide_video_wrap {
  position: absolute;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(27px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
  padding: 14px 14px 14px 24px;
}
.reviews_slide_video_wrap_text {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  font-family: "Inter", sans-serif;
}
.reviews_slide_video_wrap_icon {
  width: 64px;
  height: 64px;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.team {
  margin-bottom: 132px;
}
.team_wrap {
  position: relative;
  padding: 4px 100px;
  border-radius: 30px;
  background: #FBFBFB;
}
.team_wrap .c_arrow_slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #F5F5F5;
  border: none;
}
.team_wrap .c_arrow_prev {
  left: 18px;
}
.team_wrap .c_arrow_next {
  right: 18px;
}
.team_slide {
  display: flex;
  align-items: stretch;
  gap: 4px;
}
.team_slide_img {
  flex-shrink: 0;
  width: 554px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  object-fit: cover;
  object-position: 50% 10%;
}
.team_slide_content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: space-between;
}
.team_slide_content_top {
  border-radius: 30px;
  background: rgba(232, 243, 233, 0.30);
  padding: 24px;
}
.team_slide_content_name {
  color: #2C2C2C;
  font-size: 36px;
  font-weight: 600;
  line-height: 140%; /* 50.4px */
  margin-bottom: 18px;
}
.team_slide_content_contacts {
  display: flex;
  gap: 48px;
  align-items: center;
}
.team_slide_content_contacts_pos {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team_slide_content_contacts_info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team_slide_content_contacts_title {
  color: #2C2C2C;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%; /* 30.8px */
}
.team_slide_content_contacts_text {
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
}
.team_slide_content_contacts_info_text {
  display: flex;
  align-items: center;
  gap: 18px;
}
.team_slide_content_contacts_info_num {
  font-family: "Inter", sans-serif;
  color: #1E1E1E;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  transition: .3s;
  white-space: nowrap;
}
.team_slide_content_contacts_info_num:hover {
  opacity: .8;
  text-decoration: underline;
}
.sep {
  width: 1px;
  height: 17px;
  background: rgba(48, 128, 50, 0.20);
}
.team_soc_list {
  display: flex;
  align-items: center;
  gap: 24px;
}
.team_soc_list a {
  display: block;
  width: 28px;
  height: 28px;
  transition: .3s;
}
.team_soc_list a:hover {
  opacity: .8;
}
.team_slide_content_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.team_slide_content_td {
  border-radius: 30px;
  background: rgba(232, 243, 233, 0.30);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.team_slide_content_td_title {
  color: #308033;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%; /* 28px */
}
.team_slide_content_td_text {
  color: #1E1E1E;
  font-size: 17px;
  font-weight: 400;
  line-height: 140%; /* 23.8px */
}
.team .swiper-pagination {
  margin-top: 4px;
  position: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 0px;
}
.team .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  margin: 0px;
  background: rgba(48, 128, 50, 0.20);
}
.team .swiper-pagination .swiper-pagination-bullet-active {
  background: #308032;
}

.callback {
  margin-bottom: 108px;
}
.callback .section_top {
  flex-direction: column;
  align-items: flex-start;
}
.callback .section_top_title {
  margin-bottom: 10px;
}
.callback .section_top_subtitle {
  color: #000;
  font-size: 24px;
  line-height: 160%;
  margin-bottom: 8px;
}
.callback_wrap {
  border-radius: 30px;
  background: #FFF;
  padding: 24px 18px;
}
.callback_form {

}
.form_row_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 28px;
}
.form_row {

}
.form_row label {
  display: block;
  padding-left: 24px;
  color: #308032;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  margin-bottom: 10px;
}
.form_row input,
.form_row textarea {
  border-radius: 30px;
  background: #F5F5F5;
  padding: 24px;
  color: #2C2C2C;
  /* color: #9B9B9B; */
  font-size: 24px;
  font-weight: 500;
  line-height: 140%; /* 33.6px */
  border: 1px solid transparent;
  display: block;
  width: 100%;
}
.form_row input::placeholder,
.form_row textarea::placeholder {
  font-family: Raleway;
  color: #9B9B9B;
}
.form_row textarea {
  resize: none;
  height: 140px;
}
.form_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}
.form_check {

}
.form_check input {
  position: absolute;
  z-index: -1;
  visibility: hidden;
}
.form_check label .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 18px;
  transition: .3s;
  cursor: pointer;
}
.form_check label .wpcf7-list-item-label::before,
.form_check label .wpcf7-list-item-label::after {
  content: none;
}
.form_check label .text {
  color: #000;
  font-size: 20px;
  line-height: 160%;
}
.form_check label .check {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid #308032;
  background: #FFF;
  transition: .3s;
  flex-shrink: 0;
}
.form_check label .check svg {
  opacity: 0;
  transition: .3s;
}
.form_check label:hover {
  opacity: .6;
}
.form_check:has(input:checked) label .check svg {
  opacity: 1;
}
.form_check:has(input:checked) label .check {
  background-color: #308032;
}
.form_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 36px;
  border-radius: 30px;
  background: #41A744;
  color: #FFF;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%; /* 30.8px */
  transition: .3s;
  cursor: pointer;
  border: none;
  font-family: Raleway;
}
.form_submit:hover {
  opacity: .8;
}
.form_submit_wrap {
  position: relative;
}
.form_submit_wrap .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0px;
}
.form_row .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  padding-left: 24px;
  margin-top: 4px;
  font-size: 14px;
}
.wpcf7 .wpcf7-submit:disabled {
  opacity: .5;
}
.wpcf7 form .wpcf7-response-output {
  margin: 18px 0px 0px;
  border-width: 1px;
  border-radius: 20px;
  font-size: 15px;
}
.popup_form .form_submit_wrap {
  width: 100%;
}

.c_footer {
  margin-bottom: 44px;
}
.c_footer_main_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.c_footer_wrap {
  background-color: #FFF;
  border-radius: 30px;
  padding: 24px 4px 4px 4px;
}
.c_footer_wrap:not(:has(.c_footer_adress_wrap)) {
  padding: 24px 28px;
}
.f_logo {
  width: 265px;
  height: auto;
  margin: 0 14px;
  margin-bottom: 39px;
}
.c_footer_contact_row {
  margin: 0 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: .3s;
}
.c_footer_contact_row:hover {
  opacity: .8;
}
.c_footer_contact_row_icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: #41A744;
}
.c_footer_contact_row_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.c_footer_contact_row_text_content {
  color: #3A3A3A;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
}
.c_footer_contact_row_text_subcontent {
  color: #404040;
  font-family: Inter;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}
.c_footer_adress_wrap {
  border-radius: 30px;
  background: #E8F3E9;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c_footer_adress_title {
  color: #308033;
  font-family: Raleway;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%; /* 28px */
}
.c_footer_adress_item {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%; /* 21px */
}
.c_footer_wrap_title {
  color: #3A3A3A;
  font-family: Raleway;
  font-size: 26px;
  font-weight: 600;
  line-height: 140%; /* 36.4px */
  margin-bottom: 24px;
}
.c_footer_phones_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.c_footer_phones_row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: .3s;
}
.c_footer_phones_row:hover {
  opacity: .6;
}
.c_footer_phones_row_number {
  color: #3A3A3A;
  font-family: Inter;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
}
.c_footer_phones_row_text {
  color: #404040;
  font-family: Inter;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%; /* 22.4px */
}
.c_footer_social_wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c_footer_social_row {
  display: flex;
  flex-direction: column;
  gap: 19px;
  border-radius: 30px;
  background: #F9F9F9;
  padding: 18px 18px;
}
.c_footer_social_title {
  color: #3A3A3A;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%; /* 25.2px */
}
.c_footer_social_inner_wrap {
  display: flex;
  align-items: center;
  gap: 36px;
}
.c_footer_social_item {
  display: flex;
  height: 21px;
  transition: .3s;
}
.c_footer_social_item img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.c_footer_social_item:hover {
  opacity: .6;
}
.c_footer_menu_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c_footer_menu_item {
  transition: .3s;
  color: #3A3A3A;
  font-family: Raleway;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}
.c_footer_menu_item:hover {
  opacity: .6;
}

.c_popup {
  width: 100%;
  max-width:476px;
  background: #FFF;
  padding: 0px;
  border-radius: 30px;
}
.c_popup .f-button.is-close-button {
  display: none;
}
.c_popup_wrap {
  border-radius: 30px;
  overflow: hidden;
}
.c_popup_content {
  padding: 24px;
}
.c_popup_header {
  background: #41A744;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 24px;
}
.c_popup_header_text {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 28px */
}
.c_popup_header_close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  transition: .3s;
}
.c_popup_header_close:hover {
  opacity: .8;
}
.c_popup_content {

}
.popup_form .form_row {
  margin-bottom: 24px;
}
.popup_form .form_bottom {
  margin-top: 10px;
}
.popup_form .form_bottom {
  flex-direction: column;
}
.popup_form .form_check label .text {
  font-size: 16px;
}
.popup_form .form_check label .check {
  width: 24px;
  height: 24px;
}
.popup_form .form_check label .check svg {
  width: 12px;
}
.popup_form .form_submit {
  width: 100%;
  background: #EE2D25;
}
.popup_form_badge {
  display: none;
  /* min-height: 185px; */
  border-radius: 30px;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  align-items: center;
}
.popup_form_badge_text {
  color: #1D1D1D;
  font-size: 24px;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
}


@media (max-width: 1585px) {
  .container:has(.swiper-initialized:not(.application_slider):not(.team_slider)) {
    padding-right: 0px;
  }
  .container:has(.swiper-initialized:not(.application_slider):not(.team_slider)) .swiper {
    padding-right: 44px;
  }

  .c_header_contact_list {
    display: none;
  }
  .c_header_phone_list_item_phone {
    font-size: 16px;
  }
  .c_header_phone_dropdown_wrap {
    display: block;
  }
  .banner_video_wrap {
    max-width: 470px;
  }
  .application_gallery_item {
    width: auto;
  }
  .application_gallery {
    width: calc(275px * 2 + 4px);
  }
  .companies_slide {
    width: 500px;
  }
  .companies_slide_top {
    height: 240px;
  }
  .companies_slide_title {
    font-size: 22px;
  }
  .companies_slide_rating {
    width: 190px;
  }

  .clients_slide {
    width: 432px;
    height: 462px;
  }
  .clients_slide_content {
    gap: 10px;
  }
  .clients_slide_content_title {
    font-size: 28px;
  }
  .clients_slide_content_text {
    font-size: 17px;
  }

  .map {
    height: 732px;
  }

  .team_slide {
    align-items: center;
  }
  .team_wrap .c_arrow_slider {
    display: none;
  }
  .team_wrap {
    padding: 4px;
  }

  .map_popup {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
}
@media (max-width: 1440px) {
  .team_slide_img {
    width: 483px;
    height: 526px;
  }
  .team_slide_content_top {
    padding: 18px;
  }
  .team_slide_content_name {
    font-size: 22px;
    margin-bottom: 14px;
  }
  .team_slide_content_contacts_pos {
    gap: 12px;
  }
  .team_slide_content_contacts_info {
    gap: 12px;
  }
  .team_slide_content_contacts {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .team_slide_content_contacts_title {
    font-size: 17px;
  }
  .team_slide_content_contacts_text {
    font-size: 15px;
  }
  .team_slide_content_contacts_info_num {
    font-size: 15px;
  }
  .team_slide_content_td {
    padding: 14px;
    gap: 10px;
  }
  .team_slide_content_td_title {
    font-size: 16px;
  }
  .team_slide_content_td_text {
    font-size: 14px;
  }
  .c_footer_main_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1366px) {
  .partners_slide {
    width: 259px;
    height: 244px;
  }
  .reviews_slide {
    width: 405px;
  }
  .form_bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .form_check label .check {
    width: 24px;
    height: 24px;
  }
  .form_check label .check svg {
    width: 12px;
  }
  .form_submit_wrap {
    width: 100%;
  }
  .form_submit {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  body {
    padding-top: 102px;
  }
  .container {
    padding: 0px 24px;
  }
  .container:has(.swiper-initialized:not(.application_slider):not(.team_slider)) .swiper {
    padding-right: 24px;
  }
  .c_burger_btn {
    display: flex;
  }
  .c_header_email_item {
    display: none;
  }
  .c_header_top_menu {
    display: none;
  }
  .c_header_top_bar {
    padding-bottom: 0px;
    margin-bottom: 0px;
    border-bottom: none;
  }
  .c_header_top_wrap {
    padding: 14px 28px;
  }

  .banner_wrap {
    flex-direction: column;
  }
  .banner_map_img {
    width: calc(100% - 36px);
    height: calc(100% - 30px);
    object-fit: cover;
  }
  .banner_main_logo {
    width: 273px;
    margin-bottom: 24px;
  }
  .banner_title {
    font-size: 40px;
  }
  .banner_video_wrap {
    max-width: 100%;
    aspect-ratio: 1004 / 600;
    min-height: 400px;
  }
  .banner_img_bg {
    object-position: 50% 38%;
  }
  .banner_video_name {
    right: 24px;
    bottom: 24px;
    left: 24px;
    padding: 24px;
  }

  .section_top {
    padding-left: 24px;
    margin-bottom: 14px;
  }
  .application_wrap {
    /* padding-right: 0px; */
  }
  .application_slider {
    /* padding-right: 20px; */
  }
  .section_top_title {
    font-size: 34px;
  }
  .section_top_controls:not(.application_controls) {
    display: none;
  }
  .application_controls .c_arrow_wrap {
    gap: 4px;
  }
  .application_controls .c_arrow_slider {
    border-radius: 16px;
    width: 48px;
    height: 48px;
  }
  .application_controls .c_arrow_slider svg {
    width: 30px;
  }
  .application_text_title {
    font-size: 28px;
  }
  .application_text_subtitle {
    font-size: 18px;
  }
  .application_gallery {
    width: 55%;
  }

  .companies_slide {
    width: 470px;
  }

  .clients {
    margin-bottom: 52px;
  }
  .partners {
    margin-bottom: 48px;
  }
  .team {
    margin-bottom: 52px;
  }
  .reviews {
    margin-bottom: 52px;
  }

  .callback {
    margin-bottom: 48px;
  }

  .callback .section_top_subtitle {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .form_row label {
    font-size: 20px;
  }
  .form_row input, .form_row textarea {
    padding: 18px;
    font-size: 20px;
  }
  .form_row .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
    padding-left: 18px;
  }
  .form_row_grid {
    margin-bottom: 22px;
  }
  .form_check label .text {
    font-size: 18px;
  }
  .form_submit {
    font-size: 20px;
  }

  .c_footer {
    margin-bottom: 24px;
  }

  .f_logo {
    margin-bottom: 36px;
  }

  .c_popup {
    max-width: 420px;
  }
  .c_popup_header_text {
    font-size: 20px;
  }

  .popup_form_badge_icon {
    width: 72px;
    height: 72px;
  }
  .popup_form_badge_icon svg {
    width: 100%;
    height: auto;
  }
  .popup_form_badge_text {
    font-size: 22px;
    text-align: center;
  }
  section {
    scroll-margin-top: 100px;
  }

  .map_popup {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 1023px) {
  .container {
    padding: 0px 14px;
  }
  .container:has(.swiper-initialized:not(.application_slider):not(.team_slider)) .swiper {
    padding-right: 14px;
  }
  .c_header_phone_dropdown_wrap {
    display: none;
  }
  .c_header_fill_link_text {
    display: none;
  }
  .c_header_fill_link {
    padding: 8px 6px;
  }
  .c_burger_btn_text {
    display: none;
  }
  .c_header_top_wrap {
    padding: 14px 18px;
  }

  .c_header_mob_menu_wrap {
    padding: 8px;
  }
  .c_header_mob_phone_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .c_header_mob_phone_list .c_header_email_list_item {
    margin-top: 12px;
    margin-left: 0;
  }
  .c_header_mob_phone_list .c_header_phone_list_item_icon:not(:has(svg)) {
    display: flex;
    opacity: 0;
  }

  .banner_map {
    padding: 24px 10px 42px;
  }
  .banner_logo_item {
    width: 82px;
    height: 82px;
  }
  .banner_map_img {
    width: 100%;
    height: calc(100% - 80px);
  }
  .banner_main_logo {
    width: 231px;
  }
  .banner_title {
    font-size: 30px;
  }
  .banner_subtitle {
    font-size: 17px;
    margin-bottom: 18px;
  }
  .banner_adv_wrap {
    gap: 8px;
  }
  .banner_adv_item {
    padding: 14px;
  }
  .banner_adv_item_title {
    font-size: 19px;
  }
  .banner_adv_item_text {
    font-size: 12px;
  }
  .banner_video_name {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 18px;
  }
  .banner_video_name_inner {
    font-size: 24px;
  }
  .banner_video_name_subinner {
    font-size: 17px;
  }
  .banner_video_name_icon_wrap {
    width: 68px;
    height: 68px;
  }
  .banner {
    margin-bottom: 34px;
  }

  .section_top_title {
    font-size: 24px;
  }
  .application_wrap {
    flex-direction: column;
    padding: 4px;
    gap: 30px;
  }
  .application_text {
    flex: unset;
    justify-content: flex-start;
    padding: 22px 18px 0px;
  }
  .application_text_title {
    font-size: 24px;
  }
  .application_text_subtitle {
    font-size: 17px;
  }
  .application_text_btn {
    font-size: 16px;
    padding: 18px 30px;
  }
  .application_slider {
    width: 100%;
    padding-right: 0px;
  }

  .companies_slide {
    width: 300px;
  }
  .companies_slide_top {
    height: 130px;
    margin-bottom: 12px;
  }
  .companies_slide_title {
    font-size: 18px;
  }
  .companies_slide_text {
    font-size: 14px;
  }
  .companies_slide_info_wrap {
    flex-direction: column;
  }
  .companies_slide_rating {
    width: 100%;
  }
  .companies_slide_soc_wrap {
    flex-wrap: wrap;
    gap: 18px;
  }
  .companies_slide_soc_item {
    height: 20px;
  }

  .map {
    height: 500px;
    margin-bottom: 24px;
  }

  .clients_slide {
    width: 300px;
    height: 324px;
  }
  .clients_slide_content {
    gap: 10px;
  }
  .clients_slide_content_title {
    font-size: 20px;
  }
  .clients_slide_content_text {
    font-size: 14px;
  }

  .clients {
    margin-bottom: 38px;
  }

  .partners {
    margin-bottom: 28px;
  }
  .team {
    margin-bottom: 32px;
  }
  .reviews {
    margin-bottom: 32px;
  }

  .reviews_slide {
    width: 295px;
  }
  .reviews_slide_bg {
    height: 325px;
    margin-bottom: 14px;
  }
  .reviews_slide_text {
    font-size: 16px;
  }
  .reviews_slide_video_wrap_text {
    font-size: 18px;
  }
  .reviews_slide_bg .reviews_slide_video_wrap {
    padding: 10px 10px 10px 18px;
  }

  .team_slide {
    flex-direction: column;
  }
  .team_slide_img {
    height: 340px;
    width: 400px;
    max-width: 100%;
  }
  .team_slide_content_name {
    font-size: 18px;
  }
  .team_slide_content_contacts_title {
    font-size: 16px;
  }
  .team_slide_content_contacts_text {
    font-size: 14px;
  }
  .team_slide_content_td_title {
    font-size: 14px;
  }
  .team_slide_content_td_text {
    font-size: 12px;
  }

  .callback {
    margin-bottom: 28px;
  }

  .callback .section_top_subtitle {
    margin-bottom: 14px;
    font-size: 16px;
  }
  .callback_wrap {
    padding: 14px 8px;
  }
  .form_row_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 14px;
  }
  .form_row label {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .form_row input, .form_row textarea {
    font-size: 18px;
  }
  .form_row_grid {
    margin-bottom: 14px;
  }
  .form_check label .text {
    font-size: 14px;
  }
  .form_submit {
    font-size: 16px;
    padding: 15px 36px;
  }

  .c_footer {
    margin-bottom: 14px;
  }

  .c_footer_main_wrap {
    grid-template-columns: repeat(1 ,1fr);
  }
  .c_footer_wrap:not(:has(.c_footer_adress_wrap)) {
    padding: 14px 18px;
  }
  .f_logo {
    width: 207px;
    margin: 0 17px 36px;
  }
  .c_footer_contact_row_text_content {
    font-size: 16px;
  }
  .c_footer_contact_row_text_subcontent {
    font-size: 14px;
  }
  .c_footer_contact_row {
    margin: 0 17px 18px;
  }
  .c_footer_adress_wrap {

  }
  .c_footer_adress_title {
    font-size: 16px;
  }
  .c_footer_wrap_title {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .c_footer_phones_row_number {
    font-size: 15px;
  }
  .c_footer_phones_row_text {
    font-size: 14px;
  }
  .c_footer_phones_wrap {
    gap: 14px;
  }
  .c_footer_social_row {
    gap: 16px;
  }
  .c_footer_social_title {
    font-size: 15px;
  }
  .c_footer_social_inner_wrap {
    flex-wrap: wrap;
    column-gap: 36px;
    row-gap: 18px;
  }
  .c_footer_menu_item {
    font-size: 14px;
  }
  .c_footer_menu_wrap {
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
  }

  .c_popup_header {
    padding: 16px 24px;
  }
  .c_popup_header_text {
    font-size: 18px;
  }
  .c_popup_content {
    padding: 24px 14px 14px;
  }
  
  .application_gallery {
    flex: 1;
    width: 100%;
  }
  .popup_form .form_check label .text {
    font-size: 14px;
  }

  .map_popup {
    inset: 10px;
    transform: none;
  }
  .map_popup_name {
    font-size: 20px;
  }
  .map_popup_content {
    padding: 14px 4px 4px 4px;
  }
  .map_popup_tabs_item {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  /* .application_gallery_item {
    width: 195px;
  } */
  #map {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .banner_adv_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }
  .banner_adv_item {
    width: calc(50% - 4px);
  }
}

/* ======= Cookie notice ======= */
#cookie_block {
  position: relative;
  z-index: 90;
}
.cookie_inner {
  background-color: #fafafa;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90000;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.4);
}
.cookie_inner p {
  margin: 0;
  font-size: 14px;
}
.cookie_link {
  color: #41a744;
  text-decoration: underline;
  cursor: pointer;
}
.cookie_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 0;
  background: none;
  border: 1px solid;
  border-radius: 2px;
  height: 42px;
  padding: 0 30px;
  font-size: 12px;
  font-weight: 400;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
  cursor: pointer;
  color: #303030;
}
.cookie_btn:hover {
  opacity: 0.7;
}

/* Cookie / Privacy modals */
#cookie_policy_modal {
  max-width: 100%;
}
.cookie_modal_content {
  max-width: 700px;
  background: #fff;
  border-radius: 8px;
}
.cookie_modal_title {
  margin: 0 0 16px;
  font-size: 22px;
  font-weight: 600;
  color: #2c2c2c;
}
.cookie_modal_text {
  max-height: 60vh;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.6;
  color: #2c2c2c;
  padding-right: 6px;
}