@import url("https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("animate.min.css");
@import url("glightbox.min.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;700;900&display=swap");
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #26be60;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #ee1111;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}

a,
a:hover {
  text-decoration: none;
}

a,
span {
  transition: all 0.3s ease 0s;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Cinzel Decorative", cursive;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

.theme-bg-primary {
  background-color: #26be60;
}

.theme-bg-secondary {
  background-color: #FFF34C;
}

.theme-bg-accent-one {
  background-color: #ee1111;
}

.theme-bg-accent-two {
  background-color: #b3b3b3;
}

.theme-bg-accent-three {
  background-color: #f5f5f5;
}

.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #26be60;
}

.theme-text-secondary {
  color: #FFF34C;
}

.theme-text-accent-one {
  color: #ee1111;
}

.theme-text-accent-two {
  color: #b3b3b3;
}

.theme-text-accent-three {
  color: #f5f5f5;
}

.body-text-dark {
  color: #000000;
}

.body-bg {
  background-color: #000000;
}

.theme-box-shadow {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(255, 243, 76, 0.1);
}

.custom-btn-primary {
  background-color: #26be60;
  color: #000000;
  min-width: 140px;
  min-height: 50px;
  border: 0;
  border-radius: 0.5rem;
}

.custom-btn-secondary {
  min-width: 100px;
  min-height: 50px;
  border: 0;
  border-radius: 0.5rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.custom-link {
  background-color: #b3b3b3;
  color: #26be60;
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: #FFF34C;
  border: 2px solid #26be60;
}

.theme-border-radius {
  border-radius: 0.5rem;
}

.theme-border {
  border: 1px solid #26be60;
}

.custom-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-effect {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-effect::before {
  background: #fff34c;
  content: "";
  position: absolute;
  z-index: -1;
}
.button-effect::after {
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff34c;
  content: "";
  position: absolute;
  z-index: -1;
  transition: all 0.3s;
}
.button-effect:hover {
  background-color: #26be60;
  transition: all 0.2s ease;
}
.button-effect:hover::after {
  height: 100%;
}

.img-effect img {
  transition: all 0.3s ease;
}
.img-effect:hover img {
  transform: scale(1.1);
}

.product-quick-view {
  position: relative;
  transition: all 0.5s ease-in-out;
}
.product-quick-view .view {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.product-quick-view .view span,
.product-quick-view .view i {
  color: #ffffff;
}
.product-quick-view:hover {
  filter: grayscale(100%);
}
.product-quick-view:hover .view {
  opacity: 1;
  cursor: pointer;
}

.bottom .add-cart {
  cursor: pointer;
}
.bottom .add-cart .add {
  position: relative;
  display: inline-block;
}
.bottom .add-cart .add:hover {
  transform: translateY(-3px);
}

.slick-arrow {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  background-repeat: no-repeat;
  background-position: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #26be60;
  transition: all 0.2s ease-out;
  z-index: 1;
}
.slick-arrow i {
  color: #26be60;
}

.slick-arrow.slick-next {
  right: 20px;
}
.slick-arrow.slick-next:before {
  content: "\f138";
  font-family: "bootstrap-icons";
  color: #FFF34C;
}
.slick-arrow.slick-prev {
  left: 20px;
}
.slick-arrow.slick-prev:before {
  content: "\f12f";
  font-family: "bootstrap-icons";
  color: #FFF34C;
}
.slick-arrow:hover {
  background-color: #26be60;
}
.slick-arrow:hover i {
  color: #ffffff;
}

.slick-dots li:hover, .slick-dots li:active, .slick-dots li:focus {
  box-shadow: none;
}
.slick-dots li button {
  box-shadow: none;
}
.slick-dots li button:hover, .slick-dots li button:active, .slick-dots li button:focus {
  box-shadow: none;
}
.slick-dots li button::before {
  border: 1px solid #000000;
  background-color: rgba(255, 255, 255, 0.5);
  width: 1rem;
  height: 1rem;
  display: inline-block;
  border-radius: 0.5rem;
  font-family: initial;
  content: "";
}
.slick-dots li.slick-active button {
  box-shadow: none;
}
.slick-dots li.slick-active button:hover, .slick-dots li.slick-active button:active {
  box-shadow: none;
}
.slick-dots li.slick-active button::before {
  background-color: white;
}

.high-text {
  position: relative;
  display: flex;
  width: 10px;
  height: 10px;
  background: #26be60;
  margin: auto;
  align-items: end;
  text-align: center;
  justify-content: center;
}
.high-text::before {
  content: "";
  display: flex;
  width: 10px;
  height: 10px;
  background: #b3b3b3;
  position: absolute;
  right: 20px;
}
.high-text::after {
  content: "";
  display: flex;
  width: 10px;
  height: 10px;
  background: #b3b3b3;
  position: absolute;
  left: 20px;
}

.grow-box {
  display: inline-block;
  transition-duration: 0.3s;
  transition-property: transform;
  -webkit-tap-highlight-color: transparent;
  transform: translateZ(0);
  width: 100%;
}

.grow-box:hover {
  transform: scale(1.1);
}

.max {
  max-width: 650px;
  margin: auto;
}

.img-lt {
  filter: grayscale(100%);
  transition: 0.5s ease-in-out;
}
.img-lt:hover {
  filter: grayscale(0%);
}

.link-more {
  position: relative;
}
.link-more:before {
  position: absolute;
  content: "";
  width: calc(100% - 13px);
  height: 1px;
  left: 0;
  bottom: 4px;
  background-color: #26be60;
  transition: all 0.3s ease;
}
.link-more:hover:before {
  width: 0;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

@media (min-width: 992px) {
  .menunav {
    padding: 0;
  }
  .menunav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
  }
  .menunav ul li {
    position: relative;
  }
  .menunav ul li:last-child a {
    padding-right: 0;
  }
  .menunav ul li:hover {
    color: #26be60;
  }
  .menunav ul li:hover a, .menunav ul li:hover:active, .menunav ul li:hover:focus {
    color: #26be60;
  }
  .menunav a, .menunav:focus {
    color: #b3b3b3;
    padding: 18px 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .menunav a i, .menunav:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .menunav .active {
    color: #26be60;
  }
  .menunav .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }
  .menunav .dropdown ul li {
    min-width: 200px;
  }
  .menunav .dropdown ul li a {
    padding: 10px 20px;
    font-size: 0.875rem;
    text-transform: none;
    color: #000000;
  }
  .menunav .dropdown ul li a:hover {
    color: #26be60;
  }
  .menunav .dropdown ul li a i {
    font-size: 0.75rem;
  }
  .menunav .dropdown ul li:hover > a {
    color: #26be60;
  }
  .menunav .dropdown ul.active:hover {
    color: #26be60;
  }
  .menunav .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .menunav .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }
  .menunav .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    color: #ffffff;
    font-size: 2rem;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .menunav {
    padding: 0;
    z-index: 9997;
  }
  .menunav ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
    height: -moz-fit-content;
    height: fit-content;
  }
  .menunav a, .menunav:focus {
    color: #000000;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .menunav a:hover, .menunav a.active, .menunav:focus:hover, .menunav:focus.active {
    color: #26be60;
  }
  .menunav a:hover:focus, .menunav a.active:focus, .menunav:focus:hover:focus, .menunav:focus.active:focus {
    color: #26be60;
  }
  .menunav a i, .menunav:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(38, 190, 96, 0.5);
  }
  .menunav a i:hover, .menunav:focus i:hover {
    background-color: #26be60;
    color: #000000;
  }
  .menunav .active i {
    background-color: #26be60;
    color: #000000;
    transform: rotate(180deg);
  }
  .menunav .active i:focus i {
    background-color: #26be60;
    color: #000000;
    transform: rotate(180deg);
  }
  .menunav .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #ee1111;
    transition: all 0.5s ease-in-out;
  }
  .menunav .dropdown ul ul {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .menunav .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(0, 0, 0, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .smooth {
    height: 100%;
  }
  .mobile-nav-active .mobile-menu-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 2rem;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .menunav {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
  }
  .mobile-nav-active .menunav > ul {
    display: block;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000000;
}
.overlay .overlayDoor:before, .overlay .overlayDoor:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #000000;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  transition-delay: 0.8s;
}
.overlay .overlayDoor:before {
  left: 0;
}
.overlay .overlayDoor:after {
  right: 0;
}
.overlay.loaded .overlayDoor:before {
  left: -50%;
}
.overlay.loaded .overlayDoor:after {
  right: -50%;
}
.overlay.loaded .overlayCon {
  opacity: 0;
  margin-top: -15px;
}
.overlay .overlayCon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.5s cubic-bezier(0.77, 0, 0.18, 1);
}

.loader {
  width: 5rem;
  height: 5rem;
  border: 2px solid #26be60;
  border-bottom: 2px solid transparent;
  border-radius: 50%;
  position: relative;
  animation: spin 1s linear infinite;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader .inner {
  width: 4rem;
  height: 4rem;
  border: 2px solid transparent;
  border-top: 2px solid #FFF34C;
  border-radius: 50%;
  animation: spinInner 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spinInner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-720deg);
  }
}
.header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .header .navbar-brand img {
    width: auto;
    height: 70px;
  }
}

