@charset "UTF-8";
/* Box model */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margins */
html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #EFEFEF;
  line-height: 1.4;
  margin-bottom: 0 !important;
  background-color: #000;
}

body.hidden {
  overflow: hidden;
}

a, a:hover, a:focus, a:visited {
  text-decoration: none;
  color: #000;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p {
  margin: 0;
}

/* Shop page wrapper */
.woocommerce #primary,
.woocommerce-page #primary {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ===== PRODUCT CARD (loop) ===== */
li.product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: #f9f9f9;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

li.product:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ===== PRODUCT LINK WRAPPER ===== */
li.product .woocommerce-loop-product__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  color: inherit;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ===== PRODUCT IMAGE ===== */
li.product img {
  width: 100%;
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  background: #f0f0f0;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -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;
}

li.product:hover img {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

/* ===== PRODUCT TITLE ===== */
li.product .woocommerce-loop-product__title {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin: 12px 16px 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

/* ===== PRICE ===== */
li.product .price {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #7CCD36;
  margin: 0 16px 16px;
}

li.product .price del {
  color: #aaa;
  font-size: 15px;
  font-weight: 400;
  margin-right: 6px;
}

li.product .price ins {
  text-decoration: none;
  color: #7CCD36;
}

/* ===== ADD TO CART BUTTON ===== */
li.product .add_to_cart_button {
  display: block;
  margin: auto 16px 16px;
  padding: 11px 16px;
  background: transparent;
  color: #7CCD36;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid #7CCD36;
  border-radius: 8px;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

li.product .add_to_cart_button:hover,
li.product .add_to_cart_button.added {
  background: #7CCD36;
  color: #fff;
}

/* ===== SALE BADGE ===== */
li.product .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #7CCD36;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  -webkit-box-shadow: 0 2px 8px rgba(124, 205, 54, 0.4);
          box-shadow: 0 2px 8px rgba(124, 205, 54, 0.4);
}

/* ===== BREADCRUMB ===== */
.woocommerce-breadcrumb {
  font-size: 13px;
  color: #999;
  margin-bottom: 32px;
}

.woocommerce-breadcrumb a {
  color: #999;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.woocommerce-breadcrumb a:hover {
  color: #7CCD36;
}

/* ===== PRODUCT LAYOUT ===== */
.woocommerce #primary .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

/* ===== GALLERY ===== */
.woocommerce-product-gallery {
  border-radius: 16px;
  overflow: hidden;
}

.woocommerce-product-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

.woocommerce-product-gallery__trigger {
  z-index: 10;
}

/* ===== SUMMARY ===== */
.summary.entry-summary {
  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;
  padding-left: 20px;
}

/* ===== TITLE ===== */
.woocommerce #primary .product_title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  color: #111;
  margin: 0;
}

/* ===== PRICE ===== */
.woocommerce #primary .price {
  font-size: 32px;
  font-weight: 700;
  color: #7CCD36;
}

.woocommerce #primary .price del {
  color: #bbb;
  font-size: 22px;
  font-weight: 400;
  margin-right: 8px;
}

.woocommerce #primary .price ins {
  text-decoration: none;
}

/* ===== SHORT DESCRIPTION ===== */
.woocommerce-product-details__short-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ===== CART FORM ===== */
.woocommerce #primary form.cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* Quantity */
.woocommerce #primary .quantity .qty {
  width: 72px;
  padding: 12px;
  font-size: 16px;
  font-family: inherit;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 8px;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

.woocommerce #primary .quantity .qty:focus {
  outline: none;
  border-color: #7CCD36;
}

/* Add to cart button */
.woocommerce #primary .single_add_to_cart_button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 14px 32px;
  background: #7CCD36;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  -webkit-transition: background 0.2s, -webkit-transform 0.1s;
  transition: background 0.2s, -webkit-transform 0.1s;
  transition: background 0.2s, transform 0.1s;
  transition: background 0.2s, transform 0.1s, -webkit-transform 0.1s;
}

.woocommerce #primary .single_add_to_cart_button:hover {
  background: #65b028;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* ===== PRODUCT META ===== */
.product_meta {
  font-size: 13px;
  color: #999;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.product_meta a {
  color: #7CCD36;
  text-decoration: none;
}

.product_meta a:hover {
  text-decoration: underline;
}

/* ===== TABS ===== */
.woocommerce-tabs {
  grid-column: 1/-1;
  margin-top: 40px;
}

.woocommerce-tabs .wc-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 -1px;
  border-bottom: 2px solid #eee;
}

