@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;
}

.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;
  width: fit-content;
  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: 8px;
}
.btn span {
  -webkit-transition: var(--trans);
  transition: var(--trans);
  color: #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;
}

.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;
  background: transparent;
  border: none;
  cursor: pointer;
}
.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: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  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: 700px;
  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: 600;
  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;
}
.ads .center {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.ads.sub .block {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  gap: 24px;
}
.ads.sub p {
  max-width: 605px;
  margin-bottom: 24px;
  color: var(--Type-Primary, #111827);
  text-align: center;
  /* Text_S 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 */
}
.ads.sub .box_form {
  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: 8px;
  width: 100%;
  max-width: 410px;
}
.ads.sub .box_form .form-group {
  width: 100%;
  max-width: 270px;
}
.ads.sub .box_form input {
  width: 100%;
  max-width: 270px;
}

.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;
}

.box_form {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.success-message {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: absolute;
  left: 0;
  width: 100%;
  visibility: hidden;
}

.sub_title,
.sub_subtitle,
.box_form {
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}

.block.success-active .sub_title,
.block.success-active .sub_subtitle,
.block.success-active .box_form {
  opacity: 0;
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
  pointer-events: none;
}

.success-message {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  position: absolute;
  left: 0;
  width: 100%;
}

.block.success-active .success-message {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}

.success-message {
  text-align: center;
}
.success-message p {
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
  padding-left: 20px;
  padding-right: 20px;
}

.hero_blog {
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-Secondary-BG, #f1f5f9);
  padding: var(--Padding-80, 60px) 100px;
  padding-top: 24px;
}
.hero_blog .center span {
  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 */
  margin-top: 40px;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.hero_blog .center 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%; /* 72px */
  letter-spacing: -0.72px;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.hero_blog .center p {
  color: var(--Type-Primary, #111827);
  text-align: center;
  /* 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 */
  max-width: 590px;
  margin-right: auto;
  margin-left: auto;
}

.hero_blog.hub {
  border-radius: none;
  border: none;
  background: transparent;
  padding-bottom: 64px;
  padding-top: 24px;
}

.link_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.link_box a {
  color: var(--Type-Secondary, #475569);
  text-align: center;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  /* 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 */
}
.link_box p {
  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 */
}
.link_box .active {
  color: var(--Type-Primary, #111827);
}

.blog_section {
  padding-top: 80px;
  padding-bottom: 60px;
}

.grid_blog {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-block: 40px;
}

.purple_text {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: var(--Corners-4, 4px);
  background: rgba(160, 114, 233, 0.1);
  color: #472e98;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Space Grotesk";
  font-size: var(--Typography-Size-14, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 10px;
  letter-spacing: 0.28px;
  text-transform: uppercase;
  padding: 8px;
}
.purple_text.red {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.purple_text.blue {
  background: rgba(37, 99, 235, 0.1);
  color: #2563eb;
}
.purple_text.gray {
  background: rgba(53, 61, 75, 0.1);
  color: #3c4c65;
}
.purple_text.yellow {
  background: rgba(245, 166, 35, 0.1);
  color: #f5a623;
}
.purple_text.green {
  background: rgba(52, 211, 153, 0.1);
  color: #10b981;
}
.purple_text.light_blue {
  background: rgba(95, 168, 211, 0.1);
  color: #3985c6;
}

.card_blog {
  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;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.card_blog .image {
  border-radius: 12px;
}
.card_blog .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card_blog h4 {
  color: var(--Type-Primary, #111827);
  -webkit-transition: var(--trans);
  transition: var(--trans);
  /* 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 */
}

.filter {
  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;
  gap: 20px;
}
.filter .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.filter .form-group {
  max-width: 190px;
}
.filter .form-group select {
  width: 190px;
  cursor: pointer;
}
.filter .search_input {
  width: 100%;
  max-width: 385px;
  position: relative;
}
.filter .search_input input {
  padding-left: 52px;
}
.filter .search_input svg {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 16px;
}

.btn_swiper {
  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: 16px;
}
.btn_swiper .number {
  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: 4px;
}
.btn_swiper .number button {
  color: var(--Type-Secondary, #475569);
  text-align: center;
  /* Text_S 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 */
  width: 24px;
  height: 24px;
  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;
  aspect-ratio: 1/1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
}
.btn_swiper .arrow_btn {
  border-radius: var(--Corners-4, 4px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 32px;
  -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;
  cursor: pointer;
  -webkit-transition: var(--trans);
  transition: var(--trans);
  aspect-ratio: 1/1;
}
.btn_swiper .arrow_btn svg path {
  -webkit-transition: var(--trans);
  transition: var(--trans);
}

.search_result {
  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;
  margin-top: 64px;
}

.result h3 {
  text-wrap: nowrap;
  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 */
}
.result span {
  color: var(--Type-Orange-Contrast, #e2920b);
  /* H3 */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-32, 32px);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.result 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 */
  max-width: 500px;
  margin-top: 24px;
}

.hero_blog_template {
  padding-top: 24px;
  padding-bottom: 32px;
}
.hero_blog_template .purple_text {
  margin-top: 56px;
  margin-bottom: 24px;
}
.hero_blog_template h1 {
  color: var(--Type-Primary, #111827);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 61.6px */
  letter-spacing: -0.56px;
  max-width: 1025px;
}
.hero_blog_template .main_photo_blog {
  border-radius: var(--Corners-20, 20px);
  height: auto;
  width: 100%;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 33px;
  margin-bottom: 40px;
}
.profile .img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1/1;
}
.profile .img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.profile .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.profile .info h4 {
  color: var(--Type-Primary, #111827);
  /* Text_S Medium */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}
.profile .info p {
  color: var(--Type-Secondary, #475569);
  /* 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 */
}

.section_info {
  padding-top: 32px;
  padding-bottom: 60px;
}
.section_info .grid2 {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
}

.sidebar {
  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;
}

/* ===== Common Card ===== */
.sidebar-card {
  border-radius: var(--Corners-12, 12px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  padding: 24px 16px;
}

/* ===== TOC ===== */
.sidebar-title {
  color: var(--Type-Secondary, #475569);
  /* 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 */
  padding-bottom: 16px;
  width: 100%;
}

/* ── TOC List ── */
.toc-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.toc-item {
  border-top: 1px solid rgba(226, 232, 240, 0.6);
}

.toc-item:last-child {
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.toc-item--group .toc-group-trigger span {
  color: var(--Type-Primary, #111827);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  -webkit-transition: var(--trans);
  transition: var(--trans);
}

.toc-item--link {
  color: var(--Type-Primary, #111827);
  padding-block: 16px;
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.toc-item--link:hover {
  color: #111827;
}

.toc-item--link.active {
  color: var(--Type-Orange-Contrast);
}

/* Group */
.toc-item--group .toc-group-trigger {
  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;
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--Type-Primary);
  font-family: var(--Typography-Family-Primary);
  font-size: var(--Typography-Size-16);
  font-weight: 700;
  line-height: 150%;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.toc-item--group .toc-group-trigger span {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.toc-item--group .toc-group-trigger:hover {
  color: #111827;
}

.toc-chevron {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 8px;
  color: var(--Type-Primary);
  -webkit-transition: color 0.25s ease, -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 0.25s ease, -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease, -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Collapsible sub */
.toc-sub {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1);
}

.toc-sub-inner {
  padding-bottom: 10px;
}

.toc-sub-link {
  display: block;
  padding: 7px 0 7px 16px;
  color: var(--Type-Secondary, #475569);
  /* 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 */
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.toc-sub-link:hover {
  color: var(--Type-Primary);
}

.toc-sub-link.active {
  color: var(--Type-Orange-Contrast);
}

/* Open state */
.toc-item--group.is-open .toc-group-trigger span {
  color: #f59e0b;
}

.toc-item--group.is-open .toc-chevron {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  color: #f59e0b;
}

.toc-list a:hover {
  color: #111827;
}

.toc-list a.active {
  color: var(--Type-Orange-Contrast, #e2920b);
}

/* ===== Share ===== */
.share-block {
  margin-top: 40px;
}

.share-block span {
  color: var(--Type-Secondary, #475569);
  display: block;
  /* 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: 16px;
}

.share-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

/* ===== Subscribe ===== */
.subscribe-card {
  border-radius: var(--Corners-12, 12px);
  background: linear-gradient(91deg, #ffbe4f 1.36%, #f59e0b 105.92%);
  padding: 24px 16px;
}
.subscribe-card .form-group {
  margin-bottom: 8px;
}
.subscribe-card button {
  width: 100%;
}

.subscribe-card 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: 24px;
}

/* ===== Banner ===== */
.banner-card {
  height: 450px;
  border-radius: 12px;
  background: #c2c2c2;
  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;
  color: #000;
  text-align: center;
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-20, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: 222%; /* 44.4px */
}

.banner-card small {
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-12, 12px);
  font-style: normal;
  font-weight: 600;
  line-height: 222%;
}

.text_blog 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;
}
.text_blog p {
  color: var(--Type-Primary, #111827);
  /* Text_S Medium */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  margin-bottom: 16px;
}
.text_blog 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;
}
.text_blog li {
  color: var(--Type-Primary, #111827);
  /* Text_S 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 */
}
.text_blog ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.text_blog ul li {
  list-style: disc;
}
.text_blog ol {
  margin-bottom: 16px;
  padding-left: 20px;
}
.text_blog ol li {
  list-style: decimal;
}
.text_blog h4 {
  padding-top: 24px;
  padding-bottom: 20px;
  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 */
}
.text_blog .ads_sub {
  padding-block: 32px;
  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;
  border-radius: var(--Corners-12, 12px);
  background: linear-gradient(91deg, #ffbe4f 1.36%, #f59e0b 105.92%);
  padding: 24px;
}
.text_blog .ads_sub h3 {
  padding: 0px;
  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 */
}
.text_blog h5 {
  color: var(--Type-Primary, #111827);
  /* Text_S 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 */
  padding-left: 10px;
  border-left: 1px solid #5b7cff;
  margin-bottom: 45px;
  margin-top: 8px;
}
.text_blog img {
  display: block;
  padding-top: 48px;
}
.text_blog .yellow.gray {
  background: #f1f5f9 !important;
}
.text_blog .yellow.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.text_blog .yellow.flex img {
  padding-top: 0px;
}
.text_blog .yellow {
  margin-block: 36px;
  border-radius: var(--Corners-16, 16px);
  background: #ffdf9e;
  padding: 24px;
}
.text_blog .yellow h6 {
  color: var(--Type-Primary, #111827);
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-20, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 28px */
  margin-bottom: 24px;
}
.text_blog .yellow b {
  color: var(--Type-Primary, #111827);
  /* Text_S Medium */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  margin-bottom: 4px;
}
.text_blog .yellow span {
  display: block;
  color: var(--Type-Primary, #111827);
  /* 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 */
  opacity: 0.8;
}

.related_post {
  padding-top: 60px;
  padding-bottom: 120px;
}
.related_post .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.related_post .flex 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 */
}

.swiper_review 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 */
}

.text_blog .yellow.flex img {
  width: 160px;
  height: 182px;
}

.toc-custom {
  display: none;
  margin-bottom: 32px;
  position: relative;
  width: 100%;
  max-width: 500px;
}
.toc-custom__toggle {
  border-radius: var(--Corners-12, 12px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  width: 100%;
  padding: 14px 18px;
  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;
  color: var(--Type-Secondary, #475569);
  /* 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 */
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.toc-custom__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;
}
.toc-custom {
  /* Absolute dropdown */
}
.toc-custom__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  border-radius: var(--Corners-12, 12px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 20;
  padding: 16px;
}
.toc-custom__link {
  display: block;
  padding: 16px 0px;
  text-decoration: none;
  color: var(--Type-Primary, #111827);
  /* Text_S Medium */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
  border-bottom: 1px solid #e5e7eb;
  -webkit-transition: 0.25s ease;
  transition: 0.25s ease;
}
.toc-custom__link:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}
.toc-custom__link:first-child {
  padding-top: 0px;
}
.toc-custom__link:hover {
  color: #f59e0b;
}
.toc-custom {
  /* Open state */
}
.toc-custom.is-open .toc-custom__dropdown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
.toc-custom.is-open .toc-custom__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.related_post .mobile {
  display: none;
}

/* ── Section ── */
.table-section {
  margin-bottom: 0px;
}
.table-section h4 {
  padding-top: 64px;
}

.table-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.section_info .grid2 > *:last-child {
  min-width: 0;
}

/* ── Scroll wrapper ── */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db transparent;
  border: 1px solid #e5e7eb;
  min-width: 0;
  width: 100%;
  overflow-x: auto;
}

.table-scroll::-webkit-scrollbar {
  height: 4px;
}

.table-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 2px;
}

/* ── Table base ── */
table {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}

/* Header row */
thead tr {
  background: #ffdf9e; /* жовтий header */
}

thead th {
  padding: 12px 10px;
  text-align: left;
  color: var(--Type-Primary, #111827);
  /* Text_S 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 */
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}

thead th:last-child {
  border-right: none;
}

/* Body rows */
tbody tr {
  border-top: 1px solid #e5e7eb;
}

tbody td {
  padding: 14px 16px;
  vertical-align: top;
  border-right: 1px solid #e5e7eb;
  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 */
}

tbody td:last-child {
  border-right: none;
}

/* First column — bold label */
tbody td:first-child {
  color: var(--Type-Primary, #111827);
  /* Text_S Medium */
  font-family: var(--Typography-Family-Primary, Manrope);
  font-size: var(--Typography-Size-16, 16px);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 24px */
}

/* ── 3-col min widths ── */
.table-3col {
  min-width: 560px;
  width: 100%;
}

.table-3col thead th:nth-child(1),
.table-3col tbody td:nth-child(1) {
  width: 23.25%;
}

.table-3col thead th:nth-child(2),
.table-3col tbody td:nth-child(2) {
  width: 38.125%;
}

.table-3col thead th:nth-child(3),
.table-3col tbody td:nth-child(3) {
  width: 38.125%;
}

/* ── 5-col min widths ── */
.table-5col {
  min-width: 760px;
  width: 100%;
}

.table-5col thead th:nth-child(1),
.table-5col tbody td:nth-child(1) {
  width: 18%;
}

.table-5col thead th:nth-child(2),
.table-5col tbody td:nth-child(2),
.table-5col thead th:nth-child(3),
.table-5col tbody td:nth-child(3),
.table-5col thead th:nth-child(4),
.table-5col tbody td:nth-child(4) {
  width: 20%;
}

.table-5col thead th:nth-child(5),
.table-5col tbody td:nth-child(5) {
  width: 22%;
}

.faq {
  padding-top: 64px;
}
.faq h2 {
  margin-bottom: 32px;
}
.faq p {
  margin-bottom: 64px;
}

.faq-list {
  margin-top: 40px;
}

/* ── Item ── */
.faq-item {
  border-top: 1px solid #e2e8f0;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid #e2e8f0;
}

.faq-item.is-open {
  border-bottom: 1px solid #e2920b;
}

.faq-item.is-open + .faq-item {
  border-top: none;
}

/* ── Trigger ── */
.faq-trigger {
  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;
  gap: 24px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  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 */
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

/* ── Icon ── */
.faq-icon {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-icon-h {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon-v {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #111827;
  border-radius: 2px;
  -webkit-transform: translateX(-50%) rotate(0deg);
          transform: translateX(-50%) rotate(0deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: opacity 0.28s ease, -webkit-transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.28s ease, -webkit-transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease, -webkit-transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Open state */
.faq-item.is-open .faq-icon-v {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-item.is-open .faq-icon-h {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

/* ── Body ── */
.faq-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-body-inner {
  padding-bottom: 24px;
}

.faq-body-inner 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: 0px;
}

.faq-item:first-child {
  border-top: none;
}

.tr-category {
  display: none;
}

.sect_edit .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Padding-32, 32px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  border-radius: var(--Corners-18, 18px);
  background: #fff;
}
.sect_edit .boxes h3 {
  color: var(--Type-Primary, #0e1621);
  /* 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 */
}
.sect_edit .grid2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.sect_edit .left span {
  margin-top: 24px;
  margin-bottom: 16px;
}
.sect_edit .left 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 */
  max-width: 630px;
}
.sect_edit .right h4 {
  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 */
}
.sect_edit .right li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--Padding-24, 24px) var(--Padding-16, 16px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  border-bottom: 1px solid #e2e8f0;
}
.sect_edit .right li:last-child {
  border-bottom: none;
}

.sect_hub.related_post {
  padding-block: 80px;
}
.sect_hub .swiper_review h4 {
  max-width: 370px;
}

.blog_line {
  background: #e2e8f0;
}

.ads_hub {
  padding-block: 60px;
}

:root {
  --nav-bg: #ffffff;
  --nav-border: #e2e8f0;
  --text: #1a202c;
  --text-muted: #4a5568;
  --active-bg: #1a202c;
  --active-text: #ffffff;
  --hover-bg: #2563eb;
  --hover-text: #ffffff;
  --radius: 10px;
  --shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.buttons_hub .nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 10;
  padding-top: 80px;
}
.buttons_hub .nav-scroll-container {
  border-radius: var(--Corners-8, 8px);
  border: 1px solid var(--Fill-Stroke-Grey, #e2e8f0);
  background: var(--Fill-White, #fff);
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.buttons_hub .nav-scroll-container::-webkit-scrollbar {
  display: none;
}
.buttons_hub .nav-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  gap: 10px;
  min-width: 100%;
  height: 64px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.buttons_hub .nav-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  padding: 16px 20px;
  border-radius: 4px;
  border: none;
  background: transparent;
  color: var(--Type-Secondary, #475569);
  /* Text_S 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 */
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: background 0.18s ease, color 0.18s ease, -webkit-transform 0.12s ease;
  transition: background 0.18s ease, color 0.18s ease, -webkit-transform 0.12s ease;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease, -webkit-transform 0.12s ease;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.buttons_hub .nav-btn:hover {
  border-radius: var(--Corners-4, 4px);
  background: var(--Fill-Dark, #111827);
  color: var(--active-text);
}
.buttons_hub .nav-dropdown {
  display: none;
}

.sect_edit .right span {
  margin-bottom: 16px;
}

.blog_box_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog_box_info span {
  margin-right: 24px;
}

.mob_blog .blog_date {
  display: none;
}

.blog_date {
  color: var(--Type-Secondary, #475569);
  /* 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: 56px;
  margin-bottom: 24px;
  margin-right: 8px;
}

.sect1 {
  padding-block: 60px;
}
.sect1 .grid {
  display: grid;
  grid-template-columns: 450px 1fr;
  gap: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sect1 h1 {
  color: var(--Text-primary, #000);
  /* 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;
}
.sect1 p {
  margin-top: 24px;
  margin-bottom: 40px;
  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 */
}
.sect1 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.campaign.publish .title_main {
  max-width: 100%;
}
.campaign.publish .subtitle {
  color: var(--Type-Secondary, #475569);
  text-align: center;
  /* 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 */
}
.campaign.publish .campaign_card img {
  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;
}
.campaign.publish .campaign_card p {
  margin-top: 40px;
  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 */
}

.swiper-pagination-bullet {
  background: var(--Fill-Secondary-BG, #e2e8f0) !important;
}

.swiper-pagination-bullet-active {
  background: var(--Fill-Secondary-BG, #111827) !important;
}

.ai {
  padding-block: 60px;
}
.ai .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.ai .right 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: 24px;
}
.ai .right 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 */
}

.ai .right .ai_item:first-of-type {
  margin-top: -50px;
}

.ai .right .ai_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.ai .right .ai_item span {
  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 */
}
.ai .right p {
  margin-bottom: 50px;
}
.ai .right .last {
  margin-top: 16px;
  margin-bottom: 50px;
}
.ai .right a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ads.publish {
  padding-block: 60px;
}

@media (max-width: 950px) {
  .sect1, .ads.publish, .ai {
    padding-block: 32px;
  }
  .sect_form .grid2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sect1 .grid {
    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: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 40px;
  }
  .sect1 .grid h1 {
    font-size: 48px;
  }
  .sect1 .grid a {
    width: 100%;
  }
  .ai .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;
  }
  .ai .right a {
    width: 100%;
  }
  .ai .right h2 {
    font-size: 32px;
  }
}
.blue {
  margin-block: 60px;
}
.blue.performance_section .title_main {
  max-width: 556px;
  color: white;
}
.blue.performance_section {
  border-radius: var(--Corners-20, 20px);
  border: 1px solid var(--Fill-Stroke-Grey, #E2E8F0);
  background: #111827;
}
.blue .subtitle {
  color: var(--Type-White, #FFF);
  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 */
  max-width: 670px;
  opacity: 0.7;
}
.blue .why__card .why__icon {
  background: var(--Fill-Dark, #111827);
}
.blue .why__card {
  background: #222D44;
  border: none;
}
.blue .why__card h3 {
  color: var(--Type-White, #FFF);
  /* 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 */
}
.blue .why__card p {
  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 */
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .performance_section {
    padding: 64px 16px;
  }
}
@media (max-width: 800px) {
  .table-3col {
    min-width: 0;
  }
  /* 5-col — все одно потребує скрол для решти 4 колонок */
  .table-5col {
    min-width: 480px;
  }
  /* Сховати першу th "Category" */
  thead th:first-child {
    display: none;
  }
  /* Сховати першу td у data-рядках */
  tbody tr:not(.tr-category) td:first-child {
    display: none;
  }
  /* Показати category-рядок як повноширокий заголовок */
  .tr-category {
    display: table-row;
  }
  /* Скинути фіксовані ширини колонок */
  .table-3col thead th,
  .table-3col tbody td,
  .table-5col thead th,
  .table-5col tbody td {
    width: auto;
    white-space: normal;
  }
  .faq-question {
    color: var(--Type-Primary, #111827);
    font-family: var(--Typography-Family-Primary, Manrope);
    font-size: var(--Typography-Size-20, 20px);
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
  }
  .text_blog .ads_sub {
    margin-top: 32px;
  }
  .related_post .flex h2 {
    font-size: 32px;
    text-align: center;
  }
  .section_info .grid2 {
    gap: 40px;
  }
  .text_blog .yellow.flex img {
    height: auto;
    width: 100%;
    max-width: 400px;
  }
  .text_blog .yellow.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .ads_sub .btn1 {
    width: 100%;
  }
  .text_blog .ads_sub h3 {
    font-size: 28px;
  }
  .text_blog h4 {
    font-size: 20px;
  }
  .text_blog h2 {
    font-size: 32px;
  }
  .text_blog h3 {
    font-size: 28px;
  }
  .hero_blog_template {
    padding-bottom: 16px;
  }
  .section_info {
    padding-top: 16px;
  }
  .hero_blog_template h1 {
    font-size: 36px;
  }
  .search_result {
    margin-top: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .search_result .btn4 {
    margin-top: 24px;
  }
  .search_result .result {
    width: 100%;
  }
  .blog_section {
    padding-top: 64px;
    padding-bottom: 32px;
  }
  .filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 100%;
    gap: 16px;
  }
  .filter .search_input {
    max-width: 100%;
  }
  .filter .left {
    width: 100%;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .filter .form-group {
    max-width: 100%;
    width: 100%;
  }
  .filter .form-group select {
    max-width: 100%;
    width: 100%;
  }
  .grid_blog {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 40px;
  }
  .hero_blog {
    padding: 24px 16px 64px 16px;
  }
  .hero_blog .center h1 {
    font-size: var(--Typography-Size-48, 48px);
  }
  .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;
  }
  .ads.sub h3 {
    color: var(--Type-Primary, #111827);
    text-align: center;
    /* H2_Mobile */
    font-family: var(--Typography-Family-Primary, Manrope);
    font-size: var(--Typography-Size-32, 32px);
    font-style: normal;
    font-weight: 600;
    line-height: 110%; /* 35.2px */
  }
  .ads.sub p {
    font-weight: 400;
    margin-bottom: 0px;
  }
  .ads.sub .box_form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 100%;
  }
  .ads.sub .box_form .form-group {
    max-width: 100%;
    width: 100%;
  }
  .ads.sub .box_form input {
    max-width: 100%;
    width: 100%;
  }
  .ads.sub .box_form button {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .blue.performance_section {
    margin-block: 32px;
  }
  .ads .block h3 {
    text-align: center;
  }
  .sect_edit .boxes h3 {
    font-size: 20px;
  }
  .buttons_hub #dropdownLabel {
    color: var(--Type-Primary, #111827);
    text-align: center;
    /* Text_S 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 */
  }
  .buttons_hub .nav-scroll-container {
    display: none;
  }
  .buttons_hub .nav-dropdown {
    display: block;
  }
  .buttons_hub .dropdown-trigger {
    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;
    width: 100%;
    padding: 16px 16px;
    height: 48px;
    border-radius: var(--Corners-8, 8px);
    border: 1px solid #e2e8f0;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    -webkit-transition: border-color 0.2s;
    transition: border-color 0.2s;
  }
  .buttons_hub .dropdown-trigger.open {
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom-color: transparent;
  }
  .buttons_hub .chevron {
    width: 18px;
    height: 18px;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
    transition: transform 0.25s ease, -webkit-transform 0.25s ease;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .buttons_hub .dropdown-trigger.open .chevron {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .buttons_hub .dropdown-menu {
    display: grid;
    grid-template-rows: 0fr;
    -webkit-transition: grid-template-rows 0.28s ease;
    transition: grid-template-rows 0.28s ease;
    transition: grid-template-rows 0.28s ease, -ms-grid-rows 0.28s ease;
    background: var(--nav-bg);
    border: 1px solid transparent;
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
  }
  .buttons_hub .dropdown-menu.open {
    grid-template-rows: 1fr;
    border: 1px solid var(--nav-border);
  }
  .buttons_hub .dropdown-menu-inner {
    overflow: hidden;
  }
  .buttons_hub .dropdown-item {
    display: block;
    width: 100%;
    padding: 16px 16px;
    border: none;
    background: transparent;
    color: var(--Type-Primary, #111827);
    text-align: center;
    /* Text_S Medium */
    font-family: var(--Typography-Family-Primary, Manrope);
    font-size: var(--Typography-Size-16, 14px);
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 24px */
    text-align: left;
    cursor: pointer;
    -webkit-transition: background 0.15s, color 0.15s;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid var(--nav-border);
    text-decoration: none;
  }
  .buttons_hub .dropdown-item:last-child {
    border-bottom: none;
  }
  .buttons_hub .dropdown-item:hover,
  .buttons_hub .dropdown-item.active {
    background: var(--hover-bg);
    color: #fff;
  }
  .buttons_hub .dropdown-item.active {
    background: var(--active-bg);
  }
  .ads_hub {
    padding-block: 32px;
  }
  .sect_hub.related_post {
    padding-block: 40px;
  }
  .sect_edit .boxes {
    padding: 16px;
    gap: 16px;
  }
  .sect_edit .right li:first-child {
    border-top: 1px solid #e2e8f0;
  }
  .sect_edit .left h2 {
    font-size: var(--Typography-Size-20, 20px);
  }
  .sect_edit .right li {
    padding-left: 0px;
  }
  .sect_edit .grid2 {
    grid-template-columns: 1fr;
  }
  .related_post .mobile {
    margin-top: 32px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .related_post .flex .btn {
    display: none;
  }
  .related_post .flex {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .related_post {
    padding-top: 32px;
    padding-bottom: 64px;
  }
  .section_info {
    padding-bottom: 32px;
  }
  .share-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .share-block span {
    margin-bottom: 0px;
  }
  .toc-list,
  .sidebar-title {
    display: none;
  }
  .toc-custom {
    display: block;
  }
  .section_info .grid2 {
    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;
  }
  .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) {
  .campaign.publish .swiper {
    height: 450px;
  }
  .campaign.publish .campaign_card {
    height: 200px;
  }
  .campaign.publish .swiper-wrapper {
    height: 380px;
  }
  .sect_hub .swiper_blogs {
    height: 480px;
  }
  .text_blog .ads_sub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .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;
  }
  .swiper_blogs {
    height: 450px;
  }
}
@media (max-width: 820px) {
  .related_post.sect_hub .flex h2 {
    font-size: 32px;
    text-align: start !important;
  }
  .related_post.sect_hub .flex {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .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.publish .campaign_card p {
    margin-top: 0px;
  }
  .campaign.publish .swiper {
    height: 430px;
    gap: 24px;
  }
  .campaign.publish .campaign_card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 24px;
    height: 116px;
  }
  .campaign.publish .swiper-wrapper {
    height: 330px;
  }
  .mob_blog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .mob_blog .blog_date {
    display: block;
    margin-block: 0px;
    margin-top: 16px;
  }
  .blog_box_info .blog_date {
    display: none;
  }
  .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;
  }
}
@media (max-width: 740px) {
  .swiper_blogs {
    height: 580px;
  }
}
@media (max-width: 500px) {
  .swiper_blogs {
    height: 450px;
  }
  .sect_hub .swiper_review h4 {
    max-width: 100%;
  }
  .sect_hub .swiper_blogs {
    height: 480px;
  }
}
@media (max-width: 450px) {
  .sect_hub .swiper_blogs {
    height: 450px;
  }
}