html {
  height: 100%;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--bw-white);
  line-height: 1.4;
  overflow-x: hidden;
  height: 100%;
}

@media (max-width: 767px) {
  body {
    line-height: 1.3;
  }
}

/*@media (min-width: 1920px) and (max-width: 2300px) {
  body {
    zoom: 85%;
  }
}*/

@media (min-width: 1680px) and (max-width: 1900px) {
  body {
    zoom: 88%;
    /* scale: 0.9; */
  }
}

@media (min-width: 1440px) and (max-width: 1679px) {
  body {
    zoom: 76%;
    /* scale: 0.7; */
  }
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background: #000E0A;
  overflow: clip;
}

:root {
  --bw-white: #FFFFFF;
  --bw-black: #282828;
  --bw-dark-mode: #191919;
  --main-blue: #2E90FA;
  --helpful-dark-blue: #6172F3;
  --main-purple: #EE46BC;
  --main-blue-10: #EAF4FF;
  --bw-white-10: rgba(255, 255, 255, 0.10);
  --gaming-msi: #E52629;
  --gaming-rog: #ED2024;
  --helpful-red: #EE4646;
  --gaming-tuf: #FF9E1B;
  --helpful-orange: #FDB022;
  --helpful-dark-orange: #FA9C2E;
  --bw-medium-grey: #B8B8B8;
  --bw-grey: #909090;
  --bw-light-grey: #ECECEC;
  --bw-dark-blue: #453F5D;
  --gaming-razer-blade: #44D62C;
  --helpful-green: #32D583;
  --gaming-razor: #44D62C;
  --helpful-violet: #E146EE;
  --main-violet: #9E77ED;
  --background: #F8F8F8;
}



/* html {
  position: relative;
} */

