@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Foundation:wght@500&family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Foundation:wght@500&family=Montserrat:wght@300;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Foundation:wght@500&family=Montserrat:wght@300;600&family=Tajawal:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Edu+NSW+ACT+Foundation:wght@500&family=Montserrat:wght@300;600;900&family=Tajawal:wght@500;900&display=swap');
html {
  scroll-behavior: smooth;
}

body{
  font-family: 'Bahij_TheSansArabic-Plain', sans-serif;
  overflow-x: hidden!important;
  overflow-y: auto;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  padding-top: 0px;
}
*{
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

@font-face {
  font-family: 'Bahij_TheSansArabic-Plain';
  font-style: normal;
  font-weight: normal;
  src: local('Bahij_TheSansArabic-Plain'), url('../fonts/Bahij_TheSansArabic-Plain.woff') format('woff');
  }



body::-webkit-scrollbar {
    width: 8px;
}
body.thin::-webkit-scrollbar {
    width: 2px;
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #f6f6f6;
}
::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background: #8b8b8b;
}
::-webkit-scrollbar-thumb:window-inactive {
    background: #8b8b8b;
}
i[class^="flaticon-"]:before, i[class*=" flaticon-"]:before {
  font-weight: bold !important;
}


a, .btn, img{
  text-decoration: none !important;
  transition:  0.3s ease-in-out;
  -webkit-transition:  0.3s ease-in-out;
  -moz-transition:  0.3s ease-in-out;
  -ms-transition:  0.3s ease-in-out;
  -o-transition:  0.3s ease-in-out;
}


.form-control:focus,
button:focus,
button:active,
input:active,
input:focus,
select:active,
select:focus,
textarea:focus,
textarea:active {
box-shadow: none !important;
outline: 0 !important;
}

p{
  color: #00202F;
  margin-bottom: 0;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.title__box {
  margin-bottom: 61px;
}
.main-title {
  font-size: 45px;
  color: #00202f ;
  text-transform: capitalize;
  font-weight: bold;
  text-align: center;
  position: relative;
  margin-bottom: 48px;
}
.main-title::before {
  position: absolute;
  content: '';
  background-color: #C79A55;
  width: 112px;
  height: 5px;
  left: 50%;
  bottom: -21px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
@media(max-width:576px) {
 .main-title {
    font-size: 30px;
  }
}
.main-des {
  font-size: 20px;
  color: #4A4A4A;
  text-align: center;
  max-width: 691px;
  margin-left: auto;
  margin-right: auto;
}

/*start header navbar */
.overflow_hidden{
  overflow: hidden !important;
}
.mob-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  background-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
  z-index: 2900;
}
.mob-overlay.active {
  opacity: .85;
  visibility: visible;
  transition: all .3s;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
}
.sidebar-wrapper {
  display: none;
}
@media(max-width: 992px) {

.sidebar-wrapper li{
  border-bottom: 1px solid #ededed;
}
.sidebar-wrapper li a {
  color: #00202f ;
  text-transform: capitalize;
  padding: 10px 20px;
  display: block;
  text-align: center;
}
.sidebar-wrapper .sub_menu .back_li {
  background: #4c4c85;
}
.sidebar-wrapper .sub_menu .back_btn{
  color: #fff;
}
.sidebar-wrapper .sub_menu .back_btn .fa{
  margin: 0 5px;
}
#burgerBtn {
  border-top: none;
  height: 25px;
  width: 30px;
  box-sizing: border-box;
  position: absolute;
  z-index: 3000;
  top: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
#burgerBtn:before {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 33px;
  background: #1A9DDD;
  top: 10px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -khtml-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
  #burgerBtn:after {
    content: "";
    display: block;
    position: absolute;
    height: 2px;
    width: 33px;
    bottom: 11px;
    background: #1A9DDD;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -khtml-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
 }
}

