@charset "UTF-8";
@import url(../css/base.css);
@import url(../css/fonts.css);
:root {
  --trans: all 0.4s ease-out;
  --color_black: #111827;
  --color_white: #f8fafc;
}


.tab_section a.btn2{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  background: #f59e0b;
  box-shadow: none;
  width: fit-content;
}

.tab_section a.btn2 p{
  margin: 0;
  color: #111827;
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: -0.16px;
}


.tab_section a.btn2 svg path{
  stroke: #111827;
}


.techno_build .left .techno_desc,
.techno_build .left .techno_desc p {
  color: var(--Type-Primary, #111827);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
  margin-bottom: 0;
}

.techno_build .left .techno_desc p + p {
  margin-top: 16px;
}	
		
		
		.btn2 svg{
  display: block;          /* убирает inline-baseline */
  position: relative;
  top: 1px;                /* опусти чуть вниз (поставь 1-2px) */
}

.header-container {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  background: var(--color_white);
  padding: 20px 120px;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-container .header-logo img {
  height: 44px;
}
.header-container .header-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
.header-container .header-link {
  color: #111827;
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  cursor: pointer;
}
.header-container .burger {
  display: none;
  border-radius: var(--Corners-8, 8px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.header-container .burger img {
  width: 24px;
}

.header-mobile-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: -100%;
  background: var(--color_white);
  padding: 20px 24px;
  z-index: 999;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.header-mobile-container .header-close {
  padding: 7px;
  border: 1px solid #222a3f;
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
}
.header-mobile-container .header-close img {
  width: 15px;
}
.header-mobile-container .header-mobile-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-mobile-container .header-link {
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--color_dark_blue);
  -webkit-transition: var(--trans);
  transition: var(--trans);
  text-align: center;
}
.header-mobile-container.active {
  left: 0;
}

.btn1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Padding-8, 8px) var(--Padding-24, 24px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  height: 48px;
  border-radius: var(--Corners-8, 8px);
  background: var(--Fill-Dark, #111827);
  color: var(--Type-White, #fff);
  text-align: center;
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  cursor: pointer;
  border: none;
  -webkit-transition: var(--trans) !important;
  transition: var(--trans) !important;
}

footer {
  background-color: var(--color_dark_blue);
}

.footer-container {
  margin-bottom: 20px;
  background: var(--Fill-Dark, #111827);
  padding: var(--Padding-Top-Bottom, 60px) 100px var(--Padding-32, 32px) 100px;
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Dark, #111827);
  display: grid;
  grid-template-columns: 285px 450px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.footer-container .footer-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-container .footer_icon svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.footer-container .footer_p_small {
  color: var(--Type-White, #fff);
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  margin-top: 40px;
}
.footer-container .footer-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 545px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 50px;
}
.footer-container .footer-logo img {
  max-width: 143px;
}
.footer-container .footer-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--color_white);
}
.footer-container .footer-text.mobile {
  display: none;
  font-size: 12px;
}
.footer-container .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-right: 18px;
}
.footer-container .footer_title {
  color: var(--Type-Eyebrow, #5b7cff);
  font-family: var(--Typography-Family-Secondary, "Space Grotesk");
  font-size: var(--Typography-Size-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  margin-bottom: 8px;
}
.footer-container .footer-left .footer-link {
  margin-top: 24px;
}
.footer-container .footer-link,
.footer-container .footer-social {
  color: var(--Type-White, #fff);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.footer-container .footerleft {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.footer-container .footerright {
  margin-top: 50px;
}
.footer-container .reserved {
  color: #fff;
  font-family: Manrope;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  opacity: 0.6;
  text-align: end;
}
.footer-container .footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer-container .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.footer-container .footer-social img {
  height: 20px;
  width: auto;
}
.footer-container .up-btn {
  padding: 10px 11px;
  background-color: var(--color_blue);
  border-radius: 50px;
  height: 40px;
  justify-self: flex-end;
  -ms-flex-item-align: end;
      align-self: flex-end;
  border: 1px solid var(--color_blue);
}
.footer-container .up-btn:active {
  background: transparent;
}
.footer-container .up-btn:active svg path {
  fill: var(--color_blue);
}

.hero_text {
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Secondary-BG, #f1f5f9);
  padding-top: 80px;
  padding-bottom: 64px;
}
.hero_text h1 {
  color: var(--Type-Primary, #111827);
  text-align: center;
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-72, 72px);
  font-style: normal;
  font-weight: 600;
  line-height: 95%; /* 68.4px */
  letter-spacing: -0.72px;
  margin-bottom: 32px;
}
.hero_text p {
  color: var(--Type-Eyebrow, #5b7cff);
  text-align: center;
  /* Eyebrow */
  font-family: var(--Typography-Family-Secondary, "Space Grotesk");
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}

.main_text {
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-block: 120px;
}
.main_text h2 {
  color: var(--Type-Primary, #111827);
  /* H2 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-48, 48px);
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 52.8px */
  margin-bottom: 16px;
}
.main_text p {
  color: var(--Type-Primary, #111827);
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  margin-bottom: 16px;
}
.main_text p b {
  font-weight: 600;
}
.main_text h3 {
  color: var(--Type-Primary, #111827);
  /* H3 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  padding-block: 24px;
}
.main_text h4 {
  color: var(--Type-Primary, #111827);
  /* H4 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-24, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  padding-top: 24px;
  padding-bottom: 20px;
}
.main_text ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.main_text ul li {
  list-style: disc;
  color: var(--Type-Primary, #111827);
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

.btn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 48px;
  padding: 12px var(--Padding-24, 24px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border-radius: var(--Corners-8, 8px);
  background: var(--Fill-Orange, #f59e0b);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  -webkit-transition: var(--trans) !important;
  transition: var(--trans) !important;
}
.btn2 p {
  color: var(--Type-Primary, #111827);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  /* Button_M */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
}

.error_page {
  position: relative;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding-left: 20px;
  padding-right: 20px;
  background-image: url("/assets/img/icons/dot.svg"), -webkit-gradient(linear, left top, left bottom, from(#f1f5f9), color-stop(101.72%, #cbd5e1));
  background-image: url("/assets/img/icons/dot.svg"), linear-gradient(180deg, #f1f5f9 0%, #cbd5e1 101.72%);
  padding-top: 120px;
}
.error_page .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 64px;
}
.error_page .box h2 {
  color: var(--Type-Primary, #111827);
  text-align: center;
  /* H3 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  margin-bottom: 32px;
}
.error_page .error_img {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

.campaign {
  padding: 80px 100px;
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Secondary-BG, #f1f5f9);
}
.campaign h2 {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.campaign .swiper {
  width: 100%;
  height: 450px;
  position: relative;
}
.campaign .column {
  width: 100%;
}
.campaign .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.campaign .swiper-pagination {
  display: none !important;
}

.campaign_card {
  width: 100%;
  -webkit-transition: var(--trans) !important;
  transition: var(--trans) !important;
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 32px;
}
.campaign_card p {
  color: var(--Type-Primary, #111827);
  text-wrap: nowrap;
  /* H3 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  text-align: start;
  margin-top: 82px;
}
.campaign_card svg {
  margin-left: auto;
  margin-right: 0px;
}

.box_pagination {
  width: 96px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  height: 44px;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}
.box_pagination .swiper-button-next {
  right: 0px;
}
.box_pagination .swiper-button-prev {
  left: 0px;
}
.box_pagination .swiper-button-next,
.box_pagination .swiper-button-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 44px;
  height: 44px;
  padding: 6px 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  border-radius: 999px;
  background: var(--Fill-Dark, #111827);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.box_pagination .swiper-button-next:hover,
.box_pagination .swiper-button-prev:hover {
  opacity: 0.8;
}
.box_pagination .swiper-button-next::after {
  font-size: 22px;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M6.65625 1L12.3131 6.65685M12.3131 6.65685L6.65625 12.3137M12.3131 6.65685L0.999396 6.65685' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.box_pagination .swiper-button-prev::after {
  font-size: 22px;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M6.65625 1L0.999396 6.65685M0.999396 6.65685L6.65625 12.3137M0.999396 6.65685L12.3131 6.65685' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.box_pagination .swiper-button-disabled {
  opacity: 1;
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Secondary-BG, #f1f5f9);
}
.box_pagination .swiper-button-disabled.swiper-button-next::after {
  font-size: 22px;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M6.65625 1L12.3131 6.65685M12.3131 6.65685L6.65625 12.3137M12.3131 6.65685L0.999396 6.65685' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
}
.box_pagination .swiper-button-disabled.swiper-button-prev::after {
  font-size: 22px;
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'><path d='M6.65625 1L0.999396 6.65685M0.999396 6.65685L6.65625 12.3137M0.999396 6.65685L12.3131 6.65685' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
}

.swiper-pagination {
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.swiper-pagination-bullet {
  width: 20px !important;
  height: 8px !important;
  opacity: 1 !important;
  border-radius: 99px !important;
  background: var(--Fill-Secondary-BG, #f1f5f9) !important;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}

.swiper-pagination-bullet-active {
  -webkit-transition: var(--trans);
  transition: var(--trans);
  background: var(--Fill-Dark, #111827) !important;
  width: 40px !important;
}

.benefit_container {
  padding-block: 60px;
}

.benefit {
  padding: 80px 100px;
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Secondary-BG, #f1f5f9);
}
.benefit .title_main {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}
.benefit .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}
.benefit .btn2 {
  margin-right: auto;
  margin-left: auto;
}

.card_benefit {
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  padding: 32px;
}
.card_benefit .icon {
  border-radius: var(--Corners-12, 12px);
  background: var(--Fill-Blue-Contrast, #ebf5ff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
}
.card_benefit h3 {
  margin-top: 40px;
  margin-bottom: 24px;
  color: var(--Type-Primary, #111827);
  /* H3 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
}
.card_benefit p {
  color: var(--Type-Secondary, #475569);
  /* Text_M */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}

.review {
  padding-top: 60px;
  padding-bottom: 120px;
}
.review .btn1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.review .title_main {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.review .swiper_review {
  margin-bottom: 50px;
}
.review .swiper_review .info {
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Padding-Card-Inner-L, 32px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.review .swiper_review .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80px;
  height: 80px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
}
.review .swiper_review p {
  color: var(--Type-Primary, #111827);
  text-align: center;
  /* Text_M Medium */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  margin-block: 24px;
  height: 120px;
  overflow: hidden;
}
.review .swiper_review h4 {
  color: var(--Type-Eyebrow, #5b7cff);
  text-align: right;
  /* Eyebrow */
  font-family: var(--Typography-Family-Secondary, "Space Grotesk");
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
}
.review .swiper_review h5 {
  color: var(--Type-Secondary, #475569);
  text-align: center;
  /* Text_XS */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
  margin-top: 4px;
}

.hero_main {
  position: relative;
  padding-top: 80px;
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background-image: url("/assets/img/icons/dot.svg"), -webkit-gradient(linear, left top, left bottom, color-stop(51.83%, #f1f5f9), color-stop(108.59%, #cbd5e1));
  background-image: url("/assets/img/icons/dot.svg"), linear-gradient(180deg, #f1f5f9 51.83%, #cbd5e1 108.59%);
}
.hero_main .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 64px;
}
.hero_main .info h1 {
  color: var(--Type-Primary, #111827);
  text-align: center;
  /* H1 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-72, 72px);
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 68.4px */
  letter-spacing: -0.72px;
  max-width: 800px;
  margin-bottom: 32px;
}
.hero_main .info .blue {
  color: #5b7cff;
  text-align: center;
  /* Eyebrow */
  font-family: var(--Typography-Family-Secondary, "Space Grotesk");
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  margin-bottom: 40px;
}
.hero_main .info .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.hero_main .box {
  position: relative;
  max-width: 1055px;
  margin-right: auto;
  margin-left: auto;
}
.hero_main .main_photo {
  display: block;
}
.hero_main .mob_photo {
  display: none;
}

.btn {
  border-radius: var(--Corners-8, 8px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 24px;
  height: 48px;
  color: #111827;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  -webkit-transition: var(--trans) !important;
  transition: var(--trans) !important;
  /* Button_M */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: -0.16px;
}

.main_photo {
  position: absolute;
}
.main_photo img {
  width: auto;
}

.photo1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.photo1 img {
  width: auto;
}

.photo3 {
  bottom: 0px;
  z-index: 2;
  right: -40px;
}

.photo2 {
  bottom: 44%;
  left: -50px;
  z-index: 3;
}

.photo4 {
  bottom: 0px;
  left: 0px;
}

.btn4 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -webkit-transition: var(--trans) !important;
  transition: var(--trans) !important;
  text-decoration: none;
}
.btn4 img {
  width: 32px;
  height: 32px;
  padding: 4px;
  border-radius: 99px;
  background: #f59e0b;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.btn4 span {
  color: #111827;
  leading-trim: both;
  text-edge: cap;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.btn4:hover span {
  color: #e38f00;
}
.btn4:hover img {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.step {
  max-width: 520px;
  padding: 80px 0;
  opacity: 0.35;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.step.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.step h4 {
  color: var(--Type-Eyebrow, #5b7cff);
  font-family: var(--Typography-Family-Secondary, "Space Grotesk");
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.step h3 {
  color: #101010;
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-top: 40px;
  margin-bottom: 24px;
}
.step p {
  color: var(--Type-Secondary, #475569);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 40px;
}

.scroll_section {
  padding: 120px 0;
}
.scroll_section .title_main {
  max-width: 660px;
  margin-right: auto;
  margin-left: auto;
}

/* layout */
.inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* left */
.content {
  width: 50%;
}

/* right */
.media-wrap {
  width: 50%;
  position: relative;
}

/* image */
.media {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}

.media img{
  width: 100%;
  height: auto;
  display: block;
}

.step {
  opacity: 0.35;
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.step.active {
  opacity: 1;
}

.media-sticky {
  position: sticky;
  top: 0; /* задається JS */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* 🔑 контейнер картки */
.media {
  position: absolute;
  inset: 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

/* активна */
.media.active {
  opacity: 1;
}

/* розмір ОДНОЇ картки */
.media-sticky {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1/1;
}

.cook_popup {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  -webkit-box-shadow: 0 24px 48px rgba(0, 0, 0, 0.05);
          box-shadow: 0 24px 48px rgba(0, 0, 0, 0.05);
  width: 100%;
  max-width: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}
.cook_popup p {
  font-family: Manrope;
  font-size: 16px;
  line-height: 140%;
  color: #111827;
}
.cook_popup .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.cook_popup .btns button {
  cursor: pointer;
  white-space: nowrap;
}
.cook_popup.is-visible {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cook_popup.is-hidden {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(20px);
          transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.tab_section {
  padding: 120px 0px 60px 0px;
}
.tab_section .title_main {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
}

/* Tabs */
.ads__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 8px;
  width: 400px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  margin-bottom: 24px;
  margin-right: auto;
  margin-left: auto;
}

.ads__tab {
  padding: var(--Padding-16, 16px);
  border-radius: 999px;
  width: 128px;
  text-wrap: nowrap;
  background: #fff;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  color: var(--Type-Primary, #111827);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  border: none;
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: -0.16px;
}

.ads__tab.active {
  background: var(--Fill-Dark, #111827);
  color: #fff;
  border-color: transparent;
}

/* Dropdown (mobile) */
.ads__dropdown {
  display: none;
  position: relative;
  margin-bottom: 30px;
}

.ads__dropdown-toggle {
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.ads__dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 20px;
  padding: 10px 0;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  -webkit-transition: var(--trans);
  transition: var(--trans);
}

.ads__dropdown-menu button {
  width: 100%;
  padding: 14px 20px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}

.ads__dropdown-menu button:hover {
  background: #f3f4f6;
}

.ads__dropdown.open .ads__dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.arrow {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.ads__dropdown.open .arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Content */
.ads__content {
  position: relative;
}

.ads__content {
  position: relative;
  display: grid;
}

.ads__panel {
  grid-area: 1/1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  pointer-events: none;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.ads__panel.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.ads__grid {
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  padding: 16px;
  display: grid;
  grid-template-columns: 495px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ads__grid .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 540px;
  padding: var(--Padding-Card-Inner-L, 24px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.ads__grid h3 {
  color: #101010;
  /* H3 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
  margin-bottom: 24px;
}
.ads__grid p {
  color: var(--Type-Primary, #111827);
  /* Text_M */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}
.ads__grid .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
  margin-bottom: 16px;
}
.ads__grid .item span {
  margin-top: 5px;
  border-radius: 2px;
  background: #fdecce;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 16px;
  height: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
}
.ads__grid h5 {
  margin-top: 24px;
  color: var(--Type-Secondary, #475569);
  /* Text_M Medium */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  margin-bottom: 8px;
}
.ads__grid ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 450px;
  gap: 4px;
}
.ads__grid li {
  color: var(--Type-Eyebrow, #5b7cff);
  /* Eyebrow */
  font-family: var(--Typography-Family-Secondary, "Space Grotesk");
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 21.6px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 4px 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Secondary-BG, #f1f5f9);
}

.performance_section {
  border-radius: var(--Corners-20, 20px);
  background: #ffdf9e;
  padding: 80px 100px;
}
.performance_section .title_main {
  max-width: 645px;
  margin-right: auto;
  margin-left: auto;
}

.why__card {
  border-radius: var(--Corners-20, 20px);
  border: 1px solid #ffdfa0;
  background: #fff1d4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
}
.why__card .why__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 48px;
  height: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
  border-radius: var(--Corners-12, 12px);
  background: #ffdf9e;
}
.why__card h3 {
  color: var(--Type-Primary, #111827);
  /* H4 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-24, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  margin-top: 40px;
  margin-bottom: 16px;
}
.why__card p {
  color: var(--Type-Secondary, #475569);
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.why__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.swiper_scroll {
  display: none;
}

.content {
  display: block !important;
}

.btn4 img {
  margin: 0 !important;
}

.hero_grid {
  padding-block: 60px;
}
.hero_grid .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.hero_grid h1 {
  color: var(--Type-Primary, #111827);
  /* H1 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-72, 72px);
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 72px */
  letter-spacing: -0.72px;
  max-width: 552px;
}
.hero_grid p {
  color: var(--Type-Primary, #111827);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}

.counter_sect {
  padding-bottom: 60px;
}
.counter_sect .grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.counter_sect .grid3 li {
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Padding-Card-Inner-XL, 32px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 230px;
}
.counter_sect .grid3 .counter {
  color: var(--Type-Primary, #111827);
  /* Display */
  font-family: var(--Typography-Family-Secondary, "Space Grotesk");
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 64px */
  letter-spacing: -0.64px;
}
.counter_sect .grid3 p {
  color: var(--Type-Secondary, #475569);
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

.color_text {
  padding-block: 60px;
}
.color_text h3 {
  color: var(--Type-Primary, #111827);
  /* Text_XL */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-40, 40px);
  font-style: normal;
  font-weight: 520;
  line-height: 120%; /* 48px */
}
.color_text h3 span {
  color: #f59e0b;
}

.subtitle {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
  color: var(--Type-Secondary, #475569);
  text-align: center;
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
.subtitle span {
  font-weight: 700;
  color: var(--Type-Primary, #111827);
}

.about_page .title_main {
  margin-bottom: 24px;
}

.techno_build {
  padding-block: 60px;
}
.techno_build .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.techno_build .left h3 {
  color: var(--Type-Primary, #111827);
  /* H2 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-48, 48px);
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 52.8px */
  margin-bottom: 24px;
}
.techno_build .left p {
  color: var(--Type-Secondary, #475569);
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}
.techno_build .left p span {
  color: var(--Type-Primary, #111827);
  font-weight: 700;
}
.techno_build .left .btn4 {
  margin-top: 40px;
}
.techno_build .right h4 {
  color: var(--Type-Primary, #111827);
  /* H4 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-24, 24px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  margin-bottom: 50px;
}
.techno_build .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.techno_build .right ul li {
  border-radius: var(--Corners-16, 16px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  padding: 24px;
}
.techno_build .right ul li p {
  color: var(--Type-Primary, #111827);
  /* H4_Mobile */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-20, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 24px */
}
.techno_build .desk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.techno_build .mob {
  display: none;
}

.ads {
  padding-top: 60px;
  padding-bottom: 120px;
}
.ads .btn {
  text-wrap: nowrap;
}
.ads .block {
  border-radius: var(--Corners-20, 20px);
  background: linear-gradient(91deg, #ffbe4f 1.36%, #f59e0b 105.92%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Padding-64, 64px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  position: relative;
}
.ads .block h3 {
  color: var(--Type-Primary, #111827);
  /* Text_XL */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-40, 40px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 48px */
}
.ads .bg_icon {
  position: absolute;
  z-index: 1;
  right: 16px;
  top: 16px;
}

.select {
  position: relative;
}

.select::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 20px;
  height: 20px;
  bottom: 14px;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%231f2937' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
}

.select.open::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

select::-ms-expand {
  display: none;
}

.sect_form {
  padding-block: 60px;
}
.sect_form .btn2 {
  margin-top: 16px;
}
.sect_form .grid2 {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
}
.sect_form .left h1 {
  color: var(--Type-Primary, #111827);
  /* H1 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-72, 72px);
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 72px */
  letter-spacing: -0.72px;
  margin-bottom: 24px;
}
.sect_form .left p {
  color: var(--Type-Secondary, #475569);
  /* Text_M */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-18, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Secondary-BG, #f1f5f9);
  padding: 32px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--Type-Primary, #111827);
  font-family: var(--Typography-Family-Secondary, "Space Grotesk");
  font-size: var(--Typography-Size-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
}

.form-group input,
.form-group select,
.form-group textarea {
  height: 48px;
  padding: 0 16px;
  color: var(--Type-Primary, #111827);
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
  outline: none;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  border-radius: var(--Corners-8, 8px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: #fff;
}

.form-group textarea {
  height: auto;
  padding: 16px;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f59e0b;
}

.full {
  grid-column: 1/-1;
}

.right.success-active .contact__form {
  opacity: 0;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  pointer-events: none;
}

.right.success-active .success-block {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.success-block {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  padding: 32px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Secondary-BG, #f1f5f9);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.success-block .success-icon {
  border-radius: var(--Corners-12, 12px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  aspect-ratio: 1/1;
}
.success-block h2 {
  color: var(--Type-Primary, #111827);
  /* H3 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 38.4px */
}
.success-block p {
  color: var(--Type-Secondary, #475569);
  text-align: center;
  /* Text_S */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 22.4px */
}

.right {
  position: relative;
}

@media (max-width: 950px) {
  .sect_form .grid2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 1200px) {
  .performance_section {
    padding: 64px 16px;
  }
}
@media (max-width: 800px) {
  .cook_popup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    bottom: 0px;
  }
  .cook_popup p {
    text-align: center !important;
  }
}
@media (max-width: 900px) {
  .ads {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .ads .block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    padding: 40px 24px;
  }
  .btn4.mob {
    margin-top: 50px;
  }
  .techno_build .right ul li p {
    font-size: 18px;
  }
  .techno_build .right h4 {
    font-size: var(--Typography-Size-20, 20px);
    margin-bottom: 32px;
  }
  .techno_build {
    padding-block: 32px;
  }
  .techno_build .left h3 {
    font-size: var(--Typography-Size-32, 32px);
  }
  .color_text h3 {
    font-size: 28px;
  }
  .counter_sect {
    padding-block: 32px;
  }
  .hero_grid {
    padding-top: 64px;
    padding-bottom: 32px;
  }
  .hero_grid h1 {
    max-width: 100%;
    font-size: var(--Typography-Size-48, 48px);
  }
  .hero_grid .grid2 {
    gap: 24px;
  }
  .techno_build .grid2 {
    grid-template-columns: 1fr;
  }
  .techno_build .desk {
    display: none;
  }
  .techno_build .mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .counter_sect .grid3 {
    grid-template-columns: 1fr;
  }
  .hero_grid .grid2 {
    grid-template-columns: 1fr;
  }
  .content {
    display: none !important;
  }
  .step p {
    height: 150px;
    overflow: hidden;
  }
  .swiper_scroll {
    display: block;
    height: 700px;
  }
  .scroll_section {
    padding-block: 64px;
  }
  .mobile_photo {
    height: 250px;
  }
  .mobile_photo img {
    height: 100%;
    width: auto;
  }
  .campaign {
    padding: 64px 16px;
  }
  .why__grid {
    grid-template-columns: 1fr;
  }
  .why__bottom {
    grid-template-columns: 1fr;
  }
  .ads__tabs {
    display: none;
  }
  .ads__dropdown {
    display: block;
  }
  .ads__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 30px;
  }
  .ads__title {
    font-size: 30px;
  }
  .ads__grid .left {
    height: auto;
    padding: 0px;
  }
  .ads__grid {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 16px;
  }
  .ads__grid h3 {
    margin-top: 40px;
    font-size: 28px;
  }
  .ads__grid p {
    font-size: var(--Typography-Size-16, 16px);
  }
  .ads__grid li {
    font-size: 16px;
  }
  .ads__grid ul {
    margin-bottom: 40px;
  }
  .ads__grid .btn2 {
    width: 100%;
  }
  .ads__grid .left {
    width: 100%;
  }
  .ads__grid ul {
    max-width: 100%;
  }
  .tab_section {
    padding-block: 64px;
  }
  #dropdownLabel {
    color: var(--Type-White, #fff);
    leading-trim: both;
    text-edge: cap;
    /* Button_M */
    font-family: var(--Typography-Family-Primary, Manrope);
    font-size: var(--Typography-Size-16, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.16px;
  }
  .ads__dropdown-menu {
    padding: 8px;
    z-index: 10;
  }
  .ads__dropdown-menu button:not(:last-child) {
    border-bottom: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  }
  .ads__dropdown-menu button {
    color: var(--Type-Primary, #111827);
    padding: var(--Padding-16, 16px);
    leading-trim: both;
    text-edge: cap;
    /* Button_M */
    font-family: var(--Typography-Family-Primary, Manrope);
    font-size: var(--Typography-Size-16, 16px);
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 22.4px */
    letter-spacing: -0.16px;
  }
  .media-wrap {
    display: none;
  }
  .step {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    padding: 40px 0;
  }
  .step h3 {
    font-size: 28px;
    margin-top: 24px;
  }
  .step p {
    font-size: 16px;
  }
  .content {
    width: 100%;
  }
}
@media (min-width: 1920px) {
  .header-container {
    max-width: 1920px;
    left: 50%;
    -webkit-transform: translate(-50%);
            transform: translate(-50%);
  }
}
@media (max-width: 1250px) {
  .header-container .header-menu-list {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .step img,
  .step video {
    display: block;
    margin-top: 32px;
  }
  .hero_main .box {
    display: none;
  }
  .hero_main .mob_photo {
    display: block;
  }
  .swiper_review {
    height: 410px;
  }
  .benefit_container {
    padding-block: 32px;
  }
  .benefit .grid2 {
    grid-template-columns: 1fr;
  }
  .box_pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .campaign .swiper {
    height: 320px;
  }
  .campaign .swiper-pagination {
    display: block !important;
  }
  .campaign .campaign_card {
    height: 120px;
  }
  .campaign .swiper-wrapper {
    row-gap: 16px;
    height: 240px;
  }
  .campaign .swiper-slide {
    padding-bottom: 0px;
  }
  .campaign_card p {
    margin-top: 22px;
    font-size: 28px;
  }
  .campaign_card {
    padding: 24px;
  }
  .campaign .swiper-slide {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .box {
    padding-bottom: 200px;
    margin-bottom: 0px !important;
  }
  .box h2 {
    font-size: 28px !important;
  }
  .error_img {
    padding-right: 20px;
    padding-left: 20px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    -webkit-transform: translateX(-50%) !important;
            transform: translateX(-50%) !important;
    height: 150px;
  }
  .header-container {
    padding: 12px 24px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px;
  }
  .header-container .header-logo img {
    height: 33px;
  }
  .header-container .header-menu {
    display: none;
  }
  .header-container .burger {
    display: block;
  }
  .header-container .header-btn {
    margin-left: auto;
  }
  .footer-container {
    padding: 32px 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .footer-container .footer-left {
    margin-bottom: 2px;
  }
  .footer-container .footer-right {
    max-width: unset;
  }
  .footer-container .footer-text.desktop {
    display: none;
  }
  .footer-container .footer-text.mobile {
    display: block;
  }
  .footer-container .footer-links {
    margin: 0;
  }
  .footer-container .footer-links li {
    line-height: 18px;
  }
  .footer-container .footer-link,
  .footer-container .footer-social {
    font-size: 14px;
    line-height: 18px;
  }
  .footer-container .footer-social {
    gap: 5px;
  }
  .footer-container .footer-social img {
    height: 12px;
  }
  .footer-container .up-btn {
    position: absolute;
    top: 33px;
    right: 52px;
    padding: 7.8px 8.6px;
    height: 32px;
  }
  .footer-container .up-btn svg {
    height: 14.4px;
    width: 12.8px;
  }
}
@media (max-width: 820px) {
  .hero_main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero_main h1 {
    font-size: 48px !important;
  }
  .hero_main .info .btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  .hero_main .info .btns a {
    width: 100%;
  }
  .review {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .review .btn1 {
    width: 100%;
  }
  .benefit {
    padding: 64px 17px;
  }
  .benefit .btn2 {
    width: 100%;
  }
  .card_benefit h3 {
    font-size: 28px;
  }
  .hero_text h1 {
    font-size: 48px;
  }
  .main_text {
    padding-block: 64px;
  }
  .main_text h2 {
    font-size: 32px;
  }
  .main_text h3 {
    font-size: 28px;
  }
  .main_text h4 {
    font-size: 20px;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-container .footerleft,
  .footer-container .footerright {
    margin-top: 0px;
  }
  .footer-container .reserved {
    text-align: start;
  }
  .footer-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-socials {
    margin-top: 40px;
  }
}
@media (max-width: 640px) {
  .campaign .swiper-wrapper {
    height: 350px;
  }
  .campaign .swiper {
    height: 450px;
  }
  .sect_form .left h1 {
    font-size: var(--Typography-Size-48, 48px);
  }
  .contact__grid {
    grid-template-columns: 1fr;
  }
  .contact__container {
    padding: 24px;
  }
  .contact_page .swiper_review {
    margin-bottom: 0px;
  }
  .success-block {
    height: 320px;
  }
  .right.success-active .contact__form {
    display: none;
  }
  .right.success-active {
    height: 320px;
  }
}
@media (min-width: 1440px) {
  .ads__grid {
    grid-template-columns: 1fr 1.3fr;
  }
}
		
/* Заголовок в technology section */
.techno_build .left h2 {
  color: var(--Type-Primary, #111827);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-48, 48px);
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 52.8px */
  margin-bottom: 24px;
}

/* Мобильная версия */
@media (max-width: 900px) {
  .techno_build .left h2 {
    font-size: var(--Typography-Size-32, 32px);
  }
}

.scroll-highlight-text span[style*="color"] {
    color: #000 !important;
    transition: color 1.7s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline;             
    white-space: normal;         
  }
  
  .scroll-highlight-text span[style*="color"].visible {
      color: var(--target-color) !important;
  }

  .responsive-spacer {
    margin-top: 100px; /* ПК */
  }
  
  @media (max-width: 768px) {
    .responsive-spacer {
      margin-top: 40px; /* Телефон */
    }
  }


  /* щоб li стали flex і були як на фото */
.techno_build .right ul li.techno_item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
  }
  
  /* квадратик як на фото */
  .techno_item__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #ffdf9e;
  
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 40px;
  }
  
  /* картинки */
  .techno_item__icon img {
    width: 24px;
    height: 20px;
    display: block;
    object-fit: contain;
  }
  
  /* svg */
  .techno_item__icon svg {
    width: 20px;
    height: 20px;
    display: block;
  }
  
  .techno_build .right ul li.techno_item p {
    margin: 0;
  }
  
  @media (max-width: 900px) {
    .techno_build .right ul li.techno_item {
      padding: 18px;
      gap: 12px;
    }
  
    .techno_item__icon {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
    }
  
    .techno_item__icon img,
    .techno_item__icon svg {
      width: 18px;
      height: 18px;
    }
  }
      
  .subtitle {
    max-width: 780px !important;
    color: var(--Type-Primary, #111827) !important;
    font-size: var(--Typography-Size-18, 18px) !important;
    font-weight: 500 !important;
    line-height: 150% !important;
  }
  
  .subtitle p {
    color: var(--Type-Primary, #111827) !important;
    font-size: var(--Typography-Size-18, 18px) !important;
    font-weight: 500 !important;
    line-height: 150% !important;
  }



    .techno_build .right ul li.techno_item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 24px;
    }


    .techno_item__icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: #ffdf9e;

      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 40px;
    }

    .techno_item__icon img {
      width: 24px;
      height: 20px;
      display: block;
      object-fit: contain;
    }

    .techno_item__icon svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    .techno_build .right ul li.techno_item p {
      margin: 0;
    }

    @media (max-width: 900px) {
      .techno_build .right ul li.techno_item {
        padding: 18px;
        gap: 12px;
      }

      .techno_item__icon {
        width: 36px;
        height: 36px;
        flex: 0 0 36px;
      }

      .techno_item__icon img,
      .techno_item__icon svg {
        width: 18px;
        height: 18px;
      }
    }
      
    .subtitle {
      max-width: 780px !important;
      color: var(--Type-Primary, #111827) !important;
      font-size: var(--Typography-Size-18, 18px) !important;
      font-weight: 500 !important;
      line-height: 150% !important;
    }

    .subtitle p {
      color: var(--Type-Primary, #111827) !important;
      font-size: var(--Typography-Size-18, 18px) !important;
      font-weight: 500 !important;
      line-height: 150% !important;
    }