body {
  /* background-image: url('../images/logo-group.png');
  background-repeat: repeat;
  position: absolute;
  left: -100%;
  width: 100%; */
  background: -o-linear-gradient(right, #000E0A 0%, #0D4A3E 49%, #000E0A 100%);
  background: -webkit-gradient(linear, right top, left top, from(#000E0A), color-stop(49%, #0D4A3E), to(#000E0A));
  background: linear-gradient(270deg, #000E0A 0%, #0D4A3E 49%, #000E0A 100%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

body.fade-in {
  /* background-color: transparent;
  left: 0; */
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


@-webkit-keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


@keyframes spin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes spin-2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes spin-2 {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

.round-animation {
  display: grid;
  position: relative;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow-x: clip;
}

.round {
  position: absolute;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: flex-end;
  width: clamp(15.625rem, 9.7917rem + 33.3333vw, 40rem);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.round-pos {
  grid-column: 1;
  grid-row: 1;
  z-index: 3;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1300px) {
  .round-pos {
    overflow: hidden;
  }
}

.home-top .round {
  width: clamp(15.625rem, 9.7917rem + 33.3333vw, 40rem);
}

@media (max-width: 991px) {
  .home-top .round {
    top: 0;
    right: 0;
  }
}

section {
  opacity: 0;
  -webkit-transition: opacity 1.2s linear;
  -o-transition: opacity 1.2s linear;
  transition: opacity 1.2s linear;
}

.visible {
  opacity: 1;
  -webkit-transition: opacity 1.2s linear;
  -o-transition: opacity 1.2s linear;
  transition: opacity 1.2s linear;
}

.section-bg {
  position: relative;
  background-color: #000E0A;
}

@media (max-width: 991px) {
  .section-bg {
    overflow: hidden;
  }
}

.section-bg::after {
  content: '';
  position: absolute;
  top: -550px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: clamp(31.25rem, 11.513rem + 87.719vw, 93.75rem);
  height: clamp(31.25rem, 11.513rem + 87.719vw, 93.75rem);
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(0, 81, 64, 0.7) 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 81, 64, 0.7) 0%, rgba(0, 113, 91, 0) 100%);
  pointer-events: none;
}

@media (max-width: 1199px) {
  .section-bg::after {
    top: -425px;
  }
}

@media (max-width: 767px) {
  .section-bg::after {
    top: -325px;
  }
}

@media (max-width: 575px) {
  .section-bg::after {
    top: -125px;
  }
}


.section-bg-100vh::before {
  background-size: cover;
  bottom: 0;
}

.section-bg-none::before {
  background: none;
}

.services-bg {
  position: relative;
}

.services-bg::before {
  content: '';
  position: absolute;
  top: 320px;
  width: 100%;
  height: 100%;
  background-image: url('../images/main/img-bg-new.png');
  background-repeat: no-repeat;
  background-size: contain;
}

.block-hidden {
  position: relative;
  overflow-x: clip;
  z-index: 3;
}

.block-indent {
  padding-top: clamp(1.25rem, 0.4836rem + 4.3796vw, 5rem);
  padding-bottom: clamp(1.25rem, 0.4836rem + 4.3796vw, 5rem);
  position: relative;
  z-index: 3;
}

.block-indent-first {
  padding-top: clamp(1.25rem, 0.4836rem + 4.3796vw, 5rem);
  padding-bottom: clamp(0.9375rem, 0.7879rem + 0.8547vw, 1.5625rem);
}

.block-indent-second {
  padding-top: 20px;
  padding-bottom: clamp(0.9375rem, 0.7879rem + 0.8547vw, 1.5625rem);
}

/* 
section:first-child {
  padding-top: clamp(2.188rem, 1.259rem + 4.128vw, 5rem);
} */

.slider__btn-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
  /* margin-top: clamp(0.875rem, 0.7966rem + 0.4478vw, 1.25rem); */
  margin-bottom: clamp(0.875rem, 0.7966rem + 0.4478vw, 1.25rem);
}

.section__severus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  font-size: clamp(1.5rem, 1.4103rem + 0.5128vw, 1.875rem);
  margin-bottom: 10px;
}

.section__severus::before {
  content: '';
  display: block;
  width: 50px;
  height: 26px;
  background-image: url('../images/icon/severus.svg');
  background-repeat: no-repeat;
}

.section-top {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
  margin-bottom: clamp(1.25rem, 0.8013rem + 2.5641vw, 3.125rem);
}

.section-top .logo {
  -ms-flex-item-align: end;
  align-self: flex-end;
  justify-self: center;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .section-top {
    grid-template-columns: 1fr;
  }

  .round-pos .logo {
    justify-self: center;
    margin: 0;
  }
}

h1,
.h1 {
  font-size: clamp(1.875rem, 1.3385rem + 3.0657vw, 4.5rem);
  font-weight: 400;
  margin-top: clamp(0.625rem, 0.2041rem + 1.7959vw, 2rem);
  margin-bottom: clamp(1.25rem, 0.8013rem + 2.5641vw, 3.125rem);
  line-height: 1.2;
}

h2,
.h2 {
  font-size: clamp(2rem, 1.645rem + 1.4453vw, 3rem);
  font-weight: 300;
  margin-top: clamp(0.875rem, 0.7985rem + 0.3265vw, 1.125rem);
  margin-bottom: clamp(0.875rem, 0.7985rem + 0.3265vw, 1.125rem);
}

h3,
.h3 {
  font-size: clamp(1.25rem, 1.0281rem + 0.9033vw, 1.875rem);
  font-weight: 300;
  margin-top: clamp(0.625rem, 0.5484rem + 0.438vw, 1rem);
  margin-bottom: clamp(0.625rem, 0.5484rem + 0.438vw, 1rem);
}

h4,
.h4 {
  font-size: clamp(1.375rem, 1.2553rem + 0.6838vw, 1.875rem);
  font-weight: 400;
  margin-top: clamp(0.875rem, 0.7985rem + 0.3265vw, 1.125rem);
  margin-bottom: clamp(0.875rem, 0.7985rem + 0.3265vw, 1.125rem);
}

h5,
.h5 {
  font-size: clamp(0.875rem, 0.8367rem + 0.1633vw, 1rem);
  font-weight: 500;
  margin-top: clamp(0.875rem, 0.7985rem + 0.3265vw, 1.125rem);
  margin-bottom: clamp(0.875rem, 0.7985rem + 0.3265vw, 1.125rem);
}

h6,
.h6 {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  font-weight: 500;
  margin-top: clamp(0.875rem, 0.7985rem + 0.3265vw, 1.125rem);
  margin-bottom: clamp(0.875rem, 0.7985rem + 0.3265vw, 1.125rem);
}

.section__title-h1 {
  max-width: 1000px;
  /* font-size: clamp(1.875rem, 1.3385rem + 3.0657vw, 4.5rem); */
  font-size: clamp(2.625rem, 2.006rem + 2.752vw, 4.5rem);
  line-height: 1;
  font-weight: 300;
  margin-bottom: 1rem;
  margin-top: 0;
}

.section__title {
  font-size: clamp(1.625rem, 1.344rem + 1.6058vw, 3rem);
  line-height: 1;
  margin-bottom: clamp(1.625rem, 0.757rem + 3.86vw, 4.375rem);
}

.section__title-h1+.section__title {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.section__title-h1 mark,
.section__title mark {
  display: inline-block;
  line-height: 1.2;
  background-image: -o-linear-gradient(right, #00B393 -1.81%, #00715B 40.96%),
    -o-linear-gradient(bottom, #FFFFFF, #FFFFFF);
  background-image: -webkit-gradient(linear, right top, left top, color-stop(-1.81%, #00B393), color-stop(40.96%, #00715B)),
    -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), to(#FFFFFF));
  background-image: linear-gradient(270deg, #00B393 -1.81%, #00715B 40.96%),
    linear-gradient(0deg, #FFFFFF, #FFFFFF);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

p {
  font-size: clamp(1rem, 0.9745rem + 0.146vw, 1.125rem);
  color: #999f9d;
  margin-bottom: 1rem;
}

.description-box ul {
  list-style: disc;
  font-size: clamp(1rem, 0.9745rem + 0.146vw, 1.125rem);
  color: #999f9d;
  line-height: 1.5;
  padding-left: 30px;
  margin-bottom: 1rem;
}

.description-box ol {
  list-style: decimal;
  font-size: clamp(1rem, 0.9745rem + 0.146vw, 1.125rem);
  color: #999f9d;
  line-height: 1.5;
  padding-left: 30px;
  margin-bottom: 1rem;
}

.description-box ul li::marker,
.description-box ol li::marker {
  color: #999f9d;
  font-weight: 300;
}

.description-box li b, .description-box li strong {
  color: #ffffff;
  font-weight: 300;
}

/* Alerts */
.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  /* border-radius: 0.25rem; */
  border-radius: 6px;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-light {
  color: #818182;
  background-color: #ededed;
  border-color: #fdfdfe;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert+.alert {
  margin-top: 1rem;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}

.scroll-all {
  overflow: hidden;
  overflow-x: scroll;
}

.form-group:has(textarea) {
  grid-column: 1 / -1;
}

.swiper-initialized {
  overflow: hidden;
}

.swiper-button-box .swiper-button-prev:after,
.swiper-button-box .swiper-button-next:after {
  font-size: 10px;
  font-weight: 600;
  color: var(--bw-white);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: none;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  color: var(--bw-white);
}

.swiper-button-box .swiper-button-disabled,
.swiper-button-box .swiper-button-disabled {
  opacity: 0.5;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1 !important;
}

.swiper-button-prev.swiper-button-prev,
.swiper-button-next.swiper-button-next {
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: static;
  background-color: #00715B;
  border-radius: 50%;
  width: clamp(2.5rem, 2.2009rem + 1.7094vw, 3.75rem);
  height: clamp(2.5rem, 2.2009rem + 1.7094vw, 3.75rem);
  opacity: 0.7;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow: hidden;
  margin-top: 0;
  z-index: 3;
}

.swiper-button-box .swiper-button-lock {
  display: none;
}

.swiper-button-prev.swiper-button-prev svg,
.swiper-button-next.swiper-button-next svg {
  width: clamp(1.125rem, 0.9455rem + 1.0256vw, 1.875rem);
}

.swiper-button-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: clamp(1.25rem, 1.1004rem + 0.8547vw, 1.875rem);
  margin: 10px 0;
  margin-top: clamp(1.25rem, 0.658rem + 2.632vw, 3.125rem);
}

@media (max-width: 575px) {
  .swiper-button-box {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

.swiper-button-next {
  right: 0px;
}

.swiper-button-prev {
  left: auto;
  right: 65px;
}

.swiper-button-prev-color,
.swiper-button-next-color {
  background-color: #F3F3F3;
}

#row-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#content {
  width: 100%;
}

#column-left,
#column-right {
  max-width: 300px;
  width: 100%;
}

#column-left,
#column-right {
  display: none;
}

.maker-box {
  text-align: center;
}

form label {
  display: block;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.off {
  display: none;
}

.form-check-label-check::before,
.form-check-label-radio::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--bw-medium-grey);
  grid-column: 1;
  grid-row: 1;
}

.form-check-label-check::after,
.form-check-label-radio::after {
  content: '';
  grid-column: 1;
  grid-row: 1;
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='12' height='11' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M10 3L4.5 8.5L2 6' stroke='%232E90FA' stroke-width='1.6666' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-self: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  scale: 0;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.form-check-label-check:has(input:checked)::after,
.form-check-label-radio:has(input:checked)::after {
  scale: 1;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.form-check-label-standart::after {
  content: '';
  border-radius: 50%;
  background-color: var(--main-blue);
  align-self: center;
  justify-self: center;
  grid-column: 1;
  grid-row: 1;
  scale: 0;
  opacity: 0;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.form-check-label-standart:has(input:checked)::after {
  scale: 1;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.form-check-label-standart:has(input:checked)::after {
  border-radius: 50%;
  border: 1px solid var(--main-blue);
  background-color: var(--main-blue);
  width: 8px;
  height: 8px;
  scale: 1;
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.form-check-label-standart:has(input:checked)::before,
.form-check-label-check:has(input:checked)::before,
.form-check-label-radio:has(input:checked)::before {
  border: 1px solid var(--main-blue);
}

label:has(input[type="checkbox"], input[type="radio"]):hover {
  color: var(--bw-grey);
}

label:has(input:disabled) {
  color: var(--bw-grey);
  opacity: 0.5;
  pointer-events: none;
}

.form-check-label-standart::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--bw-medium-grey);
  grid-column: 1;
  grid-row: 1;
}

.arrow__items-svg-bg {
  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: var(--main-blue);
  line-height: 1;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arrow__items-svg-bg.active {
  background-color: var(--bw-light-grey) !important;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arrow__items-svg-bg.active svg rect:first-child {
  height: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arrow__items-svg-bg.active svg rect:last-child {
  fill: #909090;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arrow__items-svg-bg.active svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.arrow__items-svg-bg svg {
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.noscroll {
  overflow: hidden;
}

.visible-header {
  overflow: visible !important;
}

.container {
  padding: 0 30px;
  margin: 0 auto;
  max-width: 1500px;
  width: 100%;
}

@media (max-width: 991px) {
  .container {
    padding: 0 15px;
  }
}

.rel {
  position: relative;
}

.dark,
.dark-7 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
}

.dark.active {
  z-index: 3;
  opacity: 1;
}

.dark-7.active {
  z-index: 7;
  opacity: 1;
}

.text-danger {
  display: block;
  color: var(--helpful-red);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 0;
}

.form-group:has(.form-error) textarea,
.form-group:has(.form-error) input,
.forminator-has_error textarea,
.forminator-has_error input {
  border: 2px solid var(--helpful-red) !important;
}

.text-error {
  color: red;
}

.forminator-description span[data-type="characters"] {
  float: right;
  font-size: 0.9em;
  margin-right: 15px;
  color: #999f9d;
}

.error,
.forminator-error-message {
  display: block;
  color: var(--helpful-red);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 0;
  margin: 0;
}
.form-success {
  border-color: #00B393 !important;
}
.forminator-response-message.forminator-error {
  display: none; 
}

.btn-top {
  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;
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 50px;
  height: 50px;
  color: var(--bw-white);
  background-color: var(--bw-black);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: inset 1 0 0 0 transparent;
  box-shadow: inset 1 0 0 0 transparent;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  z-index: 100;
}

@media (max-width: 1300px) {
  .btn-top {
    right: 20px;
    bottom: 30px;
    /* top: auto; */
    width: 35px;
    height: 35px;
  }
}

.btn-top:hover {
  -webkit-box-shadow: inset 50px 50px 0 0 var(--bw-dark-blue);
  box-shadow: inset 50px 50px 0 0 var(--bw-dark-blue);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-top.active {
  /* translate: 0 -100vh 0; */
  -webkit-transform: translateY(calc(-100vh + 220px));
  -ms-transform: translateY(calc(-100vh + 220px));
  transform: translateY(calc(-100vh + 220px));
  /* bottom: auto;
  top: 100px; */
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 1300px) {
  .btn-top.active {
    -webkit-transform: translateY(calc(-100vh + 160px));
    -ms-transform: translateY(calc(-100vh + 160px));
    transform: translateY(calc(-100vh + 160px));
  }
}

.btn {
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 60px;
  font-weight: 500;
  border-radius: 100px;
  font-size: 18px;
  padding: 0 12px 0 20px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* @media (max-width: 575px) {
  .btn {
    height: 50px;
    font-size: 16px;
    padding: 0 3px 0 20px;
  }
} */

.btn-circle {
  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: #00715B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-primary {
  border: 2px solid #00715B;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-primary {
  border: 2px solid #00715B;
  background: -o-linear-gradient(left, hsl(167, 100%, 16%, 0) 0%, rgb(8, 145, 115, 0) 0%);
  background: -webkit-gradient(linear, left top, right top, from(hsl(167, 100%, 16%, 0)), color-stop(0%, rgb(8, 145, 115, 0)));
  background: linear-gradient(90deg, hsl(167, 100%, 16%, 0) 0%, rgb(8, 145, 115, 0) 0%);
}

.btn-secondary .btn-circle {
  background-color: #000E0A;
}

.btn-secondary {
  background: -o-linear-gradient(right, #00715B -0.28%, #005140 100%);
  background: -webkit-gradient(linear, right top, left top, color-stop(-0.28%, #00715B), to(#005140));
  background: linear-gradient(270deg, #00715B -0.28%, #005140 100%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-primary:hover,
.btn-secondary:hover {
  /* background: linear-gradient(90deg, #00715B -0.28%, #005140 100%); */
  background: -o-linear-gradient(left, #005140 0.98%, #089173 80%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0.98%, #005140), color-stop(80%, #089173));
  background: linear-gradient(90deg, #005140 0.98%, #089173 80%);
  opacity: 1 !important;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-primary:hover .btn-circle {
  background-color: #000E0A;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-arrow {
  position: relative;
}

.btn-arrow::after {
  content: '';
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../images/icon/arleft.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000E0A;
  border-radius: 50%;
}

/*--------------------------------------------------hover*/


a:hover {
  opacity: 0.8;
}

.header__burg-btn:hover svg path {
  stroke: var(--bw-medium-grey);
}

/*--------------------------------------------------hover*/


.header__burg-box {
  position: relative;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
input[type="search"] {
  width: 100%;
  outline: transparent;
  border: none;
  height: 46px;
  color: rgb(255, 255, 255);
  background-color: #232323;
  /* font-size: clamp(0.75rem, 0.6991rem + 0.2508vw, 1rem); */
  font-size: 18px;
  padding: 0 15px;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  border-radius: 100px;
  border: 2px solid #FFFFFF1A
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
  width: 15px;
  height: 15px;
  margin: 0;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-size: 18px;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-size: 18px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-size: 18px;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-size: 18px;
}

input::placeholder,
textarea::placeholder {
  font-size: 18px;
}

textarea {
  width: 100%;
  outline: transparent;
  resize: none;
  border: none;
  border: 2px solid #FFFFFF1A;
  padding: 15px !important;
  /* font-size: clamp(0.75rem, 0.6991rem + 0.2508vw, 1rem); */
  font-size: 18px !important;
  border-radius: 20px;
  height: 100%;
  max-height: 100px;
  color: rgb(255, 255, 255, 0.5) !important;
  background-color: #232323;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}


input[type="text"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="search"]:hover,
textarea:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px solid #00B393
}


.form-group {
  width: 100%;
  position: relative;
}

.form-group button+input {
  padding: 0 16px;
}

.rel-input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-x: auto;
  padding-top: clamp(0.625rem, 0.4337rem + 0.8163vw, 1.25rem);
  padding-bottom: clamp(0.625rem, 0.4337rem + 0.8163vw, 1.25rem);
  /* background-color: #F8F8F8; */
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  overflow: auto;
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.breadcrumb li:not(:first-child)::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  content: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M2 8.3H14M14 8.3L10.7 11.6M14 8.3L10.7 5' stroke='rgb(143 143 143)' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  margin: 0 10px;
  line-height: 1;
}

.breadcrumb-box .container {
  width: 100%;
}

.breadcrumb a {
  color: var(--bw-black);
}

.breadcrumb li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: var(--bw-grey);
  line-height: 1;
  scroll-snap-align: center;
}

.store-slider {
  width: 100%;
}

.show-more-box {
  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;
  padding: 30px;
  margin-top: 30px;
}


.category-box .show-more-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .show-more-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .show-more {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 14px;
    font-weight: 500;
  }

  .show-more svg {
    width: 20px;
    height: 20px;
  }
}

.pagination {
  display: grid;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(0.1875rem, 0.1236rem + 0.365vw, 0.5rem);
  width: 100%;
  padding: 16px !important;
  margin-bottom: clamp(1.875rem, -0.9517rem + 4.5593vw, 3.75rem);
}


.pagination li {
  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;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  width: 32px;
  height: 32px;
}

@media (any-hover: hover) {
  .pagination li:hover {
    color: var(--bw-dark-blue);
  }
}

.pagination__link-span {
  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;
  pointer-events: none;
  color: var(--bw-white);
  background-color: var(--main-blue);
  border-radius: 8px;
  width: 32px;
  height: 32px;
}

.pagination__link-first {
  pointer-events: none;
}

.pagination a {
  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;
  width: 32px;
  height: 32px;
}

@media (any-hover: hover) {
  .pagination li:hover {
    background-color: #e9e9e9;
  }
}

.pagination__null {
  pointer-events: none;
  width: 32px;
  height: 32px;
}

.pag-arrow {
  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;
}

.pagination__prev svg path,
.pagination__next svg path {
  fill: #000000;
}

.pagination__prev svg {
  fill: #000000;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.pagination__next svg {
  fill: #000000;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (any-hover: hover) {

  .pagination__prev:hover svg path,
  .pagination__next:hover svg path {
    fill: #000000;
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #0D4A3E;
  border-radius: 5px;
}

.header__contact-sub-list::-webkit-scrollbar,
.cart-scroll::-webkit-scrollbar,
.lavel-scroll::-webkit-scrollbar,
.header__burg-scroll::-webkit-scrollbar {
  width: 3px;
}

*::-moz-scrollbar {
  width: 0px;
  height: 0px;
}

*::-moz-scrollbar-track {
  background: transparent;
}

*::-moz-scrollbar-thumb {
  background: #0D4A3E;
}

/* 
* {
  scrollbar-width: thin !important;
  scrollbar-color: #353535 #0D4A3E;
} */

.menu-nav-list {
  direction: rtl;
}

.menu-nav-list-sub::-webkit-scrollbar,
.menu-nav-list::-webkit-scrollbar {
  width: 3px;
}

.menu-nav-list li {
  direction: initial;
}

.menu-nav-list-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

*.menu-nav-list,
*.menu-nav-list-sub {
  scrollbar-width: thin !important;
}

.tab__order-items .arrow__items-svg-bg,
.header__burger-menu,
.header__burg-btn {
  display: none;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-close-btn-in .mfp-close {
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 300;
  color: #ffffff;
  justify-self: flex-end;
}

.mfp-close {
  position: static;
  color: #ffffff;
}

.swiper-pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 12px 0;
  z-index: 1;
}

@media (max-width: 575px) {
  .swiper-pagination {
    display: none;
  }
}

.swiper-pagination-bullet {
  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;
  width: 60px;
  height: 4px;
  border-radius: 0;
  opacity: 1;
  background: transparent;
  position: relative;
  background: #003F32;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin: 4px !important;
}

.swiper-pagination-bullet-active {
  width: 125px;
  height: 4px;
  background: #00715B;
  font-weight: 700;
}

.list__filters-btn,
.list__filters-top-bg,
.product__list-off {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1.2;
}

/* .select__main {
  display: none;
} */

.select2-container {
  display: block;
  width: auto !important;
}

.select2-container--default .select2-search--dropdown {
  display: none;
}

@media (any-hover: hover) {
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:hover {
    color: var(--bw-black);
  }
}

.select2-dropdown {
  border: transparent;
}

body:has(.js-select-search) .select2-dropdown {
  border: 1px solid var(--bw-light-grey);
  padding: 4px;
}

body:has(.js-select-search) .select2-results {
  border: none;
  padding: 0;
}

.select2-container--default .select2-selection--single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* min-width: 230px; */
  height: 38px;
  border: 1px solid var(--bw-light-grey);
  border-radius: 5px;
  padding-right: 25px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 30px;
  width: 30px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  position: absolute;
  z-index: 3;
  padding: 0 45px 0 15px;
  color: var(--bw-black);
  background-image: url('../images/pop-up-icon/arrow.svg');
  background-repeat: no-repeat;
  background-position: center right 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-container--open .select2-dropdown--below {
  background-color: var(--background);
  border-radius: 5px;
}

.select2-container.select2-container--default.select2-container--open {
  width: auto;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  font-weight: 500;
  /* color: var(--bw-grey); */
  padding: 0 15px;
}

.select2-container--open .select2-dropdown {
  margin-top: 5px;
}

.select2-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #7F7F7F;
  border: 1px solid var(--bw-light-grey);
  background-color: var(--background);
  padding: 15px 10px;
  border-radius: 5px;
  overflow: hidden;
}

.select2-results__options {
  font-size: 14px;
  font-weight: 500;
  display: block;
  width: 100%;
}

.select2-container--default .select2-results__option--selected {
  font-size: 14px;
  font-weight: 500;
  color: var(--bw-black);
  background-color: transparent;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: #7F7F7F;
  background-color: transparent;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: var(--bw-black);
}

select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 30px;
  font-size: 16px;
  font-weight: 500;
  border: transparent;
  color: var(--bw-black);
  border-radius: 6px;
  border: 1px solid var(--bw-light-grey);
  border-radius: 5px;
  outline: transparent;
  padding: 0 15px;
  cursor: pointer;
  position: relative;
}

.select__main select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 45px 0 15px;
  background-image: url('../images/pop-up-icon/arrow.svg');
  background-repeat: no-repeat;
  background-position: center right 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.select__main,
.select__main .js-example-basic-single,
.select__main .select2-container--default .select2-selection--single {
  width: 100%;
  height: clamp(2.75rem, 2.5933rem + 0.8955vw, 3.5rem);
  background-color: var(--background);
}

body:has(.js-select-search) .select2-container--default .select2-search--dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* padding: 0;
  margin-bottom: 4px; */
}

body:has(.js-select-search) .select2-container--open .select2-dropdown--below {
  background-color: transparent;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--bw-light-grey);
  padding: 0 15px;
}


/*--------------------------------------------------*/


.slide-in-top.mfp-bg {
  opacity: 0;
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}

/* overlay animate in */
.slide-in-top.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.slide-in-top.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.slide-in-top.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
}

/* content animate it */
.slide-in-top.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* content animate out */
.slide-in-top.mfp-wrap.mfp-removing .mfp-content {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  opacity: 0;
}

.pop-up {
  display: grid;
  position: relative;
  /* background: linear-gradient(270deg, #000E0A 0%, #0D4A3E 49%, #000E0A 100%); */
  border-radius: 30px;
  max-width: 900px;
  /* height: calc(100vh - 50px); */
  width: 100%;
  height: auto;
  /* padding: clamp(0.75rem, 0.4888rem + 1.4925vw, 2rem); */
  -webkit-transition: all 3s linear;
  -o-transition: all 3s linear;
  transition: all 3s linear;
  margin: 0 auto;
  overflow: hidden;
}


/*--------------------------------------------------header*/


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #315953;
  z-index: 7;
}

.header__top {
  padding-top: clamp(1.125rem, 1.084rem + 0.183vw, 1.25rem);
  padding-bottom: clamp(1.125rem, 1.084rem + 0.183vw, 1.25rem);
  background: -o-linear-gradient(right, #000E0A 0%, #0D4A3E 49%, #000E0A 100%);
  background: -webkit-gradient(linear, right top, left top, from(#000E0A), color-stop(49%, #0D4A3E), to(#000E0A));
  background: linear-gradient(270deg, #000E0A 0%, #0D4A3E 49%, #000E0A 100%);
  position: relative;
  z-index: 8;
}

.header__top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.header__top-inner .logo img {
  max-width: 220px;
}

.header__contact-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.header__contact-btn-main .header__contact-btn {
  opacity: 0.7;
}

.header__contact-btn-main:hover .header__contact-btn {
  opacity: 1;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 60px;
}

.header__top-inner .header__nav-list li span,
.header__top-inner .header__nav-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  gap: 5px;
}

.header__top-inner .header__nav-list li.current-menu-item a {
  opacity: 1;
}

.header__contact-btn-main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.header__contact-btn {
  position: relative;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__contact-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 0%;
  height: 4px;
  background: -o-linear-gradient(right, #00B393 0%, #00715B 100%);
  background: -webkit-gradient(linear, right top, left top, from(#00B393), to(#00715B));
  background: linear-gradient(270deg, #00B393 0%, #00715B 100%);
  -webkit-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

.header__contact-btn::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -20px;
  width: 0%;
  height: 4px;
  background: -o-linear-gradient(right, #00B393 0%, #00715B 100%);
  background: -webkit-gradient(linear, right top, left top, from(#00B393), to(#00715B));
  background: linear-gradient(270deg, #00B393 0%, #00715B 100%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


.header__contact-btn-main:hover .header__contact-btn::before {
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__contact-btn-main:hover .header__contact-btn::after {
  background: transparent;
  width: 100%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__contact-btn.active::after,
.header__contact-btn.active::before {
  width: 100%;
}

@media (max-width: 991px) {
  header .header__contact-us {
    display: none;
    margin: 0 auto;
    margin-right: 0;
  }
}

.header__contact-sub {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  /* background: linear-gradient(270deg, #000E0A 0%, #0D4A3E 49%, #000E0A 100%); */
  background-color: #000E0A;
  position: absolute;
  top: 65px;
  left: 0;
  min-width: 150px;
  padding: 10px 0;
  border-radius: 12px;
  -webkit-box-shadow: 17px 33px 51px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 17px 33px 51px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  /* translate: -100% 0 0; */
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  z-index: 0;
  pointer-events: none;
}

.header__contact-sub-list {
  max-height: calc(350px - 72px);
  overflow: auto;
}

.header__top .header__contact-sub li a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  padding: 10px 20px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__top .header__contact-sub li:hover a {
  /* color: #00d6ab; */
  color: #ffffff !important;
  opacity: 1;
}

.header__contact-sub::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -30px;
  width: 60%;
  height: 100px;
}

.header__contact-btn-main .svg-rotate {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__contact-btn-main:hover .svg-rotate {
  rotate: 180deg;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__contact-btn-main:hover .header__contact-sub {
  pointer-events: auto;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  /* translate: 0 0 0; */
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  z-index: 10;
}

.header__top-inner .logo img {
  max-width: clamp(10rem, 8.658rem + 5.963vw, 14.063rem);
}

@media (max-width: 991px) {
  .header__top .header__nav {
    display: none;
  }

  .header__burg-btn {
    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-radius: 12px;
    padding: 12px 7px 12px 0;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .header__burger-menu {
    /* background: linear-gradient(270deg, #000E0A 0%, #0D4A3E 49%, #000E0A 100%); */
    background-color: #000E0A;
    display: block;
    max-width: 500px;
    width: 100%;
    top: 0;
    bottom: 0;
    position: fixed;
    left: -100%;
    overflow: hidden;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
    z-index: 100;
  }

  .header__burger-menu.active {
    display: block;
    left: 0;
    -webkit-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
    transition: all 0.5s linear;
  }

  .header__arrow {
    opacity: 0.8;
  }

  .header__nav-list-btn:hover svg,
  .header__burger-menu a:hover {
    opacity: 1;
  }

  .header__burg-svg {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .header__burg-svg line {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  body:has(.header__burger-menu.active) .header__burg-svg {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  body:has(.header__burger-menu.active) .header__burg-svg line:first-child {
    translate: 0 -10px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  body:has(.header__burger-menu.active) .header__burg-svg line:last-child {
    translate: 0 10px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .header__botom-inner-padding {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #315953;
    background: -o-linear-gradient(right, #0D4A3E 0%, #000E0A 100%);
    background: -webkit-gradient(linear, right top, left top, from(#0D4A3E), to(#000E0A));
    background: linear-gradient(270deg, #0D4A3E 0%, #000E0A 100%);
    padding-top: clamp(1.125rem, 1.084rem + 0.183vw, 1.25rem);
    padding-bottom: clamp(1.125rem, 1.084rem + 0.183vw, 1.25rem);
    padding-left: 12px;
    padding-right: 12px;
  }

  .header__burger-menu .logo img {
    max-width: clamp(10rem, 8.658rem + 5.963vw, 14.063rem);
  }

  .header__burg-btn-close {
    line-height: 1;
    padding: 0 7px 0 0;
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
    overflow: hidden;
  }

  .header__burger-menu.active .header__burg-btn-close {
    rotate: 360deg;
    -webkit-transition: all 0.7s linear;
    -o-transition: all 0.7s linear;
    transition: all 0.7s linear;
  }

  .header__burg-btn-close line:first-child {
    rotate: 90deg;
    translate: 0px 0px 0px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.9s linear;
    -o-transition: all 0.9s linear;
    transition: all 0.9s linear;
  }

  .header__burg-btn-close line:last-child {
    rotate: -90deg;
    translate: 0px 0px 0px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.9s linear;
    -o-transition: all 0.9s linear;
    transition: all 0.9s linear;
  }

  .header__burger-menu.active .header__burg-btn-close line:first-child {
    rotate: 18deg;
    translate: 0px 12px 0px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.9s linear;
    -o-transition: all 0.9s linear;
    transition: all 0.9s linear;
  }

  .header__burger-menu.active .header__burg-btn-close line:last-child {
    rotate: -18deg;
    translate: 0px -5px 0px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transition: all 0.9s linear;
    -o-transition: all 0.9s linear;
    transition: all 0.9s linear;
  }

  .header__burger-bottom {
    padding: 14px 12px;
  }

  .header__burger-bottom-box {
    display: grid;
    gap: 5px;
  }

  .header__burger-menu .header__nav-list-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    /* gap: 10px; */
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: pointer;
  }

  .header__burger-menu .header__nav-list-btn.active a {
    opacity: 1;
  }

  .header__burger-menu .header__nav-list .header__arrow {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    justify-self: center;
  }

  .header__burger-menu .header__nav-list-btn.active .header__arrow {
    opacity: 1;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .header__burger-menu .header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .header__burger-menu .header__nav-list>li {
    width: 100%;
  }

  .header__burger-menu .header__nav-list a {
    padding: 12px;
    gap: 0;
    cursor: pointer;
  }

  .header__burger-menu .header__nav-list li {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .sub-menu li a {
    opacity: 0.7;
  }


  .header__burger-menu .header__nav-list li:hover svg path,
  .sub-menu:hover svg path {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .header__burg-btn-close:hover svg line,
  .header__burg-btn:hover svg line {
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .header__nav-mob-catalog-btn {
    width: 100%;
    padding: 12px;
  }

  .header__burger-menu .sub-menu {
    display: none;
  }

  .header__burger-menu .sub-menu a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    line-height: 1;
    padding: 10px 30px;
    font-weight: 200;
  }

  .header__nav-mob a {
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
  }

  .header__nav-list-bottom {
    padding: 12px;
  }

  .header__nav-list-bottom a {
    padding: 12px 0;
  }

  .main__swiper-bg .menu-nav {
    display: none;
  }

  .header__burger-menu-rel {
    position: relative;
    height: 100%;
  }

  .header__burg-scroll {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    height: calc(100% - 85px); 
    overflow: auto;
    padding: 60px 40px 0;
  }

  .header__contact-us {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .header__mob-catalog-box a {
    width: 100%;
    padding: 15px;
  }

  .header__mob-catalog-box li {
    width: 100%;
  }
}

.header__burg-contact-us {
  margin: 0 auto;
  margin-bottom: 40px;
}

.header__burg-bottom-box .footer__info-bottom {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
}

.header__burg-bottom-box .footer__info-bottom::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__burg-bottom-box .footer__info-copyright {
  padding: 30px 0;
}


/*--------------------------------------------------video*/


.home-top .round {
  top: 30px;
  right: 0;
}

.main_video-box {
  max-width: 1050px;
  margin-bottom: clamp(1.25rem, 1.0584rem + 1.0949vw, 2.1875rem);
}

.main_video-text {
  margin-bottom: clamp(1.25rem, 1.0584rem + 1.0949vw, 2.1875rem);
}

.main_video-text p {
  font-size: clamp(1.25rem, 1.044rem + 0.917vw, 1.875rem);
  line-height: 1.5;
  /* font-weight: 300; */
}

@media (max-width: 767px) {
  .main_video-text p {
    line-height: 1.3;
  }
}

.video-wrapper {
  display: grid;
  position: relative;
  max-width: 1050px;
  width: 100%;
  height: 100vh;
  max-height: clamp(15.625rem, 9.704rem + 26.316vw, 34.375rem);
  background: -o-linear-gradient(346.58deg, rgba(92, 200, 177, 0) 0.29%, #011612 100%);
  background: linear-gradient(103.42deg, rgba(92, 200, 177, 0) 0.29%, #011612 100%);
  border-radius: 20px;
  overflow: hidden;
}

.video-wrapper iframe,
.video {
  grid-column: 1;
  grid-row: 1;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 1050px;
  width: 100%;
  height: 100%;
  /* max-height: clamp(11.875rem, 7.2382rem + 26.4957vw, 31.25rem); */
  max-height: clamp(15.625rem, 9.704rem + 26.316vw, 34.375rem);
}

.video-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -o-linear-gradient(346.58deg, rgba(92, 200, 177, 0) 0.29%, #193b35 100%);
  background: linear-gradient(103.42deg, rgba(92, 200, 177, 0) 0.29%, #193b35 100%);
  pointer-events: none;
  z-index: 2;
}

.video-wrapper.no-background::after {
  background: none;
}

#poster,
.poster {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  grid-column: 1;
  grid-row: 1;
  max-width: 1050px;
  width: 100%;
  height: 100%;
  max-height: clamp(15.625rem, 9.704rem + 26.316vw, 34.375rem);
  z-index: 1;
}

#poster.active,
.poster.active {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}

.customButton,
#customButton {
  z-index: 2;
}

iframe.active {
  z-index: 5;
}

.video-wrapper-btn-box {
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  z-index: 3;
}

.video-wrapper-btn {
  position: relative;
  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;
  width: clamp(2.5rem, -2.8976rem + 8.7146vw, 5rem);
  height: clamp(2.5rem, -2.8976rem + 8.7146vw, 5rem);
  cursor: pointer;
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
  background: -o-linear-gradient(left, #00715B 0.62%, #00B393 100.62%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0.62%, #00715B), color-stop(100.62%, #00B393));
  background: linear-gradient(90deg, #00715B 0.62%, #00B393 100.62%);
  pointer-events: auto;
}

.video-wrapper-btn::before {
  content: '';
  border-radius: 1000px;
  border: 10px solid rgba(255, 255, 255, 0.44);
  width: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
  height: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
  -webkit-box-shadow: 0 0 60px rgba(255, 255, 255, 0.44);
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.44);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .5s ease-in-out 0s;
  -webkit-transition: all .5s ease-in-out 0s;
  -moz-transition: all .5s ease-in-out 0s;
  -ms-transition: all .5s ease-in-out 0s;
  -o-transition: all .5s ease-in-out 0s;
}

.video-wrapper-btn::after {
  content: '';
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: 10px solid rgba(255, 255, 255, 0.44);
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
  -webkit-animation: ring 1.5s infinite;
}


@-webkit-keyframes ring {
  0% {
    width: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
    height: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
    opacity: 1;
    z-index: 3;
  }

  100% {
    width: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
    height: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
    opacity: 0;
    z-index: 3;
  }
}


@keyframes ring {
  0% {
    width: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
    height: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
    opacity: 1;
    z-index: 3;
  }

  100% {
    width: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
    height: clamp(3.125rem, -3.622rem + 10.8932vw, 6.25rem);
    opacity: 0;
    z-index: 3;
  }
}

.video-wrapper-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.video-wrapper-btn svg {
  width: clamp(0.9375rem, 0.2628rem + 1.0893vw, 1.25rem);
}

.video-wrapper-btn-text {
  font-size: clamp(1rem, 0.961rem + 0.175vw, 1.125rem);
}

.pop-up video {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
}


/*--------------------------------------------------counter-box*/



.counter-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .counter-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

.counter-box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.counter-box-items li:first-child {
  font-size: clamp(1.875rem, -0.5539rem + 3.9216vw, 3rem);
}

.counter-box-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.counter-box-items li:last-child {
  text-align: center;
  font-size: clamp(1rem, 0.9701rem + 0.1709vw, 1.125rem);
  font-weight: 300;
  opacity: 0.7;
}

.counter-box-items li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}



/*--------------------------------------------------box-info*/


.we-delivery {
  overflow: hidden;
}

.we-delivery .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.we-delivery .swiper-button-box {
  display: none;
}

@media (max-width: 1199px) {
  .we-delivery .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {

  .we-delivery .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }

  .we-delivery .swiper-button-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.box-info {
  position: relative;
  display: grid;
  width: 100%;
  height: 100vh;
  max-height: 600px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {

  .box-info,
  .box-info .box-info-img {
    max-height: 450px;
  }
}

.box-info-hover .box-info-img {
  scale: 1.3;
  zoom: 88%;
  translate: 10% 10%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.box-info-hover:hover .box-info-img {
  translate: 0% 0%;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.box-info-inner,
.box-info-img {
  grid-column: 1;
  grid-row: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.box-info-img {
  width: 100%;
  height: 100vh;
  max-height: 600px;
}

.box-info-inner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(0, 14, 10, 0.5) 0%, rgba(0, 81, 64, 0) 100%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 14, 10, 0.5)), color-stop(100%, rgba(0, 81, 64, 0)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(0, 14, 10, 0.5) 0%, rgba(0, 81, 64, 0) 100%, rgba(255, 255, 255, 0) 100%);
  opacity: 1;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.box-info-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: -o-linear-gradient(bottom, #00B393 0%, rgba(0, 45, 36, 0) 96.38%);
  background: -webkit-gradient(linear, left bottom, left top, from(#00B393), color-stop(96.38%, rgba(0, 45, 36, 0)));
  background: linear-gradient(360deg, #00B393 0%, rgba(0, 45, 36, 0) 96.38%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.box-info-inner:hover::after {
  opacity: 1;
  background: -o-linear-gradient(bottom, #00B393 0%, rgba(0, 45, 36, 0.3) 96.38%);
  background: -webkit-gradient(linear, left bottom, left top, from(#00B393), color-stop(96.38%, rgba(0, 45, 36, 0.3)));
  background: linear-gradient(360deg, #00B393 0%, rgba(0, 45, 36, 0.3) 96.38%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 0;
}

.box-info-inner {
  display: grid;
  grid-template-rows: 1fr auto auto;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: clamp(1.25rem, 0.855rem + 1.754vw, 2.5rem);
  translate: 0 0;
  z-index: 1;
}

/* .box-info-inner:has(.logo) {
  height: fit-content;
  align-self: flex-end;
} */

.box-info-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;
  background-color: #000E0A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -ms-flex-item-align: start;
  align-self: flex-start;
  justify-self: flex-end;
  rotate: -45deg;
  z-index: 3;
}

.box-info-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -ms-flex-item-align: end;
  align-self: flex-end;
  justify-self: flex-start;
  font-size: clamp(1.625rem, 1.344rem + 1.6058vw, 3rem);
  margin-bottom: 15px;
  line-height: 1.3;
  z-index: 3;
}

.box-info-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 15;
  line-height: 1.3;
  margin: 0;
  z-index: 3;
  font-weight: 300;
}

.box-info:hover .box-info-text {
  color: #ffffff;
}

.box-info-inner .logo {
  max-width: 320px;
  width: 100%;
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: center;
  margin-bottom: 90px;
}

.box-info-inner .logo img {
  max-width: 320px;
  width: 100%;
}

.box-info-inner .btn {
  -ms-flex-item-align: end;
  align-self: flex-end;
  justify-self: flex-end;
  z-index: 3;
}

.box-info .box-info-img-round {
  scale: initial !important;
  zoom: initial !important;
  max-width: 480px;
  height: auto;
  position: absolute;
  translate: -12% 54% !important;
}

.box-info-img-1 {
  position: absolute;
  height: 100%;
  width: 100%;
  -webkit-filter: saturate(0.5);
  filter: saturate(0.5);
  scale: none !important;
  zoom: 100% !important;
  translate: none !important;
  z-index: 1;
}

.box-info-inner-s:hover::after {
  opacity: 0 !important;
}

.box-info:hover .box-info-img-1 {
  scale: none !important;
  zoom: 100% !important;
  translate: none !important;
}

/*--------------------------------------------------portfolio-slider*/


.portfolio .round {
  top: 30%;
  right: -10%;
}

.portfolio {
  background: url('../images/main/img-r.png');
  background-position: left top;
  /* background: url('../images/main/img-bg.png'), url('../images/main/img-r.png');
  background-position: right -50% center, left top; */
  background-repeat: no-repeat;
  overflow: hidden;
}

/* .portfolio-bg {
  background: url('../images/main/img-bg-portfolio.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  overflow: hidden;
} */

.portfolio__wrapper-img-box {
  border-radius: 26px;
  overflow: hidden;
}

.portfolio__bottom {
  padding-top: clamp(1.25rem, 1.053rem + 0.877vw, 1.875rem);
  padding-bottom: clamp(1.25rem, 0.8761rem + 2.1368vw, 2.8125rem);
  padding-left: clamp(1.25rem, 0.8761rem + 2.1368vw, 2.8125rem);
  padding-right: clamp(1.25rem, 0.8761rem + 2.1368vw, 2.8125rem);
}

.portfolio-title {
  font-size: clamp(1.625rem, 1.4156rem + 1.1966vw, 2.5rem);
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: clamp(1.25rem, 0.974rem + 1.228vw, 2.125rem);
}

.portfolio-text {
  /* display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4; */
  line-height: 1.5;
  /* margin-bottom: 1.5rem; */
  margin-bottom: clamp(1.25rem, 0.974rem + 1.228vw, 2.125rem);
}

.portfolio-feed-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  gap: clamp(0.75rem, 0.592rem + 0.702vw, 1.25rem);
  row-gap: 20px;
}

.portfolio-feed-back.active {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.portfolio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.portfolio-feed-back li {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.portfolio-feed-back li img {
  width: 24px;
}

.portfolio-feed-back li:has(.btn) {
  margin: 0 auto;
}

.portfolio .container {
  position: relative;
}

.portfolio__box {
  width: 115vw;
  /* height: 100vh;
  max-height: 880px; */
  /* margin-right: -500px; */
}

@media (max-width: 1440px) {
  .portfolio__box {
    zoom: 84%;
  }
}

@media (max-width: 1300px) {
  .portfolio__box {
    width: auto;
    height: auto;
    zoom: 100%;
  }
}

.portfolio__box .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.portfolio .swiper-button-box {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 0;
}

.portfolio__wrapper-img-box,
.portfolio__img {
  width: 100%;
  max-height: 320px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.portfolio__wrapper-img-box {
  position: relative;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.portfolio__wrapper-img-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -50%;
  width: 100%;
  height: 140%;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(0, 81, 64, 0.5) 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 81, 64, 0.5) 0%, rgba(0, 113, 91, 0) 100%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.portfolio__wrapper-img-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -o-linear-gradient(top, rgba(0, 179, 147, 0) 0%, rgba(0, 179, 147, 0.3) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 179, 147, 0)), to(rgba(0, 179, 147, 0.3)));
  background: linear-gradient(180deg, rgba(0, 179, 147, 0) 0%, rgba(0, 179, 147, 0.3) 100%);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.portfolio__wrapper-box:hover .portfolio__wrapper-img-box::after {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.portfolio__box .swiper-slide {
  height: auto;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.portfolio__box .swiper-slide-active {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.portfolio__wrapper-box {
  background-color: #1F1F1F;
  border-radius: 26px;
  overflow: hidden;
}

.portfolio__box .swiper-slide .btn-primary {
  translate: -100%;
  opacity: 0;
  scale: 0;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.portfolio__box .swiper-slide-active .btn-primary {
  translate: 0;
  opacity: 1;
  scale: 1;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

@media (max-width: 1300px) {

  .portfolio__box .swiper-slide .btn-primary,
  .portfolio__box .swiper-slide-active .btn-primary {
    translate: 0;
    opacity: 1;
    scale: 1;
  }
}

.portfolio__box .swiper-slide .portfolio__wrapper-img-box {
  max-height: 320px;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.portfolio__box .swiper-slide-active .portfolio__img {
  max-height: 450px;
  height: 100vh;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.portfolio__box .swiper-slide-active .portfolio__wrapper-img-box {
  max-height: 450px;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

@media (max-width: 1300px) {

  .portfolio__box .swiper-slide .portfolio__wrapper-img-box,
  .portfolio__box .swiper-slide-active .portfolio__img,
  .portfolio__box .swiper-slide .portfolio__img,
  .portfolio__box .swiper-slide-active .portfolio__wrapper-img-box {
    height: 320px !important;
  }
}

@media (max-width: 575px) {

  .portfolio__box .swiper-slide .portfolio__wrapper-img-box,
  .portfolio__box .swiper-slide-active .portfolio__img,
  .portfolio__box .swiper-slide .portfolio__img,
  .portfolio__box .swiper-slide-active .portfolio__wrapper-img-box {
    height: 230px !important;
  }
}

.swiper-button-box.block-indent {
  padding-bottom: 0;
}

.portfolio-swiper-button-box {
  padding-top: 10px;
  padding-bottom: clamp(1.25rem, 0.4836rem + 4.3796vw, 5rem);
}



/*--------------------------------------------------start-development*/


.start-development {
  position: relative;
  display: grid;
  text-align: center;
  /* background: radial-gradient(50% 50% at 50% 50%, rgba(0, 81, 64, 0.5) 70%, rgba(0, 113, 91, 0) 100%); */
  overflow: hidden;
}

.start-development img,
.start-development-box {
  position: static;
  width: 100%;
  height: 100%;
  grid-column: 1;
  grid-row: 1;
  border-radius: 20px;
  overflow: hidden;
}

.start-development-box {
  display: grid;
  gap: 20px;
  align-self: center;
  justify-self: center;
  text-wrap: balance;
  max-width: 900px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 3;
}

.start-development-box .section__title-h1 {
  font-size: clamp(2.625rem, 2.006rem + 2.752vw, 4.5rem);
  text-wrap: balance;
  line-height: 1.3;
}

.start-development-box p {
  justify-self: center;
  font-weight: 300;
}

@media (max-width: 575px) {
  .start-development-box .section__title-h1 {
    max-width: 240px;
    margin: 0 auto;
  }
}

.start-development-box .btn-primary {
  margin: 0 auto;
}

.cristal {
  -o-object-fit: contain;
  object-fit: contain;
}

.cristal-1 {
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: flex-start;
  width: clamp(4.063rem, 1.793rem + 10.088vw, 11.25rem) !important;
  height: auto !important;
  margin-top: 70px;
  margin-left: clamp(1.875rem, -7.5708rem + 15.2505vw, 3.25rem);
}

.cristal-2 {
  -ms-flex-item-align: center;
  align-self: center;
  justify-self: flex-end;
  width: clamp(3.75rem, 2.961rem + 3.509vw, 6.25rem) !important;
  height: auto !important;
  margin-top: 270px;
  margin-right: clamp(4.688rem, -4.439rem + 14.735vw, 9.375rem);
}

@media (max-width: 991px) {
  .cristal-1 {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 150px;
    margin-right: 60px;
  }

  .cristal-2 {
    margin-right: 60px;
  }
}

@media (max-width: 575px) {
  .cristal-1 {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 50px;
    margin-left: 32px;
  }

  .cristal-2 {
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin-top: 220px;
    margin-right: 30px;
  }
}


/*--------------------------------------------------comment*/



.comment {
  /* background: url('../images/main/img-r.png'); */
  background-position: center center;
  background-repeat: no-repeat;
  /* overflow: hidden; */
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(0, 81, 64, 0.47) 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 81, 64, 0.47) 0%, rgba(0, 113, 91, 0) 100%);
}

.comment-index .round {
  display: none;
}

.comment-slider {
  overflow: hidden;
}


@media (min-width: 1199px) {

  .box__inner.swiper-wrapper {
    display: block;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    min-height: 100px;
    padding: 50px 0;
  }

  .box__inner .swiper-slide {
    min-height: 100px;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  .box__item {
    margin-bottom: 20px;
  }
}

@media (max-width: 1199px) {
  .box__inner.swiper-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
  }

  .box__inner .swiper-slide {
    transition: all 0.3s linear;
  }
}

.box__item {
  position: relative;
  background-color: #1F1F1F;
  border-radius: 20px;
  border: 1px solid #FFFFFF1A;
  padding: clamp(1.875rem, 1.4583rem + 1.8519vw, 3.125rem);
  overflow: hidden;
  z-index: 1;
}

.box__item-bg::before {
  content: '';
  position: absolute;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(0, 81, 64, 0.5) 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 81, 64, 0.5) 0%, rgba(0, 113, 91, 0) 100%);
  z-index: 0;
}


.box__inner .swiper-slide:first-child {
  margin-top: -26px;
}

@media (max-width: 1199px) {
  .box__inner .swiper-slide:first-child {
    margin-top: 0px;
  }
}

.box__item-svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-bottom: clamp(1.25rem, 1.1004rem + 0.8547vw, 1.875rem);
}

.box__item-text {
  opacity: 1;
  line-height: 1.5;
  margin-bottom: clamp(1.875rem, 1.579rem + 1.316vw, 2.813rem);
}

.box__item-text p {
  color: #ffffff;
}

@media (max-width: 991px) {
  .box__item-text p {
    font-weight: 200;
  }
}

.box__item-user {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 5px;
}

.box__item-user-img {
  max-width: 70px;
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1 / 3;
  overflow: hidden;
}

.box__item-user-name {
  font-size: clamp(1rem, 0.961rem + 0.175vw, 1.125rem);
}

.box__item-user-value {
  font-size: clamp(0.875rem, 0.796rem + 0.351vw, 1.125rem);
  opacity: 0.6;
}

.comment .round {
  max-width: 350px;
  top: 60px;
  right: -150px;
}

.comment .round-animation,
.comment.round-pos {
  overflow-x: visible !important;
  overflow: visible !important;
}

.comment .swiper-button-box {
  display: none;
}

@media (max-width: 1200px) {

  .comment .round-animation,
  .comment.round-pos {
    overflow-x: clip !important;
  }

  .comment .round,
  .comment .swiper-button-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .comment .round {
    top: -45px;
    right: 60px;
  }
}

.get-btn:hover {
  background: -o-linear-gradient(right, #00B393 -0.28%, #005140 100%);
  background: -webkit-gradient(linear, right top, left top, color-stop(-0.28%, #00B393), to(#005140));
  background: linear-gradient(270deg, #00B393 -0.28%, #005140 100%);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.get-btn .btn-circle {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.get-btn:hover .btn-circle {
  background-color: #000e0a;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}


/*--------------------------------------------------info-slider*/


.info {
  position: relative;
  padding-bottom: clamp(3.75rem, 1.974rem + 7.895vw, 9.375rem);
  overflow: hidden;
}

.info-index {
  padding-bottom: clamp(1.25rem, 0.4836rem + 4.3796vw, 5rem);
}

.info__box-main {
  /* width: 115vw; */
  margin-right: -470px;
}


@media (min-width: 1700px) and (max-width: 1900px) {
  .info__box-main {
    margin-right: -500px;
  }
}

@media (min-width: 1680px) and (max-width: 1700px) {
  .info__box-main {
    margin-right: -480px;
  }
}

@media (min-width: 1630px) and (max-width: 1680px) {
  .info__box-main {
    margin-right: -550px;
  }
}

@media (min-width: 1500px) and (max-width: 1630px) {
  .info__box-main {
    margin-right: -550px;
  }
}

@media (min-width: 1439px) and (max-width: 1500px) {
  .info__box-main {
    margin-right: -480px;
  }
}

.info::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/main/new-bg.png');
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: cover;
  /* transform: scale(var(--scale, 1)); */
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  z-index: -1;
}

.info-index::after {
  background-image: none;
}

@media (max-width: 1439px) {
  .info__box-main {
    zoom: 100%;
    width: auto;
    margin-right: auto;
  }
}

.info::before {
  background: none;
}

.info.info-index::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(0, 81, 64, 0.3) 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 81, 64, 0.3) 0%, rgba(0, 113, 91, 0) 100%);
  pointer-events: none;
}

.info__box {
  position: relative;
  display: grid;
  border-radius: 30px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  overflow: hidden;
}

.info__box-main .info__box+.info__box {
  margin-top: 20px;
}

.info__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -o-linear-gradient(bottom, #000E0A 0%, rgba(0, 45, 36, 0) 96.38%);
  background: -webkit-gradient(linear, left bottom, left top, from(#000E0A), color-stop(96.38%, rgba(0, 45, 36, 0)));
  background: linear-gradient(360deg, #000E0A 0%, rgba(0, 45, 36, 0) 96.38%);
  pointer-events: none;
}

.info__box-img:hover {
  opacity: 1;
}

.info__box-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -o-linear-gradient(bottom, #00B393 0%, rgba(0, 45, 36, 0) 96.38%);
  background: -webkit-gradient(linear, left bottom, left top, from(#00B393), color-stop(96.38%, rgba(0, 45, 36, 0)));
  background: linear-gradient(360deg, #00B393 0%, rgba(0, 45, 36, 0) 96.38%);
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.info__box-img:hover::after {
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.info__box-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.info__box-img,
.info__bottom {
  grid-column: 1;
  grid-row: 1;
}

.info__bottom {
  pointer-events: none;
}

.info__box-img,
.info__img {
  width: 100%;
  height: 290px;
  border-radius: 30px;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.info__box-img:has(.info__img-big),
.info__img-big {
  height: 600px;
}

@media (max-width: 991px) {

  .info__box-img,
  .info__img {
    height: 220px;
  }

  .info__box-img:has(.info__img-big),
  .info__img-big {
    height: 460px;
  }
}

.info__bottom {
  -ms-flex-item-align: end;
  align-self: flex-end;
  justify-self: center;
  padding: clamp(1.25rem, 0.9509rem + 1.7094vw, 2.5rem);
  z-index: 3;
}

.swiper-slide .info__bottom {
  width: calc(100% - clamp(3.125rem, 2.533rem + 2.632vw, 5rem));
}

.info__bottom-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.info__box-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.3;
  font-size: clamp(1.25rem, 1.1902rem + 0.3419vw, 1.5rem);
  margin-bottom: 20px;
}

.info__box-title.info__box-title-big {
  -webkit-line-clamp: 4;
  font-size: clamp(1rem, 0.7009rem + 1.7094vw, 2.25rem);
}

.info__box-data {
  font-size: clamp(0.75rem, 0.7201rem + 0.1709vw, 0.875rem);
  text-transform: uppercase;
  opacity: 0.6;
}

.info__bottom .btn {
  /* height: 50px; */
  background: transparent;
  border: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.info__box:hover .btn-circle {
  background: #000E0A;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.info__box-main .swiper-slide {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}



/*--------------------------------------------------main-form*/

.main-form .round {
  top: -500px;
  left: 70px;
}

@media (max-width: 1199px) {
  .main-form .round {
    top: -190px;
  }
}

@media (max-width: 675px) {
  .main-form .round {
    top: -190px;
    left: auto;
    right: 0;
  }
}

.main-form {
  padding-top: clamp(2.5rem, 1.453rem + 5.9829vw, 6.875rem);
  padding-bottom: clamp(2.5rem, 1.453rem + 5.9829vw, 6.875rem);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.main-form::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/main/img-form-new.png');
  background-repeat: no-repeat;
  pointer-events: none;
  /* transform: scale(var(--scale, 1)); */
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.main-form.main-form-index::after {
  top: unset;
  height: 100%;
  bottom: 0;
  background-image: url('../images/main/img-form-index.png');
  background-size: 100% 100%;
}

.main-form.main-form-contact::after {
  top: unset;
  height: 100%;
  bottom: 0;
  background-image: url('../images/main/img-form-new.png');
  background-size: 100% 100%;
}

.main-form::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(0, 81, 64, 0.3) 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 81, 64, 0.3) 0%, rgba(0, 113, 91, 0) 100%);
  z-index: 1;
}

.main-form-box {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  z-index: 3;
}
.main-form-box  .main-form-text-box {
  max-width: 600px;
}

@media (max-width: 991px) {
  .main-form-box {
    grid-template-columns: 1fr;
  }
  .main-form-box  .main-form-text-box {
    max-width: 100%;
  }
}

.main-form-text {
  margin-bottom: 50px;
}

.form-main {
  display: grid;
  grid-template-columns: 1fr;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.form-box span,
.form-box label,
.form-box textarea {
  grid-column: 1 / -1;
}

.form-submit-btn {
  justify-self: flex-end;
}

.forminator-row.forminator-row-last {
  margin-bottom: 0 !important;
}

.forminator-edit-module {
  display: none;
}

.forminator-button-submit {
  margin-left: auto;
}

@media (max-width: 767px) {
  .form-box {
    grid-template-columns: 1fr;
  }

  .form-group {
    grid-column: auto;
  }
}

.box__info {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  row-gap: 10px;
}

.box__info:not(:last-child) {
  margin-bottom: 20px;
}

.box__info .box__img {
  grid-column: 1;
  grid-row: 1 / 3;
}

.box__name {
  font-size: clamp(1.125rem, 1.0353rem + 0.5128vw, 1.5rem);
  line-height: 1;
  opacity: 0.6;
}

.box__value {
  font-size: clamp(1.125rem, 1.0353rem + 0.5128vw, 1.5rem);
}



/*--------------------------------------------------privacy*/


.privacy-description .container {
  max-width: 950px;
}

.privacy-description {
  padding: 20px 0;
}

.privacy-description h1 {
  font-size: clamp(1.375rem, 1.05rem + 1.625vw, 3rem);
  font-weight: 700;
  margin-bottom: 8px;
}

.privacy-description span {
  display: block;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  margin-bottom: 40px;
}

.privacy-description h2 {
  display: block;
  font-size: clamp(1.375rem, 1.25rem + 0.625vw, 2rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.privacy-description ol b {
  display: block;
  font-size: clamp(1.125rem, 1.075rem + 0.25vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.privacy-description p {
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 40px;
}

.privacy-description span {
  display: block;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  margin-bottom: 40px;
}

.privacy-description ol {
  padding-left: clamp(1.25rem, 1rem + 1.25vw, 2.5rem);
}

.privacy-description li {
  list-style: none;
}


/*--------------------------------------------------asked-questions*/


.asked-questions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.asked-questions-box .section__title {
  font-size: clamp(2rem, 1.684rem + 1.404vw, 3rem);
  font-weight: 300;
}

@media (max-width: 767px) {
  .asked-questions-list {
    grid-template-columns: 1fr;
  }
}

.fade-hide-box {
  background: #1F1F1F;
  border-radius: 20px;
  padding: 20px;
}

.fade-title {
  display: grid;
  grid-template-columns: 5fr auto;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  font-size: clamp(1.25rem, 1.053rem + 0.877vw, 1.875rem);
  cursor: pointer;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  line-height: 1.25;
}

.fade-title:hover {
  color: #00B393;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.hide-text {
  display: none;
  padding-right: 50px;
  margin-top: 20px;
}

.fade-title svg {
  justify-self: flex-end;
  margin-top: 7px;
}

.fade-title.active svg rect:first-child {
  height: 0;
}

.fade-title svg rect:first-child {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}


/*--------------------------------------------------about-us-text*/

.about-us .round {
  top: -440px;
  right: 60px;
}

@media (max-width: 1199px) {
  .about-us .round {
    top: -190px;
  }
}

.about-us-wrapper-bg {
  padding-top: clamp(2.5rem, -1.645rem + 18.421vw, 15.625rem);
  background: -o-radial-gradient(50% 50%, 30% 50%, rgba(0, 81, 64, 0.5) 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(30% 50% at 50% 50%, rgba(0, 81, 64, 0.5) 0%, rgba(0, 113, 91, 0) 100%);
}

.about-us-wrapper-bg .round {
  top: -18%;
  left: 23%;
}

@media (max-width: 991px) {
  .about-us-wrapper-bg .round {
    top: 0;
    left: auto;
    right: 0;
  }
}

.about-us-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: clamp(3.125rem, -7.827rem + 17.682vw, 8.75rem);
  -moz-column-gap: clamp(3.125rem, -7.827rem + 17.682vw, 8.75rem);
  column-gap: clamp(3.125rem, -7.827rem + 17.682vw, 8.75rem);
}

.about-us-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .about-us-text {
    grid-template-columns: 1fr;
  }
}

.about-us-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 20px;
}

@media (max-width: 991px) {
  .about-us-wrapper {
    grid-template-columns: 1fr;
  }
}

.about-us-values-text {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.about-us-values-text .logo {
  display: block;
  margin-bottom: clamp(1.25rem, 0.658rem + 2.632vw, 3.125rem);
}

.about-us-values-text .section__title {
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  .about-us-values-text {
    position: static;
  }
}

main .logo svg {
  width: clamp(11.875rem, 8.734rem + 17.9487vw, 25rem);
  height: auto;
}

.about-us-values-inner {
  width: 100%;
}

.about-us-values-inner:not(:last-child) {
  border-bottom: 1px solid #D9D9D91A;
}

.about-us-values {
  border: 1px solid #FFFFFF1A;
  border-radius: 30px;
  counter-reset: section;
  background-color: #000000;
  background-image: url('../images/main/img-bg-counter.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding: clamp(1.25rem, 0.6517rem + 3.4188vw, 3.75rem);
}

.about-us-values-fade {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  font-size: clamp(1.375rem, 1.1656rem + 1.1966vw, 2.25rem);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin: 15px 0;
}

.about-us-values-hide {
  display: none;
  font-weight: 300;
  line-height: 1.5;
  padding: 15px 0;
  padding-left: clamp(5rem, 3.783rem + 1.965vw, 5.625rem);
}

@media (max-width: 991px) {
  .about-us-values-fade {
    gap: 20px;
    left: 0;
  }

  .about-us-values-hide {
    padding-left: clamp(3.5rem, 2.965rem + 2.377vw, 4.438rem);
  }
}

.about-us-values-fade svg rect:first-child {
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.about-us-values-fade.active svg rect:first-child {
  height: 0;
}

.about-us-values-fade:hover {
  color: #00B393;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.about-us-values-fade.active {
  color: #00B393;
}

.about-us-values-inner span::before {
  font-size: clamp(1.625rem, 1.2959rem + 1.8803vw, 3rem);
  counter-increment: section;
  content: "0" counter(section) " ";
  color: #00B393;
}


/*--------------------------------------------------blog*/


.blog .round {
  max-width: 450px;
  top: -240px;
  left: 70px;
}

@media (max-width: 575px) {
  .blog .round {
    top: -180px;
    left: 0;
  }
}

.blog {
  padding-bottom: 20px;
}

.blog-box {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.blog-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  display: none;
}

.blog__box-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) {
  .blog__box-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blog__box-main {
    grid-template-columns: 1fr;
  }
}

.blog__box-main .info__box-img,
.blog__box-main .info__img {
  max-height: 600px;
}

@media (max-width: 1199px) {

  .blog__box-main .info__box-img,
  .blog__box-main .info__img {
    max-height: 460px;
  }
}

.blog__box-main .info__box-title {
  font-size: clamp(1rem, 0.7009rem + 1.7094vw, 2.25rem);
  -webkit-line-clamp: 5;
}

.blog-nav-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;
  height: 35px;
  border-radius: 100px;
  border: 2px solid #00715B;
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1;
  padding: 0 20px;
}

.blog-nav-link.active {
  background: -o-linear-gradient(right, #00B393 -0.28%, #005140 100%);
  background: -webkit-gradient(linear, right top, left top, color-stop(-0.28%, #00B393), to(#005140));
  background: linear-gradient(270deg, #00B393 -0.28%, #005140 100%);
  border: transparent;
}


/*--------------------------------------------------blog-single*/


.blog-single-wrapper {
  position: relative;
  max-width: 1100px;
  padding-top: clamp(0.625rem, 0.3259rem + 1.7094vw, 1.875rem);
  margin: 0 auto;
  z-index: 3;
}

.box-top {
  /* background-image: linear-gradient(to bottom, #000E0A, rgba(0, 14, 10, 0), #000E0A); */
  padding-bottom: 20px;
}

.box-top .round {
  top: -450px;
  left: 0;
}

@media (max-width: 1199px) {
  .box-top .round {
    top: -100px;
    left: -100px;
  }
}

.description-box-blog {
  padding-top: 20px;
  padding-bottom: clamp(3.75rem, 3.355rem + 1.754vw, 5rem);
  position: relative;
  z-index: 3;
}

.box-top h1 {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

.box-top-img {
  border-radius: 30px;
  width: 100%;
  height: 100vh;
  max-height: clamp(13.75rem, 9.562rem + 23.9316vw, 31.25rem);
  overflow: hidden;
}

.description-box-top {
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.case-inner-box {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 30px;
}

.case-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 1.1004rem + 0.8547vw, 1.875rem);
  max-width: 800px;
  width: 100%;
  margin-bottom: clamp(0.625rem, 0.4754rem + 0.8547vw, 1.25rem);
}

.case-title {
  color: #999f9d;
  margin-bottom: 5px;
}

.case-content {
  font-size: clamp(1rem, 0.8803rem + 0.6838vw, 1.5rem);
  font-weight: 300;
}

.description-nav-title {
  font-size: clamp(1.5rem, 1.4103rem + 0.5128vw, 1.875rem);
  margin-bottom: clamp(0.625rem, 0.3259rem + 1.7094vw, 1.875rem);
  font-weight: 300;
}

.blog-single-bottom {
  position: relative;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .blog-single-bottom {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .description-nav-title {
    margin-bottom: 0;
  }
}

.blog-single-content {
  max-width: 800px;
  width: 100%;
}

.blog-single-bottom img {
  border-radius: 30px;
  width: 100%;
  height: 100vh;
  max-height: clamp(13.75rem, 11.0577rem + 15.3846vw, 25rem);
  overflow: hidden;
  margin: 40px 0;
}

.description-nav {
  display: grid;
  gap: 20px;
  position: -webkit-sticky;
  position: sticky;
  top: 125px;
  max-width: 250px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: -100px;
}

@media (max-width: 991px) {
  .description-nav {
    position: static;
    max-width: 100%;
    margin-top: 0;
  }
}

.description-nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  color: #999f9d;
  cursor: pointer;
  padding-left: 20px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.description-nav-item.active {
  color: #FFFFFF;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.description-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #00715B;
  width: 5px;
  height: 27px;
  border-radius: 100px;
  scale: 0;
  opacity: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.description-nav-item.active::before {
  scale: 1;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.more-cases .section__title,
.keep-reading .section__title {
  text-align: center;
}

.keep-reading .info__box-img,
.keep-reading .info__img {
  max-height: 600px;
  height: 100vh;
}

.more-cases .portfolio__wrapper-img-box,
.more-cases .portfolio__img {
  max-height: clamp(14.375rem, 11.0844rem + 18.8034vw, 28.125rem);
  height: 100vh;
}

@media (max-width: 991px) {

  .keep-reading .info__box-img,
  .keep-reading .info__img {
    max-height: 460px;
    height: 100vh;
  }
}



/*--------------------------------------------------cases*/



.cases {
  position: relative;
  padding-bottom: clamp(3.75rem, 1.974rem + 7.895vw, 9.375rem);
}

@media (max-width: 1199px) {
  .cases {
    overflow: hidden;
  }
}

.cases-index::after {
  content: '';
  position: absolute;
  top: 60%;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url('../images/main/new-bg.png');
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: cover;
  /* transform: scale(var(--scale, 1)); */
  /*opacity: 0.1;*/
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
  z-index: -1;
}

.more-cases-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 991px) {
  .more-cases-box {
    grid-template-columns: 1fr;
  }
}

.cases-box .round {
  top: -175px;
  right: 0;
}

@media (max-width: 767px) {
  .cases-box .round {
    top: 0;
    right: 0;
  }
}

@media (max-width: 575px) {
  .cases-box .round {
    top: -70px;
    right: auto;
    left: 0;
  }
}

.cases-top .section__title-h1 {
  max-width: 100%;
}

.cases__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 767px) {
  .cases__box {
    grid-template-columns: 1fr;
  }
}

.cases.block-indent {
  padding-top: 20px;
}

.cases-text {
  max-width: 50%;
  margin-bottom: 40px;
}

.cases-text P {
  padding-right: clamp(0rem, -17.5rem + 23.333vw, 4.375rem);
}

.cases-text .section__title {
  margin-top: 0;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .cases-text {
    max-width: 100%;
  }
}

.cases__box .portfolio__wrapper-img-box,
.cases__box .portfolio__img {
  height: 100vh;
  max-height: clamp(14.375rem, 11.0844rem + 18.8034vw, 28.125rem);
}

.cases-bottom {
  max-width: 800px;
  margin: 0 auto;
}

.cases-bottom img {
  border-radius: 20px;
  width: 100%;
  height: 100vh;
  max-height: 400px;
  overflow: hidden;
  margin: 40px 0;
}

.cases-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  width: 112vw;
  translate: -310px 0;
  margin: 40px 0;
}


@media (max-width: 1500px) {
  .cases-inner {
    grid-template-columns: 1fr;
    width: auto;
    translate: 0 0;
    overflow: hidden;
  }
}


.cases-inner-box-info,
.cases-inner img {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* max-width: 830px; */
  width: 100%;
  height: 100%;
  border-radius: 30px;
  max-height: 450px;
  margin: 0;
  overflow: hidden;
}

.cases-inner-box-info:has(img) {
  max-height: clamp(13.75rem, 10.3098rem + 19.6581vw, 28.125rem);
}

@media (max-width: 1500px) {

  .cases-inner .box-info,
  .cases-inner img {
    width: 100%;
    height: 100%;
  }
}

.cases-info-inner h2 {
  font-size: clamp(2rem, 1.684rem + 1.404vw, 3rem);
}

.cases-info-inner h3 {
  font-size: clamp(1.25rem, 1.053rem + 0.877vw, 1.875rem);
}

@media (max-width: 575px) {

  .cases-info-inner h2 {
    margin-bottom: 35px;
  }

  .cases-info-inner h3 {
    margin-bottom: 20px;
  }
}

/* .cases-inner-box-info ul,
.cases-inner-box-info ol {
  margin-bottom: 0;
} */

.cases-bottom .box-info::after {
  background: none;
}

.box-info-border {
  display: grid;
  background: -o-radial-gradient(46% 50%, 100% 100%, rgba(0, 81, 64, 0.2) 70%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(100% 100% at 46% 50%, rgba(0, 81, 64, 0.2) 70%, rgba(0, 113, 91, 0) 100%);
  border: 1px solid #FFFFFF33;
  overflow: hidden;
}

.cases-info-inner {
  padding: 30px;
  padding-left: clamp(1.875rem, 1.086rem + 3.509vw, 4.375rem);
}

.comment-cases {
  max-width: 800px;
  width: 100%;
  background: none;
  margin: 0 auto;
  padding: 0;
}
.comment-cases > .container {
  padding: 0;
}

.comment-cases .box__inner {
  grid-template-columns: 1fr;
}

.comment-cases .box__inner-col:last-child {
  margin-top: 0;
}

.cases-start-development .start-development {
  background: none;
}

.description-box-left-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}

.description-box-left-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -o-linear-gradient(201.35deg, rgba(0, 113, 91, 0.5) 2.43%, rgba(0, 45, 36, 0) 99.22%);
  background: linear-gradient(248.65deg, rgba(0, 113, 91, 0.5) 2.43%, rgba(0, 45, 36, 0) 99.22%);
}


/*--------------------------------------------------description-box*/


.specifications .round {
  top: 125px;
  right: 80px;
}

@media (max-width: 1199px) {
  .specifications .round {
    top: 25%;
    right: auto;
    left: 0;
  }
}


.specifications-text p {
  max-width: 580px;
}

@media (max-width: 991px) {
  .specifications-text p {
    max-width: 100%;
  }
}

.description-box-bg {
  background: -o-radial-gradient(50% 50%, 50% 50%, #000E0A 0%, rgba(0, 14, 10, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #000E0A 0%, rgba(0, 14, 10, 0) 100%);
}

.description-box-count {
  display: grid;
  row-gap: clamp(1.875rem, -11.51rem + 21.611vw, 8.75rem);
}

.description-box-right b, .description-box-right strong {
  color: #ffffff;
  font-weight: 300;
}

.description-box-inner {
  display: grid;
  -webkit-column-gap: clamp(5.625rem, -0.459rem + 9.823vw, 8.75rem);
  -moz-column-gap: clamp(5.625rem, -0.459rem + 9.823vw, 8.75rem);
  column-gap: clamp(5.625rem, -0.459rem + 9.823vw, 8.75rem);
  grid-template-columns: 1.2fr 1fr;
}

.description-box-inner.reverse {
  grid-template-columns: 1fr 1.2fr;
}
.description-box-inner .description-box-left {
  grid-column: 1;
  grid-row: 1;
}
.description-box-inner.reverse .description-box-left {
  grid-column: 2;
  grid-row: 1;
}

.description-box-inner + .description-box-inner {
  margin-top: clamp(1.875rem, -11.51rem + 21.611vw, 8.75rem);
}

@media (max-width: 991px) {
  .description-box-inner {
    grid-template-columns: 1fr !important;
  }

  .description-box-left {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin-bottom: 20px;
  }
}

.description-box-left {
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-radius: 30px;
  overflow: hidden;
}

.description-box-right h3 {
  margin-top: 0;
}

.description-box-left img {
  width: 100%;
  max-height: 450px;
  border-radius: 30px;
  overflow: hidden;
}

.description-box-left:has(.description-box-animation) {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(1.25rem, -5.497rem + 10.8932vw, 4.375rem);
  height: 100%;
}

.description-box-left-animation {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: clamp(1.25rem, 0.5021rem + 4.2735vw, 4.375rem);
  height: 100%;
}

.description-box-animation {
  display: grid;
  align-self: center;
  justify-self: center;
  max-width: clamp(18.125rem, 14.9092rem + 18.3761vw, 31.5625rem);
  width: 100%;
}

@media (max-width: 991px) {
  .description-box-animation {
    margin-top: 30px;
  }
}

.description-box-animation .round {
  position: static;
  width: clamp(8.125rem, 6.3301rem + 10.2564vw, 15.625rem);
  ;
}

.description-box-animation .round-pos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* justify-content: center; */
}


/*--------------------------------------------------subscribe*/

.keep-reading {
  padding-bottom: 0;
}


.subscribe {
  position: relative;
  /* background-image: url('../images/main/img-bg-portfolio.png');
  background-repeat: no-repeat;
  background-size: cover; */
  padding-top: clamp(1.875rem, 0.0801rem + 10.2564vw, 9.375rem);
  padding-bottom: clamp(1.875rem, 0.0801rem + 10.2564vw, 9.375rem);
}

.subscribe::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -29%);
  -ms-transform: translate(-50%, -29%);
  transform: translate(-50%, -29%);
  width: 1300px;
  height: 1300px;
  background: -o-radial-gradient(50% 50%, 50% 50%, rgba(0, 81, 64, 0.8) 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 81, 64, 0.8) 0%, rgba(0, 113, 91, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.subscribe-bg {
  background-image: url('../images/main/img-bg-counter.png');
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  max-width: 800px;
  border-radius: 30px;
  padding: clamp(1.25rem, 0.6517rem + 3.4188vw, 3.75rem);
  margin: 0 auto;
}

@media (max-width: 991px) {
  .subscribe-bg { background-position: bottom right; }
}

.subscribe-inner {
  position: relative;
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.subscribe-inner .section__title {
  margin: 0;
  margin-bottom: 30px;
}

.subscribe-text {
  max-width: 500px;
  margin: 20px auto 0;
}

.subscribe-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
}

.subscribe-bg .subscribe-box input {
  background-color: #232323;
  padding-right: 40px;
  height: 48px;
}

.subscribe-box .btn {
  margin-left: -34px;
  z-index: 3;
}

@media (max-width: 767px) {
  .subscribe-box {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 30px;
  }

  .subscribe-bg .subscribe-box input {
    padding-right: 15px;
  }

  .subscribe-box .btn {
    margin-left: auto;
  }
}

/*--------------------------------------------------footer*/



.footer {
  border-top: 1px solid #FFFFFF1C;
  background-color: #000E0A;
}

.footer__center-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  gap: 30px;
  margin-bottom: clamp(1.875rem, 1.7444rem + 0.7463vw, 2.5rem);
}

@media (max-width: 1199px) {
  .footer__center-inner {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__inner-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .footer__center-inner {
    grid-template-columns: 1fr;
    justify-items: flex-start;
    margin-bottom: 0;
  }
}

.footer__info-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: 35px 0;
  border-top: 1px solid rgba(40, 40, 40, 0.1);
}

.footer__info-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  width: 100%;
  max-width: 1200px;
  height: 2px;
  left: 50%;
  transform: translate(-50%, 0px);
  background-image: url('../images/main/line.png');
  background-repeat: no-repeat;
  background-position: center top;
/*  background: -o-radial-gradient(50% 50%, 50% 50%, #597A53 0%, rgba(0, 113, 91, 0) 100%);
  background: radial-gradient(50% 50% at 50% 50%, #597A53 0%, rgba(0, 113, 91, 0) 100%);*/
}

@media (max-width: 767px) {
  .footer__info-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
  }

  .footer__info-bottom::before {
    max-width: 100%;
    background-size: contain;
  }
}

.footer__link {
  width: 100%;
  padding: 7px 0;
}

.footer__items .footer__link:hover {
  color: #00B393;
}

.footer__title-list {
  font-size: clamp(1.25rem, 1.1902rem + 0.3419vw, 1.5rem);
}

.footer__info,
.footer__items {
  font-size: 14px;
  color: #999f9d;
  margin-top: 35px;
}

.footer__info-copyright {
  text-align: center;
  font-size: 14px;
  color: #999f9d;
}

@media (max-width: 767px) {
  .footer__info-copyright {
    padding-top: 35px;
  }
}

.footer__info {
  line-height: 1.7;
  margin-top: 24px;
}

.footer__item {
  font-size: clamp(0.875rem, 0.8495rem + 0.1254vw, 1rem);
  white-space: nowrap;
}

.footer__link-email {
  color: #00B393;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.socials li:hover a {
  -webkit-filter: brightness(0) saturate(100%) invert(50%) sepia(56%) saturate(2805%) hue-rotate(135deg) brightness(93%) contrast(101%);
  filter: brightness(0) saturate(100%) invert(50%) sepia(56%) saturate(2805%) hue-rotate(135deg) brightness(93%) contrast(101%);
}

@media (max-width: 767px) {

  .footer__list-socials {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    padding-bottom: 35px;
  }

  .footer__list-socials::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-image: url('../images/main/line.png');
    background-repeat: no-repeat;
    background-position: center top;
  }

}

/*--------------------------------------------------*/


.row-gap {
  row-gap: 20px;
  margin-left: -10px;
  margin-right: -10px;
}

.row-gap[class*="col"] {
  padding-left: 10px;
  padding-right: 10px;
}

/* .form-group {
  margin-bottom: 20px;
} */

.et-db #et-boc .et_pb_module .forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row:not(:last-child), 
.forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row:not(:last-child) {
  margin-bottom: 20px !important;
}

.forminator-ui.forminator-custom-form:not(.forminator-size--small)[data-grid=open] .forminator-row.forminator-row-last:not(:last-child) {
  margin-bottom: 0 !important;
}
.forminator-row-last .forminator-col .forminator-field {
  display: flex;
  width: 100%;
}
@media (max-width: 991px) {
  .forminator-description span[data-type="characters"] {
    margin-bottom: 20px;
  }
}



/*--------------------------------------------------media*/