/*
 Theme Name:   GP Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Serhii Kyryliuk
 Author URI:   https://t.me/KSL1975
 Template:     generatepress
 Version:      0.1
 Text Domain: almaz
 Domain Path: /lang
*/
html {
  scroll-behavior: smooth;
}

body {
  /*overflow-x: hidden;*/
}

:root {
  --site-width: 80rem;
  --header-height: 6.25rem;
  --fs-h1: clamp(2.13rem, 2.88vw + 1.55rem, 4rem);
  --fs-h2: clamp(1.56rem, 0.96vw + 1.37rem, 2.19rem);
  --fs-h3: clamp(1.38rem, 0.58vw + 1.26rem, 1.75rem);
  --fs-h4: clamp(1.13rem, 0.58vw + 1.01rem, 1.5rem);
  --fs-h5: clamp(1.25rem, 0.19vw + 1.21rem, 1.38rem);
  --fs-h6: ;
  --fs-body: 1rem;
  --gradient-blue: linear-gradient(86deg, #4f9ba0, #4993a2, #478ca3, #4883a2, #427399, #355b88, #2d4475, #272d60);
  --gradient-yellow: radial-gradient(circle at 50% 50%, #ffe95a, #fdda46, #fbcb31, #f9bc19, #f8b407, #f8b407, #f8b407, #f8b407);
  --gradient-text: linear-gradient(90deg, #E09E41 0%, #E1A74E 48%, #E5C476 74%, #E09E42 99%);
}

.fs-h1 {
  font-size: var(--fs-h1);
}

.fs-h2 {
  font-size: var(--fs-h2);
}

.fs-h3 {
  font-size: var(--fs-h3);
}

.fs-h4 {
  font-size: var(--fs-h4);
}

.fs-h5 {
  font-size: var(--fs-h5);
}

.fs-h6 {
  font-size: var(--fs-h6);
}

.h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
}

.h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
}

.h3 {
  font-size: var(--fs-h3);
  font-weight: 600;
}

.h4 {
  font-size: var(--fs-h4);
  font-weight: 500;
}

.h5 {
  font-size: var(--fs-h5);
}

.h6 {
  font-size: var(--fs-h6);
}

.site-header {
  background: var(--gradient-blue);
}

.menu a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
}

section:not(#etaps) {
  overflow: hidden;
}

.container__inner {
  width: 100%;
  max-width: var(--site-width);
  padding-inline: 1rem;
  margin-inline: auto;
}

.no-scroll {
  overflow: hidden;
}

.entry-content {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

#splide01 {
  scroll-snap-align: start;
}

.btn__lg {
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
}