.absolute-top {
    position:absolute;
        position: absolute;
    top: 0px;
    z-index: 100;
    width: 100%;
}
/*page*/
.top-bar {
  color: #fff;
  font-size: 14px;
  background-color:transparent;
  padding: 28px 0;
}
@media(max-width: 992px){
  .top-bar{
    display: none !important;
  }
}
.navbar-wrapper{
  height: 67px;
  background-color: transparent;
}
.navbar-wrapper .nav__container {
  height: 113px;

  display: flex;
  align-items: center;
  background: transparent;
  position: relative;
}
.navbar-wrapper .nav__container::before {
  position: absolute;
  content: '';
  width: 94%;
  height: 20px;
  background-color: transparent;
  left: 3%;
  bottom: -20px;
}
.lang-des .lang-item > a.lang-link {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  padding: 0 16px;
  direction: ltr;
}
.lang-des .lang-item > a.lang-link.dropdown-toggle::after {
  display: none;
}
.lang-des .dropdown-menu {
  padding: 0;
  border: 1px solid #fff;
}
.lang-des .dropdown-item {
  padding: 10px;
  background: #f89939;
  color: #fff;
}

.lang-des .lang-item img {
  width: 17px;
  height: 17px;
  border-radius:20px;
}
.lang-link span{
        direction: ltr;
}
.call-icon{
    border-radius:0px !important;
}
.navbar{
  display: flex;
  position: relative;
  justify-content: space-between;
  width: 100%;
}
.navbar-brand{
  padding: 0;
}
@media(max-width: 768px) {
  .navbar {
    width: 100%;
    padding: 10px;
  }
  .navbar-brand{
   margin: 0;
  }
}

.navbar-collapse {
  flex-grow: 0;
}

.navbar-toggler {
  background-color: transparent;
  border: none;
  font-size: 30px;
}
.bars-toggler-icon {
  color: #c79a55 ;
}
.navbar-nav .nav-link {
  /*color: #fff;*/
  font-size: 18px;
  text-transform: capitalize;
  position: relative;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #1A9DDD;
}

@media(min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-top: 0;
      padding-bottom: 0;
      height: fit-content;
  }
  .navbar-nav > .nav-item.active > .nav-link{
    color: #c79a55;
  }
}


@media(max-width: 991px) {
  body {
    padding-top: 0;
  }
  .fixed-top {
    position: relative;
  }
  .d_mob_none {
    display: none;
  }
}

@media(min-width: 992px) and (max-width: 1200px) {
  .navbar-nav .nav-link {
    font-size: 15px;
  }
}

.menu-logo .social-item .social-link {
  color: #fff;
  font-size: 16px;
}
.menu-logo .social-item .social-link i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27px;
  height: 26px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid #fff;
  margin: 0 5px;
  font-size: 14px;
}
.menu-logo  .social-link:hover i{
  background: #1a9ddd;
}
.rel_icon {
  position: relative;
}
.login_drodown::after {
  display: none;
}

@media(max-width: 576px){
  .mobile_wrapper_nav {
    padding: 10px 0;
  }
}
.dropdown-menu {
  padding: 0;
  border: 1px solid #fff;
}
.dropdown-item {
  display: block;
  padding: 10px;
  color: #333;
}

/* start slider section */
.carousel-item, .carousel-item img {
  height: 710px;
}
.carousel_content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.carousel_content .sub_title {
  font-size: 24px;
  color: #00202F;
  margin-bottom: 38px;
}
.carousel_content .slider__title {
  font-size: 50px;
  color: #fff ;
  margin-bottom: 36px;
  max-width: 680px;
}
.carousel_content .slider_des {
  font-size: 28px;
  color: #fff;
}
.get__Start {
  height: 55px;
  width: 206px;
  margin-top: 100px;
  color: #fff;
  background-color: #F89939;
  font-size: 18px;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  box-shadow: 3px 3px  #B1ECFF;
  overflow: hidden;
}

