/* Import Inter font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap");
/* Root variables */
:root {
  --font-family: "Montserrat", sans-serif;
  --button-background: #e1251b;
  --text-color: #22282b;
  --p-color: #909da2;
  --counter-color: #e1251b;
  --form-field-color: #f3f5f687;
}

html[lang="ar"] .form-dropdown-icon-am,
body:lang(ar) .form-dropdown-icon-am {
  background-position: left 20px center;
  padding-left: 50px; /* create space for icon on left */
  padding-right: 25px;
}
.font_inter_am {
  font-family: "Montserrat", sans-serif !important;
}
.hompage-product-am {
}
.bg-blue-700 {
  background-color: #22282b !important;
}
.owl-stage {
  width: 100%;
  overflow: hidden;
  display: flex;
  gap: 40px;
}
.next-prev-icon-am div:hover i,
.logo-custom-arrow-container-am button:hover i {
  color: white;
}
.product-card-section-am .owl-nav {
  /* display: none; */
  width: 1160px;
  margin: 0px auto;
  margin-top: 40px;
}
.custom-dots-am {
  display: flex;
  gap: 8px;
  justify-content: center;
}
#custom-owl-dots-am .owl-dot.active {
  background-color: var(--button-background);
}
.owl-item {
  width: unset !important;
  margin: 0px !important;
}
#custom-owl-dots-am .owl-dot {
  width: 10px;
  background-color: var(--p-color);
  border: none;
  cursor: pointer;
  height: 10px;
  border-radius: 100px;
}
.custom-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.custom-dot.active {
  background-color: var(--counter-color); /* Active color */
}

.custom-dot:hover {
  background-color: var(--counter-color); /* Hover color */
}

/* Styles */
#header {
  transition: background-color 0.9s ease-in-out, color 0.9s ease-in-out,
    box-shadow 0.9s ease-in-out;
}

.nav-link,
.nav-link-blu {
  transition: color 0.9s ease-in-out;
}

#custom-logo,
#option-logo {
  transition: opacity 0.9s ease-in-out, visibility 0.9s ease-in-out;
}
/* Mobile Menu transition */
#mobile-menu {
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
}

#mobile-menu.show {
  transform: translateX(0);
}
body,
pre {
  font-family: var(--font-family) !important;
  margin: 0;
  padding: 0;
}
body:lang(ar),
body:lang(ar) pre {
  font-family: "Tajawal", "Amiri", sans-serif !important; /* Replace with your preferred Arabic fonts */
}
.font_inter_am {
  font-family: "Montserrat", sans-serif !important;
}
div {
  margin: 0px auto;
}
p {
  margin-bottom: 20px !important;
}
.privacy-policy-text-am p,
.contacus-address-text-am {
  margin-bottom: 0 !important;
}
#contacus-phone-text {
  margin-bottom: 40px !important;
}
nav li {
  list-style-type: none;
}
.dropdown-am {
  position: relative;
}
.dropdown-menu-am {
  position: absolute;
  background-color: white;
  color: black;
  right: 0;
  width: 150px;
  border-radius: 18px;
  display: none;
  transition: display 0.3s ease-in-out;
  z-index: 1;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  cursor: pointer;
}
.dropdown-am:hover .dropdown-menu-am {
  display: block;
}
.dropdown-am:focus .dropdown-menu-am {
  display: block;
}
.dropdown-menu-am li {
  padding: 8px 10px;
  text-align: center;
}
.dropdown-menu-am li:hover {
  background-color: var(--button-background);
  color: white;
}
.dropdown-indicator {
  margin-left: 5px;
}

/* languages style  */

/* Dropdown container */
.lang-drop-down-am {
  position: relative;
  display: inline-block;
}

.lang-drop-down-am select {
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 6px 10px;
  font-size: 16px;
  background-color: transparent;
  color: white;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='white' d='M2 0L0 2h4L2 0zM2 5L0 3h4L2 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 8px 10px;
}
.lang-drop-down-am.text-black select {
  color: black;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='black' d='M2 0L0 2h4L2 0zM2 5L0 3h4L2 5z'/%3E%3C/svg%3E");
}

.lang-drop-down-am select option {
  color: black; /* Options should stay readable */
  background-color: white;
}

.lang-drop-down-am-other {
  position: relative;
  display: inline-block;
}

.lang-drop-down-am-other select {
  appearance: none; /* Remove default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 6px 10px;
  font-size: 16px;
  background-color: transparent;
  color: black;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='black' d='M2 0L0 2h4L2 0zM2 5L0 3h4L2 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 8px 10px;
}

.lang-drop-down-am-other select option {
  color: white; /* Options should stay readable */
  background-color: black;
}

.home-page-hero-am,
.about-page-hero-am,
.partner-page-hero-am,
.out-team-page-hero-am {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(images/hero-bg.webp);
  background-size: cover;
  background-position: center;
}