div.woocommerce-tabs ul.wc-tabs li a {
  display: block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  -webkit-transition: color 0.2s, border-color 0.2s;
  transition: color 0.2s, border-color 0.2s;
}

.woocommerce-tabs .wc-tabs li.active a,
.woocommerce-tabs .wc-tabs li a:hover {
  color: #7CCD36;
  border-bottom-color: #7CCD36;
}

.woocommerce-Tabs-panel {
  padding: 32px 0;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.woocommerce-Tabs-panel h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

/* ===== REVIEWS ===== */
.woocommerce-Reviews-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.woocommerce-noreviews {
  color: #888;
  font-style: italic;
}

/* Stars */
.stars a {
  font-size: 24px;
  color: #ddd;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.stars a:hover,
.stars a.active {
  color: #7CCD36;
}

/* Review form */
.comment-form-rating label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

#review_form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 2px solid #ddd;
  border-radius: 8px;
  resize: vertical;
  min-height: 120px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
}

#review_form textarea:focus {
  outline: none;
  border-color: #7CCD36;
}

#review_form #submit {
  padding: 12px 28px;
  background: #7CCD36;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

#review_form #submit:hover {
  background: #65b028;
}

/* ===== RELATED PRODUCTS ===== */
.related.products {
  grid-column: 1/-1;
  margin-top: 60px;
  padding-top: 48px;
  border-top: 2px solid #eee;
}

.related.products h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
}

.related.products .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  gap: 0;
}

.related.products .product:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.related.products .product img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.related.products .woocommerce-loop-product__link {
  text-decoration: none;
  color: inherit;
  padding: 16px;
  display: block;
  width: 100%;
}

.related.products .woocommerce-loop-product__title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}

.related.products .price {
  font-size: 18px;
  font-weight: 700;
  color: #7CCD36;
}

.related.products .price del {
  color: #bbb;
  font-size: 14px;
  font-weight: 400;
}

.related.products .onsale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #7CCD36;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.onsale {
  background: #7CCD36;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

.related.products li.product {
  position: relative;
}

