@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: none;
  outline: none;
}

:root {
  --primry-color: #55ab82;
  --primry-color-a8: rgba(85, 171, 130, 0.8);
}

html {
  font-size: 16px;
}

a:hover,
a:focus {
  text-decoration: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #1F2428;
}

p {
  margin: 0;
  color: #1F2428;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primry-color);
}

a:hover {
  color: var(--primry-color);
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

a {
  text-decoration: none;
}

body {
  font-weight: 400;
  line-height: 1.5;
  background-color: #F6FCFD;
  color: #1F2428;
  overflow-x: hidden;
}

html[dir=ltr] body {
  font-family: "Poppins", "Almarai";
}

html[dir=rtl] body {
  font-family: "Almarai", "Poppins";
}

.font-light {
  font-weight: 300;
}

.font-medium {
  font-weight: 500;
}

.font-semi-bold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.form-control {
  height: 54px;
  background-color: #F5F5F5;
  border: 1px solid #F5F5F5;
  border-radius: 0px;
}
.form-control:focus {
  background-color: #F5F5F5;
  border-color: var(--primry-color) !important;
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
}

.bg-primary {
  background-color: var(--primry-color) !important;
}

.text-primary {
  color: var(--primry-color) !important;
}

.border-primary {
  border-color: var(--primry-color) !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.btn:focus,
.btn.focus {
  outline: 0;
  box-shadow: none;
}

.text-underline {
  text-decoration: underline;
}

.text-black {
  color: #000000 !important;
}

.text-gray {
  color: #666666 !important;
}

.font-size-12 {
  font-size: 12px !important;
}

.btn {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
}

.btn-primary {
  color: #FFF;
  background: var(--primry-color);
  border-color: var(--primry-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: #37c366;
}
.btn-primary:hover, .btn-primary:focus {
  color: #fff !important;
  border-color: var(--primry-color);
  background-color: var(--primry-color) !important;
  box-shadow: none !important;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-white {
  color: #000;
  background: #FFF;
  border-color: #FFF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn-white::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  border-radius: 6px;
  z-index: -1;
  background-color: var(--primry-color);
}
.btn-white:hover, .btn-white:focus {
  color: #fff !important;
  border-color: var(--primry-color);
  background-color: #FFF !important;
  box-shadow: none !important;
}
.btn-white:hover::before, .btn-white:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

.btn-outline-primary {
  color: var(--primry-color);
  background: transparent;
  border-color: var(--primry-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-outline-primary::before {
  position: absolute;
  width: 100%;
  content: "";
  height: 100%;
  width: 0;
  width: 0%;
  right: 0;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: -1;
  background-color: var(--primry-color);
}

.btn-outline-primary img {
  transition: filter 0.4s ease-in-out;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #000 !important;
  border-color: var(--primry-color);
  background-color: #FFF !important;
  box-shadow: none !important;
  color: #FFF !important;
}

.btn-outline-primary:hover::before, .btn-outline-primary:focus::before {
  width: 100%;
  left: 0;
  right: auto;
}

@media (max-width: 992px) {
  .bottom-header {
    position: sticky;
    z-index: 3;
    width: 100%;
    top: 0;
    right: 0;
    background-color: var(--primry-color);
    padding: 10px 0;
  }
  .bottom-header .menu-nav {
    margin-bottom: 10px;
  }
  .bottom-header .logo img {
    max-height: 30px;
  }
  .bottom-header .btn-outline-primary {
    padding: 10px;
    width: 100%;
  }
  .header-mobile__toolbar {
    color: #fff;
  }
  .active-body {
    overflow: hidden;
  }
  .mobile-menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    background-color: rgba(51, 51, 51, 0.51);
  }
  .mobile-menu-overlay-active {
    visibility: visible;
  }
  .menu--mobile {
    min-width: 100px;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
  .menu--mobile > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 0px);
  }
  .menu--mobile .list-main-menu {
    width: 100%;
  }
  .menu--mobile .logo img {
    filter: brightness(0.5);
  }
  .menu--mobile .main-menu .menu-item {
    flex: auto;
  }
  .menu--mobile .main-menu .menu-item .menu-link {
    color: #707070 !important;
    font-weight: 600;
    padding: 10px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 14px;
    position: relative;
  }
  .menu--mobile .main-menu .menu-item .menu-link.active {
    color: #DECFB2 !important;
  }
  .menu--mobile .main-menu .menu-item .btn {
    padding: 12px 1px;
    width: 100%;
    border-radius: 0 !important;
    text-align: left;
  }
  .btn-close-header-mobile {
    color: #000;
    cursor: pointer;
  }
  .menu-mobile-active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s ease-in-out;
  }
}
.pagination {
  margin-top: 40px;
}
.pagination .page-item {
  margin: 0px 7px;
}
.pagination .page-item .page-link {
  color: #000000;
  border-radius: 6px;
  background-color: #FFF;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 19px;
  height: 42px;
  border: 1px solid #000000;
  min-width: 58px;
}
.pagination .page-item .page-link:hover {
  color: #fff;
  background-color: var(--primry-color) !important;
  border-color: var(--primry-color);
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: var(--primry-color) !important;
  border-color: var(--primry-color);
}
@media (max-width: 991px) {
  .pagination .page-item {
    margin: 0px 4px;
  }
  .pagination .page-item .page-link {
    min-width: 40px;
    padding: 6px 14px;
  }
}

.main-header {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.main-header .top-info {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}
@media (max-width: 991px) {
  .main-header .toggleMenu {
    max-width: 20px;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse {
    position: fixed;
    width: 100%;
    z-index: 11111;
    background: rgb(255, 255, 255);
    top: 0px;
    inset-inline-end: -100%;
    box-shadow: rgba(41, 41, 41, 0.1098039216) 0px 20px 20px;
    display: block;
    transition: all 0.2s ease-in-out;
    height: 100%;
  }
  .main-header .navbar .navbar-collapse .navbar-nav {
    padding: 20px 20px 0;
  }
  .main-header .navbar .navbar-collapse.show {
    inset-inline-end: 0%;
  }
}
.main-header .navbar .navbar-collapse .nav-link {
  cursor: pointer;
  display: block;
  padding: 9px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #000;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.main-header .navbar .navbar-collapse .nav-link.active, .main-header .navbar .navbar-collapse .nav-link:hover {
  color: var(--primry-color);
}
@media (min-width: 991px) {
  .main-header .navbar .navbar-collapse .submenu {
    position: absolute;
    top: 110%;
    background-color: #FFF;
    box-shadow: 0 13px 26px rgba(0, 0, 0, 0.05);
    min-width: 180px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .main-header .navbar .navbar-collapse .submenu li a {
    display: block;
    padding: 10px;
    color: #000;
  }
  .main-header .navbar .navbar-collapse .submenu li a:hover {
    color: var(--primry-color);
  }
  .main-header .navbar .navbar-collapse .submenu li:not(:last-of-type) {
    border-bottom: 1px solid #EEE;
  }
  .main-header .navbar .navbar-collapse .nav-item {
    position: relative;
  }
  .main-header .navbar .navbar-collapse .nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    top: 100%;
  }
}
@media (max-width: 991px) {
  .main-header .navbar .navbar-collapse .submenu {
    display: none;
    margin-bottom: 20px;
  }
  .main-header .navbar .navbar-collapse .submenu.open {
    display: block;
  }
  .main-header .navbar .navbar-collapse .submenu li a {
    color: #000;
    padding: 5px 30px;
    display: block;
  }
}
@media (max-width: 991px) {
  .main-header .navbar-brand img {
    max-height: 50px;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none !important;
  }
}

.navbar-toggler {
  border: 0;
}

.navbar-toggler {
  position: relative;
  z-index: 99999;
}
.navbar-toggler:not(.collapsed) i::before {
  content: "\f00d";
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .navbar .navbar-collapse .nav-link {
    padding: 9px 12px;
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1230px;
    max-width: 100%;
  }
}
.flag {
  max-height: 20px;
}

.top-info-contact a {
  color: #001A33;
}
.top-info-contact a:not(:last-of-type) {
  margin-inline-end: 12px;
  position: relative;
  padding-inline-end: 12px;
}
.top-info-contact a:not(:last-of-type)::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 10px;
  background-color: #000000;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-end: 0;
}
.top-info-contact a:hover {
  color: var(--primry-color);
}

main {
  overflow-x: hidden;
}

.section {
  padding: 80px 0px;
}
@media (max-width: 991px) {
  .section {
    padding: 30px 0;
  }
}

.section-home {
  position: relative;
  background: url(../images/bg-home.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
.section-home::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #43E97A 0%, #00892D 100%);
  opacity: 0.5;
  z-index: -2;
}
.section-home::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/bg-1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (min-width: 992px) {
  .section-home {
    padding: 130px 0 190px;
  }
  .section-home .home-title {
    font-size: 2.875rem;
  }
}
@media (max-width: 991px) {
  .section-home {
    padding: 110px 0 30px;
  }
  .section-home .home-title {
    font-size: 2.4rem;
  }
}
.section-home .home-btn {
  width: 160px;
  height: 160px;
  background-color: #000000;
  font-size: 1.188rem;
  transition: background-color 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .section-home .home-btn {
    width: 120px;
    height: 120px;
  }
}
.section-home .home-btn:hover {
  background-color: var(--primry-color);
}

.section-title {
  font-size: 2.875rem;
}

.section-sub-title {
  color: rgba(0, 26, 51, 0.6);
}

.widget_item-service {
  box-shadow: 0 13px 26px rgba(0, 0, 0, 0.05);
  position: relative;
  padding: 15px;
}
.widget_item-service .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 63%;
}
.widget_item-service .widget_item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  position: absolute;
}
.widget_item-service .widget_item-title {
  font-size: 1.688rem;
}
.widget_item-service .widget_item-title a {
  color: #001A33;
}
.widget_item-service .widget_item-title a:hover {
  color: var(--primry-color);
}
.widget_item-service .widget_item-icon {
  width: 53px;
  height: 53px;
  font-size: 18px;
  transition: background-color 0.2s ease-in-out;
}
.widget_item-service .widget_item-icon:hover {
  background-color: #37c366 !important;
}
.widget_item-service .widget_item-text {
  height: 52px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .section-service {
    margin-top: -100px;
    position: relative;
    z-index: 1;
  }
}
.widget_item-product {
  border: 1px solid #EAEAEA;
}
.widget_item-product .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 55%;
}
.widget_item-product .widget_item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  position: absolute;
}
.widget_item-product .widget_item-title a {
  color: #001A33;
}
.widget_item-product .widget_item-title a:hover {
  color: var(--primry-color);
}

.swiper-pagination-bullet {
  background-color: #FFF;
  border: 2px solid var(--primry-color);
  opacity: 1;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primry-color);
}

