@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

section {
  padding: 50px 0;
}

.row > * {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.card {
  border: 0;
}

.btn-primary {
  background: #60c58f;
  color: #FFF;
  transition: all 0.5s ease-in;
  border: 0;
}
.btn-primary:hover {
  background: #FFF;
  color: #1ac783;
}

.form-control:focus {
  box-shadow: 0 0 0 0.25rem #696F79;
}

.aurora-titles {
  color: #1ac783;
}

.multiproduct-image {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0;
}
.multiproduct-image .thumbnail {
  height: 150px;
  width: 200px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #696F79;
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #696F79;
  background-color: #1ac783;
}

.commission {
  padding-top: 10px;
}

nav {
  background: #FFF;
}
nav .navbar-brand img {
  height: 60px;
  width: 60px;
  display: block;
  margin: auto;
}
nav .navbar-nav {
  flex-direction: row;
  padding: 20px 0;
}
nav .navbar-nav .dropdown-menu {
  position: absolute;
  left: 0;
}
nav .navbar-nav li a {
  color: #696F79;
}
nav .navbar-nav li a:hover {
  color: #1ac783;
}
nav .navbar-nav li i {
  font-size: 22px;
}
nav .nav-item {
  padding: 0 10px;
}
nav .nice-select {
  border: 0;
}
nav .nice-select::before {
  content: url("../images/icons/globe-solid.svg");
  padding: 0 5px;
}
nav .nice-select:after {
  content: none;
}
.navbar-expand-lg .navbar-nav .nav-link{
    padding-right: 0;
    padding-left: 0;
}
.navbar-nav .nav-link.active {
  color: #1ac783;
}
.navbar-toggler {
  width: 20px;
  height: 20px;
  transition: 0.5s ease-in-out;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: none;
  box-shadow: none;
  border: 0;
  position: relative;
}

.navbar-toggler span {
  margin: 0;
  padding: 0;
}

.toggler-icon {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #1ac783;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.middle-bar {
  margin-top: 0px;
}

/* State when the navbar is collapsed */
.navbar-toggler.collapsed .top-bar {
  position: absolute;
  top: 0px;
  transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  position: absolute;
  top: 10px;
  width: 10px;
  filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
  position: absolute;
  top: 20px;
  transform: rotate(0deg);
}

/* when navigation is clicked */
.navbar-toggler .top-bar {
  top: inherit;
  transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
  opacity: 0;
  top: inherit;
  filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
  top: inherit;
  transform: rotate(-135deg);
}

.dropdown:hover > .dropdown-menu {
  display: block;
  transition: all 0.5s ease-in-out;
  margin-top: 0;
  border-color: #1ac783;
  padding: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.dropdown-menu li:hover .dropdown-item {
  background: #1ac783;
  color: #FFF;
  transition: all 0.5s ease-in;
}

.dropdown-menu .dropdown-item {
  padding: 7px 10px;
}

.mobile-nav {
  display: none;
}

@media (max-width: 992px) {
  nav.main-nav {
    display: none;
  }
  nav.mobile-nav {
    display: block;
  }
  nav .navbar-nav .nav-item .nav-link{
    font-size:1rem;
}
}
.footer {
  color: #696F79;
  background: #169361;
}
.footer .subscripe {
  padding-bottom: 3rem;
}
.footer .subscripe .brand img {
  height: 100px;
  width: 100px;
  display: block;
}
.footer .subscripe .brand p {
  font-size: 21px;
  padding: 10px 0;
  font-weight: bold;
}
.footer .btn-social {
  background: #3b443f;
}
.footer .btn-social a {
  color: #FFF;
}
.footer .btn-social a:hover {
  background: gray;
  color: #FFF;
}
.footer .btn-social:hover {
  background: #a5f6cb;
}
.footer a {
  color: #FFF;
  text-decoration: none;
}
.footer a:hover {
  transition: all 0.5s ease-in-out;
  color: #696F79;
}
.footer .btn-link {
  padding: 5px 0;
}

.copyrights a {
  color: #1ac783;
}

.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #f4f3ee;
  z-index: 9;
}

.loader {
  position: absolute;
  width: 64px;
  height: 64px;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  background-color: rgba(0, 0, 0, 0.5);
  transform: rotate(45deg);
  overflow: hidden;
}

.loader:after {
  content: "";
  position: absolute;
  inset: 8px;
  margin: auto;
  background: #222b32;
}

.loader:before {
  content: "";
  position: absolute;
  inset: -15px;
  margin: auto;
  background: #60c58f;
  animation: diamondLoader 2s linear infinite;
}

@keyframes diamondLoader {
  0%, 10% {
    transform: translate(-64px, -64px) rotate(-45deg);
  }
  90%, 100% {
    transform: translate(0px, 0px) rotate(-45deg);
  }
}
.catalogue .card .card-body {
  position: absolute;
  width: 100%;
  height: 100%;
  color: #FFF;
  display: none;
}
.catalogue .card:hover .card-img-top {
  transition: all 0.5s ease-in-out;
  opacity: 0.7;
}
/*.catalogue .card:hover .card-body {*/
/*  transition: all 0.5s ease-in-out;*/
/*  display: flex;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  transition: all 1s ease-in-out;*/
/*  font-weight: 900;*/
/*}*/

.slider {
  width: 100%;
  height: 700px;
}
.slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider .swiper-slide:nth-of-type(odd) {
  background: #1ac783;
}
.slider .swiper-slide:nth-of-type(even) {
  background: #169361;
}
.slider .swiper-slide .slider-content {
  position: absolute;
  color: #FFF;
  width:70%;
}
.slider .swiper-slide .search-bar {
  width: 350px;
  margin: auto;
}
.slider .swiper-button-next {
  right: -15px;
}
.slider .swiper-button-next::after {
  font-size: 20px;
}
.slider .swiper-button-prev {
  left: -15px;
}
.slider .swiper-button-prev::after {
  font-size: 20px;
}
.slider .swiper-button-next, .slider .swiper-button-prev {
  color: #1ac783;
  padding: 25px;
  background: #a5f6cb;
  border-radius: 50%;
}
.slider .swiper-pagination-bullet {
  background: #696F79;
}

@media (max-width: 576px) {
  .slider {
    width: 100%;
    height: 700px;
  }
  .slider .swiper-slide .search-bar {
    width: 250px;
  }
}
.why-us .box {
  text-align: center;
  margin-top: 45px;
  background-color: #1ac783;
  padding: 45px 50px;
  border-radius: 5px;
  color: #ffffff;
}
.why-us .box .img-box {
  margin-bottom: 10px;
}
.why-us .box .img-box svg {
  width: 55px;
  height: auto;
  fill: #ffffff;
}

.products .wishlist {
  color: #1ac783;
}
.products .card {
  transition: all 0.5s ease-in-out;
}
.products .card:hover {
  background: #1ac783;
}
.products .card .first .img-link {
  display: block;
  height: 100%;
  width: 100%;
}
.products .card .first .img-link img {
  height: 288px;
  width: 288px;
  object-fit: cover;
}
.products .card .bg-lightgreen {
  background: #1ac783;
  color: #FFF;
}
.products .card .bg-lightgreen:hover {
  transition: all 0.5s ease-in-out;
  background: #d6d9d7;
  color: #1ac783;
}

.banner {
  position: relative;
  height: 600px;
  /*background: url("../images/about-cover.jpg");*/
  background-repeat: no-repeat;
  -webkit-background-repeat: no-repeat;
  -moz-background-repeat: no-repeat;
  -ms-background-repeat: no-repeat;
   -o-background-repeat: no-repeat;
  background-size: 100% 100%;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -ms-background-size: 100% 100%;
  background-attachment: fixed;
  -webkit-background-attachment: fixed;
  -moz-background-attachment: fixed;
  -ms-background-attachment: fixed;
  -o-background-attachment: fixed;
}
.banner .head-title {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
.banner .head-title .aurora-titles {
  background-color: rgba(55, 51, 47, 0.768627451);
  padding: 10px 20px;
  border-radius: 103px 10px 90px 89px;
  -webkit-border-radius: 103px 10px 90px 89px;
  -moz-border-radius: 103px 10px 90px 89px;
}
.banner .shape {
  position: absolute;
  height: 100px;
  width: 100%;
  bottom: 0;
}

@media (max-width: 768px) {
  .shape {
    display: none;
  }
   .dropdown-menu .dropdown-item {
    font-size: 0.75rem;
    }
     .banner {
     background-attachment: scroll !important;

    }
}
.contact {
  margin: 100px 0;
}
.contact a {
  color: #696F79;
}
.contact .contact-form {
  background: #e7ebe6;
  width: 80%;
  border-radius: 20px;
  margin: auto;
}
.contact .contact-way li:nth-of-type(2) {
  direction: ltr;
}
.contact .aurora-titles::after {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  color: #696F79;
}

.accordion-button:not(.collapsed) {
  background-color: #1ac783;
}

.accordion-button:focus {
  box-shadow: none;
}

.form-check-input:checked {
  accent-color: #1ac783 !important;
  background-color: #1ac783;
  border-color: #1ac783;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem rgba(96, 197, 143, 0.53);
}

/*select*/
.form-select {
  position: relative;
  background: #1ac783;
  color: #fff;
  border: 0;
}

.form-select:active, .form-select:hover {
  outline: none;
}

.form-select:focus {
  border-color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(245, 253, 13, 0.25);
}

.form-select option:hover {
  background: #000;
}

.form-select option:checked {
  background: #000;
}

.edit .variants {
  display: flex;
  justify-content: center;
  align-items: center;
}
.edit .variants > div {
  margin-right: 5px;
}
.edit .variants > div:last-of-type {
  margin-right: 0;
}
.edit .file {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edit .file > input[type=file] {
  display: none;
}
.edit .file > label {
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  outline: 0;
  user-select: none;
  border-color: rgb(216, 216, 216) rgb(209, 209, 209) rgb(186, 186, 186);
  border-style: solid;
  border-radius: 4px;
  border-width: 1px;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 29%);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.edit .file > label:hover {
  border-color: hsl(0, 0%, 21%);
}
.edit .file > label:active {
  background-color: hsl(0, 0%, 96%);
}
.edit .file > label > i {
  padding: 0 5px;
}
.edit .nav-tabs .nav-link {
  color: #1ac783;
}
.edit .tab-content .del-btn {
  color: #C92435;
}
.edit .tab-content .edit-btn {
  color: #1ac783;
}
.edit .toast-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.edit .toast-container .toast-header .btn-close {
  box-shadow: none;
}

.background-radial-gradient {
  background: radial-gradient(circle at 10% 20%, rgba(216, 241, 230, 0.46) 0.1%, rgba(233, 226, 226, 0.28) 90.1%);
}

#radius-shape-1 {
  height: 220px;
  width: 220px;
  top: -60px;
  left: -130px;
  background: radial-gradient(#35694d, #82d5a9);
  overflow: hidden;
}

#radius-shape-2 {
  border-radius: 38% 62% 63% 37%/70% 33% 67% 30%;
  bottom: -60px;
  right: -110px;
  width: 300px;
  height: 300px;
  background: radial-gradient(#35694d, #82d5a9);
  overflow: hidden;
}

.bg-glass {
  background-color: #e7ebe6;
  backdrop-filter: saturate(200%) blur(25px);
}

.social-icons i {
  color: #60c58f;
}
.social-icons .btn-link:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.terms .swiper-slide {
  font-size: 18px;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px;
}

.product-gallery .swiper {
  width: 100%;
  height: 100%;
}
.product-gallery .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.product-gallery .swiper-slide {
  background-size: cover;
  background-position: center;
}
.product-gallery .gallery-cards {
  height: 80%;
  width: 100%;
}
.product-gallery .gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}
.product-gallery .gallery-thumbs .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.product-gallery .gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}
.product-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notification {
  margin: 100px auto;
}
.notification .notification-card {
  width: 100%;
  margin-bottom: 5px;
  display: block;
  transition: opacity 0.3s;
  border: 1px solid #1ac783;
}
.notification .notification-card .card-body {
  padding: 0.5rem;
}
.notification .notification-card .card-body table {
  width: 100%;
}
.notification .notification-card .card-body table tr {
  display: flex;
}
.notification .notification-card .card-body table tr td {
  text-align: center;
}
.notification .notification-card .card-body table tr td a.btn {
  font-size: 0.8rem;
  padding: 3px;
  margin: 0 5px;
}
.notification .dismiss a {
  color: #1ac783;
  text-decoration: none;
  background-color: transparent;
}

body {
  font-family: "Cairo", sans-serif;
  font-weight: 400;
  font-style: normal;
  direction: rtl;
}

nav .navbar-nav:last-of-type {
  flex-direction: row-reverse;
}

.slider {
  direction: ltr;
}
.slider .swiper-wrapper .swiper-slide .slider-content form .btn {
  right: 0;
  top: 0;
}

[type=tel] {
  direction: ltr;
}

.social-phone::after {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 0 7px;
  color: #1ac783;
}

.social-mail::after {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 0 7px;
  color: #1ac783;
}

.social-location::after {
  content: "\f3c5";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  padding: 0 7px;
  color: #1ac783;
}


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