@import url(../fonts/font-icon/font-icon.css);
@import url(../fonts/Pelak/pelak.css);

body {
  font-family: "Pelak", sans-serif, "icomoon", sans-serif;
  position: relative;
  letter-spacing: 0.5px;
  background: url(../image/zargBarg.png), #000;
  background-size: 100% auto;
  overflow-x: clip;
}

body.hideScroll {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

:root {
  --color-primaryBlue: #1495fa;
  --color-borderBlue: #298ffe;
  --color-secendry: #41eb9f;
  --color-black: #000000;
  --color-backGround: #111111;
  --color-blackText: #262626;
  --color-white: #ffffff;
  --color-textWhite: #e0e0e0;
  --whitSize: 24px;
  --scae: 0;
}

html {
  overflow-x: hidden;
}

body {
  color: #fff !important;
  font-family: "Pelak";
  font-weight: 300;
}

.responsiveMenuMobile {
  position: fixed;
  top: 0;
  right: 0;
  background: #272727;
  height: 100vh;
  width: 310px;
  z-index: 999;
  transform: translateX(100%);
  visibility: hidden;
  overflow-y: auto;
  transition: all 0.3s linear;
  -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  clip-path: polygon(0 50%, 100% 50%, 100% 50%, 0 50%);
  border-radius: 39px 0 0 39px;
  z-index: 9999999;
}

@media screen and (max-width: 320px) {
  .responsiveMenuMobile {
    width: 100%;
  }
}

.responsiveMenuMobile__wrapper {
  padding: 32px 21px 30px 30px;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.responsiveMenuMobile.show {
  transform: translateX(0%);
  visibility: visible;
  transition: transform 0.01s linear, -webkit-clip-path 0.3s linear 0.1s;
  transition: transform 0.01s linear, clip-path 0.3s linear 0.1s;
  transition: transform 0.01s linear, clip-path 0.3s linear 0.1s, -webkit-clip-path 0.3s linear 0.1s;
  -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0 100%);
}

.responsiveMenuMobile__head {
  margin-bottom: 24px;
}

.responsiveMenuMobile__closeMEnu {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.responsiveMenuMobile__closeMEnu:hover i::before {
  color: var(--color-primaryBlue);
}

.responsiveMenuMobile__closeMEnu:hover span {
  color: var(--color-primaryBlue);
}

.responsiveMenuMobile__closeMEnu i {
  font-size: 27px;
  transition: 0.3s ease;
}

.responsiveMenuMobile__closeMEnu i::before {
  color: var(--color-backGround);
  transition: 0.3s ease;
}

.responsiveMenuMobile__closeMEnu span {
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.responsiveMenuMobile__content {
  flex: 1;
  margin-bottom: 15px;
  overflow: hidden;
  overflow-y: auto;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 40px);
}

.responsiveMenuMobile__logo {
  width: 150px;
}

.responsiveMenuMobile__menu {
  margin-top: 25px;
}

.responsiveMenuMobile__menu>ul>li {
  margin-bottom: 15px;
}

.responsiveMenuMobile__menu>ul>li:hover a {
  color: #fff !important;
}

.responsiveMenuMobile__menu>ul>li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #919191 !important;
  transition: 0.3s ease;
  text-transform: uppercase;
  display: block;
}

.responsiveMenuMobile__dlApp__tile {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-backGround);
  margin-bottom: 20px;
  padding-right: 6px;
}

.responsiveMenuMobile__dlApp__list li {
  margin-bottom: 11px;
}

.responsiveMenuMobile__dlApp__list li a {
  padding: 11px 20px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: var(--color-primaryBlue);
  border-radius: 13px;
}

.responsiveMenuMobile__dlApp__list li span {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-white);
}

.responsiveMenuMobile .footer-number {
  font-family: sans-serif, "iconmoon" !important;
}

.responsiveMenuMobile .footer-number a {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px;
}

.responsiveMenuMobile .footer-email {
  margin-bottom: 15px;
  font-family: sans-serif, "iconmoon" !important;
}

.responsiveMenuMobile .footer-email a {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px;
}

.responsiveMenuMobile .footer-socialMedia {
  font-family: sans-serif, "iconmoon" !important;
  padding: 15px;
}

.responsiveMenuMobile__footer {
  margin-bottom: 15px;
}

#overlyCoverBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease 0.5s;
  pointer-events: none;
}

#overlyCoverBg.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 34px;
  gap: 10px;
  z-index: 100;
  position: relative;
}

fieldset {
  padding: 0;
}

legend {
  max-width: none;
  width: auto;
  display: none;
}

input {
  background: transparent;
}

.header-logo {
  width: 170px;
}

.header-language {
  /* padding-top: 11px; */
}

.header-language .select2-container {
  width: 55px !important;
}

.header-language .select2-container--default .select2-selection--single {
  background: transparent;
  border-radius: 6px;
}

.header-language .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}

.header-language .select2-dropdown {
  background: #000;
}

.header-language .select2-container--default .select2-results__option[aria-selected=true] {
  background: #be2106;
}

.header-language .select2-results__option {
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  text-align: left;
}

.header-language .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  right: 1px;
  left: auto;
}

.header-language .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-left: 3px;
  padding-right: 21px;
  line-height: 30px;
}

.header-details {
  display: flex;
  align-items: center;
}

.hambergerMenu {
  font-size: 30px;
  cursor: pointer;
  font-family: "icomoon" !important;
  margin-right: 10px;
}

.hambergerMenu>i {
  padding-bottom: 7px;
  display: inline-block;
}

.search {
  font-family: "icomoon" !important;
  /* display: none; */

}

.search-btn {
  font-size: 24px;
  line-height: 34px;
  padding-left: 15px;
  /* margin-left: 15px; */
  /* margin-right: 15px; */
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .search-btn {
    /* padding-left: 0px; */
  }
}

.search-btn i {
  display: inline-block;
}

.search-btn::before {
  position: absolute;
  left: 0;
  top: 69%;
  transform: translateY(-50%);
  content: "";
  background: #fff;
  height: 20px;
  width: 2px;
}

.comment-user {
  position: relative;
  margin-top: 120px;
  height: 350px;
  width: 100%;
  margin-bottom: -100px;
}

