 /*
[Table of contents] 
1. body
2. header
3. footer

*/

@font-face {
  font-family: 'Almarai';
  src: url(../fonts/Almarai/Almarai-Regular.ttf)
}

@font-face {
  font-family: 'semi_Almarai';
  src: url(../fonts/Almarai/Almarai-Bold.ttf)
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  border: 0;
  outline: none !important;
}

:root {
  --main_theme: #45bc63;
  --secondry_theme: #103a51;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Almarai';
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5;
  color: #333333;
  background: #fff;
  direction: rtl !important;
  text-align: right;
  overflow-x: hidden;
}

body {
  position: relative;
}

::-webkit-scrollbar {
  width: 8px;
  direction: rtl;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main_theme);
  outline: 1px solid #fff;
}

::-moz-selection {
  background: var(--main_theme);
  color: #fff;
}

::selection {
  background: var(--main_theme);
  color: #fff;
}

.owl-carousel .owl-prev, .owl-carousel .owl-next, ul.nav>li:after {
  transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
}

a, a:hover, a:focus {
  text-decoration: none;
  cursor: pointer;
}

button {
  border: 0;
  color: #fff;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  padding: 0;
}

.col-xs-pull-8 {
  left: 66.66666667%;
}

.col-xs-push-4 {
  right: 33.33333333%;
}

main {
  direction: rtl !important;
}