.btn-dark {
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  font-weight: 500;
  font-size: var(--fs-h5);
  padding-block: 1.125rem;
  padding-inline: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  background-color: var(--base-3);
  color: var(--text-white);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.btn-dark .gb-icon svg path {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.btn-dark:hover {
  color: #f8b407;
  -webkit-box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.btn-dark:hover .gb-icon svg path {
  fill: #f8b407;
}

.btn-light {
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  font-weight: 500;
  font-size: var(--fs-h5);
  padding-block: 1.125rem;
  padding-inline: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  background-color: var(--base);
  color: var(--text-black);
}

.btn-primary {
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  font-weight: 500;
  font-size: var(--fs-h5);
  padding-block: 1.125rem;
  padding-inline: 1.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  background-color: var(--primary);
  color: var(--text-black);
}

.main-navigation .main-nav ul li[class*=current-menu-] > a:hover {
  color: var(--primary);
}

.main-navigation .main-nav ul li {
  padding-inline: 1.25rem;
}

.main-navigation .main-nav ul li a {
  padding-left: 0;
  padding-right: 0;
}

.main-nav .menu-item a,
.menu .menu-item a {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.main-nav .menu-item a:hover,
.menu .menu-item a:hover {
  color: var(--primary);
}
.main-nav .menu-item a::before,
.menu .menu-item a::before {
  content: "";
  position: absolute;
  width: 100%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 5px;
  height: 0.1em;
  bottom: 20%;
  left: 0;
  background: var(--primary);
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
.main-nav .menu-item a:hover::before,
.menu .menu-item a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.hero__video {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100vw;
  z-index: 0;
}
.hero__video video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100vw;
}

.hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  height: calc(100vh - var(--header-height));
  min-width: 100%;
  z-index: 1;
  padding-block: 2rem;
  overflow: hidden;
}
@media screen and (max-width: 920px) {
  .hero {
    height: 100%;
  }
}
.hero:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(60deg, hsla(188, 33%, 43%, 0.7) 53%, hsla(0, 0%, 100%, 0) 53%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero:before {
    background: transparent;
  }
}

.hero__inner {
  z-index: 1;
}
@media screen and (max-width: 920px) {
  .hero__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.hero__col {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .hero__col {
    width: 100%;
  }
}

.hero__text-col {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  row-gap: 3rem;
}
@media screen and (max-width: 768px) {
  .hero__text-col {
    width: 80%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-padding-after: 2rem;
            padding-block-end: 2rem;
  }
}

.hero__img-wrap {
  position: relative;
  min-width: 500px;
  min-height: 500px;
  -webkit-transform: translateX(-1000px);
          transform: translateX(-1000px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .hero__img-wrap {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
.hero__img-wrap .hero_logo-bg-img__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
  width: 100%;
  height: 100%;
}
.hero__img-wrap .hero_logo-bg-img__wrap .hero_logo-bg-img {
  -webkit-animation: logo-rotate 25s linear infinite;
          animation: logo-rotate 25s linear infinite;
}

.gb-headline-1fd0858e {
  -webkit-transform: translateX(-1000px);
          transform: translateX(-1000px);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .gb-headline-1fd0858e {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.8;
  z-index: 1;
}

.hero__brand {
  position: relative;
}
.hero__brand:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 200px;
  height: 4px;
  -webkit-transform: translate(-220px, 40%);
          transform: translate(-220px, 40%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(224, 158, 65, 0)), color-stop(55%, #E1A74E), color-stop(86%, #E5C476), color-stop(99%, #E09E42));
  background: linear-gradient(90deg, rgba(224, 158, 65, 0) 0%, #E1A74E 55%, #E5C476 86%, #E09E42 99%);
}
.hero__brand:nth-of-type(2):after {
  width: 172px;
  left: 0;
  -webkit-transform: translateX(-192px);
          transform: translateX(-192px);
}
.hero__brand:nth-of-type(3):after {
  width: 114px;
  left: 0;
  -webkit-transform: translateX(-135px);
          transform: translateX(-135px);
}
.hero__brand:nth-of-type(4):after {
  width: 61px;
  left: 0;
  -webkit-transform: translateX(-83px);
          transform: translateX(-83px);
}
@media screen and (max-width: 768px) {
  .hero__brand {
    display: none;
  }
}

.gb-headline-edde7250,
.gb-headline-dee4db3e,
.gb-headline-b1bf24ec,
.gb-headline-1ee5f7dc,
.gb-block-image-639d6cfc {
  opacity: 0;
  -webkit-transform: translateX(1000px);
          transform: translateX(1000px);
}
@media screen and (max-width: 768px) {
  .gb-headline-edde7250,
  .gb-headline-dee4db3e,
  .gb-headline-b1bf24ec,
  .gb-headline-1ee5f7dc,
  .gb-block-image-639d6cfc {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

.hero__btn {
  opacity: 1;
}
.hero__btn .gb-icon svg #path-5-outside-2_1254_4679 rect {
  fill: green;
}
.hero__btn:hover .gb-icon svg path.arrow {
  stroke: var(--primary);
}

@-webkit-keyframes logo-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes logo-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.hero-btn-wrap {
  position: relative;
  min-width: 230px;
}
.hero-btn-wrap:hover .hero-btn-icon {
  -webkit-transform: rotate(75deg);
          transform: rotate(75deg);
}
.hero-btn-wrap .hero-btn-text {
  position: absolute;
  top: 27%;
  left: 25%;
  font-size: var(--fs-h3);
  text-transform: uppercase;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 468px) {
  .hero-btn-wrap .hero-btn-text {
    top: 23%;
    left: 20%;
  }
}
@media screen and (max-width: 340px) {
  .hero-btn-wrap .hero-btn-text {
    font-size: 1.2rem;
  }
}
.hero-btn-wrap .hero-btn-text a {
  text-decoration: none;
  color: var(--text-black);
}
.hero-btn-wrap .hero-btn-icon {
  position: absolute;
  top: 31%;
  right: 6%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
@media screen and (max-width: 468px) {
  .hero-btn-wrap .hero-btn-icon {
    top: 31%;
    right: 7%;
  }
}
@media screen and (max-width: 370px) {
  .hero-btn-wrap .hero-btn-icon {
    top: 28%;
    right: 6%;
  }
}
.hero-btn-wrap .hero-btn-icon svg {
  width: 32px;
  height: 32px;
}
@media screen and (max-width: 468px) {
  .hero-btn-wrap .hero-btn-icon svg {
    width: 24px;
    height: 24px;
  }
}
@media screen and (max-width: 350px) {
  .hero-btn-wrap .hero-btn-icon svg {
    width: 20px;
    height: 20px;
  }
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.preloader__line {
  position: relative;
}
.preloader__line::before {
  content: "";
  width: 100%;
  height: 4px;
  background: var(--gradient-text);
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 5%;
  z-index: 1;
  -webkit-animation: left-to-right 5s ease-out;
          animation: left-to-right 5s ease-out;
}
.preloader__title {
  max-width: 20ch;
  color: transparent;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
          background-clip: text;
}
.preloader__video {
  position: relative;
}
.preloader__video::before {
  content: "";
  position: absolute;
  display: block;
  max-width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background-color: transparent;
  -webkit-box-shadow: 0 0 200px 200px rgba(231, 170, 79, 0.6);
  box-shadow: 0 0 200px 200px rgba(231, 170, 79, 0.6);
  z-index: -1;
}
.preloader__video video {
  height: 640px;
}
@media screen and (max-width: 768px) {
  .preloader__video video {
    height: 320px;
  }
}
.preloader__hide {
  opacity: 0;
  z-index: -999;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

@-webkit-keyframes left-to-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes left-to-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#footer-widgets {
  background: var(--gradient-blue);
  color: var(--text-white);
}
#footer-widgets ul {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
#footer-widgets .menu-item li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#footer-widgets .menu-item a {
  color: var(--text-white);
  text-decoration: none;
  padding-bottom: 0.5rem;
}
#footer-widgets .menu-item a:hover {
  color: var(--primary);
}
#footer-widgets li.pll-parent-menu-item {
  display: none;
}

.copyright-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.copyright-bar div {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
}

.home-slider {
  position: relative;
  height: 100%;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: no-wrap;
      flex-wrap: no-wrap;
  overflow-x: hidden;
  background: var(--gradient-blue);
}
.home-slider .pagination-wrap {
  position: absolute;
  left: 50%;
  bottom: 0.5em;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 1rem;
  margin-inline: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .home-slider .pagination-wrap {
    bottom: 47%;
  }
}
.home-slider .pagination-wrap ul.splide__pagination {
  grid-column: 2/3;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1024px) {
  .home-slider .pagination-wrap ul.splide__pagination {
    grid-column: 1/3;
  }
}
.home-slider .pagination-wrap ul.splide__pagination .splide__pagination__page {
  background-color: #858585;
}
.home-slider .pagination-wrap ul.splide__pagination .splide__pagination__page.is-active {
  background-color: #1e1e1e;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.home-slide__inner {
  overflow: hidden;
  position: relative;
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .home-slide__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.home-slide__media-col {
  width: 50%;
  height: 100%;
  background: no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .home-slide__media-col {
    width: 100%;
    height: 50%;
  }
}
.home-slide__media-col-img {
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-slide__text-col {
  width: 50%;
  height: 100%;
  background: url("/wp-content/uploads/2024/11/e70abc981edaa0e4156ebd2fa12ef282a685d9c7.webp") no-repeat;
  background-position: 100% 50%;
  background-size: cover;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 2rem;
  -webkit-padding-start: 6rem;
          padding-inline-start: 6rem;
}
@media screen and (max-width: 1024px) {
  .home-slide__text-col {
    width: 100%;
    height: 50%;
    padding-inline: 1rem;
    background-size: cover;
  }
}
.home-slide__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: var(--text-black);
  text-transform: uppercase;
  margin-bottom: 0;
}
.home-slide__desc {
  font-size: var(--fs-h5);
  max-width: 35ch;
}
.home-slide__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 26px;
  text-decoration: none;
}
.home-slide__btn span {
  height: 25px;
}

.ks-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 845px) {
  .ks-products {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

.ks-product__card {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1rem;
  height: 100%;
  max-width: 100%;
}
.ks-product__img {
  height: 250px;
  width: auto;
}
.ks-product__card-title {
  font-size: var(--fs-h4);
  font-weight: 400;
  text-align: center;
  max-width: 22ch;
}
.ks-product__card-bottom-wrap {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1rem;
}
.ks-product__card-brand {
  font-size: var(--fs-h3);
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  text-align: center;
}
.ks-product__card-weight {
  font-size: var(--fs-h4);
  font-weight: 700;
}

.brands {
  padding-block: 3rem;
  background: var(--gradient-blue);
}
.brands__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .brands__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.brands__header {
  width: 100%;
  text-align: center;
  font-size: var(--fs-h1);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
}
.brands__img {
  width: 216px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.brands__img:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.home-products {
  position: relative;
  padding-block: 5rem;
  background: url("/wp-content/uploads/2024/10/lines.webp") no-repeat center, var(--gradient-yellow);
  overflow: hidden;
  z-index: 1;
}
.home-products__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.5rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.home-products__header {
  font-size: var(--fs-h1);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-white);
}
.home-products__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 3rem;
}
@media screen and (max-width: 768px) {
  .home-products__grid {
    grid-template-columns: 1fr;
    row-gap: 2rem;
  }
}
.home-products__card {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  height: 100%;
}
.home-products__name {
  font-weight: 700;
  font-size: var(--fs-h5);
  padding-inline: 1.5rem;
  padding-block: 0.875rem;
  background: var(--base);
  border: 3px solid transparent;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.home-products__name:hover {
  background: var(--gradient-yellow);
  border: 3px solid #fff;
}
.home-products__name:hover a {
  color: var(--text-white);
}
.home-products__name a {
  text-decoration: none;
  color: var(--text-black);
}
.home-products__cta-btn {
  background-color: var(--base-3);
  color: var(--text-white);
  font-weight: 500;
  font-size: var(--fs-h5);
  padding-block: 1.125rem;
  padding-inline: 1.5rem;
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  -webkit-margin-before: 6.25rem;
          margin-block-start: 6.25rem;
}
@media screen and (max-width: 768px) {
  .home-products__cta-btn {
    -webkit-margin-before: 3rem;
            margin-block-start: 3rem;
  }
}
.home-products__flower-1-wrap {
  position: absolute;
  left: -15%;
  top: 20%;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .home-products__flower-1-wrap {
    top: 17%;
    left: -20%;
  }
  .home-products__flower-1-wrap img {
    width: 300px;
  }
}
.home-products__flower-1-wrap img {
  -webkit-animation: flower-rotate 60s linear infinite;
          animation: flower-rotate 60s linear infinite;
}
.home-products__flower-2-wrap {
  position: absolute;
  right: -15%;
  top: 65%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .home-products__flower-2-wrap img {
    width: 300px;
  }
}
.home-products__flower-2-wrap img {
  -webkit-animation: flower-rotate 60s linear infinite;
          animation: flower-rotate 60s linear infinite;
}

@-webkit-keyframes flower-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes flower-rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.numbers {
  padding-block: 4rem;
  background: var(--gradient-blue);
  color: var(--text-white);
}
.numbers__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .numbers__inner {
    grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
    row-gap: 2rem;
  }
}
.numbers__card {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1rem;
  text-align: center;
  opacity: 1;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgb(255, 255, 255)), color-stop(50%, transparent));
  background: linear-gradient(to right, rgb(255, 255, 255) 50%, transparent 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
@media screen and (max-width: 768px) {
  .numbers__card {
    row-gap: 0;
  }
}
.numbers__number {
  font-size: var(--fs-h1);
  font-weight: 800;
}
.numbers__desc {
  font-size: var(--fs-h5);
}

.etaps {
  -webkit-padding-before: 6.25rem;
          padding-block-start: 6.25rem;
  -webkit-padding-after: 5rem;
          padding-block-end: 5rem;
  background-color: var(--base-2);
}
@media screen and (max-width: 768px) {
  .etaps {
    -webkit-padding-before: 3.25rem;
            padding-block-start: 3.25rem;
    -webkit-padding-after: 2rem;
            padding-block-end: 2rem;
  }
}
.etaps__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  background: -webkit-gradient(linear, left top, left bottom, from(RGB(255, 250, 244, 0.9)), to(RGB(255, 250, 244, 0.9))), url("/wp-content/uploads/2024/10/almaz_503x410.webp") no-repeat 10% 60%;
  background: linear-gradient(RGB(255, 250, 244, 0.9), RGB(255, 250, 244, 0.9)), url("/wp-content/uploads/2024/10/almaz_503x410.webp") no-repeat 10% 60%;
}
@media screen and (max-width: 768px) {
  .etaps__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2rem;
    background: -webkit-gradient(linear, left top, left bottom, from(RGB(255, 250, 244, 0.9)), to(RGB(255, 250, 244, 0.9))), url("/wp-content/uploads/2024/10/almaz_503x410.webp") no-repeat 50% 80%;
    background: linear-gradient(RGB(255, 250, 244, 0.9), RGB(255, 250, 244, 0.9)), url("/wp-content/uploads/2024/10/almaz_503x410.webp") no-repeat 50% 80%;
  }
}
.etaps__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2rem;
}
@media screen and (max-width: 768px) {
  .etaps__col {
    row-gap: 0;
  }
}
.etaps__col:nth-of-type(2) {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .etaps__col:nth-of-type(2) {
    width: 100%;
    row-gap: 2rem;
  }
}
.etaps__static {
  position: sticky;
  top: 2rem;
}
.etaps__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  text-transform: uppercase;
}
.etaps__img-wrap {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1.4/1;
  border-top-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
}
.etaps__img-wrap img {
  opacity: 0;
}
.etaps__play-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.etaps__play-btn {
  color: transparent;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 50%;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.etaps__play-btn:hover {
  -webkit-transform: rotate(120deg);
          transform: rotate(120deg);
  color: transparent;
}
.etaps__text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: none;
  row-gap: 5rem;
  counter-reset: css-counter 0;
}
@media screen and (max-width: 768px) {
  .etaps__text-wrap {
    row-gap: 2rem;
  }
}
.etaps__text-wrap p {
  counter-increment: css-counter 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 1.5rem;
     -moz-column-gap: 1.5rem;
          column-gap: 1.5rem;
  font-size: var(--fs-h5);
}
.etaps__text-wrap p:before {
  content: "0" counter(css-counter) "/ ";
  display: block;
  font-size: var(--fs-h2);
  font-weight: 700;
}
.etaps__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-before: 5rem;
          padding-block-start: 5rem;
}
@media screen and (max-width: 768px) {
  .etaps__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-padding-before: 2rem;
            padding-block-start: 2rem;
  }
}
.etaps__btn-wrap .gb-button-5436a24a .gb-icon {
  color: transparent;
}

.news {
  background: var(--gradient-yellow);
  padding-block: 12.5rem;
}
@media screen and (max-width: 768px) {
  .news {
    padding-block: 6rem;
  }
}
.news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .news__inner {
    row-gap: 1.5rem;
  }
}
.news__header {
  width: 100%;
  font-size: var(--fs-h1);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-white);
}
.news__cards-wrap {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-self: stretch;
}
.news__card {
  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;
  row-gap: 2rem;
  height: 100%;
}
.news__card-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 390px;
  border-radius: 2rem;
}
.news__card-title {
  font-size: var(--fs-h5);
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 0;
}
.news__card-btn {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 3px solid transparent;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.news__card-btn:hover {
  background: var(--gradient-yellow);
  border: 3px solid #fff;
}
.news__card-btn:hover a {
  color: var(--text-white);
}

.social {
  background: var(--gradient-blue);
  padding-block: 11.25rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .social {
    padding-block: 6rem;
  }
}
.social__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 5rem;
     -moz-column-gap: 5rem;
          column-gap: 5rem;
  row-gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .social__inner {
    -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;
  }
}
.social__img-col {
  position: relative;
  z-index: 1;
}
.social__img-col figure:has(img.social__phones)::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  -webkit-box-shadow: 0 0 200px 160px var(--primary);
          box-shadow: 0 0 200px 160px var(--primary);
  z-index: -1;
}
.social__text-col {
  z-index: 1;
}
.social__title {
  color: var(--text-white);
  font-size: var(--fs-h1);
  font-weight: 800;
  text-transform: uppercase;
  -webkit-padding-after: 2rem;
          padding-block-end: 2rem;
}
.social__icons-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
.social__flower {
  position: absolute;
  top: 50%;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .social__flower {
    right: -15%;
  }
}
@media screen and (max-width: 768px) {
  .social__flower {
    width: 300px;
    top: 75%;
    right: -10%;
  }
}

.map-bg {
  cursor: pointer;
}

.cat_filters p {
  display: none;
}

.wpgb-style-1 .wpgb-button-facet .wpgb-inline-list {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.wpgb-style-1 .wpgb-button-facet .wpgb-inline-list li {
  min-width: 155px;
}
.wpgb-style-1 .wpgb-button-facet .wpgb-inline-list li .wpgb-button-label {
  text-align: center;
  font-size: var(--fs-h5);
}
.wpgb-style-1 .wpgb-button-facet .wpgb-inline-list li .wpgb-button[aria-pressed=true] {
  background: var(--gradient-blue);
  background-size: 120%;
}
.wpgb-style-1 .wpgb-select-facet select.wpgb-select {
  font-size: var(--fs-h5);
}/*# sourceMappingURL=style.css.map */