.smooth {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  z-index: 10;
}
.smooth .navbar-brand img {
  width: auto;
  height: 70px;
}
.smooth .mobile-menu-toggle {
  color: #26be60;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
}
.hero .carouselhero,
.hero .carouselhero-rtl {
  margin-bottom: 0;
}
.hero .carouselhero .slider-item,
.hero .carouselhero-rtl .slider-item {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .carouselhero .slider-item:before,
.hero .carouselhero-rtl .slider-item:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 0;
}
.hero .carouselhero .slick-arrow,
.hero .carouselhero-rtl .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.hero .carouselhero:hover .slick-arrow,
.hero .carouselhero-rtl:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.hero .carouselhero .slick-dots,
.hero .carouselhero-rtl .slick-dots {
  bottom: 3rem;
}

.services-banner {
  position: relative;
}
.services-banner .box {
  position: relative;
  max-height: 400px;
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  background-image: url(../images/services/services-bg.png);
}
.services-banner .box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 243, 76, 0.1);
  z-index: 0;
  transition: all ease-in-out 0.3s;
}
.services-banner .box:hover::after {
  background-color: rgba(255, 243, 76, 0.75);
}
.services-banner .box .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.services-banner .box .content img {
  width: 80px;
  margin-bottom: 1rem;
}
.services-banner .box .content .title {
  font-size: 1.5rem;
  font-weight: 700;
}
.services-banner .box .content p {
  text-transform: uppercase;
  font-weight: 700;
  padding: 0 5rem;
  color: #b3b3b3;
}
.services-banner .box .content .btn-shop {
  background-color: #26be60;
  color: #000000;
  font-weight: 700;
}