.block {
  display: block;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

.just-start {
  justify-content: flex-start;
}

.phone a {
  color: var(--main_theme);
}

.all-section {
  padding: 70px 0;
}

/*************************************************/

/*******component********************************/

/*************************************************/

.uder-line {
  text-decoration: underline;
}

.m-b-0 {
  margin-bottom: 0;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.theme-color {
  color: var(--main_theme);
}

.flex {
  display: flex;
}

.j-center {
  justify-content: center;
}

.section-before-footer {
  padding-bottom: 135px;
}

.black {
  color: black;
}

.gold {
  color: #FFC107;
}

.ltr {
  direction: ltr;
}

.white {
  color: white;
}

.bold {
  font-weight: bold;
}

.section-title {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

.p-m0 {
  margin-bottom: 0;
}

.heigh100 {
  height: 100%;
}

.width100 {
  width: 100%;
}

.width50 {
  width: 50%;
}

.width70 {
  width: 70%;
}

.text-box {
  text-align: center;
}

.new-projects .swiper-button-next::after, .new-projects .swiper-button-prev::after {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-color: #fff;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
}

.new-projects .swiper-button-next::after {
  content: "\f30a";
}

.new-projects .swiper-button-prev::after {
  content: "\f30b";
}

.buttnedit:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: #fff;
}

.buttnedit:active {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  color: #fff
}

.buttnedit {
  background-color: var(--main_theme);
  color: #fff;
}

.buttnedit::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.buttnedit::after {
  background-color: var(--main_theme);
}

.buttnedit:hover::after {
  -webkit-transform: scaleX(1.4) scaleY(1.6);
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn-animated {
  -webkit-animation: moveInBottom 5s ease-out;
  animation: moveInBottom 5s ease-out;
  -webkit-animation-fill-mode: backwards;
  animation-fill-mode: backwards;
}

.aligne-center {
  text-align: center;
}

@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

.red {
  color: #f14304;
}

.mb7 {
  margin-bottom: 7px;
}

.bold {
  font-weight: bold;
}

.mt5 {
  margin-top: 5px;
}

.relative {
  position: relative;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type=number] {
  -moz-appearance: textfield;
}

/*************************************************/

/*******end component********************************/

/*************************************************/

/*================header====================*/

.header-wrapper {
  padding: 30px 0;
  background-color: #ffffff;
  position: relative;
}

.header-wrapper>.container {
  position: relative;
  min-height: 40px;
}

.header-wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}

.header-search {
  width: 165px;
  position: relative;
  margin-left: 8px;
}

.header-search .form-control {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  padding-right: 21px;
  background-color: #f0f2f9;
}

.header-search button {
  position: absolute;
  right: 3px;
  top: 3px;
  border: none;
  padding: 2px 2px;
  line-height: 30px;
  font-size: 14px;
  color: #4d5053;
  border-radius: 40px;
  background: unset;
}

.flex.just-start p {
  margin-bottom: 0;
}

.flex.just-start p {
  margin-bottom: 0;
  margin-right: 26px;
}

.lang img {
  width: 20px;
  object-fit: contain;
  margin-right: 5px;
}

.lang {
  font-size: 12px;
}

.headernav {
  height: 34px;
}

.topNav-left {
  height: 34px;
}

.topNav-right {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #000;
  height: 34px;
}

.topNav-right a {
  color: #000;
}

.width-img-play {
  width: 90px;
}

/*================end header ==================*/

/********************************navbar**********************/

.grid.margin::after, .grid.margin2x::after {
  content: "";
  display: none;
}

.nav-text:after, .nav-text:before, .nav-text span {
  background-color: #fff;
  border-radius: 3px;
  content: '';
  display: block;
  height: 3px;
  margin: 3px auto;
  width: 30px;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
}

.show-menu .nav-text:before {
  transform: translateY(9px) rotate(-135deg);
  -moz-transform: translateY(9px) rotate(-135deg);
  -webkit-transform: translateY(9px) rotate(-135deg);
}

.show-menu .nav-text:after {
  transform: translateY(-9px) rotate(135deg);
  -moz-transform: translateY(-9px) rotate(135deg);
  -webkit-transform: translateY(-9px) rotate(135deg);
}

.show-menu .nav-text span {
  transform: scale(0);
  -moz-transform: scale(0);
  -webkit-transform: scale(0);
}

.top-nav ul {
  padding: 0;
}

.top-nav ul ul {
  position: absolute;
  background: #152732;
}

.top-nav li {
  float: right;
  list-style: none outside none;
  cursor: pointer;
}

.top-nav li a {
  color: #4D4D4D;
  display: block;
  font-size: 1rem;
  padding: 1.25rem;
}

.top-nav li ul li a {
  min-width: 100%;
  padding: 0.625rem;
}

.top-nav li ul {
  display: none;
}

.top-nav li ul li, .top-nav li ul li ul li {
  float: none;
  list-style: none outside none;
  min-width: 100%;
  padding: 0;
}

.top-nav .active-item a {
  background: #2b4c61;
}

.aside-nav>ul>li.active-item>a:link, .aside-nav>ul>li.active-item>a:visited {
  background: #2b4c61;
  color: #fff;
}

/* .top-nav li:hover a {
 background-color: var(--main_theme) !important;
 color: #fff;
}
.top-nav li:hover a.active {
 background-color: var(--main_theme) !important;
 color: #fff;
} */

.top-nav li {
  position: relative;
}

.top-nav li::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  width: 0%;
  margin: auto;
  height: 2px;
  transition: all .4s linear;
}

.top-nav li:hover::after {
  width: 100%;
  background-color: var(--main_theme);
}

.top-nav li:hover a {
  color: var(--main_theme);
  transition: all .4s ease-in-out;
}

.top-nav li.active a {
  color: var(--main_theme);
}

.top-nav li.active::after {
  width: 100%;
  left: 0;
  background-color: var(--main_theme);
}

/* Top Nav */

.top-nav li a, .background-white .top-nav li a {
  color: #454545;
  font-size: 0.85rem;
  padding: 0.7em 1.25em;
}

.top-nav ul ul {
  background: #454545 none repeat scroll 100% 0;
}

.top-nav li ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-nav li ul li:last-child {
  border-bottom: 0;
}

.top-nav li ul li a, .background-white .top-nav li ul li a, .top-nav .active-item li a {
  background: #454545 none repeat scroll 100% 0;
  color: rgba(255, 255, 255, 0.75);
}

ul.chevron .submenu>a::after, ul.chevron .sub-submenu>a::after, ul.chevron .aside-submenu>a::after, ul.chevron .aside-sub-submenu>a::after {
  margin: 0 0.625rem 0 0;
}

.top-nav ul ul a {
  color: #eee;
}

.sticky {
  transition: all 0.20s linear 0s;
  -o-transition: all 0.20s linear 0s;
  -ms-transition: all 0.20s linear 0s;
  -moz-transition: all 0.20s linear 0s;
  -webkit-transition: all 0.20s linear 0s;
  padding: 4px;
}

.fixed {
  right: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}

nav.fixed, .fixed nav {
  padding: 1rem 0;
}

.logo img {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
}

/* Aside Nav */

aside {
  border-right: 1px solid #e5e5e5;
  padding-right: 1.25rem;
}

.aside-nav ul {
  background: rgba(0, 0, 0, 0) none repeat scroll 100% 0;
  margin-right: -1.25rem;
}

.aside-nav ul ul {
  margin: 0;
}

.aside-nav li a, .aside-nav li a:link, .aside-nav li a:visited {
  border-bottom: medium none;
  font-size: 0.85rem;
  padding: 15px;
  border-right: 5px solid rgba(0, 0, 0, 0);
}

.aside-nav>ul>li>a:hover, .aside-nav>ul>li.active-item>a:link, .aside-nav>ul>li.active-item>a:visited {
  border-style: solid;
  border-width: 0 5px 0 0;
  border-color: #e5e5e5;
  background: none;
  color: #333;
}

.aside-nav li ul ul {
  background: #e9e9e9 none repeat scroll 100% 0;
}

aside.aside-left {
  border-right: 0;
  border-left: 1px solid #e5e5e5;
  padding-left: 1.25rem;
}

.aside-left .aside-nav ul {
  margin-left: -1.25rem;
}

.aside-left .aside-nav li a {
  border-right: 0;
  border-left: 5px solid rgba(0, 0, 0, 0);
}

.aside-left .aside-nav>ul>li>a:hover, .aside-left .aside-nav>ul>li.active-item>a:link, .aside-left .aside-nav>ul>li.active-item>a:visited {
  border-style: solid;
  border-width: 0 0 0 5px;
  border-color: #e5e5e5;
}

.aside-nav.background-white-hightlight>ul>li>a:hover, .aside-nav.background-white-hightlight>ul>li.active-item>a:link, .aside-nav.background-white-hightlight>ul>li.active-item>a:visited, .primary-color-white .aside-nav.background-primary-hightlight>ul>li>a:hover, .primary-color-white .aside-nav.background-primary-hightlight>ul>li.active-item>a:link, .primary-color-white .aside-nav.background-primary-hightlight>ul>li.active-item>a:visited {
  border-color: #fff;
}

.aside-nav.background-primary-hightlight>ul>li>a:hover, .aside-nav.background-primary-hightlight>ul>li.active-item>a:link, .aside-nav.background-primary-hightlight>ul>li.active-item>a:visited, .primary-color-primary .aside-nav.background-primary-hightlight>ul>li>a:hover, .primary-color-primary .aside-nav.background-primary-hightlight>ul>li.active-item>a:link, .primary-color-primary .aside-nav.background-primary-hightlight>ul>li.active-item>a:visited {
  border-color: #28a5df;
}

.aside-nav.background-dark-hightlight>ul>li>a:hover, .aside-nav.background-dark-hightlight>ul>li.active-item>a:link, .aside-nav.background-dark-hightlight>ul>li.active-item>a:visited, .primary-color-dark .aside-nav.background-primary-hightlight>ul>li>a:hover, .primary-color-dark .aside-nav.background-primary-hightlight>ul>li.active-item>a:link, .primary-color-dark .aside-nav.background-primary-hightlight>ul>li.active-item>a:visited {
  border-color: #454545;
}

.nav-text, .aside-nav-text {
  display: none;
}

.aside-nav a, .aside-nav a:link, .aside-nav a:visited, .aside-nav li>ul, .top-nav a, .top-nav a:link, .top-nav a:visited {
  transition: background 0.20s linear 0s;
  -o-transition: background 0.20s linear 0s;
  -ms-transition: background 0.20s linear 0s;
  -moz-transition: background 0.20s linear 0s;
  -webkit-transition: background 0.20s linear 0s;
}

.aside-nav ul {
  background: #e8e8e8;
  padding: 0;
}

.aside-nav li {
  list-style: none outside none;
  cursor: pointer;
}

.aside-nav li a, .aside-nav li a:link, .aside-nav li a:visited {
  color: #444;
  display: block;
  font-size: 1rem;
  padding: 1.25rem;
}

.aside-nav>ul>li:last-child a {
  border-bottom: 0 none;
}

.aside-nav li>ul {
  height: 0;
  display: block;
  position: relative;
  background: #f4f4f4;
  border-right: solid 1px #f2f2f2;
  border-left: solid 1px #f2f2f2;
  overflow: hidden;
}

.aside-nav li ul ul {
  border: 0;
  background: #fff;
}

.aside-nav ul ul a {
  padding: 0.625rem 1.25rem;
}

.aside-nav li a:link, .aside-nav li a:visited {
  color: #333;
}

.aside-nav li li a:hover, .aside-nav li li.active-item>a, .aside-nav li li.aside-sub-submenu li a:hover {
  color: #fff;
  background: #2b4c61;
}

.aside-nav>ul>li>a:hover {
  color: #fff;
}

.aside-nav li li a:link, .aside-nav li li a:visited {
  background: none;
}

.aside-nav .show-aside-ul, .aside-nav .active-aside-item {
  height: auto;
}

nav.breadcrumb-nav {
  background: #fff;
  margin: 0.625rem 0;
}

nav.breadcrumb-nav ul {
  list-style: none;
  padding: 0;
}

nav.breadcrumb-nav ul li {
  float: right;
}

nav.breadcrumb-nav ul li a:hover {
  text-decoration: underline;
}

.breadcrumb-nav i {
  color: #B6C900;
}

nav.breadcrumb-nav ul li:after {
  content: "/";
  margin: 0 9px;
  color: #c8c7c7;
}

nav.breadcrumb-nav ul li:last-child:after {
  content: "";
}

.slide-content, .slide-nav {
  transition: all 0.10s linear 0s;
  -o-transition: all 0.10s linear 0s;
  -ms-transition: all 0.10s linear 0s;
  -moz-transition: all 0.10s linear 0s;
  -webkit-transition: all 0.10s linear 0s;
}

.slide-content {
  float: right;
  width: calc(100% - 60px);
}

.aside-nav.slide-nav {
  background: #1c3849;
  bottom: 0;
  left: 0;
  top: 0;
  margin-left: -180px;
  overflow-y: auto;
  padding-top: 0.625rem;
  position: fixed;
  width: 240px;
  z-index: 2;
}

.aside-nav.slide-nav>ul {
  background: #1c3849;
  opacity: 0;
  transition: all 0.20s linear 0s;
  -o-transition: all 0.20s linear 0s;
  -ms-transition: all 0.20s linear 0s;
  -moz-transition: all 0.20s linear 0s;
  -webkit-transition: all 0.20s linear 0s;
}

.aside-nav.slide-nav li a, .aside-nav.slide-nav li a:link, .aside-nav.slide-nav li a:visited {
  color: #fff;
  display: block;
  font-size: 0.9rem;
  padding: 0.625rem 1.25rem;
  border-bottom: 0;
}

.aside-nav.slide-nav li a:hover {
  background: #152732!important;
  color: #fff!important;
}

.aside-nav.slide-nav li>ul {
  background: #2b4c61;
  border-right: 0;
  border-left: 0;
}

.aside-nav.slide-nav li>ul ul {
  background: #456274;
  border-right: 0;
  border-left: 0;
}

.slide-nav-button {
  background: #152732;
  cursor: pointer;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 60px;
  z-index: 3;
}

.hide-xxl {
  display: none!important;
}

.right {
  float: left;
}

.left {
  float: right;
}

/* Custom Template Styles */

/* Containers */

/* .section  { 
padding: 7rem 1.25rem;
} */

header.section {
  padding: 5rem 0 40px 0;
}

.section-top-padding {
  padding: 7rem 1.25rem 0 1.25rem;
}

.section-block {
  padding: 7rem 2.5rem;
}

header.position-absolute {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 10;
  direction: rtl !important;
}

.top-bar {
  padding: 0 2rem;
}

.top-bar-social li {
  border-right: 0 solid;
}

nav {
  border-bottom: 0;
  padding: 0;
  position: relative;
  z-index: 2;
}

.logo-dark {
  display: none;
}

nav.fixed, .fixed nav {
  background: #ffffff;
  padding: 0 2em;
  box-shadow: 1px 1px 4px #ddd;
  /* display: flex;
 align-items: center;
 justify-content: center; */
}

nav.fixed .logo img {
  filter: drop-shadow(0px 0px 1px #555);
}

/* .top-nav.right-menu{
display: flex;
justify-content: space-around
} */

nav.fixed .top-nav li a, .fixed nav .top-nav li a {
  color: #f9f9f9
}

nav.fixed .logo-white, .fixed nav .logo-white {
  display: none;
}

nav.fixed .logo-dark, .fixed nav .logo-dark {
  display: block;
  width: 60px;
}

nav.fixed .left-menu, nav.fixed .right-menu {
  padding: 0;
}

.background-transparent {
  background: none;
}

nav {
  height: 90px;
}

.custom-button {
  margin-top: 200px;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}

/* .right-menu,.left-menu,.logo-menu {
float: left;
} */

.logo-menu {
  width: 100px;
}

.logo img {
  margin: 0 auto;
  position: relative;
  width: 172px;
  height: 74px;
}

.top-nav .row {
  display: flex;
  align-items: center;
}

.top-nav li a {
  color: #023a51 !important;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
  transition: all 0.20s linear 0s;
  -o-transition: all 0.20s linear 0s;
  -ms-transition: all 0.20s linear 0s;
  -moz-transition: all 0.20s linear 0s;
  -webkit-transition: all 0.20s linear 0s;
}

.top-nav ul ul {
  background: #fff none repeat scroll 100% 0;
}

.top-nav li ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-nav li ul li:last-child {
  border-bottom: 0;
}

.top-nav li ul li a, .background-white .top-nav li ul li a, .top-nav .active-item li a {
  background: #fff none repeat scroll 100% 0;
  color: rgba(0, 0, 0, 0.75);
}

.top-nav .active-item a, .top-nav li a:hover {
  background: none;
}

.top-nav>div>ul>li>a::before {
  width: 6px;
  height: 6px;
  display: block;
  background: #fff;
  content: "";
  border-radius: 10px;
  position: absolute;
  margin: 0 auto;
  right: 50%;
  margin-right: -4px;
  bottom: 15px;
  opacity: 0;
  transition: all 0.20s linear 0s;
  -o-transition: all 0.20s linear 0s;
  -ms-transition: all 0.20s linear 0s;
  -moz-transition: all 0.20s linear 0s;
  -webkit-transition: all 0.20s linear 0s;
}

.top-nav>div>ul>li>a:hover::before, .top-nav>div>ul>li.active-item>a::before {
  bottom: 10px;
  opacity: 1;
}

/* Aside Navigation */

.aside-nav>ul>li>a:hover, .aside-nav>ul>li.active-item>a:link, .aside-nav>ul>li.active-item>a:visited {
  border-width: 0 1px 0 0;
  right: -1px;
  padding-right: 20px;
  position: relative;
}

section, header {
  position: relative;
  direction: rtl;
}

.frame-block {
  padding: 50px;
  border: 10px #fff solid;
}

.arrow-object {
  position: absolute;
  bottom: -1px;
  width: 100%;
  right: 0;
}

.logosmll {
  display: none
}

.logosmll img.logo1 {
  width: 100px;
}

.cart {
  position: relative;
}

.cart {
  position: absolute;
  left: 0;
  bottom: -40px;
  z-index: 99;
}

.cart .badge {
  position: absolute;
}

.cart .badge {
  position: absolute;
  right: -7px;
  font-size: 11px;
  padding: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  top: -8px;
  background-color: var(--main_theme);
}

/* .editfloat{
 float: right;
} */

/******************section header***************************/

.sec-header {
  background-image: url(../img/Mask_Group_3.png);
  height: 90vh;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.sec-header .container {
  height: 100%;
}

.sec-header .row {
  display: flex;
  height: 100%;
}

.aligneself {
  align-self: flex-end;
}

.aligneself p {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
}

img.logoheader {
  width: 275px;
  height: 55px;
  margin-bottom: 18px;
  object-fit: contain;
}

.colorWhite {
  color: #fff;
  padding-top: 50px;
}

p.welcome, .welcomeRagwa {
  font-size: 26px;
  font-weight: bold
}

p.prag {
  padding-right: 30px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
}

.all-sections {
  padding: 40px 0;
}

/*============ start edit navbar =============*/

.fusion-row {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  /*  padding: 12px 0; */
  background-color: #f2f7f2;
}

.fusion-flex-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.fusion-builder-nested-column-0 {
  width: 40%;
}

.fusion-builder-nested-column-20 {
  width: 20%;
}

.fusion-builder100 {
  width: 100%;
}

.fusion-content-logo {
  width: 20%;
}

.fusion-flex-column {
  width: 80%;
}

.fusion-content-logo {
  width: 20%;
  margin: 12px 0;
}

.header-nav li a {
  font-size: 12px;
}

.navbar-flx {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bigger-flex-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 16px;
}

header.fusion-row .container {
  padding: 0;
}

.flx-ul-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.flx-ul-common-Q {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-left: 25px;
}

.border-bottom-nav {
  border-bottom: 1px solid #c3c3c3;
  padding: 18px 0;
}

.flx-ul-common-Q li:nth-child(1) {
  margin-left: 10px;
}

header ul li a {
  color: var(--secondry_theme);
  padding: 6px 10px;
}

.top-nav li a {
  font-size: 18px;
}

nav {
  height: unset;
}

.languge img {
  width: 25px;
  height: 25px;
}

.top-nav li.active a {
  color: var(--main_theme) !important;
}

.languge span {
  font-size: 14px;
  margin-right: 5px;
  text-transform: initial;
}

li.not-animation-nav a {
  background-color: var(--main_theme);
  border-radius: 21px;
  color: #fff !important;
}

li.not-animation-nav a:hover {
  color: var(--main_theme) !important;
}

li.not-animation-nav::after {
  content: unset;
}

.top-nav li a {
  padding: 10px 15px;
}

nav.background-transparent {
  padding: 18px 0;
  width: 100%;
}

ul.flx-ul-common-Q.border-bottom-nav li {
  border-radius: 10px;
  transition: all .4s ease-in-out;
}

ul.flx-ul-common-Q.border-bottom-nav li:hover {
  background-color: #fff;
}

img.logo-fixed-nab {
  width: 100px;
  object-fit: contain;
  display: none;
  margin-left: 20px;
}

.edit-logo-fixed {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fixed img.logo-fixed-nab {
  display: block;
}

.header-address {
  color: var(--secondry_theme);
  font-size: 20px;
  margin-bottom: 30px;
}

nav.background-transparent.fixed {
  padding: 30px 0;
}

/*=============== end edit navbar ==============*/

/* ===============footer==============*/

.footer {
  font-size: 18px;
  position: relative;
}

.footer-abs {
  position: absolute;
  left: 0;
  right: 0;
  width: 75%;
  margin: auto;
  background-color: var(--main_theme);
  color: #fff;
  z-index: 1;
  top: -75px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-footer-abs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  text-align: center;
}

.footer-abs h4 {
  font-weight: bold;
  margin-bottom: 18px;
}

a.call-nw.white-button p i {
  margin-right: 5px;
}

.subdiv {
  width: 100%;
  margin: auto;
  position: relative;
}

.footer-logo {
  height: 66px;
  width: 150px;
  margin-bottom: 15px;
  object-fit: contain;
}

.Subscribe .contentimgsub {
  width: 75px;
  background-color: var(--main_theme);
  height: 75px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: auto auto 18px auto;
}

ul.linksfooter li {
  padding: 5px 0;
  display: flex;
}

ul.linksfooter img {
  width: 19px;
  margin-left: 4px;
  object-fit: contain;
}

ul.linksfooter li span {
  color: #cccbcb
}

.rigtffoter, .rigtffoter a, .rigtffoter span, .linksfooter a, .footergray {
  color: #cccbcb
}

.copyright {
  margin-top: 15px;
  color: #6ab8ed;
}

.footer .foot1 h4 {
  font-size: 18px;
  margin-top: 0;
  font-weight: bold;
  color: #fff;
  position: relative;
  margin-bottom: 30px;
}

.footer .foot1 h4::after {
  position: absolute;
  content: '';
  height: 1px;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 40px;
  background-color: var(--main_theme);
  ;
}

.contentsocial span {
  color: #fff;
}

.footer .social-networks {
  margin: 0 auto;
  text-align: center;
  display: flex
}

.footer .social-networks a {
  margin: 0 5px 0 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  color: #000;
  background-color: #fff;
}

.footer .social-networks a i {
  font-size: 12px;
}

.linksfooter a:hover {
  color: var(--main_theme);
}

.contentsocial {
  margin-top: 7px;
  display: flex;
  align-items: center;
  font-size: 13px;
}

.contentsocial>span {
  font-weight: bold;
}

.footer_post_image>img {
  width: 70px;
  height: 65px;
  object-fit: cover;
}

.footer_post_slide {
  position: relative;
  display: flex;
  align-items: center;
}

.footer_post_image {
  margin-left: 10px;
}

.footer_post_image>img {
  border-radius: 5px;
}

.footer_post_content span {
  font-size: 12px;
  text-transform: capitalize;
  color: var(--main_theme);
}

.footer_post_content p {
  margin: 0;
  color: #cccbcb;
}

.img-footer {
  margin-bottom: 20px;
}

.footer_post_content p a {
  color: #ffffff;
}

.footer_post_slider .swiper-container {
  max-height: 250px;
  overflow: hidden;
}

.footer_post_slide {
  overflow: hidden;
}

.index_v2 .footer_slider_arrows {
  display: inline-block;
  float: left;
  margin-left: 15px;
}

.index_v2 .footer_slider_arrows .footer_arrow {
  margin: 0px 3px;
  outline: none;
  cursor: pointer;
}

.index_v2 .footer_slider_arrows .footer_arrow svg path {
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.index_v2 .footer_slider_arrows .footer_arrow:hover svg path {
  fill: rgb(246, 190, 26);
}

.index_v2 .clv_copyright_wrapper {
  background-color: #000000;
}

.social-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
}

.social-footer ul {
  display: flex;
  align-items: center;
}

.social-footer ul li {
  margin: 0 0 0 10px;
  font-size: 15px;
  color: var(--main_theme);
}

.social-footer ul li a {
  color: var(--main_theme);
}

.social-footer ul+p {
  font-size: 14px;
}

.social-footer ul+p a {
  color: #cccbcb;
}

p.address-locaion {
  line-height: 36px;
}

p.address-locaion a {
  color: var(--secondry_theme);
}

.address-p {
  color: #59667d;
}

.address-link-button {
  background-color: #f9fafb;
  text-align: center;
  display: block;
  margin: 10px 0;
  width: 100%;
  padding: 18px 0;
  border-radius: 35px;
  color: var(--secondry_theme);
  transition: all .4s ease-in-out;
}

.address-link-button:hover {
  background-color: var(--main_theme);
  color: #fff;
}

.fusion-text {
  color: #59667d;
}

.fusion-text.align-center a {
  color: var(--secondry_theme);
}

.flx-ul-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-bottom: 0;
}

.flx-ul-footer li a {
  color: var(--secondry_theme);
  margin: 0 10px;
}

span.rights-reserved {
  font-size: 14px;
  color: #59667d;
}

img.footer-logo+p {
  color: #59667d;
}

p.address-locaion a:hover {
  color: var(--main_theme);
}

p.address-locaion a.activefooter {
  color: var(--main_theme);
}

/* ===============end footer============*/

/*////////////////////////////////////////////////////////////////////////////////*/

/*////////////////////////////////////responsive//////////////////////////////*/

/*//////////////////////////////////////////////////////////////////////////////*/

/* Media Screen */

@media screen and (min-width:768px) {
  .aside-nav .count-number {
    margin-right: -1.25rem;
    float: left;
  }
  .top-nav li:hover>ul {
    display: block;
    z-index: 10;
  }
  .top-nav li:hover>ul ul {
    right: 100%;
    margin: -2.5rem 0;
    width: 100%;
  }
}

@media (max-width: 1450px) {}

@media (max-width: 1050px) {}

@media (max-width: 1199px) {}

@media screen and (max-width:1366px) {
  .hide-xxl, .hide-l, .hide-m, .hide-s {
    display: initial!important;
  }
  .hide-xl {
    display: none!important;
  }
}

@media screen and (max-width:1140px) {
  .hide-xxl, .hide-xl, .hide-m, .hide-s {
    display: initial!important;
  }
}

@media (max-width: 1024px) {
  /*******footer*******/
  .logo-footer img {
    width: 276px;
    height: 57px;
    object-fit: contain;
  }
}

@media (max-width: 991px) {
  /************************footer******************/
  .footer-padding {
    padding-left: 0;
    color: #fff;
    font-size: 15px;
  }
  .logo-footer img {
    width: 198px;
    height: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .top-nav li a {
    font-weight: bold;
    padding: .9rem;
  }
  p.prag {
    padding-right: 82px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 991) {}

@media (max-width: 991px) {
  .logo img {
    margin: 0 auto;
    position: relative;
    width: 90px;
    height: 46px;
  }
  .top-nav li a {
    padding: 5px 7px;
    font-size: 12px;
  }
  .fusion-content-logo {
    width: 15%;
  }
  .fusion-content-logo {
    width: 15%;
    margin: 12px 0;
  }
  .fusion-flex-column {
    width: 85%;
  }
  header ul li a {
    padding: 6px 5px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  /****************************navbar menu**************************/
  nav {
    height: 60px;
  }
  header.position-absolute {
    z-index: 99;
  }
  .hide-xxl, .hide-xl, .hide-l, .hide-s {
    display: initial!important;
  }
  nav {
    display: block;
    cursor: pointer;
    line-height: 3;
  }
  .top-nav>ul {
    height: 0;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 999;
  }
  .top-nav>ul.show-menu, .aside-nav.minimize-on-small>ul.show-menu {
    height: auto;
  }
  .top-nav ul ul {
    right: 0;
    margin-top: 0;
    position: relative;
    left: 0;
  }
  .top-nav li ul li a {
    min-width: 100%;
  }
  .top-nav li {
    float: none;
    list-style: none outside none;
    padding: 0;
  }
  .top-nav li a {
    color: #fff;
    display: block;
    padding: 1.25rem 0.625rem;
    text-align: center;
    text-decoration: none;
  }
  .top-nav li ul, .top-nav li ul li ul {
    display: block;
    overflow: hidden;
    height: 0;
  }
  .top-nav>ul ul.show-ul {
    display: block;
    height: auto;
  }
  .top-nav li ul li a {
    background: none repeat scroll 100% 0 #2b4c61;
    padding: 0.625rem;
  }
  .top-nav li ul li ul li a {
    background: none repeat scroll 100% 0 #456274;
  }
  .top-nav {
    position: fixed;
    top: 0;
    z-index: 10;
    left: -100%;
    width: 100%!important;
    bottom: 0;
    background: none repeat scroll 100% 0 #1c3849;
    overflow-y: auto;
    transition: all 0.20s linear 0s;
    -o-transition: all 0.20s linear 0s;
    -ms-transition: all 0.20s linear 0s;
    -moz-transition: all 0.20s linear 0s;
    -webkit-transition: all 0.20s linear 0s;
  }
  body.show-menu {
    overflow: hidden;
  }
  .show-menu .top-nav {
    left: 0;
    width: 100%;
  }
  .top-nav>ul {
    height: auto;
    /*  overflow:auto; */
    position: relative;
    top: 60px;
  }
  .nav-text {
    color: #fff;
    display: inline-block;
    margin-left: 0;
    width: auto;
    top: 0;
    left: 0;
    background: none repeat scroll 100% 0 #1c3849;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    z-index: 50;
    padding-top: 8px;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .top-nav .right {
    float: none;
  }
  .logo img {
    max-width: 172px;
    max-height: 40px;
    margin: 0 auto;
    width: auto;
  }
  .top-nav li a, .background-white .top-nav li a {
    color: #fff;
    font-size: 14px;
    padding: 1em;
    text-align: center;
  }
  aside {
    border: none;
    padding: 0;
  }
  aside.aside-left {
    border-left: 0;
    padding-left: 0;
  }
  header.position-absolute {
    background: #fff none repeat scroll 100% 0;
    position: relative;
  }
  .logo img {
    max-width: 172px;
    max-height: 40px;
    margin: 0 auto;
    width: auto;
    top: 0;
  }
  .logo {
    /*  height: 60px; */
    margin-top: 0;
    display: block;
  }
  .nav-text::after {
    color: #454545;
  }
  .nav-text {
    margin-left: 0;
  }
  .fixed {
    position: fixed;
    z-index: 10;
  }
  .fixed .nav-text::after {
    color: #454545;
  }
  .top-nav, .nav-text, .background-white .top-nav li a {
    background: none repeat scroll 100% 0 var(--main_theme)
  }
  .top-nav {
    background-color: #f2f7f2;
  }
  .logo-menu {
    display: none;
  }
  nav.fixed .top-nav li a, .fixed nav .top-nav li a {
    color: #fff;
  }
  nav.fixed .logo-white, .fixed nav .logo-white {
    display: none;
  }
  nav.fixed .logo-dark, .fixed nav .logo-dark, .logo-dark {
    display: block;
    width: auto;
  }
  nav.fixed, .fixed nav {
    padding: 4px;
  }
  .left-menu, .right-menu {
    width: 100%;
    padding-top: 0;
  }
  .top-nav.left-menu, .top-nav.right-menu {
    position: relative;
    z-index: 10;
    right: 0;
    width: 100% !important;
  }
  .top-nav ul {
    top: 0;
  }
  .top-nav.left-menu {
    padding-top: 60px;
  }
  .margin-top-130 {
    margin-top: 0!important;
  }
  .padding-3x {
    padding: 30px !important;
  }
  .top-nav.right-menu {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    min-height: 100%
  }
  .background-image {
    background-position: center;
  }
  .top-nav li a {
    padding: 0.5rem;
  }
  .top-nav .row {
    flex-direction: column;
  }
  .logosmll {
    display: block;
    position: absolute;
    left: 7px;
  }
  a.logo {
    display: none;
  }
  .cart {
    position: relative;
    left: 0;
    bottom: unset;
  }
  .cart .badge {
    top: -5px;
  }
  .fusion-flex-column {
    width: 100%;
  }
  /*******************************header************/
  .sec-header {
    background-image: url(../img/Mask_Group_3.png);
    height: auto;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background: linear-gradient( #bce9fc 0%, #8ad9fa 25%, #54c7f8 50%, #28b9f7 75%, #0aaff6 100%);
  }
  .sec-header .row {
    flex-direction: column
  }
  nav {
    position: relative;
  }
  p.welcome, .welcomeRagwa {
    font-size: 23px;
  }
  p.prag {
    padding-right: 13px;
  }
  .colorWhite {
    padding-top: 15px;
  }
  .flex.just-start p {
    display: none;
  }
  .lang span {
    display: none;
  }
  .phone {
    font-size: 13px;
    /* font-weight: bold; */
  }
  .topNav-right a {
    font-size: 13px;
  }
  nav.background-transparent.fixed {
    padding: 5px 5px;
  }
  /************end header *******************/
  /************** edit navbar *******************/
  .none-sm {
    display: none;
  }
  nav.background-transparent {
    padding: 5px;
  }
  .navbar-flx {
    justify-content: center;
  }
  .fixed img.logo-fixed-nab {
    display: none
  }
  /************* end edit navbar ***********/
  /*****login*****/
  .form-login {
    width: 80%;
    margin-top: 30px;
  }
  /**end login **/
  .all-section {
    padding: 40px 0;
  }
  .container-header {
    max-width: 100%;
  }
  /*==========footer===========*/
  .footer {
    font-size: 12px;
  }
  footer h3 {
    font-size: 14px;
    margin-top: 0;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .flex-footer-abs {
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
  }
  .footer-abs {
    width: 95%;
  }
  .footer .foot1 h4 {
    font-size: 16px;
  }
  .footer-abs h4 {
    font-size: 16px;
  }
  .footer_post_slider .swiper-container {
    height: 150px;
  }
  .section-before-footer {
    padding-bottom: 135px;
  }
  /*==========end footer===========*/
}

@media (max-width: 700px) {}

@media (max-width: 599px) {}

@media (max-width: 480px) {
  /**********nav bar****/
  .aside-nav li a {
    text-align: center;
  }
  .minimize-on-small .aside-nav-text {
    background: #152732 none repeat scroll 100% 0;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 1.2rem;
    line-height: 3;
    max-width: 100%;
    padding-left: 0.625rem;
    text-align: center;
    vertical-align: middle;
  }
  .aside-nav-text:after {
    content: "\f008";
    font-family: "mfg";
    font-size: 1.1rem;
    margin-right: 0.5rem;
    text-align: left;
  }
  .aside-nav.minimize-on-small>ul {
    height: 0;
    overflow: hidden;
  }
  .hide-xxl, .hide-xl, .hide-l, .hide-m {
    display: initial!important;
  }
  .aside-nav li a {
    text-align: right;
  }
  /*************** edit nav ******************/
  nav.background-transparent {
    direction: ltr;
  }
  .logosmll {
   display: block;
   position: absolute;
   right: 7px;
   left: unset;
}
}