.widget_item-whyUs {
  padding: 80px 20px 50px;
  border: 1px solid #EAEAEA;
}
.widget_item-whyUs .widget_item-icon {
  background-color: rgba(67, 233, 122, 0.1);
  width: 110px;
  height: 100px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.widget_item-whyUs .widget_item-title {
  height: 128px;
  overflow: hidden;
}

.widget_item-blog-title a {
  color: #1F2428;
}
.widget_item-blog-title a:hover {
  color: var(--primry-color);
}

.widget_item-blog-text {
  height: 64px;
  overflow: hidden;
}

.widget_item-brand .widget_item-image img {
  max-height: 80px;
}

.page-title {
  position: relative;
  background: url(../images/bg-title.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  padding: 100px 0;
}
.page-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(-100deg, rgba(67, 233, 122, 0.1) 0%, #000000 100%);
  opacity: 0.5;
  z-index: -1;
}

.widget_item-health .widget_item-image {
  position: relative;
  height: 0;
  padding-top: 65%;
}
.widget_item-health .widget_item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  position: absolute;
}
.widget_item-health .widget_item-title a {
  color: #1F2428;
}
.widget_item-health .widget_item-title a:hover {
  color: var(--primry-color);
}
.widget_item-health .widget_item-desc {
  height: 144px;
  overflow: hidden;
}
.widget_item-health.widget-2 .widget_item-title {
  font-size: 2.063rem;
}
.widget_item-health.widget-2 .widget_item-image {
  padding-top: 27%;
}
.widget_item-health.widget-2 .widget_item-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(-100deg, rgba(67, 233, 122, 0) 0%, #00892D 100%);
  opacity: 0.5;
  z-index: 1;
}
.widget_item-health.widget-2 .widget_item-body {
  position: absolute;
  padding: 35px;
  bottom: 0;
  z-index: 2;
}

.bg-1, .bg-2, .bg-3 {
  position: relative;
}
.bg-1::before, .bg-2::before, .bg-3::before {
  z-index: -1;
  position: absolute;
  content: "";
}

.bg-1::before {
  width: 257px;
  height: 376px;
  background: url(../images/bg-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  inset-inline-end: 0;
}

.bg-2::before {
  width: 257px;
  height: 376px;
  background: url(../images/bg-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 30%;
  inset-inline-start: 0;
  transform: scaleX(-1);
}

.bg-3::after {
  position: absolute;
  content: "";
  width: 293px;
  height: 51px;
  background: url(../images/bg-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  inset-inline-start: 0;
  opacity: 0.2;
}

.main-footer {
  position: relative;
  z-index: 1;
  background-color: #1F2749;
}
.main-footer::before {
  position: absolute;
  content: "";
  bottom: 0;
  inset-inline-end: 0;
  background: url(../images/bg-footer.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  opacity: 0.2;
  z-index: -1;
}
@media (max-width: 991px) {
  .main-footer {
    padding: 50px 0 40px;
  }
}
@media (min-width: 992px) {
  .main-footer .footer-top {
    padding: 60px 0 30px;
  }
}
@media (min-width: 991px) {
  .main-footer .footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
.main-footer .link-footer a {
  color: #FFF;
  display: inline-block;
  font-size: 1.25rem;
  padding: 7px 0px;
  position: relative;
  transition: color 200ms;
}
.main-footer .link-footer a:hover {
  color: var(--primry-color) !important;
}

.social-media {
  display: flex;
  align-items: center;
}

.social-media li:not(:last-of-type) {
  margin-inline-end: 10px;
}
.social-media li a {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0px 2px;
  color: #19204D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background-color 0.3s ease-in-out;
  background-color: var(--primry-color);
}
.social-media li a i {
  transition: color 0.3s ease-in-out;
}
.social-media li a:hover {
  color: #fff;
  background-color: var(--primry-color-a8);
}
.social-media.social-media-gray li a {
  color: #000;
  background-color: rgba(0, 0, 0, 0.14);
  border-radius: 6px;
}
.social-media.social-media-gray li a:hover {
  background-color: var(--primry-color);
  color: #FFF;
}
html[dir="rtl"] .widget_item-service .widget_item-icon {
  transform: scaleX(-1);
}
/*# sourceMappingURL=main.css.map */

.justify-content-space-between{
  justify-content:space-between;
}