.comment-user::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 0px;
  /* this doesn't work */
  border-width: 2px;
  border-style: solid;
  padding: 5px;
  -o-border-image: linear-gradient(89.81deg, rgba(192, 192, 192, 0.7) 0%, rgba(255, 255, 255, 0) 49.94%, rgba(192, 192, 192, 0.7) 100%) 1;
  border-image: linear-gradient(89.81deg, rgba(192, 192, 192, 0.7) 0%, rgba(255, 255, 255, 0) 49.94%, rgba(192, 192, 192, 0.7) 100%) 1;
  pointer-events: none;
}

.comment-user::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 120%;
  bottom: -120px;
  left: 0;
  right: 0;
  background: url(../image/cloudmen-bg.webp);
  background-size: 100% 100%;
  pointer-events: none;
}

.comment-user--name {
  flex-basis: 33.3333%;
  align-self: flex-start;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
}

@media screen and (max-width: 991px) {
  .comment-user--name {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .comment-user--name {
    margin-bottom: 0;
    margin-top: 45px;
  }
}

.comment-user--nameT {
  width: 46%;
  margin-right: auto;
}

@media screen and (max-width: 1199px) {
  .comment-user--nameT {
    width: 55%;
    margin-left: auto;
  }
}

@media screen and (max-width: 767px) {
  .comment-user--nameT {
    width: 90%;
  }
}

.comment-user--text {
  width: 36.3333%;
  align-self: flex-start;
  position: relative;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  word-break: break-all;
}

@media screen and (max-width: 991px) {
  .comment-user--text {
    width: 100%;
    text-align: right;
    padding-left: 0;
    order: 2;
    margin-bottom: 15px;
  }
}

.comment-user--text-prim {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}

.comment-user--text-name {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}

.comment-user--text::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  background: url(../image/comentpic.png);
  background-size: 100%;
  right: 0;
  top: 0;
  display: none;
}

@media screen and (max-width: 991px) {
  .comment-user--text::before {
    right: 50%;
    transform: translateX(50%);
  }
}

.comment-user--namePrimeri {
  width: 33.3333%;
  align-self: flex-end;
  z-index: 2;
  text-align: center;
  color: white;
  font-size: 18px;
  line-height: 22px;
  font-weight: 300;
  position: relative;
  top: 45px;
  padding-right: 40px;
}

@media screen and (max-width: 991px) {
  .comment-user--namePrimeri {
    width: 100%;
    margin-bottom: 15px;
    order: 3;
    position: relative;
    top: 65px;
  }
}

.comment-user--wrText {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 991px) {
  .comment-user--wrText {
    flex-direction: column;
    justify-content: center;
  }
}

.comment-user .swiepr-commentUser {
  height: 100%;
  overflow: visible !important;
  position: relative;
  width: 100%;
}

.comment-user .swiepr-commentUser::before {
  position: absolute;
  content: "";
  width: 100%;
  pointer-events: none;
  height: 120%;
  bottom: -100px;
  left: 0;
  right: 0;
  background: url(../image/cloudmen.webp);
  background-size: 100% 100%;
  mix-blend-mode: lighten;
  z-index: 3;
}

@media screen and (max-width: 991px) {
  .comment-user .swiepr-commentUser::before {
    background-size: cover;
  }
}

.comment-user .swiepr-commentUser .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  filter: blur(100px);
  transition: 0.5s ease !important;
}

@media screen and (max-width: 575px) {
  .comment-user .swiepr-commentUser .swiper-slide {
    flex-direction: column;
  }
}

.comment-user .swiepr-commentUser .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.comment-user .swiepr-commentUser .swiper-slide-active {
  filter: blur(0);
  transition: 0.5s ease !important;
}

.comment-user .swiepr-commentUser figure {
  position: absolute;
  bottom: 0;
  height: 530px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .comment-user .swiepr-commentUser figure {
    position: relative;
    bottom: 0;
    left: 0;
    height: auto;
    width: 50%;
    transform: scale(3.5) translateY(6px);
  }
}

@media screen and (max-width: 575px) {
  .comment-user .swiepr-commentUser figure {
    width: 41%;
    margin-top: -23%;
  }
}

.comment-user .swiepr-commentUser figure img {
  width: 100%;
  height: 100%;
}

.galley-instagram {
  margin-bottom: 70px;
  /* body {
  	background: #000;
  	color: #000;
  } */
}

.galley-instagram .row {
  height: 75vh;
  max-height: 800px;
}

@media screen and (max-width: 991px) {
  .galley-instagram .row {
    height: auto;
    max-height: -moz-max-content;
    max-height: max-content;
  }
}

.galley-instagram .swiper {
  width: 100%;
  height: 100%;
}

.galley-instagram .swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.galley-instagram .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.galley-instagram .swiper {
  width: 100%;
  height: 75vh;
  max-height: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 991px) {
  .galley-instagram .swiper {
    max-height: 400px;
  }
}

@media screen and (max-width: 575px) {
  .galley-instagram .swiper {
    max-height: -moz-max-content;
    max-height: max-content;
    aspect-ratio: 1/1;
  }
}

.galley-instagram .swiper-slide {
  background-size: cover;
  background-position: center;
}

.galley-instagram .mySwiper2 {
  /* height: 38%; */
  width: 100%;
}

.galley-instagram .mySwiper {
  /* height: 20%;
   */
  height: 76vh;
  max-height: 800px;
  box-sizing: border-box;
  padding: 10px 0;
}

@media screen and (max-width: 991px) {
  .galley-instagram .mySwiper {
    max-height: 150px;
  }
}

@media screen and (max-width: 400px) {
  .galley-instagram .mySwiper {
    max-height: 190px;
  }
}

@media screen and (max-width: 340px) {
  .galley-instagram .mySwiper {
    max-height: 150px;
  }
}

.galley-instagram .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  filter: grayscale(1);
  transition: 0.3s ease;
  cursor: pointer;
}

.galley-instagram .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.galley-instagram .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  filter: grayscale(0) blur(0);
}

.galley-instagram .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .project-caspin {
    margin-top: 30px;
  }
}

.project-caspin .container {
  position: relative;
  height: 80vh;
  background-size: contain;
  background-position: -10px 0;
  margin-bottom: 100px;
}