@media(max-width: 991px) {
  /*.main_slider_section {*/
  /*  margin-top: 47px;*/
  /*}*/
  .carousel_content .slider__title {
    font-size: 36px;
  }
  .get__Start {
    margin-top: 40px;
  }
  .carousel_content .sub_title, .carousel_content .slider__title {
    margin-bottom: 20px;
    padding: 10px;
    margin: 0px;
    font-family: 'Montserrat', sans-serif;
font-family: 'Montserrat', sans-serif;
    margin-top: 341px;
    /* background-color: #c79a5545; */
    text-align: center;
    color: #fff;
    /*font-weight:bold;*/
    font-size: 45px;
    font-weight:normal;

  }
  html[dir="rtl"] .carousel_content .sub_title, .carousel_content .slider__title {

font-family: 'Tajawal', sans-serif;  
font-size: 45px;
font-weight:normal;
  }
  .carousel_content .slider_des {
    line-height: 1.2;
  }
}
@media(max-width: 767px) {
    .cont-fet {
   margin:10px 0;
        
    }
    .service_img {
    width: 141px;
    margin-bottom: 33px;
    border-radius: 100%;
    overflow: hidden;}
    .view_wrap{
padding-inline-start:0px   !important  }
    .our_content{
        width:100%;
        padding:10px 0;
    }
    .about__media {
    display: flex;
    justify-content: center;
    padding: 10px;
    padding-inline-start: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.about__title {
    font-size: 40px;
    color: #00202f;
    font-weight: bold;
    max-width: 73%;
    margin: auto;
    line-height: 1.5;
}
    .about_section{
            text-align: center;
    padding: 33px 0;
    }
  .carousel-item, .carousel-item img {
    height: 460px;
  }
}

/*** start about section***/
.about_section {
  padding: 100px 0;
}
.about_thumb img {
  max-width: 100%;
  height: auto;
}
.about_sm_title {
  font-size: 40px;
  color: #c79a55;
  margin-bottom: 21px;
}
.about__title {
  font-size: 24px;
  color: #00202f ;
}
.about__des {
  font-size: 20px;
  margin-bottom: 30px;
}
.about__media {
  display: flex;
  padding: 10px;
  padding-inline-start: 30px;
  margin-bottom: 30px;
}
.about__media .our_img {
  min-width: 80px;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline-end: 13px;
  background-color: #c79a55;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.our_img:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.about__media .our__title {
  font-size: 36px;
  color: #4E4E4E;
  font-weight: bold;
  margin-bottom: 24px;
}
.about__media .our_des {
  font-size: 18px;
}
.view_wrap {
  padding-inline-start: 68px;
}
.view_more {
  height: 58px;
  width: 209px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin:auto;
  color: #fff;
  font-size: 18px;
  text-transform: capitalize;
  background-color: #00202F;
  box-shadow: 3px 3px #00202F;
  margin-top: 48px;
  overflow: hidden;
  border-radius: 14px;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  -o-border-radius: 14px;
}

/*** services section ***/

.services_section {
  background-color: #fcfcfc;
  padding-top: 81px;
}
.service__card {
    background:#fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  padding: 48px 10px 20px 10px;
  margin-bottom: 81px;
  cursor: pointer;
}
.service_img {
  width: 141px;
  margin-bottom: 33px;
}
.service_img img {
  max-width: 100%;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}
.service_title {
  font-size: 24px;
  font-weight: bold;
  color: #C79A55;
}
.service__card:hover .service_img img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

/* start video section*/
.video_section {
  min-height: 600px;
  background-image: url(/frontend/image/videocover.png);
  background-size: cover;
  position: relative;
  padding: 100px 0;
  margin: 30px 0 62px 0;
}
.video_overlay {
  position: absolute;
  display: flex;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00202fbf;
}
.video__content {
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
}
.video_title {
  font-size: 50px;
  line-height: 1.4;
  font-weight: bold;
  color: #fff;
  margin-bottom: 37px;
  max-width: 1096px;
}
.video_text {
      font-size: 21px;
    color: #C79A55;
    max-width: 744px;
    font-style: italic;
    margin-bottom: 42px;

}
.play__video {
  display: block;
  width: 134px;
  height: 134px;
}
.play__video img {
  max-width: 100%;
}
.play__video:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media(max-width: 575px) {
  .service__card {
    margin-bottom: 30px;
  }
  .video_section {
    padding: 40px 10px;
    min-height: 420px;
  }
  .video_title {
    font-size: 26px;
  }
  .video_text {
    font-size: 22px;
  }
}

.video_modal {
  background-color: rgba(248, 153, 57, 0.5);
  padding-right: 0 !important;
}
.video_modal button.close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #707070;
  font-size: 20px;
  font-weight: bold;
  height: 40px;
  width: 40px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.video_modal::-webkit-scrollbar {
  width: 0;
}
.video_modal .modal-dialog {
  margin: 80px auto;
}
@media (min-width: 991px) {
  .video_modal .modal-dialog {
      max-width: 900px;
      margin: 111px auto;
  }
  .video_modal .modal-body {
    padding: 63px 68px 41px 68px;
  }
}
.video_modal .product-modal-content {
  margin: auto;
  display: block;
  width: 90%;
  max-width: 1055px;
  height: 693px;
  border: 3px solid #FFFFFF;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

@media (min-width: 768px) and (max-width:991px){
  .video_modal .modal-dialog {
      max-width: 700px;
      margin: 111px auto;
  }
  .video_modal .modal-body {
    padding: 20px 30px;
  }
}

/* start works section*/
.works_section {
  padding-bottom: 81px;
}
.work__card {
  display: block;
  height: 340px;
  overflow: hidden;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-bottom: 30px;
  cursor: pointer;
}
.work__card .work_img {
  width: 100%;
  height: 100%;
}
.work__card:hover .work_img{
  opacity: 0.7;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.more__works {
    height: 64px;
    width: 275px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    text-transform: capitalize;
    background-color: #c79a55;
    box-shadow: 3px 3px #70DDFF;
    margin-top: 73px;
    overflow: hidden;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    margin-left: auto;
    margin-right: auto;
}

@media(max-width: 575px) {
  .work__card {
    height: 280px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* start clients section */
.clients_section {
  padding-bottom: 30px;
}

@media (min-width: 992px) {
  .clients_section .col-lg-2 {
      -ms-flex: 0 0 20%;
      flex: 0 0 20%;
      max-width: 20%;
  }
}
/*.client_card {*/
  /*width: 172px;*/
  /*height: 172px;*/
/*  margin-left: auto;*/
/*  margin-right: auto;*/
/*  margin-bottom: 50px;*/
/*  cursor: pointer;*/
/*}*/

.client_card {
  height: 172px;
    width: 81%;
    margin: auto;
    padding:20px 0;
    }
    .flex-wrap{
        flex-wrap:wrap;
            justify-content: center;
    align-items: center;
    }
.client_card img {
      width: 100%;
  height: 100%; 
  
}
.client_card img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
@media (max-width: 575px) {
  .client_card {
    width: 70px;
    height: 120px;
    margin-bottom: 26px;
  }
}

/* start partners section */
.partners_section {
  padding: 30px 0 87px 0;
}
.partners_details p {
  font-size: 24px;
  color: #4A4A4A;
  margin-bottom: 20px;
  position: relative;
  padding-inline-start: 40px;
}
.partners_details p::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: #F89939;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  top: 10px;
  left: 0px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}
.mb-37 {
  margin-bottom: 37px;
}

@media(min-width: 768px) {
  .partners_imgs {
    padding-inline-start: 40px;
  }
}
.partners_imgs img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

@media(max-width: 575px) {
  .partners_section {
    padding: 30px 0;
  }
}

/* start footer*/
.footer  {
  background-color: #FCFCFC;
  position: relative;
    padding: 15px 0 0px 0;
}
.footer .footer-brand {
  display: block;
  margin-top:25px;
  margin-bottom: 10px;
}

.footer .footer-des{
  color: #4E4E4E;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-title {
  color: #1A1A1A;
  font-size: 28px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 42px;
}
.cont_details{
        direction: ltr;
}
@media (max-width: 991.98px) {
  .footer {
    padding: 30px 0;
  }
  .footer .footer-des{
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .footer .footer-des{
    max-width: 405px;
  }
  .pt_40 {
    padding-top: 40px;
  }
}

.footer_links {
  display: grid;
  grid-template-columns: 33% 33% 33%;
}
.footer .footer_links .menu-link {
  display: block;
  color: #4E4E4E;
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: capitalize;
}
.footer .footer_links .menu-link:hover {
  color: #1A9DDD;
}
@media(max-width: 576px) {
  .footer-title{
    font-size: 18px;
  }
  .social_wrapper {
    margin-bottom: 26px;
  }
}

.social_wrapper {
    overflow:hidden;
  display: flex;
      padding: 0 0 12px 0;

}
.social-link {
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  margin-inline-end: 28px;
}
.social-link:hover {
  color: #F89939;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.facebook_link {
  background-color: #3b5998;
}
.linked_link {
  background-color: #0a66c2;
}
.twitter_link {
  background-color: #1da1f2;
}
.instagram_link {
 background: #f09433; 
background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  }
  .youtube_link{
       background-color: #ff0000;
  }
  .youtube_link svg{
          width: 60%;
  }
  .tic_link{
       background-color: #000;
  }
    .tic_link svg{
      width:60%;
  }
.contact_link {
  display: flex;
  font-size: 16px;
  color: #4E4E4E;
  margin-bottom: 12px;
}
.whats-up{
    font-size:18px;
    color:#000;
    transition:.2s all ease-in-out;
}

.contact_link i {
  padding-top: 6px;
  margin-inline-end: 14px;
}
.contact_link:hover {
  color: #1A9DDD;
}

.rotate_45 {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}
.copyrights {
  padding: 23px 0 29px 0;
  color: #fff;
  font-size: 20px;
  background-color: #1A9DDD;
}
.copyrights p, .copyrights a{
  color: #fff;
}

.go-top {
  position: absolute;
  top: -41px;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 82px;
  height: 82px;
  background: #fff;
  color: #C79A55;
  z-index: 2500;
  transition: all 0.3s !important;
  -webkit-transition: all 0.3s !important;
  -moz-transition: all 0.3s !important;
  -ms-transition: all 0.3s !important;
  -o-transition: all 0.3s !important;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 26px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  box-shadow: 3px 3px 5px rgba(12, 137, 56, 0.1),
  -3px -3px 5px rgba(12, 137, 56, 0.1);
}
.go-top:hover {
  color: #fff;
  background-color:#C79A55;
}


@media(max-width: 992px) {
  .copyrights {
    font-size: 14px;
  }
}




.copyrights {
    padding: 10px 0 10px 0;
    color: var(--main-color);
    font-size: 14px;
    background-color: #00202F;
}

.copyrights p,
.copyrights a {
    color: #fff;
    padding-bottom: 0;
    font-size: 12px;
    margin-bottom: 0;
}

.made_By {
    font-size: 11px;
    text-align: center;
}

.made_By small {
    font-size: 6px;
    display: block;
}
.loader-container {
  position: fixed;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: #00202f  ;
  z-index: 1110000;
  overflow:hidden;
}
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  /*height: 64px;*/
  /*width: 64px;*/
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  animation: rotate 2s linear infinite;
  -webkit-animation: rotate 2s linear infinite;
}

.loader div {
  transform-origin:  32px 32px;
  animation: load 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-animation: load 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
.loader div::after {
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.loader div:nth-child(1){
  animation-delay: -0.035s;
}
.loader div:nth-child(2){
  animation-delay: -0.070s;
}
.loader div:nth-child(3){
  animation-delay: -0.105s;
}
.loader div:nth-child(4){
  animation-delay: -0.140s;
}
.loader div:nth-child(5){
  animation-delay: -0.175s;
}
.loader div:nth-child(6){
  animation-delay: -0.2s;
}
.loader div:nth-child(7){
  animation-delay: -0.235s;
}
.loader div:nth-child(8){
  animation-delay: -0.270s;
}
.loader div:nth-child(1)::after {
  top: 50px;
  left: 50px;
}
.loader div:nth-child(2)::after {
  top: 54px;
  left: 45px;
}
.loader div:nth-child(3)::after {
  top: 57px;
  left: 39px;
}
.loader div:nth-child(4)::after {
  top: 58px;
  left: 32px;
}
.loader div:nth-child(5)::after {
  top: 57px;
  left: 25px;
}
.loader div:nth-child(6)::after {
  top: 54px;
  left: 19px;
}
.loader div:nth-child(7)::after {
  top: 50px;
  left: 14px;
}
.loader div:nth-child(8)::after {
  top: 45px;
  left: 10px;
}

@keyframes load {
  0% {
      transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
  }
}


/*** start about us page ***/

.inner_top_section {
  height: 600px;
  background-image: url(../image/header.png);
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.inner_top_title {
  font-size: 28px;
  color: #c79a55 ;
  font-weight: 500;
  text-transform: capitalize;
}

@media(max-width: 575px) {
  .inner_top_section {
    height: 400px;
  }
}

/* about us section */
.about_us_section {
  padding-top: 60px;
}
.side_title {
  font-size: 40px;
  color: #c79a55;
  margin-bottom: 25px;
}
.welcome_title {
  font-size: 24px;
  color: #292929;
  margin-bottom: 12px;
  text-transform: capitalize;
}
.about_details {
  padding-bottom: 70px;
}
.about_details p {
  font-size: 14px;
}
.about_thumb img {
  max-width: 100%;
}


@media(min-width: 992px) {
  .thumb_wrapper {
    display: flex;
    align-items: center;
  }
}
@media(max-width: 991px) {
  .about_us_section > .container > .row [class*="col"]:first-of-type {
    order: 2;
  }
  .about_us_section > .container > .row [class*="col"]:nth-of-type(2) {
    order: 1;
    margin-bottom: 30px;
  }
}


.services_btn {
    height: 86px;
    width: 313px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
    text-transform: capitalize;
      background-color: #c79a55;
    box-shadow: 3px 3px #70DDFF;
    overflow: hidden;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    margin-left: auto;
    margin-right: auto;
    border: none;
}
.web-link{
    display:flex;
    justify-content:center;
    align-items:center;
}
.web-link h4{
 font-size:35px;
 font-weight:bold;
 padding:10px 10px 0 10px;
}

.web-link i{
     font-size: 60px;
}
.btn-flex{
    display:flex;
    
}

@media(max-width: 991px) {
.btn-flex{
    display:block;
    
}
}

.mission_section {
  padding: 80px 0 116px 0;
}


/* start services page */
.pb_120 {
  padding-bottom: 120px;
}

/*** start E commerce page ***/

/* start importance section */
.importance_section {
  position: relative;
  height: 912px;
  background-image: url(../image/im.png);
  background-size: cover;
  padding: 80px;
  margin-bottom: 61px;
}
.importance_content {
  position: relative;
  width: 100%;
  height: 100%; 
  color: #fff; 
}
.import_title {
  font-size: 40px;
  font-weight: bolder;
  margin-bottom: 48px;
}
.importance_content p {
  color: #fff;
  margin-bottom: 42px;
}
.mt-70 {
  margin-top: 70px;
}
.pb_164 {
  padding-bottom: 164px;
}

/*start web development page */

.sm_title {
  font-size: 28px;
  color: #c79a55;
  margin-bottom: 24px;
  text-align: center;
  text-transform: capitalize;
}
.center_title {
  font-size: 40px;
  color: #292929;
  margin-bottom: 42px;
  font-weight: bolder;
  text-align: center;
  text-transform: capitalize;
}
.service_desc {
  font-size: 24px;
  margin-bottom: 50px;
  text-align: center;
}

/*** project details page***/

.project_details p {
  margin-bottom: 30px;
}


/*** contact us page***/

.contact_form .form-group {
  margin-bottom: 40px;
}
.contact_form label {
  font-size: 18px;
  color: #1A0405;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.contact_form .form-control {
  height: 55px;
  border: none;
  background-color: #D7D7D7;
}
.contact_form textarea {
  min-height: 155px;
  resize: none;
}
.contact_form textarea::placeholder {
  font-size: 16px;
  color: rgba(26, 4, 5, 0.5);
}

/* start numbers section */
.numbers_section {
  padding: 70px 0 120px 0;
  text-align: center;
}
.call__card {
  font-size: 18px;
  color: #4E4E4E;
  display: flex;
      direction: ltr;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}
.call_img {
  display: block;
  margin-bottom: 24px;
  max-width: 186px;
}
.call__num {
  max-width: 219px;
}

.call__card:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}


/* start A-fet */

.A-fet {
  padding: 80px 0;
  overflow: hidden;
}

.A-fet .slick-slide {
  padding: 20px 20px;
}

.cont-fet {
  /*width: 220px;*/
  height: 460px;
  overflow:hidden;
 position:relative;
  

}

.cubic-work {
    position: absolute;
    left: -48px;
    top: -44px;
        transform: rotate(0deg);
    display: flex;
    border-radius: 48px;
    width: 93%;
    height: 189px;
    background: #C79A55;
    padding: 7px;
    z-index: 1;
    align-items: center;
    justify-content: center;
    transition: all 1s ease-in-out;
display:none;
}
.cont-fet:hover .cubic-work{
    display:flex;
        transition: all 1s ease-in-out;
    transform: rotate(25deg);
}

.link-a {
       position: absolute;
    left: -0px;
    top: 0px;
    z-index:2;
    width:100%;
    height:100%;
}
.img-serv{
    position:absolute;
    left:0px;
    top:0px;
    width:100%;
    height:100%;
}


.tit-works {
    overflow:hidden;
    margin-bottom:10px;
  text-align: center;
}

.tit-works h1 {
  color: #00202f ;
  font-size: 16px;
  font-weight: bold;
      transform: rotate(-26deg);
  margin: 0px;
  padding: 20px 0 10px 0;
}

html[dir="rtl"] .tit-works h1{
        padding: 20px 50px 10px 0;
        font-size:24px;
}
.tit-works p {
  color: #4f4f4f;
  font-size: 18px;
}

.A-title-fet {
  text-align: center;
}

.A-title-fet h1 {
  text-align: center;
  font-size: 35px;
  color: #008ee0;
  font-weight: bold;
}

.A-title-fet p {
  color: #4f4f4f;
  font-size: 18px;
}

@media (max-width:992px) {
  .cont-fet {
      width: 100% !important;
  }
}


/* End A-fet */

html[dir="rtl"] .cubic-work {
justify-content:start;
    
}





/*  Start Plans section  */

.A-plans {
    padding: 100px 30px;
}

.A-plans h2 {
    color: white;
}

.A-plans .box {
    background: #fff;
    text-align: left;
    /*padding: 20px;*/
    margin: 10px 0;
    overflow: hidden;
    border-radius: 40px;
    padding-bottom: 20px;
}

.box-cont-A {
    padding: 14px;
}

.A-plans .box h3 {
    text-align: center;
    margin: 20px 0;
 
    font-weight: bold;
}

.A-plans .box .reibbon {
   
    padding: 15px 0;
    /* width: calc(100% + 60px); */
   color:#000;
    text-align: center;
    border-radius: 5px;
    font-size: 20px;
}
.price{
        background: #F89939;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 15px;
    font-size: 25px;
    font-weight: bold;
}
.A-plans ul {
    height: 400px;
    overflow: hidden;
    padding: 10px 40px;
    transition: .2s all ease-in-out;
}

.A-plans .box ul p {
    list-style: none;
    font-size: 17px;
    margin: 25px 0;
    position: relative;
}

.A-plans .box ul p::before {
    content: '';
    position: absolute;
    width: 12px;
    LEFT: -22PX;
    height: 12px;
    background-color: #F89939;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    top: 7px;
    transform: rotate( 45deg);
    -webkit-transform: rotate( 45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.A-plans .links {
    display: flex;
    text-align: center;
    justify-content: space-evenly;
}

.A-plans .links a {
    display: inline-block;
    font-weight: bold;
    font-size: 20px;
    border: 1px solid var(--orange);
    padding: 8px 30px;
    border-radius: 50px;
    transition: .5s;
}

.A-plans .links .order-now {
    color: white;
    background: #F89939;
    width: 100%;
    margin: 16px;
    border: none;
    transition: all .3s ease-in-out;
}

.A-plans .links .order-now:hover {
    background: #000;
}

.heig-unset {
    height: unset !important;
}

#background-video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}

.nav-justified a{
        color: #fff;
    background: red;
    padding: 20px 10px;
}

.fel-part {
    width:25%;
}

li.nav-item {
padding:0 20px;
    
}

.collapse .nav-link{
color:#fff;
    

}
img.bannervideo {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.img-kian {
        max-width: 20%;
    margin: 0 11px;
}

@media (max-width:992px){
    .tit-works h1 {

  font-size: 14px;
  
}

    .about_us_section {
    padding-top: 60px;
    text-align: center;
}
    .mission_section {
    padding: 80px 0 116px 0;
    text-align: center;
}
    .carousel-item-next, .carousel-item-prev, .carousel-item.active {
        height:100vh;
    }
    .fel-part {
    width: 30%;
}
.img-kian {
width:20%;
    
}
.footer .footer_links .menu-link {
    display: block;
    color: #4E4E4E;
    margin-bottom: 10px;
    font-size: 13px;
    text-transform: capitalize;
}
   
   .footer-title {
    color: #1A1A1A;
    font-size: 28px;
    font-weight: bold;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.contact_link {
    display: flex;
    font-size: 11px;
    color: #4E4E4E;
    margin-bottom: 12px;
}
copyrights p, .copyrights a {
    color: #fff;
    padding-bottom: 0;
    font-size: 10px;
    margin-bottom: 0;
}
.social-link {
    color: #fff;
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    margin-inline-end: 28px;
}
.footer-title {
    color: #1A1A1A;
    font-size: 16px;
}
.logo-footer{
        margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    width: 70px;
}
footer .footer-des {
    text-align: center;
    margin-bottom: 20px;
    font-size: 11px;
}
}
/*  End Plans section  */