@charset "utf-8";
/* CSS Document */

@font-face {
  font-family: TheSans;
  src: url(../fonts/TheSans-Bold.otf);
}
@font-face {
  font-family: Neo-Sans;
  src: url(../fonts/../fonts/Neo-Sans-Arabic-Regular.ttf);
}
@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/../fonts/Poppins-Bold.otf);
}
@font-face{
	font-family: Bahij_TheSansArabic ;
	src: url(../fonts/Bahij_TheSansArabic.ttf)
}

html::-webkit-scrollbar{width:7px;height:8px}
html::-webkit-scrollbar-track{background-color: #eeeeee;}
html::-webkit-scrollbar-thumb{background-color:#1F8271;border-radius:0}

::-moz-selection {
    text-shadow: none;
    background: #1F826F;
}

::selection {
    text-shadow: none;
    background: #1F826F;
}

body {
  font-family: "Bahij_TheSansArabic";
}
a:hover,
a:focus {
  text-decoration: none;
}
.clicker {
  display: none !important;
}
.overlay .closebtn {
  display: none;
}
span.en,
i.en {
  font-family: "Poppins-Bold";
}
.en {
  font-family: "Poppins-Bold" !important;
}

a.btn{transition: all .3s !important;max-width: 100%;}
@media (max-width: 991px) {
  body {
    overflow-x:hidden;
  }
}


/* start header */

.header {
    background-color: #1F826F;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    transition: all 0.5s;
    box-shadow: 0px 3px 7px 0px rgba(0, 0, 0, 0.16);
    font-family: "Neo-Sans" !important;
}
.navigation .logo {
  font-family: "Droid:;Kufi-Bold";
  font-size: 17px;
  line-height: 42px;
  color: #ce291f;
  margin-top: 8px;
  display: inline-block;
}
.logo .logo1 {
  height: 50px;
}
.logo2{display: none;}
.navigation .navbar-default {
  background-color: transparent;
  border: none;
  margin: 0;
  margin-top: 8px;
}
.navigation .navbar-default .navbar-nav {
  float: right;
  margin-right: -45px;
}
.navigation .navbar-default .navbar-nav li {
  margin: 0 7px;
}
.navigation .navbar-default .navbar-nav li:last-child {
  margin-left: 0;
}
.navigation .navbar-default .nav-left {
  float: left;
  margin: 0;
}
.navigation .navbar-default .navbar-nav li a,
.navigation .navbar-default .nav-left li a {
  font-family: "TheSans";
  font-size: 15px;
  line-height: 32px;
  color: #fff;
  padding: 5px;
  border: none;
  transition: all 0.3s;
}
.navigation .navbar-default .nav-left li a {
    font-size: 15px;
    padding: 5px 2px;
}
.navigation .navbar-default .nav-left li a.btn {
    font-size: 14px;
    color: #1F826F !important;
    border-radius: 5px;
    margin-right: 5px;
    background-color: #fff;
    box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 0.16);
    width: 130px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    transition: all 0.3s;
}
.navigation .navbar-default .nav-left li a.btn:hover {
    background: #1F826F;
    color: #fff !important;
}
.navigation .navbar-default .navbar-nav li a:hover,
.navigation .navbar-default .nav-left li a:hover {
  color: #fdfe78 !important;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
  background-color: transparent;
}

.width {
  width: 100% !important;
}
.opacity {
  display: none !important;
}

.sub-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9f9f9;
    min-width: 180px;
    border: 1px solid #f9f9f9;
    border-radius: 2px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999;
    padding-right: 0;
    transition: all .3s;
}

