* {
  box-sizing: border-box;

  margin: 0;

  padding: 0;
}

*::after {
  box-sizing: border-box;

  margin: 0;

  padding: 0;
}

*::before {
  box-sizing: border-box;

  margin: 0;

  padding: 0;
}

:root {
  /* --font-family-en: "El Messiri", sans-serif !important;
  --font-family-ar: "El Messiri", sans-serif !important;
  --active-font-family: var(--font-family-en); */
}

body {
  outline: none;
  visibility: visible;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;

  /* font-family: var(--active-font-family); */
  /* font-family: "El Messiri", sans-serif !important; */
}

.container {
  max-width: 1130px;
  width: 100%;
}

a {
  text-decoration: none;
}

a:focus {
  outline: 0;

  color: none;

  outline: none;

  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

button {
  color: inherit;

  display: inline-block;

  line-height: inherit;

  text-decoration: none;

  cursor: pointer;

  transition: all 0.3s linear;

  outline: 0;

  cursor: pointer;
}

button:focus {
  outline: 0 !important;

  box-shadow: none !important;
}

img {
  transition: all 0.3s linear;

  outline: 0;

  max-width: 100%;
}

img:focus {
  outline: 0;
}

input {
  transition: all 0.3s linear;

  outline: 0;
}

input:focus {
  outline: 0;
}

input::-webkit-input-placeholder {
  opacity: 1;

  font-size: 15px;
}

input:-moz-placeholder {
  opacity: 1;

  line-height: 28px;
}

input::-moz-placeholder {
  opacity: 1;

  color: #72657a;
}

input:-ms-input-placeholder {
  opacity: 1;

  font-weight: 400;
}

ul {
  padding: 0;

  list-style: none;

  margin: 0;
}

ol {
  padding: 0;

  list-style: none;

  margin: 0;
}

input[type="submit"] {
  cursor: pointer;
}

textarea::-webkit-input-placeholder {
  opacity: 1;

  font-size: 16px;
}

textarea:-moz-placeholder {
  opacity: 1;

  line-height: 19px;
}

textarea::-moz-placeholder {
  opacity: 1;

  color: #585858;
}

textarea:-ms-input-placeholder {
  opacity: 1;

  font-weight: 400;
}

label {
  display: block;

  line-height: 1;

  margin-bottom: 10px;

  font-weight: 400;

  text-transform: capitalize;
}

/* ============================================================== */

@-webkit-keyframes sticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.swiper {
  width: 100%;
  height: 100%;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
}
.mySwiper2 {
  height: auto;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px !important;
  overflow: hidden;
}
swiper-container {
  height: 100%;
}
.details_gal {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.main-product {
  height: 100%;
  background: #101010;
}
.my-thumbs {
  height: auto;
}
.my-thumbs swiper-slide {
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 4/3;
}
.my-thumbs .swiper-slide-visible img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.swiper-slide-thumb-active img {
  opacity: 1 !important;
}
.mySwiper2 .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-image: url("../images/lef.png");
  background-size: cover;
  cursor: pointer;
}
.mySwiper2 .swiper-button-prev::after {
  display: none;
}
.mySwiper2 .swiper-button-next {
  width: 50px;
  height: 50px;
  background-image: url("../images/rig.png");
  background-size: cover;
  cursor: pointer;
}
.mySwiper2 .swiper-button-next::after {
  display: none;
}
.mySwiper2 .swiper-button-prev {
  background-position: left center;
}
.mySwiper2 .swiper-button-next {
  background-position: right center;
}
.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  border-radius: 10px !important;
  overflow: hidden;
  cursor: pointer;
}
.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*animated btn*/
.btnn {
  display: inline-block;
  color: white;
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
  width: 100% !important;
}

.btnn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f62a78;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}

/* .btnn:nth-child(odd)::before{
  transform: translateX(-100%);
 } */
.btnn:hover::before {
  transform: translateX(0);
}
.btnn:hover > a {
  color: #fff !important;
}
.highlight {
  font-weight: bold;
}
.underline {
  font-weight: 700;
  text-decoration: underline;
}

.row_rev:nth-child(even) {
  flex-direction: row-reverse;
}

.row_rev:nth-child(odd) .cont_box h2 {
  /* background-color: #f62a78; */
  color: #000;
}

.row_rev:nth-child(even) .cont_box h2 {
  /* background-color: #662e91; */
  color: #000;
}

/* @keyframes rotateAnimation {
	from {transform: rotateY(45deg);}
	to {transform: rotateY(225deg);}
} */

.bg_primary {
  /* background-color: #662e91 !important; */
}
/*for select tag*/

select {
  height: 60px;
  border-radius: 30px;
  background-color: #ffffff;
  border: none;
  padding: 20px 27px;
  width: 100%;
  margin-bottom: 12px;
}

/*For font family management 12/11/2024*/

._heading {
  font-family: "El Messiri", sans-serif !important;
}
._subheading {
  font-family: "Tajawal", sans-serif !important;
}

._paragraph {
  font-family: "Tajawal", sans-serif !important;
}