@media screen and (max-width: 991px) {
  .project-caspin .container {
    height: auto;
  }
}

.project-caspin .row {
  height: 100vh;
  align-items: center;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 991px) {
  .project-caspin .row {
    height: auto;
  }
}

.project-caspin-img {
  position: absolute;
  height: 100%;
  left: 0;
  transform: scaleX(-1);
  width: 100%;
}

@media screen and (max-width: 991px) {
  .project-caspin-img {
    display: none;
  }
}

.project-caspin-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.project-caspin-form {
  margin-top: 35px;
}

.project-caspin-form--btn {
  border: 1px solid #cd7b40;
  background: transparent;
  padding: 15px 35px;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.project-caspin-form--btn:hover {
  background: #cd7b40;
}

.project-caspin-wrForm {
  display: flex;
  align-items: center;
  gap: 55px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .project-caspin-wrForm {
    gap: 15px;
  }
}

.project-caspin .form-group {
  position: relative;
  padding: 20px 0;
  width: 300px;
  max-width: 100%;
}

@media screen and (max-width: 575px) {
  .project-caspin .form-group {
    width: 100%;
  }
}

.project-caspin .form-group input {
  border: none;
  border-bottom: 1px solid #9e9e9e;
  color: #cccccc;
  display: block;
  font-size: 16px;
  padding: 10px 0;
  width: 100%;
}

.project-caspin .form-group label {
  color: #9e9e9e;
  font-size: 16px;
  font-weight: 100;
  position: absolute;
  top: 0;
  right: 0;
}

.project-caspin .form-group label {
  color: #9e9e9e;
  font-size: 16px;
  font-weight: 100;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translateY(30px);
}

.project-caspin .form-group input:valid,
.project-caspin .form-group input:focus {
  border-bottom-color: #cd7b40;
  outline: none;
}

.project-caspin .form-group input:valid+label,
.project-caspin .form-group input:focus+label {
  color: #cd7b40;
  font-size: 14px;
  transform: translateY(0);
}

.project-caspin .form-group label {
  transition: all 0.2s ease-in-out;
}

.sliderBlog {
  overflow: visible !important;
}

.sliderBlog .swiper-slide {
  max-height: 512px;
  transition: 0.3s ease;
  filter: grayscale(1) blur(4px);
}

.sliderBlog .swiper-slide figure {
  width: 100%;
  height: 100%;
  position: relative;
}

.sliderBlog .swiper-slide figure::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0) 20%);
  pointer-events: none;
}

.sliderBlog .swiper-slide.swiper-slide-active {
  transform: scale(1.3) translateY(5%);
  z-index: 10;
  filter: grayscale(0) blur(0);
}

@media screen and (max-width: 575px) {
  .sliderBlog .swiper-slide.swiper-slide-active {
    transform: scale(1.1) translateY(-5%);
  }
}

.slider-blog {
  padding-bottom: 60px;
  margin-bottom: 50px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  padding-top: 100px;
}

@media screen and (max-width: 991px) {
  .slider-blog {
    padding-top: 30px;
  }
}

.slider-blog .swiper {
  width: 100%;
  height: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 575px) {
  .slider-blog .swiper {
    height: 35vh;
  }
}

.slider-blog .swiper-slide {
  background-size: cover;
  background-position: center;
}

.slider-blog .mySwiper2 {
  /* height: 38%; */
  width: 100%;
}

.slider-blog .mySwiper {
  /* height: 20%;
  */
  height: 38%;
  box-sizing: border-box;
  padding: 10px 0;
}

.slider-blog .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.slider-blog .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.slider-blog .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.slider-blog--title {
  font-size: 114.258px;
  color: rgb(255, 255, 255);
  font-weight: 900;
  line-height: 1.204;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
  font-size: 124.258px;
  font-weight: bold;
  line-height: 1.204;
  font-weight: 700;
  font-size: 70px;
  margin-bottom: 15px;
  letter-spacing: 4px;
  text-align: right;
}

@media screen and (max-width: 575px) {
  .slider-blog--title {
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 60.258px;
  }
}

.slider-blog--wrText {
  max-width: 681.8px;
  margin-left: auto;
  margin-right: auto;
}

.slider-blog--text {
  font-size: 25px;
  line-height: 1.167;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.slider-blog--wrBtn {
  text-align: center;
  margin-top: 30px;
}

.slider-blog--btn {
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 0px 34px 18px rgba(255, 255, 255, 0.14);
  max-width: 423px;
  display: inline-block;
  font-size: 25px;
  color: rgb(255, 255, 255);
  line-height: 1.167;
  padding: 15px 10px;
  width: 100%;
  transition: 0.3s ease;
  margin-top: 70px;
}

.slider-blog--btn:hover {
  box-shadow: 0px 0px 15px 9px rgba(255, 255, 255, 0.14);
  transform: translateY(5px);
  color: #fff;
}

.productClassic {
  min-height: 100vh;
  background: url(../image/bgClasicProducts.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 100px;
}

.productClassic::before {
  position: absolute;
  content: "";
  inset: 0;
  background: url(../image/bgproductClassic.webp);
  background-repeat: no-repeat;
  pointer-events: none;
  background-size: contain;
  opacity: 0.5;
}

@media screen and (max-width: 991px) {
  .productClassic {
    padding-bottom: 50px;
    margin-bottom: 10px;
    min-height: auto;
    padding-top: 150px;
  }
}

.productClassic__slider {
  height: 100vh;
}

@media screen and (max-width: 991px) {
  .productClassic__slider {
    height: 50vh;
  }
}

.productClassic .swiper__productClassic {
  transform: translateY(7%);
  overflow-x: visible;
  overflow-y: visible;
  position: relative;
  height: 100%;
}

.productClassic .swiper__productClassic .swiper-slide {
  position: relative;
  transition: 0.3s ease;
}

.productClassic .swiper__productClassic .swiper-slide.swiper-slide-active .prosseger {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: 80%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4039215686);
}

.productClassic .swiper__productClassic .swiper-slide.swiper-slide-active .prosseger-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  border: 4px solid #c76c3e;
  border-radius: 50%;
  border-right: 0;
  border-left: 0;
  border-top: 0;
  animation: rotate360 10s infinite linear;
}