.sub-menu li {
  margin: 0 !important;
}
.sub-menu li a {
  display: block;
  width: 100%;
  color: #1d1f25 !important;
  padding: 10px 15px !important;
  text-decoration: none;
  line-height: 23px !important;
  text-align: center !important;
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-item-has-children {
  position: relative;
}
.menu-item-has-children span {
  color: #fff;
  font-size: 10px;
  line-height: 42px;
  position: absolute;
  top: 0;
  left: -4px;
  transition: all 0.3s;
}
.sub-menu a:hover {
    background-color: #1F826F !important;
    color: #fff !important;
}
.navigation .navbar-default .navbar-nav li .sub-menu a:hover {
  color: #fff !important;
}

.menu-item-has-children:hover .sub-menu{display: block !important;animation: fadeIn .5s;}

.menu-item-has-children:hover span {
  color: #fdfe78;
}

.affix {
  top: 0;
  width: 100%;
  transition: all.5s;
  padding: 10px 0 !important;
  position: fixed !important;
  animation-name: slide-down;
  animation-duration: 1.2s;
  background-color: #1F826F;
  box-shadow: 0 1px 10px 5px #0e345266;
  -webkit-animation-name: slide-down; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 1.2s; /* Safari 4.0 - 8.0 */
}

@-webkit-keyframes slide-down {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}

/* Standard syntax */
@keyframes slide-down {
  from {
    top: -100px;
  }
  to {
    top: 0;
  }
}


.navigation .navbar-default .nav-left.client-nav {
  margin: 6px 0;
}
.navigation .navbar-default .nav-left.client-nav li a {
  font-size: 14px;
}
.navigation .navbar-default .nav-left.client-nav li:first-child {
  margin-left: 20px;
}
.navigation
  .navbar-default
  .nav-left.client-nav
  li.menu-item-has-children
  span {
  line-height: 32px;
}

.header-extra {
  height: 98px;
  width: 100%;
  background-color: transparent;
}

/* start location nav menu */
.saudi_popover {
    position: absolute;
    bottom: 0px;
    left: 16%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    border-radius: 25px 25px 25px 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: all .3s;
    }
.saudi {
    display: inline-block;
}
.saudi i.fas.fa-map-marker-alt{ color:#fff;}
.saudi i.fas.fa-map-marker-alt:hover {color: #f0ee6f;}
.saudi:hover .saudi_popover {
    opacity: 1;
    z-index: 8;
    bottom: -45px; 
}
.contact_mobile li  {
    display: table !important;
    cursor: pointer;
    font-size: 21px;
    float: left;
    color: #fff;
    transition: all 0.3s;
    z-index: 9999;
    margin: 14px 6px;
    display: block;
}
.contact_mobile li a  {
color:white;
}
.contact_mobile li a:hover  {
color:yellow;
}

.saudi_mobile:hover .saudi_popover_mobile {    opacity: 1;display: block;
    z-index: 8;
    bottom: -45px;}

.contact_mobile i.fab.fa-whatsapp {font-size:23px}

.saudi_popover_mobile {
    position: absolute;
   bottom: -120px;
    width: auto;
    height: auto;
    background-color: #ffffff;
    text-align: center;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    display: none;
    transition: all .3s;
}

    /* end location nav menu */

/* End header */

/*start hero*/

.hero{
  background-color: #343E83;
  position: relative;
}
.hero .hero_img {
    max-width: 50%;
    max-height: calc(100% - 10px);
    position: absolute;
    top: 0;
    left: 0;
}
.hero .pattern {
    position: absolute;
    top: 45%;
    right: -20px;
    transform: translateY(-50%);
    max-width: 30%;
}
.hero .text {
  width: 50%;
  padding: 140px 0;
  position: relative;
}

.hero .text h1{
  font-size: 35px;
  line-height: 50px;
  color: #fff;
  margin: 0;
}
.hero .text h1 span{color: #ED902E;}
.hero .text p{
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin: 60px 0;
}
.hero .text .btn{
  width: 230px;
  height: 65px;
  border-radius: 50px;
  background-color: #fff;
  border: 1px solid #707070;
  font-size: 22px;
  line-height: 65px;
  color: #1F8271;
  padding: 0;
  margin-top: 10px;
}
.hero .text .btn:hover{
  background-color: #1F826F;
  border-color: #1F826F;
  color: #fff;
  box-shadow: 0px 3px 6px 0px rgb(0 0 0 / 0.16);
}
.hero .arrow{
  font-size: 28px;
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s;
}
.hero .arrow:hover{
  color: #1F826F;
  bottom: 5px;
}

.hero .whatsapp_icon {
  position: fixed;
  left: 15px;
  bottom: 15px;
  width: 60px;
  height: 60px;
  line-height: 66px;
  text-align: center;
  font-size: 30px;
  background-color: #1F8271;
  color: #fff;
  border-radius: 50%;
  z-index: 99;
}

.hero .phone_icon{
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 60px;
  height: 60px;
  line-height: 66px;
  text-align: center;
  font-size: 25px;
  background-color: #E45445;
  color: #fff;
  border-radius: 50%;
  z-index: 99;
}

/*end hero*/

/*start new_offers*/

.new_offers{
  background-image: url(../images/offers_bg.png);
  background-position: center;
  background-size: cover;
  padding: 60px 0;
  padding-top: 100px;
}
.new_offers .title {
    text-align: center;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 40px;
}
.new_offers .title h1{
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
}
.new_offers .title p{
  font-size: 16px;
  line-height: 30px;
  color: #000;
}
.new_offers .img_container {
  width: 70%;
  height: 500px;
  background-color: #5E6CC4;
  position: relative;
  margin: 0 auto;
  margin-bottom: 120px;
  border-radius: 15px;
  display: table;
}
.new_offers .img_container .offers_shape {
    position: absolute;
    bottom: -80px;
    left: -150px;
    z-index: 9;
}
.new_offers .img_container .offers_img {
  position: absolute;
  top: 40px;
  left: 40px;
  max-width: 100%;
  border-radius: 15px;
}
.new_offers .offer_block {
  background-color: #F7F7F7;
  padding: 20px 50px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.new_offers .offer_block .right{
  width: 50%;
}
.new_offers .offer_block h1{
  font-size: 30px;
  line-height: 40px;
  color: #000;
  margin: 0;
  transition: all .3s;
}
.new_offers .offer_block p{
  font-size: 16px;
  line-height: 30px;
  color: #000;
  margin-top: 20px;
}
.new_offers .offer_block h2 {
    font-size: 35px;
    color: #27A34F;
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
}
.new_offers .offer_block .btn{
  width: 210px;
  height: 55px;
  font-size: 24px;
  color: #fff;
  line-height: 55px;
  padding: 0;
  border-radius: 50px;
  background-color: #27A34F;
  border: 1px solid #27A34F;
}
.new_offers .offer_block .btn:hover {
    background-color: transparent;
    border-color: #27A34F;
    color: #27A34F;
}
.new_offers .offer_block:hover h1{
  color: #27A34F;
}
.new_offers .last {
    padding-right: 15px;
}
.new_offers .last li {
    font-size: 14px;
    line-height: 30px;
    color: #000;
}

.new_offers .banner{
  width: 100%;
  border-radius: 35px;
  margin-top: 30px;
  min-height: 150px;
}

/*end new_offers*/


/* start footer-top */

.footer-top {
  background-color: #2C3371;
  padding: 50px 0;
}
.footer-top h1 {
  font-size: 18px;
  line-height: 20px;
  color: #fcff76;
  margin-bottom: 35px;
  font-weight: bold;
}
.footer-top h4 {
  font-size: 18px;
  line-height: 20px;
  color: #fcff76;
  margin-bottom: 35px;
}
.footer-top p {
  width: 92%;
  font-size: 14px;
  line-height: 34px;
  color: #fff;
  font-family: "Neo-Sans" !important;
}
.footer-top ul.bottom-nav {
    list-style: none;
    text-align: justify;
    padding: 0;
    float: right;
    width: 100%;
}
ul.bottom-nav li {
    display: inline;
    background: #001F54;
    margin: 2px;
}
.footer-top ul.bottom-nav li a {
    font-size: 10px;
    line-height: 30px;
    padding: 0px 5px;
    color: #fff;
    transition: all 0.3s;
}
.footer-top ul.bottom-nav li a:hover {
  color: #fcff76;
}
.footer-top ul.info {
  list-style: none;
  padding: 0;
}
.footer-top ul.info li {
  font-size: 13px;
  line-height: 30px;
  color: #fff;
  position: relative;
  padding-right: 20px;
}
.footer-top ul.info li span {
  color: #fcff76;
  margin-left: 5px;
}
.footer-top ul.info li i {
  position: absolute;
  top: 8px;
  right: 0;
}


/* end footer-top */


/* start footer */

footer {
  background-color: #1F826F;
}
footer .footer-nav {
  margin: 0;
}
footer .footer-nav li a {
  font-size: 14px;
  color: #fff;
  line-height: 70px;
  padding: 0 2px;
  transition: all 0.3s;
}
footer .footer-nav li a:hover {
  color: #fcff76;
}
footer .icons {
  margin: 0;
}
footer .icons li span {
  font-family: FontAwesome;
  font-size: 18px;
  line-height: 70px;
  color: #fcff76;
  font-weight: normal;
  padding: 0 10px;
}

/* end footer */