.why-we-do-section-am {
  background: url(images/why_we_vector.svg);
  background-size: cover;
  background-position: -150px -16px;
  background-repeat: no-repeat;
}
.partner-background-image-am {
  background: url(images/partner_vector.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.registration-background-image-am {
  background: url(images/registration-bg.svg);
  background-size: contain;
  background-position: -35px;
  background-repeat: no-repeat;
}
.out-team-background-image-am {
  background: url(images/ourtram_vector.svg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}
.estore-background-image-am {
  background: url(images/ourtram_vector.svg);
  background-size: 165%;
  background-position: center;
  background-repeat: no-repeat;
}
.about-background-image-am {
  background: url(images/about-bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.our-values-section-am {
  background: url(images/our_value_vector.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.figur1-am {
  background: url(images/figure1.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.figur2-am {
  background: url(images/figure2.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.figur3-am {
  background: url(images/figure3.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.figur4-am {
  background: url(images/figure4.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.figur5-am {
  background: url(images/figure5.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.why-we-do-section-am .slider-wrapper {
  position: relative;
  overflow: hidden;
}
.why-we-do-section-am .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.why-we-do-section-am .slider-item img {
  width: 140px;
  height: 90px;
  display: block;
  object-fit: contain;
  margin: auto;
}
.why-we-do-section-am .slick-slide {
  padding: 20px 25px 20px 25px;
  border-radius: 5px;
  border: 1px solid #dee0e1;
}

/* single product page  */
.single-product-cat-name-am a {
  padding: 6px 12px;
  border: 1px solid;
  border-radius: 34px;
}
.singlepage-price-am ins {
  /* display: flex;
    gap: 24px;
    flex-direction: row-reverse;
    justify-content: flex-end; */
  text-decoration: none;
}
.singlepage-price-am del {
  font-size: 16px;
  color: var(--p-color);
}
.vertical_slider_ar .item_ar img {
  height: 108px;
  cursor: pointer;
}
.pr_image_vslider {
  overflow: hidden;
  height: 450px;
  text-align: -webkit-center;
}
.backgr-color-am {
  background-color: #f3f5f6;
}

#justify-content-am {
  justify-content: center;
}

/* introduction form styling */

.form-dropdown-icon-am {
  background-image: url(images/Upload-Buttons-Iconsss.svg);
  background-position: right 20px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}

.form-custom-checkbox-am {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #909da2;
  border-radius: 4px;
  background-color: #f3f5f6;
  position: relative;
  transition: background-color 0.3s, border-color 0.3s;
}

.form-custom-checkbox-am:checked {
  background-color: #eaeaea;
}

.form-custom-checkbox-am:checked::before {
  content: "✔";
  position: absolute;
  top: -15%;
  left: 10%;
  border-radius: 2px;
}

.form-custom-checkbox-am:hover {
  background-color: #d1d9db;
  border-color: #b0bec5;
}

.checkbox-label {
  cursor: pointer;
  user-select: none;
}

.yith-add-to-wishlist-button-block span {
  display: none;
  margin: 0;
}
.yith-add-to-wishlist-button-block svg {
  color: var(--text-color);
}

@media (min-width: 1023px) and (max-width: 1096px) {
  .why-we-do-text-am {
    max-width: 600px !important;
  }
}
@media (min-width: 768px) and (max-width: 1096px) {
  .why-we-do-text-am {
    /* margin-right: auto !important; */
  }
  .trusted-heading-am,
  .our-stats-heading-am,
  .our-stats-description-am {
    /* margin:0px auto !important; */
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .dropdown-menu-am {
    width: 200px;
    left: 0;
    /* transform: translateY(100%); */
  }
}
@media (max-width: 550px) {
  .owl-item {
    width: 270px !important;
  }
}

@media (max-width: 768px) {
  #justify-content-am {
    justify-content: space-between;
  }
  .dropdown-menu-am {
    /* position: static; */
  }
  .pr_image_vslider {
    width: 100%;
  }
  .pr_image_vslider .slick-slide {
    width: 100px !important;
  }
  .pr_image_vslider .owl-nav {
    display: none;
  }
  .vertical_slider_ar {
    height: 122px;
  }
  #pr_image_vslider .slick-track{
    display: flex;
  }
}
@media (max-width: 430px) {
  .max-376-w {
    width: 100% !important;
  }
  .counter-number-am {
    flex-wrap: wrap;
  }
  #search-box input[type="text"] {
    width: 200px;
  }
}
.withbulletpoints_wrapper_ar ul,
.withbulletpoints_wrapper_ar ol {
  list-style: disc;
  margin-left: 15px;
}
.certificate_cards_ar {
  padding: 15px;
  border-radius: 15px;
}
.certificate_cards_ar:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
.hostorty-text-am span {
  width: 100%;
  display: block;
  text-wrap: auto;
}
#subscribe-form input::placeholder {
  color: #22282B;
}

#googlemap_iframm iframe {
    margin-top: -65px !important;
}