.topProgram {
  background-color: rgba(38, 190, 96, 0.1);
}
.topProgram .nav-pills li {
  margin: 0 0.5rem;
}
.topProgram .nav-pills li .nav-link {
  border: 1px solid #26be60;
  color: #000000;
  font-weight: bold;
  border-radius: 50rem;
  background-color: #FFF34C;
}
.topProgram .nav-pills li .active {
  background-color: #26be60;
}
.topProgram .card-wrap {
  background-color: #ffffff;
  overflow: hidden;
}
.topProgram .card-wrap .con-img-wrap {
  position: relative;
}
.topProgram .card-wrap .small-img {
  min-height: 120px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.topProgram .card-wrap .con-wrap .text {
  font-weight: 700;
}
.topProgram .card-wrap .con-wrap .text a {
  color: #FFF34C;
}
.topProgram .card-wrap .con-wrap .text a:hover {
  color: #26be60;
}
.topProgram .card-wrap .con-wrap .progress {
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: #b3b3b3;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.topProgram .card-wrap .con-wrap .progress .bar {
  position: relative;
  float: left;
  min-width: 1%;
  height: 100%;
  background: #26be60;
}
.topProgram .card-wrap .con-wrap .progress .percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  color: #ffffff;
}
.topProgram .card-wrap .con-wrap .product-price span,
.topProgram .card-wrap .con-wrap .product-price i {
  color: #b3b3b3;
}
.topProgram .card-wrap .con-wrap a {
  background: #ee1111;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  color: #ffffff;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}
.topProgram .card-wrap .con-wrap a:hover {
  background: #26be60;
}

.deal-to-action {
  background-color: rgba(38, 190, 96, 0.1);
  background-image: url(../images/section/Bg-Deals.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-position: center center;
  position: relative;
  padding: 5rem 0;
}
.deal-to-action::before {
  content: "";
  background: rgba(0, 0, 0, 0.88);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.deal-to-action #timer {
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
}
.deal-to-action #timer div {
  display: inline-block;
  min-width: 120px;
  font-size: 3em;
  font-weight: 900;
  color: #26be60;
}
@media screen and (max-width: 575px) {
  .deal-to-action #timer div {
    min-width: 60px;
  }
}
.deal-to-action #timer div span {
  color: #FFF34C;
  display: block;
  font-size: 0.5em;
  font-weight: 700;
}
.deal-to-action .event {
  margin-top: 40px;
  position: relative;
}
.deal-to-action .event .event-item {
  border-bottom: 1px dashed #ffffff;
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}
.deal-to-action .event .event-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}
.deal-to-action .event .event-item h4 {
  margin: 0;
  font-size: 16px;
  color: #f5f5f5;
}