.productClassic .swiper__productClassic .swiper-slide.swiper-slide-active .prosseger-circle span {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  display: inline-block;
  border: 1px solid #c76c3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 63%;
  animation: rotate360c 10s infinite linear 1s;
  background: #000;
}

.productClassic .swiper__productClassic .swiper-slide.swiper-slide-active figure {
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
  filter: blur(0) grayscale(0);
}

.productClassic .swiper__productClassic .swiper-slide.swiper-slide-active img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
  height: 100%;
}

.productClassic .swiper__productClassic .swiper-slide.swiper-slide-active+.swiper-slide figure {
  transform: translate(-50%, -50%) rotate(10deg) scale(0.8) !important;
}

.productClassic .swiper__productClassic .swiper-slide .prosseger {
  display: none;
}

@keyframes rotate360 {
  to {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

@keyframes rotate360c {
  to {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

.productClassic figure {
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  filter: blur(4px) grayscale(1);
  transition: 0.3s ease;
}

.productClassic img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
  height: 100%;
  transition: 0.3s ease;
}

.productClassic__bgText {
  font-size: 124.258px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: soft-light;
  width: 86%;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

@media screen and (max-width: 1199px) {
  .productClassic__bgText {
    width: 65%;
  }
}

@media screen and (max-width: 575px) {
  .productClassic__bgText {
    width: 90%;
    text-align: center;
    font-size: 60px;
  }
}

.productClassic__down {
  min-height: 30px;
  position: relative;
  margin-top: -130px;
  background: linear-gradient(90deg, rgba(16, 19, 49, 0.09) 0%, #101331 24.51%, rgba(16, 19, 49, 0) 50.01%, #101331 76.01%, rgba(16, 19, 49, 0) 100%);
}

@media screen and (max-width: 991px) {
  .productClassic__down {
    margin-top: -50px;
  }
}

.productClassic__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.productClassic__footer--right {
  font-size: 18.582px;
  color: rgb(211, 99, 58);
  line-height: 2.955;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .productClassic__footer--right {
    font-size: 15px;
  }
}

.productClassic__footer--left {
  font-size: 18.582px;
  color: rgb(211, 99, 58);
  line-height: 2.955;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .productClassic__footer--left {
    font-size: 15px;
  }
}

.productClassic__titleLogo {
  text-align: center;
  margin-bottom: -274px;
  margin-top: 245px;
  visibility: hidden;
}

.productClassicRed {
  min-height: 100vh;
  background: url(../image/bgClasicProducts.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 100px;
  margin-top: -150px;
}

@media screen and (max-width: 991px) {
  .productClassicRed {
    padding-bottom: 10px;
    margin-bottom: 10px;
    min-height: auto;
    margin-top: -150px;
  }
}

.productClassicRed__slider {
  height: 100vh;
}

@media screen and (max-width: 991px) {
  .productClassicRed__slider {
    height: 66vh;
  }
}

.productClassicRed .swiper__productClassicRed {
  transform: translateY(20%);
  overflow-x: visible;
  overflow-y: visible;
  position: relative;
  height: 100%;
}

.productClassicRed .swiper__productClassicRed .swiper-slide {
  position: relative;
  transition: 0.3s ease;
}

.productClassicRed .swiper__productClassicRed .swiper-slide.swiper-slide-active .prosseger {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: 80%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4039215686);
}

.productClassicRed .swiper__productClassicRed .swiper-slide.swiper-slide-active .prosseger-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  border: 4px solid #c76c3e;
  border-radius: 50%;
  border-right: 0;
  border-left: 0;
  border-top: 0;
  animation: rotate360 10s infinite linear;
}

.productClassicRed .swiper__productClassicRed .swiper-slide.swiper-slide-active .prosseger-circle span {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  display: inline-block;
  border: 1px solid #c76c3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 63%;
  animation: rotate360c 10s infinite linear 1s;
  background: #000;
}

.productClassicRed .swiper__productClassicRed .swiper-slide.swiper-slide-active figure {
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
  filter: blur(0) grayscale(0);
}

.productClassicRed .swiper__productClassicRed .swiper-slide.swiper-slide-active img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
  height: 100%;
}

.productClassicRed .swiper__productClassicRed .swiper-slide.swiper-slide-active+.swiper-slide figure {
  transform: translate(-50%, -50%) rotate(10deg) scale(0.8) !important;
}

.productClassicRed .swiper__productClassicRed .swiper-slide .prosseger {
  display: none;
}

@keyframes rotate360 {
  to {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

@keyframes rotate360c {
  to {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

.productClassicRed figure {
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  filter: blur(4px) grayscale(1);
  transition: 0.3s ease;
}

.productClassicRed img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
  height: 100%;
  transition: 0.3s ease;
}

.productClassicRed__bgText {
  font-size: 124.258px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: soft-light;
  width: 50%;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

@media screen and (max-width: 1199px) {
  .productClassicRed__bgText {
    width: 65%;
  }
}

@media screen and (max-width: 575px) {
  .productClassicRed__bgText {
    width: 90%;
    text-align: center;
    font-size: 60px;
  }
}

.productClassicRed__down {
  min-height: 30px;
  background: linear-gradient(90deg, rgba(16, 19, 49, 0.09) 0%, #101331 24.51%, rgba(16, 19, 49, 0) 50.01%, #101331 76.01%, rgba(16, 19, 49, 0) 100%);
}

@media screen and (max-width: 575px) {
  .productClassicRed__down {
    transform: translateY(-40px);
  }
}

.productClassicRed__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.productClassicRed__footer--right {
  font-size: 18.582px;
  color: rgb(134, 64, 38);
  line-height: 2.955;
}

.productClassicRed__footer--left {
  font-size: 18.582px;
  color: rgb(134, 64, 38);
  line-height: 2.955;
}

.productClassicBlack {
  min-height: 100vh;
  background: url(../image/bgClasicProducts.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 100px;
}

@media screen and (max-width: 991px) {
  .productClassicBlack {
    padding-bottom: 10px;
    margin-bottom: 10px;
    min-height: auto;
    margin-top: -150px;
  }
}

.productClassicBlack__slider {
  height: 100vh;
}

@media screen and (max-width: 991px) {
  .productClassicBlack__slider {
    height: 66vh;
  }
}

.productClassicBlack .swiper__productClassicBlack {
  transform: translateY(20%);
  overflow-x: visible;
  overflow-y: visible;
  position: relative;
  height: 100%;
}

.productClassicBlack .swiper__productClassicBlack .swiper-slide {
  position: relative;
  transition: 0.3s ease;
}

.productClassicBlack .swiper__productClassicBlack .swiper-slide.swiper-slide-active .prosseger {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  width: 80%;
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4039215686);
}

.productClassicBlack .swiper__productClassicBlack .swiper-slide.swiper-slide-active .prosseger-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0%;
  top: 0%;
  border: 4px solid #c76c3e;
  border-radius: 50%;
  border-right: 0;
  border-left: 0;
  border-top: 0;
  animation: rotate360 10s infinite linear;
}

.productClassicBlack .swiper__productClassicBlack .swiper-slide.swiper-slide-active .prosseger-circle span {
  width: 20px;
  height: 20px;
  border-radius: 100px;
  display: inline-block;
  border: 1px solid #c76c3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 63%;
  animation: rotate360c 10s infinite linear 1s;
  background: #000;
}

.productClassicBlack .swiper__productClassicBlack .swiper-slide.swiper-slide-active figure {
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1) !important;
  filter: blur(0) grayscale(0);
}

.productClassicBlack .swiper__productClassicBlack .swiper-slide.swiper-slide-active img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
  height: 100%;
}

.productClassicBlack .swiper__productClassicBlack .swiper-slide.swiper-slide-active+.swiper-slide figure {
  transform: translate(-50%, -50%) rotate(10deg) scale(0.8) !important;
}

.productClassicBlack .swiper__productClassicBlack .swiper-slide .prosseger {
  display: none;
}

@keyframes rotate360 {
  to {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

@keyframes rotate360c {
  to {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}

.productClassicBlack figure {
  height: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  filter: blur(4px) grayscale(1);
  transition: 0.3s ease;
}

.productClassicBlack img {
  -o-object-fit: contain !important;
  object-fit: contain !important;
  height: 100%;
  transition: 0.3s ease;
}

.productClassicBlack__bgText {
  font-size: 124.258px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  mix-blend-mode: soft-light;
  width: 50%;
  text-align: left;
  text-transform: uppercase;
  pointer-events: none;
}

@media screen and (max-width: 1199px) {
  .productClassicBlack__bgText {
    width: 65%;
  }
}

@media screen and (max-width: 575px) {
  .productClassicBlack__bgText {
    width: 90%;
    text-align: center;
    font-size: 60px;
  }
}

.productClassicBlack__down {
  min-height: 30px;
  background: linear-gradient(90deg, rgba(16, 19, 49, 0.09) 0%, #101331 24.51%, rgba(16, 19, 49, 0) 50.01%, #101331 76.01%, rgba(16, 19, 49, 0) 100%);
}

.productClassicBlack__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.productClassicBlack__footer--right {
  font-size: 18.582px;
  color: rgb(134, 64, 38);
  line-height: 2.955;
}

.productClassicBlack__footer--left {
  font-size: 18.582px;
  color: rgb(134, 64, 38);
  line-height: 2.955;
}

.autoplay-progress {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  width: 60%;
  height: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transform: translate(-50%, -50%);
  color: var(--swiper-theme-color);
  font-size: 50px;
}

.autoplay-progress::before {
  position: absolute;
  content: "";
  border: 1px solid red;
  width: 363px;
  height: 363px;
  border-radius: 1000px;
}

.autoplay-progress #svg1 {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 0;
  width: 100%;
  height: 100%;
  stroke-width: 1px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.autoplay-progress svg.svg2 {
  position: absolute;
}

.womanText {
  color: #fff;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .womanText {
    height: auto;
    margin-bottom: 50px;
  }
}

.womanText .container {
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .womanText .container {
    height: auto;
  }
}

.womanText .container .row {
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .womanText .container .row {
    height: auto;
  }
}

.womanText__title {
  font-size: 70px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .womanText__title {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

.womanText__text {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 25px;
}

.womanText__btnMore {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  display: inline-block;
}

.womanText__btnMore:hover {
  border-color: #fff;
  color: #fff;
  background: #000;
}

.womanText__img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  transform: scaleX(-1);
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 1199px) {
  .womanText__img {
    width: 50%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .womanText__img {
    position: relative;
    height: auto;
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 575px) {
  .womanText__img {
    width: 100%;
    margin-bottom: 20px;
  }
}

.manSection {
  color: #fff;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .manSection {
    height: auto;
    margin-bottom: 50px;
  }
}

.manSection .container {
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .manSection .container {
    height: auto;
  }
}

.manSection .container .row {
  height: 100vh;
}

@media screen and (max-width: 767px) {
  .manSection .container .row {
    height: auto;
  }
}

.manSection__title {
  font-size: 70px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .manSection__title {
    font-size: 35px;
    margin-bottom: 15px;
  }
}

.manSection__text {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 25px;
}

.manSection__btnMore {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  display: inline-block;
}

.manSection__btnMore:hover {
  border-color: #fff;
  color: #fff;
  background: #000;
}

.manSection__img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
  transform: scaleX(-1);
}

@media screen and (max-width: 1199px) {
  .manSection__img {
    width: 50%;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media screen and (max-width: 767px) {
  .manSection__img {
    position: relative;
    height: auto;
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 575px) {
  .manSection__img {
    width: 100%;
  }
}

footer {
  padding-bottom: 50px;
}

footer .container {
  border-top: 1px solid #808080;
  padding-top: 70px;
}

.footer-wrapper {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 575px) {
  .footer-wrapper {
    gap: 2rem;
  }
}

.footer-logo {
  text-align: center;
  width: 150px;
}

@media screen and (max-width: 575px) {
  .footer-logo {
    width: 50%;
  }
}

.footer-logo a {
  display: block;
  text-align: right;
}

.footer-logo img {
  transform: translateY(10px);
}

.footer-number {
  margin-bottom: 15px;
}

.footer-number a {
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: 0.3s ease;
}

.footer-number a i {
  font-size: 22px;
  color: #c76c3e;
}

.footer-number a span {
  display: inline-block;
  margin-left: 5px;
  direction: ltr;
  text-align: left;
}

.footer-number a:hover {
  color: #be2106;
}

.footer-email a {
  display: flex;
  align-items: center;
  gap: 9px;
  transition: 0.3s ease;
}

.footer-email a i {
  font-size: 22px;
  color: #c76c3e;
}

.footer-email a span {
  margin-left: 5px;
}

.footer-email a:hover {
  color: #be2106;
}

.footer-socialMedia--title {
  margin-bottom: 15px;
}

.footer-socialMedia--list {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-socialMedia--item {
  transition: 0.3s ease;
}

.footer-socialMedia--item:hover {
  transform: scale(1.2);
}

.footer-socialMedia--item i {
  font-size: 18px;
  color: #c76c3e;
}

.footer-wrMenu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

@media screen and (max-width: 575px) {
  .footer-wrMenu {
    width: 100%;
  }
}

.footer-menu--title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.footer-menu ul li {
  color: #d8d8d8;
  margin-bottom: 5px;
}

.footer-menu ul li a {
  transition: 0.3s ease;
}

.footer-menu ul li a:hover {
  color: #be2106;
}

.footer-aboutUS {
  width: 150px;
}

@media screen and (max-width: 991px) {
  .footer-aboutUS {
    width: 48%;
  }
}

@media screen and (max-width: 575px) {
  .footer-aboutUS {
    width: 100%;
  }
}

.footer-aboutUS--title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.footer-aboutUS--text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 991px) {
  .footer-wrEmailPhone {
    width: 49%;
  }
}

@media screen and (max-width: 575px) {
  .footer-wrEmailPhone {
    width: 100%;
  }
}

.modal-backdrop {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.3882352941);
}

.modal-backdrop.show {
  opacity: 1;
}

.z-product-btn {
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 0px 34px 18px rgba(255, 255, 255, 0.14);
  max-width: 423px;
  display: block;
  font-size: 25px;
  color: rgb(255, 255, 255);
  line-height: 1.167;
  padding: 15px 10px;
  width: 100%;
  transition: 0.3s ease;
  margin-top: 70px;
  text-align: center;
  max-width: 100%;
  margin-bottom: 50px;
}

.z-product-btn:hover {
  box-shadow: 0px 0px 15px 9px rgba(255, 255, 255, 0.14);
  transform: translateY(5px);
  color: #fff;
}

#searchModal .modal-body label {
  width: 100%;
}

#searchModal .modal-body input {
  width: 100%;
}

.shine-with-img {
  width: 100px !important;
  margin-left: auto;
  margin-right: auto;
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

svg.cuIcon {
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  width: 24px;
  height: 24px;
  transition: 0.2s all ease-in-out;
  fill: #fff;
}

.z-product {
  padding-top: 136px;
  padding-bottom: 108px;
}

@media screen and (max-width: 991px) {
  .z-product {
    padding-bottom: 40px;
  }
}

.z-product ul {
  list-style: disc;
  position: relative;
  top: 10px;
}

.z-product .col-lg-8 {
  padding-left: 80px;
}

@media screen and (max-width: 1199px) {
  .z-product .col-lg-8 {
    padding-left: 25px;
  }
}

@media screen and (max-width: 991px) {
  .z-product .col-lg-8 {
    padding-left: 10px;
  }
}

.z-product-wrImg {
  position: relative;
}

.z-product-wrImg::before {
  position: absolute;
  left: 30px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  content: "";
}

@media screen and (max-width: 991px) {
  .z-product-wrImg::before {
    display: none;
  }
}

.z-product-img {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .z-product-img img {
    height: 50vh;
    margin-bottom: 30px;
  }
}

.z-product-title {
  font-size: 50px;
  line-height: 87px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .z-product-title {
    font-size: 36px;
    line-height: 45px;
    margin-bottom: 10px;
  }
}

.z-product-SubTitle {
  font-size: 35px;
  line-height: 45px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 70px;
}

@media screen and (max-width: 991px) {
  .z-product-SubTitle {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 10px;
  }
}

.z-product-text {
  font-size: 25px;
  line-height: 46px;
  color: #fff;
  margin-bottom: 24px;
}

@media screen and (max-width: 991px) {
  .z-product-text {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 991px) {
  .z-product-text {
    font-size: 14px;
    line-height: 20px;
  }
}

.z-product-details {
  display: flex;
  padding: 34px 0;
  border: 2px solid #fff;
  border-left: 0;
  border-right: 0;
}

@media screen and (max-width: 575px) {
  .z-product-details {
    flex-wrap: wrap;
  }
}

.z-product-details__item {
  width: 50%;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 575px) {
  .z-product-details__item {
    width: 100%;
  }
}



.z-product-details__item:not(:first-child)::before {
  position: absolute;
  content: "";
  width: 1.5px;
  height: 170px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}

@media screen and (max-width: 575px) {
  .z-product-details__item:not(:last-child) {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 575px) {
  .z-product-details__item:not(:last-child)::before {
    width: 100%;
    height: 1px;
    top: calc(100% + 15px);
  }
}

/* @media screen and (max-width: 575px) {
  .z-product-details__item:not(:last-child)::before {
    width: 100%;
    height: 1.5px;
    top: calc(100% + 15px);
  }
} */

.z-product-details__title {
  font-size: 35px;
  line-height: 42px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.z-product-details__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  list-style: none !important;
  min-height: 42px;
}

.z-product-details__list li {
  width: 18px;
  height: 18px;
  border-radius: 100px;
  border: 1px solid #fff;
}

.z-product-details__list li.active {
  background: #fff;
}

.z-product-details__text {
  font-size: 30px;
  line-height: 42px;
  color: #fff;
  font-weight: 300;
}

.z-product-details__text ul {
  list-style: none;
  display: flex;
  align-items: flex-endz-blockBox;
  gap: 20px;
  justify-content: center;
  flex-direction: row-reverse;
}

.z-product-details__text ul li {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.z-product-details__text ul li:nth-child(1) {
  width: 13.07px;
  height: 25px;
}

.z-product-details__text ul li:nth-child(2) {
  width: 27.33px;
  height: 50px;
}

.z-product-details__text ul li:nth-child(3) {
  width: 40px;
  height: 73px;
}

.z-product-details__text ul li:nth-child(4) {
  width: 54px;
  height: 100px;
}

.z-product-details__text ul li span {
  font-size: 13px;
  display: block;
  text-align: center;
  padding-right: 13px;
}

.z-product-details__text ul li.Deactivate {
  display: none;
}

.z-product-details__text ul li img {
  filter: invert(1);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.z-product-details__text ul li svg.icon-spray-75 {
  width: 13.07px;
  height: 25px;
}

.z-product-details__text ul li svg.icon-spray-150 {
  width: 27.33px;
  height: 50px;
}

.z-product-details__text ul li svg.icon-spray-250 {
  width: 40px;
  height: 73px;
}

.z-product-details__text ul li svg.icon-spray-500 {
  width: 54px;
  height: 100px;
}

.z-product-details__text img {
  width: 200px;
  display: inline-block;
  margin-top: -20px;
}

@media screen and (max-width: 991px) {
  .z-product-details__text img {
    margin-top: 0;
  }
}

.z-product-full-content {
  margin-bottom: 24px;
  margin-bottom: 24px;
}

.z-product-full-content+p {
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 28px;
}

.z-product-full-content+p+ul {
  list-style: disc;
  padding-right: 33px;
  margin-bottom: 30px;
}

.z-product-full-content+p+ul li {
  margin-bottom: 7px;
}

.z-product-full-content+p>a .z-product-btn {
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 0px 34px 18px rgba(255, 255, 255, 0.14);
  max-width: 423px;
  display: block;
  font-size: 25px;
  color: rgb(255, 255, 255);
  line-height: 1.167;
  padding: 15px 10px;
  width: 100%;
  transition: 0.3s ease;
  margin-top: 70px;
  text-align: center;
  max-width: 100%;
  margin-bottom: 40px;
}

.z-product-full-content+p>a .z-product-btn:hover {
  box-shadow: 0px 0px 15px 9px rgba(255, 255, 255, 0.14);
  transform: translateY(5px);
  color: #fff;
}

.z-product-full-content p {
  font-size: 14px;
  margin-bottom: 15px;
}

.z-product-full-content p>a {
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 0px 34px 18px rgba(255, 255, 255, 0.14);
  max-width: 423px;
  display: block;
  font-size: 25px;
  color: rgb(255, 255, 255);
  line-height: 1.167;
  padding: 15px 10px;
  width: 100%;
  transition: 0.3s ease;
  margin-top: 70px;
  text-align: center;
}

.z-product-full-content p>a:hover {
  box-shadow: 0px 0px 15px 9px rgba(255, 255, 255, 0.14);
  transform: translateY(5px);
  color: #fff;
}

.z-product-full-content a {
  font-size: 14px;
}

.z-product-full-content ul {
  list-style: disc;
  padding-left: 15px;
}

.z-product-full-content ul li {
  margin-bottom: 10px;
}

.z-productSlide {
  margin-bottom: 200px;
}

@media screen and (max-width: 991px) {
  .z-productSlide {
    margin-bottom: 80px;
  }
}

.z-productSlide__swiper {
  padding-top: 200px;
  padding-bottom: 20px;
  direction: rtl;
}

.z-productSlide .swiper-slide {
  height: auto;
}

.z-productSlide__box {
  position: relative;
  height: 100%;
  max-height: 770px;
}

.z-productSlide__box:hover::after {
  box-shadow: inset 0 -10px 100px rgb(236, 86, 86), inset 0 -10px 100px rgb(236, 86, 86), inset 0 -10px 100px rgb(236, 86, 86), inset 0 -10px 100px rgb(236, 86, 86), inset 0 -10px 100px rgb(236, 86, 86);
}

.z-productSlide__box::before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  bottom: 0;
  left: 0;
  -o-border-image: linear-gradient(269.48deg, #ffffff -1.63%, rgba(0, 0, 0, 0) 39.31%, rgba(0, 0, 0, 0) 60.09%, #ffffff 99.44%) 1;
  border-image: linear-gradient(269.48deg, #ffffff -1.63%, rgba(0, 0, 0, 0) 39.31%, rgba(0, 0, 0, 0) 60.09%, #ffffff 99.44%) 1;
  border-width: 2px;
  border-style: solid;
  z-index: 3;
  pointer-events: none;
}

.z-productSlide__box::after {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 1/1;
  bottom: 0;
  left: 0;
  background: #ffffff;
  opacity: 0.13;
  z-index: -1;
  pointer-events: none;
  transition: 0.3s ease;
}

.z-productSlide__img {
  text-align: center;
  transition: transform 0.3s ease;
}

.z-productSlide__img:hover {
  transform: translateY(7%);
}

.z-productSlide__img img {
  transform: translateY(-7%);
  z-index: 3;
  position: relative;
}

.z-blockBox {
  padding-top: 100px;
  direction: ltr;
}

@media screen and (max-width: 991px) {
  .z-blockBox {
    padding-top: 20px;
    margin-bottom: 30px;
  }
}

.z-blockBox__title {
  font-size: 61px;
  color: #be2106;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: right;
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .z-blockBox__title {
    font-size: 31px;
  }
}

.z-blockBox__text {
  font-size: 25.56px;
  color: rgb(157, 157, 157);
  text-transform: uppercase;
  line-height: 1.429;
  text-align: right;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .z-blockBox__text {
    font-size: 16px;
    text-align: right;
  }
}

.z-blockBox__img {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.z-blockBox__img:hover img {
  transform: scale(1.1);
  filter: grayscale(0) blur(0);
}

.z-blockBox__img img {
  filter: grayscale(1) blur(4px);
  transition: 0.3s ease;
}

.z-blockBox__textImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 35.56px;
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  line-height: 1.429;
  text-align: justify;
  font-weight: 700;
  width: 100%;
  text-align: center;
  pointer-events: none;
}

.z-blockBox__wrVideo {
  position: relative;
}

@media screen and (max-width: 991px) {
  .z-blockBox__wrVideo {
    height: 400px !important;
  }
}

.z-blockBox__wrVideo:hover #ToggleVido {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.z-blockBox video {
  width: 100% !important;
  height: auto !important;
}

@media screen and (max-width: 991px) {
  .z-blockBox video {
    max-height: 100% !important;
    height: 100% !important;
  }
}

.z-blockBox #ToggleVido {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../image/play-button-round-icon.svg);
  background-repeat: no-repeat;
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  background-size: contain;
  border: 1px solid #fff;
  width: 70px;
  height: 70px;
  border-radius: 100px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}

.z-blockBox #ToggleVido.pause {
  background: url(../image/pause-button-round-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}

.mapContact {
  height: 600px;
  position: relative;
  margin-top: 150px;
}

.mapContact iframe {
  width: 100%;
  height: 100%;
}

.mapContact::before {
  position: absolute;
  content: "";
  inset: 0;
  background: #540000;
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none;
}

.mapContact:hover::before {
  opacity: 0;
}

@media screen and (max-width: 991px) {
  .z-contact {
    margin-top: 40px;
  }
}

.z-contact__title {
  font-size: 101.6px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  text-transform: uppercase;
  line-height: 0.175;
  text-align: right;
  margin-bottom: 174px;
  margin-top: 150px;
}

@media screen and (max-width: 991px) {
  .z-contact__title {
    font-size: 34.6px;
    line-height: 1.2;
    margin-bottom: 14px;
    margin-top: 15px;
  }
}

.z-contact__item {
  text-transform: uppercase;
  position: relative;
  padding-right: 32px;
  color: #8d8d8d;
  font-size: 23px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .z-contact__item {
    font-size: 14px;
    padding-left: 20px;
  }
}

.z-contact__item::before {
  position: absolute;
  content: "";
  right: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  background: #ff0000;
  border-radius: 100px;
}

@media screen and (max-width: 991px) {
  .z-contact__item::before {
    width: 8px;
    height: 8px;
  }
}

.z-contact__wrForm {
  padding-left: 100px;
}

@media screen and (max-width: 1399px) {
  .z-contact__wrForm {
    padding-left: 50px;
  }
}

@media screen and (max-width: 1199px) {
  .z-contact__wrForm {
    padding-left: 0;
  }
}

.z-contact__wrInput {
  position: relative;
  margin-bottom: 50px;
}

.z-contact__wrInput.focus label {
  font-size: 12px;
  top: -20px;
}

.z-contact__wrInput label {
  position: absolute;
  top: -5px;
  right: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.z-contact__wrInput input {
  border-bottom: 1px solid #fff;
  width: 100%;
  color: #ffffff;
  padding-bottom: 10px;
}

.z-contact__wrInput input:focus+label {
  font-size: 12px;
  top: -20px;
}

.z-contact__wrInput textarea {
  border-bottom: 1px solid #fff;
  width: 100%;
  padding-top: 5px;
  height: 150px;
  color: #ffffff;
}

.z-contact__wrInput textarea:focus+label {
  font-size: 12px;
  top: -20px;
}

.z-contact__wrBTn {
  text-align: right;
}

.z-contact__btn {
  background: transparent;
  border: 1px solid #bd713a;
  padding: 18px 21px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  transition: 0.3s ease;
  margin-top: 31px;
}

@media screen and (max-width: 767px) {
  .z-contact__btn {
    width: 100%;
  }
}

.z-contact__btn:hover {
  background: #bd713a;
}

.z-contact__socialmedia {
  margin-bottom: 25px;
}

.z-contact__socialmedia ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.z-contact__socialmedia ul li a:hover img {
  transform: translateY(-5px);
}

.z-contact__socialmedia ul li a img {
  width: 60px;
  transition: 0.3s ease;
}

textarea {
  background: transparent;
}

.BlogSlider .swiper-slide {
  filter: blur(40px);
  opacity: 0;
}

.BlogSlider .swiper-slide-active {
  filter: blur(0);
  opacity: 1;
}

.BlogSlider .swiper-button-prev {
  width: 15px;
}

.BlogSlider .swiper-button-prev::after {
  display: none;
}

.BlogSlider .swiper-button-next {
  width: 15px;
}

.BlogSlider .swiper-button-next::after {
  display: none;
}

.singleHeader__img {
  text-align: center;
}

.singleContent {
  max-width: 1150px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  margin-bottom: 100px;
  padding-left: 15px;
  padding-right: 15px;
}

.singleContent p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .singleContent p {
    font-size: 14px;
    line-height: 28px;
  }
}

.singleContent h2 {
  color: #be2106;
  font-size: 46px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-top: 45px;
  line-height: 61px;
}

@media screen and (max-width: 991px) {
  .singleContent h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
    margin-top: 5px;
  }
}

.singleContent div {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .singleContent div {
    font-size: 14px;
    line-height: 26px;
  }
}

.filterTagBolg {
  margin-top: 100px;
  margin-bottom: 100px;
}

.filterTagBolg #buttons {
  display: flex;
  align-items: center;
  gap: 30px;
  position: sticky;
  top: 0;
  row-gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .filterTagBolg #buttons {
    -moz-column-gap: 10px;
    column-gap: 10px;
    width: 100%;
    background: rgba(0, 0, 0, 0.4666666667);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding-bottom: 10px;
    padding-top: 10px;
  }
}

.filterTagBolg #buttons button {
  font-size: 35.56px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  padding: 30px 30px;
  display: inline-block;
  background: #000000;
  box-shadow: 0px 10px 20px 0px rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .filterTagBolg #buttons button {
    font-size: 15.56px;
    padding: 15px 30px;
  }
}

.filterTagBolg #buttons button:hover {
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 15px 24px 0px rgba(125, 0, 0, 0.4);
}

.filterTagBolg #gallery {
  display: grid;
  row-gap: 15px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(31%, 1fr));
  grid-auto-rows: 20px;
}

@media screen and (max-width: 1199px) {
  .filterTagBolg #gallery {
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
  }
}

.filterTagBolg__wrBtn {
  text-align: center;
}

.filterTagBolg__loadMore {
  font-size: 35.56px;
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  padding: 30px 30px;
  display: inline-block;
  background: #000000;
  margin-top: 30px;
  box-shadow: 0px 10px 20px 0px rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}

@media screen and (max-width: 991px) {
  .filterTagBolg__loadMore {
    font-size: 15.56px;
    padding: 15px 30px;
  }
}

.filterTagBolg__loadMore:hover {
  background-color: rgb(0, 0, 0);
  box-shadow: 0px 15px 24px 0px rgba(125, 0, 0, 0.4);
}

/*# sourceMappingURL=style-fa.css.map */