.related.products .add_to_cart_button {
  display: block;
  margin: 0 16px 16px;
  padding: 10px;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.related.products .add_to_cart_button:hover {
  background: #7CCD36;
}

/* ===== SHOP TOOLBAR ===== */
.woocommerce-result-count,
.woocommerce-ordering {
  margin-bottom: 24px;
}

/* Result count + ordering — в один рядок */
.woocommerce .woocommerce-result-count {
  float: left;
  font-size: 14px;
  color: #888;
  margin-top: 10px;
}

/* ===== ORDERING SELECT ===== */
.woocommerce-ordering {
  float: right;
}

.woocommerce-ordering .orderby {
  padding: 10px 36px 10px 14px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #f9f9f9;
  border: 2px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  -webkit-transition: border-color 0.2s;
  transition: border-color 0.2s;
  min-width: 180px;
}

.woocommerce-ordering .orderby:focus {
  outline: none;
  border-color: #7CCD36;
}

.woocommerce-ordering .orderby:hover {
  border-color: #7CCD36;
}

/* Clearfix після toolbar */
.woocommerce-result-count,
.woocommerce-ordering {
  display: inline-block;
}

.woocommerce .products {
  clear: both;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  ul.products {
    gap: 20px;
  }
  ul.products li.product {
    width: calc(50% - 10px) !important;
    margin: initial !important;
  }
}
@media (max-width: 600px) {
  .woocommerce #primary .product_title {
    font-size: 26px;
  }
  .related.products ul.products {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .woocommerce-tabs .wc-tabs li a {
    padding: 10px 16px;
    font-size: 14px;
  }
  /* ===== SUMMARY ===== */
  .summary.entry-summary {
    width: 100%;
    padding-left: 0;
  }
  .single-product div.product .woocommerce-product-gallery {
    width: 100%;
  }
}
@media (max-width: 600px) {
  ul.products li.product {
    width: 100% !important;
  }
}
.container {
  max-width: 1450px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  max-width: 1350px;
}

.ym_page {
  padding-top: 90px;
  overflow: hidden;
}

.burger_menu {
  display: block;
  position: absolute;
  width: 48px;
  height: 48px;
  cursor: pointer;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.burger_menu:hover .burger_menu_line {
  width: 90%;
}
.burger_menu.active .burger_menu_line-1 {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.burger_menu.active .burger_menu_line-2 {
  opacity: 0;
}
.burger_menu.active .burger_menu_line-3 {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.burger_menu_line {
  width: 100%;
  height: 2px;
  background-color: #959595;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.burger_menu_line-1 {
  top: calc(50% - 4px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.burger_menu_line-2 {
  display: none;
}
.burger_menu_line-3 {
  top: calc(50% + 4px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header_site {
  position: fixed;
  padding: 10px 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: 50;
}
.header_site > .container {
  position: relative;
}
.header_site.active .header_menu_wrapper {
  opacity: 1;
  visibility: visible;
  top: 90px;
}

.main_header {
  background-color: transparent;
  border-radius: 40px;
  padding: 5px 20px;
  color: #fff;
  height: 70px;
  font-size: 16px;
  border: 1px solid transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main_header.header_active {
  border: 1px solid #fff;
  background-color: #000;
}

.header_wrapper {
  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;
  position: relative;
  height: 100%;
}
.header_wrapper a, .header_wrapper a:hover, .header_wrapper a:focus, .header_wrapper a:visited {
  color: #fff;
}

.header_logo_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header_menu_custom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  background-color: #151515;
  border-radius: 100px;
  position: relative;
}
.header_menu_custom ul li {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 27px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.header_menu_custom ul li a {
  color: #808080;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header_menu_custom ul li a, .header_menu_custom ul li a:hover, .header_menu_custom ul li a:focus, .header_menu_custom ul li a:visited {
  color: #808080;
}
.header_menu_custom ul li.active a {
  color: #151515;
}
.header_menu_custom_pill {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  background-color: #fff;
  border-radius: 100px;
  -webkit-transition: left 0.3s ease, width 0.3s ease;
  transition: left 0.3s ease, width 0.3s ease;
  z-index: 0;
}

.header_right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.header_button {
  height: 44px;
  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;
  background-color: #ffffff;
  border-radius: 100px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.header_button_modal {
  gap: 20px;
  color: #000;
  gap: 16px;
  padding: 0 5px 0 20px;
  font-weight: 500;
}
.header_button_modal:hover .header_button_modal_arrow {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header_button_modal_arrow {
  width: 36px;
  height: 36px;
  border-radius: 100px;
  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;
  background-color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_mobile_wrapper {
  display: none;
}

.ym_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
}
.ym_modal.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ym_modal_bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.ym_modal_wrapper {
  position: relative;
  background: #9C2F05;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(156, 47, 5, 0.9)), to(rgba(156, 47, 5, 0.4)));
  background: linear-gradient(0deg, rgba(156, 47, 5, 0.9) 0%, rgba(156, 47, 5, 0.4) 100%);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
  -webkit-animation: ym_modal_show 0.25s ease-out;
          animation: ym_modal_show 0.25s ease-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 40px);
  max-height: 95vh;
  overflow-y: auto;
}
.ym_modal_close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.ym_modal_close::before, .ym_modal_close::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}
.ym_modal_close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.ym_modal_close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.ym_modal_title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
}
.ym_modal_description {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}
.ym_modal_form {
  text-align: center;
}
.ym_modal_form input[type=submit] {
  font-size: 16px;
}

@-webkit-keyframes ym_modal_show {
  from {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes ym_modal_show {
  from {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
input.ym-main-input {
  border: 1px solid #333;
  width: 100%;
  border-radius: 15px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 15px;
  color: #333;
}

.ym_main_form input[type=submit] {
  color: #fff;
  font-weight: 700;
  font-size: 25px;
  padding: 15px 35px;
  border-radius: 34px;
  background-color: #9AD964;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}

.header_item_mob {
  display: none;
}

.section_hero {
  font-family: "Bebas Neue", sans-serif;
  margin-top: -90px;
}
.section_hero .container {
  position: relative;
}
.section_hero_wrapper {
  z-index: 1;
  position: relative;
  padding-top: 165px;
  padding-bottom: 50px;
}
.section_hero_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.section_hero_bg_mob {
  display: none;
}
.section_hero_title {
  font-size: 200px;
  letter-spacing: 1px;
  line-height: 1;
}
.section_hero_title_text {
  font-size: 64px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: -3px;
  font-weight: 400;
  line-height: 1;
}
.section_hero_year {
  margin-left: auto;
  margin-top: 160px;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 240px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section_hero_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
.section_hero_bottom_text {
  font-size: 48px;
  letter-spacing: 48px;
  font-weight: 400;
}

.section_main {
  padding-top: 100px;
}
.section_mark {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-transform: uppercase;
  font-size: 13px;
}
.section_mark::before, .section_mark::after {
  content: "";
  display: block;
  width: 10px;
  height: 20px;
  background-color: #fff;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.section_mark::before {
  border-radius: 100px 0 0 100px;
}
.section_mark::after {
  border-radius: 0 100px 100px 0;
}
.section_title {
  font-weight: 600;
  font-size: 52px;
  color: #7F7E7E;
  max-width: 80%;
  line-height: 1.1;
}
.section_title span {
  color: #EFEFEF;
}
.section_title2 {
  font-size: 28px;
  font-weight: 500;
}
.section_title3 {
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.section_title3 span {
  font-style: italic;
  font-weight: 600;
}
.section_text {
  font-size: 17px;
  font-weight: 600;
}

.section_services {
  padding-top: 50px;
  background-color: #111111;
  padding-bottom: 25px;
}
.section_services_text {
  max-width: 390px;
  margin-top: 50px;
}

.section_forwhom {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
}
.section_forwhom_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section_forwhom_title {
  max-width: 60%;
  padding-right: 12%;
  margin-top: -10px;
  line-height: 1.2;
}
.section_forwhom_slider {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  -webkit-box-shadow: inset 0 0 5px rgb(255, 255, 255);
          box-shadow: inset 0 0 5px rgb(255, 255, 255);
  overflow: hidden;
}
.section_forwhom_slider_wrapper {
  margin-top: 90px;
  position: relative;
}
.section_forwhom_slider_item {
  height: 67px;
  background-color: #fff;
  color: #000;
  border-radius: 20px;
  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;
  text-align: center;
}
.section_forwhom_slider_info {
  position: absolute;
  right: 10px;
  top: 10px;
  background: #FA4A06;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 74, 6)), color-stop(73%, rgb(227, 38, 13)), to(rgb(204, 2, 19)));
  background: linear-gradient(90deg, rgb(250, 74, 6) 0%, rgb(227, 38, 13) 73%, rgb(204, 2, 19) 100%);
  z-index: 5;
  border-radius: 20px;
  height: 67px;
  width: 422px;
  overflow: hidden;
  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: 10px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 600;
}
.section_forwhom_slider_info_icon {
  min-width: 45px;
  height: 45px;
  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;
  background-color: #fff;
  border-radius: 15px;
}
.section_forwhom_slider_info_icon img {
  width: 25px;
}
.section_forwhom_count_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.section_forwhom_count_item {
  width: calc(33.33% - 13.3333333333px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  -webkit-box-shadow: inset 0 0 5px rgb(255, 255, 255);
          box-shadow: inset 0 0 5px rgb(255, 255, 255);
  overflow: hidden;
  padding: 20px 20px 30px;
  font-weight: 600;
}
.section_forwhom_count_item:nth-child(1) {
  color: #F9D800;
}
.section_forwhom_count_item:nth-child(2) .section_forwhom_count_title {
  background: -webkit-gradient(linear, left top, right top, from(rgb(244, 111, 111)), to(rgb(255, 237, 237)));
  background: linear-gradient(90deg, rgb(244, 111, 111) 0%, rgb(255, 237, 237) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section_forwhom_count_item:nth-child(2) .section_forwhom_count_text {
  background: -webkit-gradient(linear, left top, right top, from(rgb(244, 111, 111)), to(rgb(255, 237, 237)));
  background: linear-gradient(90deg, rgb(244, 111, 111) 0%, rgb(255, 237, 237) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section_forwhom_count_item:nth-child(3) .section_forwhom_count_title {
  background: #4CA6FF;
  background: -webkit-gradient(linear, left top, right top, from(rgb(76, 166, 255)), to(rgb(138, 144, 255)));
  background: linear-gradient(90deg, rgb(76, 166, 255) 0%, rgb(138, 144, 255) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section_forwhom_count_item:nth-child(3) .section_forwhom_count_text {
  background: #4CA6FF;
  background: -webkit-gradient(linear, left top, right top, from(rgb(76, 166, 255)), to(rgb(138, 144, 255)));
  background: linear-gradient(90deg, rgb(76, 166, 255) 0%, rgb(138, 144, 255) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section_forwhom_count_title {
  font-size: 94px;
  margin-bottom: 60px;
}
.section_forwhom_count_text {
  font-size: 18px;
  margin-top: auto;
}

.section_wearechosen_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section_wearechosen_mark {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.section_wearechosen_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  padding-top: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section_wearechosen_item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  -webkit-box-shadow: inset 0 0 5px rgb(255, 255, 255);
          box-shadow: inset 0 0 5px rgb(255, 255, 255);
  padding: 30px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section_wearechosen_item_custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.section_wearechosen_item_icon {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 20px;
  top: 20px;
}
.section_wearechosen_item_title {
  font-size: 14px;
  color: #F9D800;
  padding-right: 35px;
  margin-bottom: 10px;
}
.section_wearechosen_item_text {
  font-size: 12px;
  opacity: 0.7;
}

.section_services2_wrapper {
  overflow: visible;
  padding-top: 60px;
}
.section_services2_item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 50px;
}
.section_services2_item_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_services2_item_top {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section_services2_item_top_title {
  font-size: 24px;
  font-weight: 400;
  max-width: 300px;
}
.section_services2_item_top_button {
  font-size: 11px;
  text-transform: uppercase;
  padding: 15px 22px;
  border-radius: 8px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.section_services2_item_top_button:hover {
  background-color: #fff;
  color: #000;
}
.section_services2_item_content {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  background-color: #000;
  padding: 50px;
  margin-top: 40px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.section_services2_item_content_bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.section_services2_item_content_col {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.section_services2_item_content_col:nth-child(1) {
  width: calc(56% - 20px);
}
.section_services2_item_content_col:nth-child(2) {
  width: calc(44% - 20px);
}
.section_services2_item_content_title {
  font-size: 28px;
  line-height: 1.2;
}
.section_services2_item_content_text {
  font-size: 15px;
}
.section_services2_item_content_item_title {
  opacity: 0.5;
  font-size: 14px;
}
.section_services2_item_content_item_text {
  font-size: 15px;
}
.section_services2_item_mark_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.section_services2_item_mark {
  padding: 5px 10px;
  background-color: #fff;
  color: #000;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: baseline;
      -ms-flex-pack: baseline;
          justify-content: baseline;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 15px;
}

.section_portfolio {
  background-color: #111111;
  margin-top: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.section_portfolio .container {
  position: relative;
}
.section_portfolio_bg {
  position: absolute;
  right: -75px;
  top: -100px;
}
.section_portfolio_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 60px 30px;
  padding-top: 40px;
}
.section_portfolio_item {
  width: calc(50% - 15px);
}
.section_portfolio_item_top {
  position: relative;
}
.section_portfolio_item_top_content {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  padding: 15px;
  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;
  pointer-events: none;
}
.section_portfolio_item_top_slider {
  border-radius: 10px;
  overflow: hidden;
}
.section_portfolio_item_top_slider_img {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section_portfolio_item_top_slider_img img {
  width: 100%;
}
.section_portfolio_item_top_slider_prev {
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}
.section_portfolio_item_top_slider_next {
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 2;
  pointer-events: auto;
  cursor: pointer;
}
.section_portfolio_item_top_mark_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.section_portfolio_item_top_mark {
  font-size: 13px;
  font-weight: 600;
}
.section_portfolio_item_top_mark::before {
  content: "[";
}
.section_portfolio_item_top_mark::after {
  content: "]";
}
.section_portfolio_item_top_results {
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  max-width: 250px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background: rgba(0, 0, 0, 0.2);
}
.section_portfolio_item_top_results_item {
  font-size: 13px;
  font-weight: 600;
}
.section_portfolio_item_top_results_item span {
  color: #E0FF03;
}
.section_portfolio_item_title {
  font-size: 27px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section_portfolio_item_title2 {
  opacity: 0.6;
  font-size: 11px;
  font-weight: 600;
}
.section_portfolio_item_content {
  padding-top: 20px;
}
.section_portfolio_item_content_col_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
.section_portfolio_item_content_col {
  width: calc(50% - 25px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.section_portfolio_item_content_text {
  font-size: 13px;
  font-weight: 600;
}

.section_reviews {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  padding-bottom: 150px;
  position: relative;
}
.section_reviews_bg {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-33%);
          transform: translateY(-33%);
  z-index: -1;
}
.section_reviews_text {
  text-align: center;
  font-weight: 400;
  margin-top: 15px;
}
.section_reviews_items {
  padding-top: 30px;
  overflow: visible;
}
.section_reviews_item {
  min-height: 410px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.section_reviews_item_video {
  width: 100%;
  height: 410px;
}
.section_reviews_item_video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_reviews_item_mask {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  background: rgba(0, 0, 0, 0.2);
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 30px 20px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.section_reviews_item_mask.hidden {
  opacity: 0;
  pointer-events: none;
}
.section_reviews_item_play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section_reviews_item_work {
  margin-top: auto;
  font-size: 13px;
  text-align: center;
}
.section_reviews_item_title {
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
}
.section_reviews_item_text {
  font-size: 13px;
  margin-top: 10px;
}

.section_stages_wrapper {
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}
.section_stages_text {
  text-align: center;
  max-width: 450px;
  margin: 10px auto 0;
  color: #808080;
  font-weight: 500;
}
.section_stages_items {
  padding-top: 45px;
  overflow: visible;
}
.section_stages_item_top {
  position: relative;
  border-radius: 20px;
  background: #FFF;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), color-stop(25%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0) 100%);
}
.section_stages_item_top::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.4)), color-stop(80%, rgba(255, 255, 255, 0.25)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.25) 80%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}
.section_stages_item_top_content {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  margin-bottom: 40px;
}
.section_stages_item_top_text {
  color: #808080;
}
.section_stages_item_top_count {
  font-size: 16px;
  color: #808080;
  position: absolute;
  right: 30px;
  top: 30px;
}
.section_stages_item_content {
  padding-top: 50px;
  color: #808080;
  font-size: 16px;
  font-weight: 500;
}
.section_stages_item_content strong {
  color: #fff;
}

.section_form {
  background-size: 100%;
  background-position: top;
  background-repeat: no-repeat;
  padding-bottom: 95px;
  margin-top: 90px;
  padding-top: 50px;
}
.section_form_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section_form_title {
  width: 55%;
}
.section_form_text {
  width: 43%;
  padding-top: 20px;
}
.section_form_content {
  padding-top: 250px;
}
.section_form_content_title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.section_form_content_text {
  font-size: 18px;
  font-weight: 500;
  color: #D69A80;
  text-align: center;
  text-shadow: 0 0 5px rgb(0, 0, 0);
}
.section_form_content_text span {
  color: #fff;
}
.section_form_content_form {
  padding-top: 45px;
}
.section_form_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
.section_form_field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.section_form_field input[type=text],
.section_form_field input[type=tel] {
  width: 100%;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: inset 0 0 5px 0 rgb(255, 255, 255);
          box-shadow: inset 0 0 5px 0 rgb(255, 255, 255);
  backdrop-filter: blur(3px);
  border-radius: 32px;
  padding: 14px 22px;
  color: #fff;
  font-size: 14px;
  outline: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.section_form_field input[type=text]::-webkit-input-placeholder, .section_form_field input[type=tel]::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.section_form_field input[type=text]::-moz-placeholder, .section_form_field input[type=tel]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.section_form_field input[type=text]:-ms-input-placeholder, .section_form_field input[type=tel]:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.section_form_field input[type=text]::-ms-input-placeholder, .section_form_field input[type=tel]::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.section_form_field input[type=text]::placeholder,
.section_form_field input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.section_form_field input[type=text]:focus,
.section_form_field input[type=tel]:focus {
  border-color: rgba(255, 255, 255, 0.7);
}
.section_form_field--phone {
  position: relative;
}
.section_form_field--phone .section_form_field_flag {
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.section_form_field--phone .section_form_field_flag img {
  width: 22px;
  height: auto;
  border-radius: 2px;
}
.section_form_field--phone input[type=tel] {
  padding-left: 80px;
}
.section_form_field--phone .intl-tel-input {
  width: 100%;
}
.section_form_field--phone .selected-flag {
  left: 10px;
}
.section_form_field--phone .intl-tel-input.allow-dropdown input[type=tel] {
  padding-left: 62px;
}
.section_form_field--phone .intl-tel-input .country-list {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(3px);
}
.section_form_field--select {
  position: relative;
}
.section_form_field--select select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: inset 0 0 5px 0 rgb(255, 255, 255);
          box-shadow: inset 0 0 5px 0 rgb(255, 255, 255);
  border-radius: 32px;
  backdrop-filter: blur(3px);
  padding: 14px 40px 14px 22px;
  color: #fff;
  font-size: 14px;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  height: 55px;
}
.section_form_field--select select option {
  background: #1a1a1a;
  color: #fff;
}
.section_form_field--select select:focus {
  border-color: rgba(255, 255, 255, 0.7);
}
.section_form_field--select::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 25px;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23fff' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
}
.section_form_field--submit {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.section_form_field--submit input[type=submit] {
  background: #F9D800;
  color: #000;
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 50px;
  padding: 14px 30px;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
  height: 55px;
}
.section_form_field--submit input[type=submit]:hover {
  opacity: 0.88;
}
.section_form_field .wpcf7-not-valid-tip {
  font-size: 14px;
  padding-left: 25px;
}
.section_form_checkbox {
  padding-left: 10px;
}
.section_form_checkbox p {
  margin: 0;
}
.section_form_checkbox .wpcf7-list-item {
  margin: 0;
}
.section_form_checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
}
.section_form_checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  position: relative;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.section_form_checkbox input[type=checkbox]:checked {
  border-color: #fff;
}
.section_form_checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 8px;
  height: 12px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.section_form_checkbox .wpcf7-list-item-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}
.section_form_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 45px;
  gap: 16px;
}
.section_form_link {
  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;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-box-shadow: inset 0 0 5px 0 rgb(255, 255, 255);
          box-shadow: inset 0 0 5px 0 rgb(255, 255, 255);
  backdrop-filter: blur(3px);
  border-radius: 32px;
  width: 78px;
  height: 78px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.section_form_link:hover {
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.section_form_link img {
  width: 45%;
}

.section_blog {
  padding-bottom: 100px;
}
.section_blog_title {
  color: #fff;
  margin-bottom: 15px;
}
.section_blog_text {
  color: #808080;
  max-width: 470px;
  font-weight: 500;
}
.section_blog_items {
  padding-top: 45px;
}
.section_blog_items_swiper {
  overflow: visible;
}
.section_blog_item_img_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  overflow: hidden;
}
.section_blog_item_mark_wrapper {
  position: absolute;
  left: 10px;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.section_blog_item_mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 50px;
  font-size: 11px;
  padding: 0 5px;
}
.section_blog_item_content {
  margin-top: 15px;
}
.section_blog_item_date {
  margin-bottom: 10px;
  font-size: 14px;
}
.section_blog_item_title {
  font-size: 18px;
  color: #fff;
  font-weight: 400;
}
.section_blog_item_title:hover, .section_blog_item_title:visited, .section_blog_item_title:focus {
  color: #fff;
}

.footer_main {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 100px;
}
.footer_main a {
  color: #fff;
}
.footer_main a:hover, .footer_main a:visited, .footer_main a:focus {
  color: #fff;
}
.footer_main_title {
  text-align: center;
  width: 100%;
  max-width: 100%;
  color: #fff;
  font-weight: 500;
}
.footer_main_wrapper {
  padding-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.footer_main_item {
  background-color: #171717;
  border-radius: 30px;
  overflow: hidden;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(25% - 15px);
  min-height: 290px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer_main_item:hover {
  background-color: #292929;
}
.footer_main_item_text_1 {
  font-size: 16px;
  color: #ADADAD;
  word-break: break-word;
}
.footer_main_item_text_2 {
  font-size: 28px;
  margin-bottom: 20px;
  word-break: break-word;
}
.footer_main_item_plus {
  width: 40px;
  height: 40px;
  margin-top: auto;
  margin-left: auto;
}
.footer_main_item_custom {
  width: calc(25% - 15px);
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}

@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1600px;
  }
}
@media (max-width: 1399.98px) {
  .section_forwhom_count_title {
    font-size: 75px;
  }
}
@media (max-width: 1199.98px) {
  .section_forwhom_count_title {
    font-size: 60px;
  }
}
@media (max-width: 992px) {
  .ym_page {
    padding-top: 80px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .header_item_deck {
    display: none;
  }
  .header_item_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main_header {
    height: 60px;
  }
  .header_menu_custom ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    border-radius: 20px;
  }
  .header_menu_custom ul li {
    height: 44px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header_mobile_wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 10;
    padding: 80px 20px 50px;
    display: none;
    overflow: auto;
  }
  .header_mobile_wrapper.active {
    display: block;
  }
  .header_menu_custom_pill {
    position: absolute;
    background-color: #fff;
    border-radius: 100px;
    -webkit-transition: left 0.3s ease, width 0.3s ease, top 0.3s ease, height 0.3s ease;
    transition: left 0.3s ease, width 0.3s ease, top 0.3s ease, height 0.3s ease;
    z-index: 0;
    top: 0px;
    height: 44px;
  }
  .header_button_modal {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px auto 0;
  }
  .burger_menu {
    -webkit-tap-highlight-color: transparent;
    position: relative;
    width: 35px;
    height: 35px;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-transform: none;
            transform: none;
    left: initial;
    top: initial;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .burger_menu_line {
    width: 60%;
    height: 1.5px;
    background-color: #000;
    position: absolute;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    will-change: transform, top, left;
    border-radius: 100px;
    display: block;
  }
  .burger_menu_line-1 {
    top: calc(50% - 5px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .burger_menu_line-2 {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .burger_menu_line-3 {
    top: calc(50% + 5px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .burger_menu:hover .burger_menu_line {
    width: 60%;
  }
  .burger_menu.active {
    border-radius: 100px;
  }
  .burger_menu.active .burger_menu_line-1 {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger_menu.active .burger_menu_line-2 {
    opacity: 0;
  }
  .burger_menu.active .burger_menu_line-3 {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .section_title {
    max-width: initial;
    font-size: 30px;
  }
  .section_title3 {
    font-size: 30px;
  }
  .section_text {
    font-size: 16px;
  }
  .section_hero_wrapper {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .section_hero_bg {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .section_hero_bg_desk {
    display: none;
  }
  .section_hero_bg_mob {
    display: block;
  }
  .section_hero_title {
    font-size: 60px;
    letter-spacing: 1px;
  }
  .section_hero_title_text {
    font-size: 40px;
    letter-spacing: 0px;
  }
  .section_hero_year {
    margin-top: 250px;
    margin-bottom: 70px;
    font-size: 60px;
  }
  .section_hero_bottom {
    gap: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: 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;
  }
  .section_hero_bottom_text {
    font-size: 30px;
    letter-spacing: 30px;
    padding-left: 35px;
    line-height: 1;
  }
  .section_forwhom {
    background-size: cover;
  }
  .section_forwhom_title {
    max-width: initial;
    padding-right: initial;
  }
  .section_forwhom_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .section_forwhom_slider {
    border-radius: 20px;
  }
  .section_forwhom_slider_wrapper {
    margin-top: 40px;
  }
  .section_forwhom_slider_info {
    position: initial;
    width: 100%;
    margin-top: 20px;
    min-height: 67px;
    height: initial;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .section_forwhom_count_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_forwhom_count_item {
    border-radius: 20px;
    width: 100%;
  }
  .section_forwhom_count_title {
    font-size: 70px;
    margin-bottom: 20px;
  }
  .section_forwhom_count_text {
    font-size: 16px;
  }
  .section_wearechosen_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .section_wearechosen_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_wearechosen_item {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 20px;
  }
  .section_services2_wrapper {
    padding-top: 35px;
  }
  .section_services2_item {
    padding: 10px;
  }
  .section_services2_item_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .section_services2_item_top_title {
    font-size: 22px;
  }
  .section_services2_item_content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 20px;
    gap: 20px;
  }
  .section_services2_item_content_col:nth-child(1) {
    width: 100%;
  }
  .section_services2_item_content_col:nth-child(2) {
    width: 100%;
  }
  .section_services2_item_content_title {
    font-size: 22px;
  }
  .section_services2_item_content_text {
    opacity: 0.5;
  }
  .section_portfolio {
    padding-bottom: 0;
  }
  .section_portfolio_item {
    width: 100%;
  }
  .section_portfolio_item_content_col {
    width: 100%;
  }
  .section_portfolio_item_content_col_wrapper {
    gap: 20px;
  }
  .section_portfolio_item_top_slider_img {
    min-height: 450px;
  }
  .section_portfolio_item_top_slider_img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .section_reviews {
    padding-bottom: 0;
  }
  .section_reviews_bg {
    width: initial;
    height: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .section_stages {
    padding-top: 100px;
  }
  .section_stages_item_top_content {
    font-size: 16px;
    padding: 15px 40px 0 15px;
    margin-bottom: 20px;
  }
  .section_stages_item_top_count {
    right: 15px;
    top: 15px;
  }
  .section_stages_item_content {
    padding-top: 20px;
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section_form {
    padding-top: 0;
    background-size: cover;
  }
  .section_form_top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_form_title {
    width: 100%;
  }
  .section_form_text {
    width: 100%;
  }
  .section_form_content {
    padding-top: 75px;
  }
  .section_form_row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section_form_content_form {
    padding-top: 25px;
  }
  .section_form_links {
    gap: 10px;
  }
  .section_form_link {
    width: 60px;
    height: 60px;
    border-radius: 20px;
  }
  .footer_main_wrapper {
    gap: 10px;
  }
  .footer_main_item {
    width: calc(50% - 5px);
    border-radius: 20px;
    padding: 15px;
    min-height: initial;
  }
  .footer_main_item_text_2 {
    font-size: 20px;
  }
  .footer_main_item_plus {
    width: 30px;
    height: 30px;
  }
  .footer_main_item_custom {
    width: 100%;
    padding: 20px;
  }
}