.video-frame {
  width: 100%;
  background-image: url(../images/section/video-bg.png);
  background-position: center top;
  background-size: cover;
  position: relative;
  background-attachment: fixed;
}
.video-frame::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.video-frame .group {
  display: flex;
  min-height: 650px;
  border-radius: 0.5rem;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-frame .video-icon {
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid #FFF34C;
  color: #FFF34C;
  line-height: 60px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseBig infinite 4s linear;
}
.video-frame .video-icon i {
  color: #FFF34C;
  font-size: 2.5rem;
  line-height: 2.5rem;
}
.video-frame .video-icon:hover {
  background-color: #FFF34C;
}
.video-frame .video-icon:hover i {
  color: #000000;
}
@keyframes pulseBig {
  0% {
    box-shadow: 0 0 0 0 #ffffff;
  }
  50% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.about-us {
  padding: 5rem 0 5rem 0;
}
.about-us .about-pic .about-img img:first-child {
  width: 80%;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  border-radius: 170px;
}
.about-us .about-pic .about-img img:last-child {
  position: relative;
  width: 60%;
  right: 0;
  float: right;
  top: -150px;
  margin-bottom: -150px;
  border: 10px solid #ffffff;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  border-radius: 170px;
}
.about-us .about-pic .about-box {
  background: linear-gradient(-180deg, #26be60 0%, #FFF34C 100%);
  width: 200px;
  height: 200px;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 30px;
  left: 20%;
  z-index: 1;
}
.about-us .about-pic .about-box .title {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: -1.92px;
  color: #000000;
  margin: 0;
}

.why-us {
  padding: 5rem 0;
  background-color: rgba(38, 190, 96, 0.025);
  background-image: url(../images/section/patern.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 600px;
  background-position: center center;
  position: relative;
}
.why-us .left-icon {
  position: relative;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}
.why-us .left-icon:hover .icon {
  transform: translateY(-5px);
  transition-duration: 0.3s;
  background: #FFF34C;
}
.why-us .left-icon .icon {
  background: #f5f5f5;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  transition-duration: 0.3s;
}
.why-us .left-icon .icon:before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1px dashed #26be60;
}
.why-us .left-icon .icon img {
  width: 50px;
  height: 50px;
}
.why-us .left-icon .text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.why-us .left-icon .text p {
  margin-bottom: 0;
  font-size: 0.75rem;
}

.blog .blog-card .cat {
  color: #26be60;
  cursor: pointer;
}
.blog .blog-card .cat:hover {
  color: #FFF34C;
}

.footer {
  position: relative;
  background-image: url(../images/section/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
  padding: 5rem 0;
}
.footer:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.footer h3 {
  color: #ffffff;
}
.footer p {
  line-height: 2rem;
  color: #f5f5f5;
}
.footer .footer-link li {
  line-height: 2.5rem;
}
.footer .footer-link li i {
  color: #f5f5f5;
  font-size: 1rem;
  line-height: normal;
  vertical-align: middle;
}
.footer .footer-link li a {
  color: #f5f5f5;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .footer-link li a:hover {
  color: #26be60;
  letter-spacing: 0.5px;
  padding-left: 0.5rem;
}
.footer .social a {
  color: #000000;
  background: #ffffff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 35px;
  height: 35px;
}
.footer .social a:hover {
  background: #26be60;
}
.footer .form-subcriber {
  border-radius: 0.5rem;
  position: relative;
}
.footer .form-subcriber input {
  box-shadow: none;
  width: 100%;
  border: 0;
  border-radius: 0.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.footer .form-subcriber button {
  margin-left: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 3.5rem;
  width: 3.5rem;
  line-height: 3.5rem;
  bottom: -5rem;
  right: 50%;
  text-align: center;
  z-index: 2;
  background-color: rgba(38, 190, 96, 0.8);
  display: block;
  color: #ffffff;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  border-radius: 0.5rem;
}
.scrollup.back-top {
  bottom: 20px;
}
.scrollup i {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
}
.scrollup i:hover, .scrollup i:focus {
  animation: toBottomFromTop 0.5s forwards;
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(-20%);
  }
  50% {
    opacity: 0;
    transform: translateY(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
.scrollup:hover, .scrollup:focus {
  color: #FFF34C;
}

[dir=rtl] body {
  font-family: "Noto Sans Arabic", sans-serif;
}
[dir=rtl] .slick-prev {
  right: unset;
}
[dir=rtl] .about-us h3 {
  padding-right: 1rem;
}
[dir=rtl] .menunav a {
  font-size: 1.5rem;
}
[dir=rtl] .menunav .dropdown ul li a {
  font-size: 1.25rem;
}
[dir=rtl] .link-more {
  font-size: 1.5rem;
}/*# sourceMappingURL=main.css.map */