/* Setting Style
======================*/
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@700&display=swap');
*,
:focus {
  outline: 0 !important;
  scroll-behavior: smooth;
}
[dir=rtl] *,
[dir=rtl] :focus {
  letter-spacing: 0 !important;
}

::selection {
  background-color: #c58a1c !important;
  color: #fff !important;
}

/* Scroll Bar
======================*/
/* width */
::-webkit-scrollbar {
  background-color: #f1f1f1;
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  background-color: #c58a1c;
}

/* Font
==========================*/
body {
  overflow: hidden;
  width: 100%;
  text-align: start;
  position: relative;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
}
[dir=rtl] body {
  font-family: "Cairo", sans-serif;
  letter-spacing: 0 !important;
}
[dir=rtl] .link, [dir=rtl] .about_cont h1, [dir=rtl] .section_title h3,
[dir=rtl] .main-projects-item .cont a, [dir=rtl] .section_img .hint, [dir=rtl] .section_title span,
[dir=rtl] .blog_item .cont a, [dir=rtl] footer h3, [dir=rtl] .facilitie h3, [dir=rtl] .client h3 {
   font-family: "Cairo", sans-serif; 
}
[dir=rtl] .modal-content .close {
    float: left;
}

.mt-25 {
  margin-top: 25px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

/* Loading
=====================*/
.loading {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  z-index: 9999;
  background-color: #000;
}
.loading .load_cont {max-width: 100%;}
.loading .load_cont img {
  margin: auto;
  width: 1000px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

/* Mouse Cursor
=========================*/
.mouse-cursor {
  position: fixed;
  inset-inline-start: 0;
  top: 0;
  pointer-events: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 991px) {
  .mouse-cursor {
    display: none !important;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #c58a1c;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -20px;
  margin-top: -20px;
  width: 40px;
  height: 40px;
  background-color: #c58a1c;
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid #c58a1c;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 80ms ease-out;
  -moz-transition: all 80ms ease-out;
  -ms-transition: all 80ms ease-out;
  -o-transition: all 80ms ease-out;
  transition: all 80ms ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

/* Lists  
======================*/
ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  display: inline-block;
}

/* Links 
======================*/
a,
a:hover,
a:focus {
  cursor: pointer;
  text-decoration: none;
}

/* placeholders
=======================*/
.link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  line-height: 47px;
  height: 45px;
  text-align: center;
  font-size: 14px;
  padding: 0 20px;
  background-color: #c58a1c;
  color: #fff;
  border: 0;
  box-shadow: none;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-border-radius: 0 15px;
  -moz-border-radius: 0 15px;
  border-radius: 0 15px;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
  /* font-family: 'Kalam', cursive; */
}
.link:hover {
  color: #fff;
  background-color: #e7b85e;
}
.link.more {
  margin: 25px auto 0 !important;
}
.link.white {
  border: 1px solid #fff;
  background-color: transparent;
  color: #c58a1c;
}
.link.white:hover {
  background-color: #e7b85e;
  color: #fff;
  border: none;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  line-height: 35px;
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  padding: 0;
  background-color: #c58a1c;
  color: #fff;
  border: 0;
  box-shadow: none;
  -webkit-border-radius: 0 15px;
  -moz-border-radius: 0 15px;
  border-radius: 0 15px;
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
}
.icon:hover {
  color: #fff;
  background-color: #e7b85e;
}

.list {
  margin: 15px 0;
}
.list li {
  display: block;
  letter-spacing: 0.5px;
  line-height: 28px;
  margin-bottom: 15px;
  padding-inline-start: 35px;
  font-size: 16px;
  color: #ffffff;
  position: relative;
}
.list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  inset-inline-start: 0;
  top: 4px;
  margin: auto;
  color: #c58a1c;
  background-color: #f6f9ff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-size: 11px;
  line-height: 25px;
  text-align: center;
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/*Images
======================*/
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Page Setting
=====================*/
section {
  z-index: 99;
  position: relative;
  padding: 70px 0;
  background-color: #fff;
}
section.colored {
  background-color: #fafafa;
}
@media (max-width: 991px) {
  section {
    padding: 35px 0;
  }
}
@media (max-width: 575px) {
  section {
    padding: 25px 0;
  }
}

.section_img {
  background: url(../images/bc.jpg) center no-repeat fixed;
  background-size: cover;
  text-align: center;
  color: #fff;
}
.section_img::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.7);
}
.section_img .container {
  position: relative;
  z-index: 999;
}
.section_img .hint {
  font-size: 26px;
  max-width: 960px;
  margin: 0px auto 25px;
  line-height: 40px;
  position: relative;
  padding: 0 40px;
  font-family: 'Kalam', cursive;
}
.section_img .hint::before, .section_img .hint::after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  font-weight: 900;
  font-size: 40px;
  opacity: 50%;
  color: #c58a1c;
}
.section_img .hint::before {
  content: "\f10d";
  top: 0px;
  left: 0px;
}
.section_img .hint::after {
  content: "\f10e";
  bottom: 0px;
  right: 0px;
}
@media (max-width: 767px) {
  .section_img .hint {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .section_img .hint {
    font-size: 12px;
    line-height: 20px;
    padding: 0 25px;
  }
  .section_img .hint::before, .section_img .hint::after {
    font-size: 22px;
  }
}
.section_img .link {
  margin: auto;
}

/* Section Title
=======================*/
.section_title {
  position: relative;
  text-align: center;
  margin: 0 auto 40px;
}
.section_title span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #c58a1c;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  /* font-family: 'Kalam', cursive; */
}
.section_title h3 {
  position: relative;
  margin: 0 auto;
  text-transform: uppercase;
  color: #212121;
  font-size: 28px;
  margin: auto;
  font-weight: 700;
  letter-spacing: 1px;
  /* font-family: 'Kalam', cursive; */
}
.section_title p {
  margin: 15px 0 0;
  font-size: 14px;
  line-height: 22px;
}
@media (max-width: 767px) {
  .section_title {
    margin-bottom: 20px;
  }
  .section_title h3 {
    font-size: 18px;
  }
}
.section_title.side_txt h3 {
  font-weight: 900;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .section_title.side_txt h3 {
    font-size: 18px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .section_title.side_txt p {
    margin: 0;
  }
}
[dir=rtl] .section_title.text-left {
  text-align: right !important;
}

/* Page Head
=======================*/
.page_head {
  background: url(../images/bc.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 220px 0;
  /* margin-top: 130px; */
  position: relative;
  overflow: hidden;
}
.page_head::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.7);
}
.page_head h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
[dir=rtl] .page_head h3 {
  font-size: 28px;
}
.page_head li {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}
.page_head li a {
  font-size: 18px;
  display: block;
  color: #fff;
  padding: 0 15px;
  margin-inline-end: 5px;
  position: relative;
}
.page_head li a::after {
  content: " / ";
  position: absolute;
  top: 0;
  inset-inline-end: 0px;
  font-size: 18px;
  color: #c58a1c;
}
@media (max-width: 767px) {
  .page_head {
    padding: 150px 0;
  }
}
@media (max-width: 575px) {
  .page_head {
    /* padding: 150px 0; */
  }
  .page_head h3 {
    font-size: 24px;
  }
}

/* Social
=======================*/
.social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0px;
  color: #fff;
  display: block;
  text-align: center;
  -webkit-border-radius: 0 15px;
  -moz-border-radius: 0 15px;
  border-radius: 0 15px;
}
.social a:hover i {
  color: #fff;
}
.social a i {
  color: #fff;
  line-height: 35px;
  font-size: 16px;
  display: block;
}

/* Video
=========================*/
.video_btn {
  position: absolute;
  right: 15px;
  /* left: 0; */
  /* top: 0; */
  bottom: 10px;
  margin: auto;
  width: 100px;
  height: 100px;
  text-align: center;
  background: #c58a1c;
  z-index: 9998;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.video_btn i {
  margin-left: 10px;
  color: #fff;
  font-size: 38px;
  line-height: 100px;
}
.video_btn::after, .video_btn::before {
  width: 100px;
  height: 100px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(244, 206, 20, 0.32);
  -moz-box-shadow: 0 0 0 0 rgba(244, 206, 20, 0.32);
  -ms-box-shadow: 0 0 0 0 rgba(244, 206, 20, 0.32);
  -o-box-shadow: 0 0 0 0 rgba(244, 206, 20, 0.32);
  box-shadow: 0 0 0 0 rgba(244, 206, 20, 0.32);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.4s, all, linear;
  -moz-transition: 0.4s, all, linear;
  -ms-transition: 0.4s, all, linear;
  -o-transition: 0.4s, all, linear;
  transition: 0.4s, all, linear;
  animation: ripple 1s infinite;
  animation-delay: 0.6s;
}
.video_btn::after {
  animation-delay: 0.4s;
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
[dir=rtl] .fa-angle-right,
[dir=rtl] .fa-long-arrow-alt-right {
  /*-webkit-transform: rotateY(-180deg);*/
  /*-moz-transform: rotateY(-180deg);*/
  /*-ms-transform: rotateY(-180deg);*/
  /*-o-transform: rotateY(-180deg);*/
  /*transform: rotateY(-180deg);*/
}

[dir=rtl] .owl-stage-outer {
  direction: ltr;
}

/*  Header
=============================*/
.top_header {
  background-color: #0000007C;
  position: fixed;
  z-index: 9991;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  border-bottom: 1px solid #E8B049;
}
.top_header .col-12 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.top_header .col-12 .d-inline-block {
  margin-inline-start: -5px !important;
}
.top_header .col-12 .info a {
  display: block;
  border-inline-end: 1px solid #fff3;
  line-height: 45px;
  height: 45px;
  color: #fff;
  font-size: 12px;
  margin-inline-start: 10px;
  padding: 0 12px;
  font-family: 'Martian Mono', monospace;
}
.top_header .col-12 .info a:last-child {
  border-inline-end: 0;
}
.top_header .col-12 .info a:hover {
  color: #e7b85e;
}
.top_header .col-12 .social a {
  background-color: #0001;
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.top_header .col-12 .social a:hover {
  background-color: #fff;
  color: #e7b85e;
}
.top_header .col-12 .social a i {
  line-height: 35px;
}
@media (max-width: 575px) {
  .top_header .col-12 .info {
    margin: 5px 0;
  }
  .top_header .col-12 .info a {
    margin-inline-end: 5px !important;
    padding: 0;
    padding: 0;
    height: 35px;
    width: 35px;
    border: 0;
    background-color: #0001;
    text-align: center;
    -webkit-border-radius: 25px 15px 25px 25px;
    -moz-border-radius: 25px 15px 25px 25px;
    border-radius: 25px 15px 25px 25px;
  }
  .top_header .col-12 .info a span {
    display: none;
  }
  .top_header .col-12 .info a i {
    display: block;
    line-height: 35px;
    border-radius: 25px 15px 25px 25px;
  }
  .top_header .col-12 .social {
    margin: 5px 0;
  }
}

header {
  position: fixed;
  top: 46px;
  right: 0px;
  width: 100%;
  background-color: #fff;
  z-index: 9991;
  -webkit-transition: 0.3s linear background-color;
  -moz-transition: 0.3s linear background-color;
  -ms-transition: 0.3s linear background-color;
  -o-transition: 0.3s linear background-color;
  transition: 0.3s linear background-color;
  /* -webkit-box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3); */
  -moz-box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3);
  -ms-box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3);
  -o-box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3);
  /* box-shadow: 0px 5px 30px 0px rgba(125, 125, 125, 0.3); */
}
header .container {
  position: relative;
  min-height: 85px;
}
header .navbar-brand {
  margin: 0;
  padding: 5px 0;
  height: 85px;
  width: auto;
  position: relative;
  z-index: 999;
}
header .navbar-brand img {
  width: auto;
  height: 100%;
}
header .navbar-brand span {
  color: #c58a1c;
}
header .btns {
  z-index: 9999;
}
header .btns .menu-btn {
  display: none;
}

.navbar {
  padding: 0px;
  margin: 0px;
  margin-top: -85px;
}
.navbar .container {
  min-height: auto;
}
.navbar ul.navbar-nav {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 25px 0;
  padding-inline-end: 50px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.navbar ul.navbar-nav li {
  display: inline-block;
}
.navbar ul.navbar-nav li a {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  margin-inline-start: 25px;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  color: #212121;
  text-align: center;
  line-height: 35px;
  overflow: hidden;
  -webkit-border-radius: 25px 15px 25px 25px;
  -moz-border-radius: 25px 15px 25px 25px;
  border-radius: 0 15px;
  letter-spacing: -.5px;
}
[dir=rtl] .navbar ul.navbar-nav li a {
  font-size: 14px;
}
.navbar ul.navbar-nav li a:hover {
  color: #e7b85e;
}
.navbar ul.navbar-nav li a.active {
  padding: 0 15px;
  background-color: #c58a1c;
  color: #fff;
}
@media (min-width: 992px) {
  .navbar ul.navbar-nav li.dropdown .dropdown-menu {
    display: block;
    inset-inline-start: 0;
    inset-inline-end: auto;
    margin: 0;
    top: 37px;
    width: 100%;
    min-width: 220px;
    padding: 23px 0 0;
    opacity: 0;
    visibility: hidden;
    border: 1px solid #fff2;
    border-top: 0;
    background-color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: 0.5s all linear;
    -moz-transition: 0.5s all linear;
    -ms-transition: 0.5s all linear;
    -o-transition: 0.5s all linear;
    transition: 0.5s all linear;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu a {
    margin: 0;
    border-top: 1px solid #0002;
    line-height: 45px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    text-align: start;
    padding: 0 15px;
    font-size: 12px;
  }
  .navbar ul.navbar-nav li.dropdown .dropdown-menu a:hover {
    color: #e7b85e;
    background-color: transparent;
  }
  .navbar ul.navbar-nav li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@media (max-width: 991px) {
  header .btns .menu-btn {
    display: inline-block;
    margin: 0;
  }
  .about_img {
      margin-top: 20px !important;
  }
  .navbar {
    margin: 0;
    background-color: #000000;
    height: 100%;
    max-height: 440px;
    overflow: hidden;
    overflow-y: auto;
  }
  .navbar ul.navbar-nav {
    display: block;
    text-align: start;
    padding: 10px;
  }
  .navbar ul.navbar-nav li {
    display: block;
  }
  .navbar ul.navbar-nav li a {
    text-align: start;
    margin: 0;
    color: #fff;
  }
  .navbar ul.navbar-nav li a:hover {
    color: #e7b85e;
  }
  .navbar ul.navbar-nav .dropdown .dropdown-menu {
    position: static;
    clear: both;
    box-shadow: none;
    display: none;
    background-color: transparent;
    border: 0;
    padding: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .navbar ul.navbar-nav .dropdown .dropdown-menu a {
    line-height: 30px;
    margin-bottom: 5px;
    font-weight: 500;
  }
  .navbar ul.navbar-nav .dropdown .dropdown-menu a:hover {
    color: #e7b85e;
    background-color: transparent;
  }
  .navbar ul.navbar-nav .dropdown.show .dropdown-menu {
    display: block;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.06);
  }
}
.main_section {
  /* margin-top: 130px; */
  height: 100vh;
  padding: 0;
  background-color: #c58a1c;
  overflow: hidden;
  text-align: start;
  position: relative;
  color: #fff;
  z-index: 999;
}
.main_section::before {
  content: "";
  width: 50%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  position: absolute;
  opacity: 25%;
  background: url(../images/shap.png) center repeat;
}
.main_section .intro_img {
  padding: 0;
  height: 100vh;
  overflow: hidden;
}
.main_section .intro_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main_section .intro_cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  max-width: 495px;
}
.main_section .intro_cont span {
  background-color: #fff;
  color: #c58a1c;
  padding: 5px 10px;
  margin-bottom: 15px;
  -webkit-border-radius: 3px 11px 3px 3px;
  -moz-border-radius: 3px 11px 3px 3px;
  border-radius: 3px 11px 3px 3px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
}
.main_section .intro_cont h2 {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 44px;
  letter-spacing: 1px;
  line-height: 50px;
  margin: 0;
}
.main_section .intro_cont p {
  font-size: 18px;
  margin: 25px 0 35px;
  letter-spacing: 0.5px;
  padding-inline-start: 25px;
  border-inline-start: 3px solid #c58a1c;
  line-height: 30px;
}
.main_section .intro_cont .link {
  margin: 0;
}
@media (max-width: 1199px) {
  .main_section {
    /* height: calc(100vh - 190px); */
  }
  .main_section .intro_img {
    height: 100vh;
  }
}
@media (max-width: 991px) {
  .main_section {
    /* margin-top: 115px; */
    /* height: auto; */
  }
  .main_section .intro_img {
    /* height: 390px; */
  }
  .main_section .intro_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .main_section .intro_cont h2 {
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 40px;
  }
  .main_section .intro_cont p {
    font-size: 14px;
    margin: 20px 0;
    letter-spacing: 0.5px;
    padding-inline-start: 25px;
    line-height: 22px;
  }
}
@media (max-width: 767px) {
  .main_section .intro_img {
    /* height: auto; */
    /* min-height: 320px; */
  }
  .main_section .intro_cont {
    padding: 25px;
  }
  .main_section .intro_cont h2 {
    font-size: 28px;
    letter-spacing: 1px;
    line-height: 35px;
  }
}
@media (max-width: 575px) {
  .main_section .intro_cont {
    padding: 25px 0;
  }
  .main_section .intro_cont h2 {
    font-size: 22px;
  }
  .main_section .intro_cont p {
    font-size: 12px;
    padding-inline-start: 15px;
  }
}

.controls {
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  -webkit-border-radius: 10px 0 0 0;
  -moz-border-radius: 10px 0 0 0;
  border-radius: 10px 0 0 0;
  overflow: hidden;
}
.controls a {
  position: relative;
  width: 50px;
  height: 50px;
  color: #000;
  background-color: #c58a1c;
  opacity: 1;
  border-right: 1px solid #0001;
  float: left;
}
.controls a span {
  background: none;
  height: 100%;
  display: block;
  line-height: 50px;
}
.controls a:hover {
  color: #fff;
  background-color: #e7b85e;
}
 .intro {
  margin-top: 130px;
  height: calc(100vh - 130px);
  padding: 0;
  overflow: hidden;
  text-align: start;
  position: relative;
  color: #fff;
  z-index: 998;
  background: url(../images/main_project.jpg) no-repeat fixed center;
  background-size: cover;
}
.intro:before {
  content: "";
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  position: absolute;
  background-color: rgba(0,0,0,0.75);
}
.intro .container,
.intro .row ,
.intro .col-12{
  height: 100%;
}
.intro .col-12{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 70px 0;
}
.intro .col-12 h1{
  font-family: 'Martian Mono', monospace;
  font-weight: 700;
  font-size: 62px;
  margin: 0 auto 25px;
}
.intro .col-12 p{
  max-width: 960px;
  font-size: 22px;
}
.intro .video_btn{
  position: relative;
  margin: 25px auto 0;
}
@media (max-width: 991px) {
  .intro {
    margin-top: 115px;
    height: auto;
    padding-bottom: 25px;
  }
}
@media (max-width: 576px) {
  .intro .col-12 h1{
  font-size: 34px;
    margin-bottom: 15px;
}
.intro .col-12 p{
  padding: 0 15px;
  font-size: 16px;
}
}
.video{
  height: calc(100vh - 130px);
  object-fit: cover;
  margin-top: 130px;
}

/* About
===============================*/
.about_cont {
  padding-inline-start: 25px;
  padding-top: 70px;
}
.about_cont h1 {
  text-transform: uppercase;
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #c58a1c;
  position: relative;
  margin: 0 0 30px;
  font-family: 'Kalam', cursive;
}
[dir=rtl] .about_cont h1 {
  font-size: 32px;
}
.about_cont h3 {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
  color: #c58a1c;
  position: relative;
  margin: 0 0 15px;
  font-family: 'Kalam', cursive;
}
.about_cont p {
  line-height: 25px;
  margin: 15px auto;
  font-size: 16px;
  color: #777;
}
.about_cont > p {
  padding-inline-start: 25px;
  border-inline-start: 5px solid #c58a1c;
  margin-bottom: 50px;
  font-size: 17px;
  line-height: 30px;
}
@media (max-width: 1199px) {
  .about_cont h1 {
    letter-spacing: 1px;
  }
}
@media (max-width: 991px) {
  .about_cont {
    padding-inline-start: 0;
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .about_cont h1 {
    font-size: 18px;
    letter-spacing: 1px;
    margin: 0 0 15px;
  }
  .about_cont h3 {
    font-size: 16px;
  }
  .about_cont p {
    line-height: 22px;
    margin: 10px auto;
    font-size: 13px;
  }
  .about_cont > p {
    padding-inline-start: 15px;
    border-left: 2px solid #c58a1c;
    margin-bottom: 22px;
  }
}

.about_img {margin-top: -70px;}
.about_img img {
  display: block;
  border-radius: 0 50px;
  overflow: hidden;
}

/* Team
=======================*/
.team_item {
  background-color: #fff;
  padding: 25px 25px 10px;
  color: #c58a1c;
  text-align: center;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 10px 3px 3px 3px;
  -moz-border-radius: 10px 3px 3px 3px;
  border-radius: 10px 3px 3px 3px;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.team_item img {
  position: relative;
  -webkit-border-radius: 10px 3px 3px 3px;
  -moz-border-radius: 10px 3px 3px 3px;
  border-radius: 10px 3px 3px 3px;
  border: 3px solid #c58a1c;
  margin: 0 auto 25px;
  padding: 5px;
  width: 210px;
}
.team_item h3 {
  text-align: center;
  margin: 0 auto 10px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}
.team_item h4 {
  margin: 0;
  text-align: center;
  margin: 0 auto 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #212121;
}
.team_item:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Gallery
========================*/
.gallery .gallery_item {
  display: block;
  margin-bottom: 25px;
  position: relative;
  height: 250px;
}
.gallery .gallery_item img{
    height:100%;
    width: 100%;
    object-fit:cover;
    border-radius: 15px;
    overflow: hidden;
}
.gallery .gallery_item::before {
  content: "\f0c1";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  z-index: 9999;
  background-color: rgba(197, 138, 28, 0.8);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.gallery .gallery_item.video_item::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  content: "\f04b";
}
.gallery .gallery_item:hover::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/* Career
========================*/
.career h3 {
  margin: 0 0 15px;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 40px;
  color: #c58a1c;
}
.career h3::before {
  content: "";
  background-color: #c58a1c;
  position: absolute;
  inset-inline-start: 0;
  bottom: -5px;
  margin: auto;
  height: 3px;
  width: 30px;
}
.career form h3 {
  margin-bottom: 25px;
}
.career form .form-control {
  margin-top: 20px;
}

/* Main Project
==========================*/
.main_project .main_bc {
  position: relative;
  background-color: #c58a1c;
  text-align: center;
  padding: 70px 15px 100px;
  color: #fff;
}
.main_project .main_bc::before {
  content: "";
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  position: absolute;
  opacity: 25%;
  background: url(../images/shap.png) center repeat;
}
.main_project h2 {
  font-weight: 400;
  font-size: 62px;
  letter-spacing: 3px;
  margin: 0 0 25px;
  text-transform: uppercase;
  font-family: 'Kalam', cursive;
}
.main_project p {
  margin: auto auto 25px;
  letter-spacing: 1px;
  font-size: 22px;
  line-height: 25px;
  max-width: 920px;
}
.main_project .video {
  /*margin-top: -70px;*/
  /*height: 380px;*/
  height: 100%;
  margin-top: 0;
}
.main_project .video img {
  /*-webkit-border-radius: 0 50px;*/
  /*-moz-border-radius: 0 50px;*/
  /*border-radius: 0 50px;*/
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
      border-radius: 0;
}
@media (max-width: 575px) {
  .main_project h2 {
    font-size: 32px;
    letter-spacing: 1px;
    margin: 0 0 15px;
  }
  .main_project p {
    margin: auto auto 15px;
    letter-spacing: 0.5px;
    font-size: 14px;
  }
  .main_project .video_btn {
    width: 50px;
    height: 50px;
  }
  .main_project .video_btn i {
    margin-inline-start: 3px;
    line-height: 50px;
    font-size: 22px;
  }
  .main_project .video_btn::before, .main_project .video_btn::after {
    width: 50px;
    height: 50px;
  }
}

/* Project Item
===========================*/
.projects .project_item {
  margin-bottom: 25px;
}

.project_item {
  background-color: #fff;
  margin: auto;
  position: relative;
  z-index: 98;
  overflow: hidden;
  width: calc(100% - 2px);
  -webkit-border-radius: 0 25px;
  -moz-border-radius: 0 25px;
  border-radius: 0 25px;
}
.project_item .cover {
  position: relative;
  height: 440px;
  width: 100%;
  overflow: hidden;
  display: block;
}
.project_item .cover::before {
  content: "\f0c1";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  z-index: 9999;
  background-color: rgba(90, 184, 122, 0.7);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.project_item .cover img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.project_item .cover span {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #fff;
  color: #c58a1c;
  padding: 5px 10px;
  margin-bottom: 5px;
  -webkit-border-radius: 3px 11px 3px 3px;
  -moz-border-radius: 3px 11px 3px 3px;
  border-radius: 3px 11px 3px 3px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
}
.project_item .cont {
  text-align: start;
  padding: 30px;
  position: absolute;
  color: #c58a1c;
  bottom: -100%;
  background-color: #0009;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.4s linear bottom;
}
.project_item:hover .cont{
  bottom: 0
}
[dir=rtl] .project_item .cont {
  direction: rtl;
}
@media (max-width: 575px) {
  .project_item .cont {
    padding: 15px;
  }
}
.project_item .cont > a {
  display: inline-block;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-family: 'Kalam', cursive;
}
.project_item .cont p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
}
.project_item .cont .foot {
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.project_item .cont .foot h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.project_item .cont .foot h4 i {
  margin-inline-end: 5px;
}
.project_item .cont .foot .link {
  height: 30px;
  padding: 0 15px;
  line-height: 30px;
  margin: 0;
  font-size: 11px;
}
.project_item:hover .cover::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.project_item:hover .cover img {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}

.widget {
  text-align: start;
  position: relative;
  background-color: #0f0f0f;
  overflow: hidden;
  padding: 25px;
  margin-top: 25px;
}
.widget .secid {
  position: absolute;
  width: 100%;
  top: -120px;
  height: 0;
}
.widget .title {
  margin: 0 0 25px;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: #c58a1c;
}
[dir=rtl] .widget .title {
  font-size: 18px;
}
.widget .title::before {
  content: "";
  background-color: #c58a1c;
  position: absolute;
  inset-inline-start: 0;
  bottom: -5px;
  margin: auto;
  height: 3px;
  width: 30px;
}
.widget p {
  line-height: 22px;
  font-size: 16px;
  margin: 15px 0;
  color: #FFF;
}
.widget .list li {
  text-transform: capitalize;
}
.widget .list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .widget {
    padding: 15px;
  }
  .widget .title {
    font-size: 18px;
  }
  .widget p {
    font-size: 14px;
  }
  .widget li {
    font-size: 14px;
  }
}

.services_list {
  text-align: start;
  position: sticky;
  top: 150px;
  background-color: #0f0f0f;
}
.services_list h3 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  padding: 15px;
  /* border: 1px solid #f1f1f1; */
  border-inline-start: 5px solid #c58a1c;
  color: #c58a1c;
  letter-spacing: 1px;
}
.services_list a {
  display: block;
  line-height: 50px;
  padding: 0 15px;
  /* border: 1px solid #f1f1f1; */
  border-top: 0;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  color: #ffffff;
  text-transform: capitalize;
}
.services_list a:hover {
  color: #e7b85e;
}

/* Blog
===========================*/
.blog .blog_item {
  margin-bottom: 25px;
}

.blog_item {
  -webkit-border-radius: 0 15px;
  -moz-border-radius: 0 15px;
  border-radius: 0 15px;
  background-color: #fff;
  overflow: hidden;
}
.blog_item .cover {
  position: relative;
  height: 290px;
  width: 100%;
  overflow: hidden;
  display: block;
}
.blog_item .cover::before {
  content: "\f0c1";
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  z-index: 9999;
  background-color: rgba(197, 138, 28, 0.8);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.blog_item .cover img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.4s linear transform;
  -moz-transition: 0.4s linear transform;
  -ms-transition: 0.4s linear transform;
  -o-transition: 0.4s linear transform;
  transition: 0.4s linear transform;
}
.blog_item .cont {
  padding: 18px;
  font-weight: 700;
  background: #c58a1c;
}
[dir=rtl] .blog_item .cont {
  direction: rtl;
}
.blog_item .cont a {
  color: #ffffff;
  display: block;
  margin-bottom: 5px;
  font-size: 18px;
  /* font-family: 'Kalam', cursive; */
  letter-spacing: 0;
}
.blog_item .cont a:hover {
    color: #FFF;
    text-decoration: underline;
}
@media (max-width: 991px) {
  .blog_item .cont a {
  font-size: 16px;
  }
}
.blog_item .cont p {
  color: #fff;
  margin: 0;
  font-size: 14px;
  font-style: italic;
}
@media (max-width: 767px) {
  .blog_item .cont {
    padding: 10px;
  }
}
@media (max-width: 575px) {
  .blog_item .cont a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}
.blog_item:hover .cover::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.blog_item:hover .cover img {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -o-transform: scale(1.04);
  transform: scale(1.04);
}
.blog_item:hover a {
  color: #ffffff;
}

.blog_details {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .blog_details {
    padding: 15px;
  }
}
.blog_details h2 {
  margin: 0 0 15px;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: #c58a1c;
}
.blog_details h3 {
  margin: 0 0 15px;
  letter-spacing: 1px;
  font-size: 18px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: #c58a1c;
}
.blog_details span {
  background-color: #c58a1c;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  padding: 3px 10px;
  margin: 0 0 15px;
  -webkit-border-radius: 10px 3px 3px 3px;
  -moz-border-radius: 10px 3px 3px 3px;
  border-radius: 10px 3px 3px 3px;
}
.blog_details p {
  line-height: 25px;
  margin: 15px auto;
  font-size: 16px;
  color: #777;
}
.blog_details p.hint {
  padding-inline-start: 25px;
  border-inline-start: 5px solid #c58a1c;
  margin-bottom: 35px;
  font-size: 17px;
  line-height: 30px;
}
.blog_details img {
  margin-bottom: 15px;
  -webkit-border-radius: 10px 3px 3px 3px;
  -moz-border-radius: 10px 3px 3px 3px;
  border-radius: 10px 3px 3px 3px;
}

.share {
  margin-top: 15px;
  border-top: 1px solid #e7e7e7;
  padding: 15px 0 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.share h4 {
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  color: #c58a1c;
  text-transform: capitalize;
}
.share .social a {
  color: #fff !important;
}
.share .social .fa-facebook-f {
  background-color: #1877f2;
}
.share .social .fa-instagram {
  background-color: #e4405f;
}
.share .social .fa-youtube {
  background-color: #cd201f;
}

.related_blog {
  position: sticky;
  top: 150px;
  padding: 25px;
  background-color: #fff;
  margin: 0 0 15px;
  -webkit-border-radius: 20px 3px 3px 3px;
  -moz-border-radius: 20px 3px 3px 3px;
  border-radius: 20px 3px 3px 3px;
}
@media (max-width: 575px) {
  .related_blog {
    padding: 15px;
  }
}
.related_blog h3 {
  margin: 0 0 25px;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 40px;
  color: #c58a1c;
}
[dir=rtl] .related_blog h3 {
  font-size: 18px;
}
.related_blog h3::before {
  content: "";
  background-color: #c58a1c;
  position: absolute;
  inset-inline-start: 0;
  bottom: -5px;
  margin: auto;
  height: 3px;
  width: 30px;
}

.list_item {
  margin-top: 15px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 15px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #212121;
  font-size: 16px;
  line-height: 20px;
}
.list_item img {
  margin: 0;
  margin-inline-end: 10px;
  min-width: 60px;
  width: 60px;
  height: 60px;
  object-fit: cover;
  -webkit-border-radius: 10px 3px 3px 3px;
  -moz-border-radius: 10px 3px 3px 3px;
  border-radius: 10px 3px 3px 3px;
}
.list_item span {
  margin-top: 5px;
  color: #777;
  display: block;
}

.a2a_kit .a2a_svg {
  background-repeat: repeat;
  width: 40px !important;
  line-height: 40px !important;
  height: 40px !important;
  background-size: 35px !important;
  border-radius: 5px !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Form
========================*/
label {
  font-weight: 700;
  font-size: 14px;
  margin: 10px 0;
}

.form-control {
  padding: 0 15px;
  font-size: 14px;
  line-height: 45px;
  height: 45px;
  color: #212121;
  border: 0;
  letter-spacing: 0px;
  -webkit-border-radius: 0 15px;
  -moz-border-radius: 0 15px;
  border-radius: 0 15px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.form-control:hover, .form-control:focus {
  border: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

textarea.form-control {
  resize: none;
  height: 110px;
  padding: 10px 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  line-height: 22px;
}

.contact_form {
  padding: 25px;
  background-color: #fff;
}
@media (max-width: 575px) {
  .contact_form {
    padding: 15px !important;
  }
}
.contact_form h3 {
  margin: 0 0 15px;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 40px;
  color: #c58a1c;
}
.contact_form h3::before {
  content: "";
  background-color: #c58a1c;
  position: absolute;
  inset-inline-start: 0;
  bottom: -5px;
  margin: auto;
  height: 3px;
  width: 30px;
}
.contact_form .form-control {
  border: 1px solid #e7e7e7 !important;
}
.contact_form .link {
  margin: 0;
}

.contact_item {
  padding: 25px;
  background-color: #fff;
  margin: 0 0 15px;
  -webkit-border-radius: 20px 3px 3px 3px;
  -moz-border-radius: 20px 3px 3px 3px;
  border-radius: 20px 3px 3px 3px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 575px) {
  .contact_item {
    padding: 15px;
  }
}
.contact_item i {
  margin-top: 5px;
  color: #fff;
  text-align: center;
  min-width: 40px;
  height: 40px;
  line-height: 40px;
  margin-inline-end: 15px;
  background-color: #c58a1c;
  -webkit-border-radius: 10px 3px 3px 3px;
  -moz-border-radius: 10px 3px 3px 3px;
  border-radius: 10px 3px 3px 3px;
}
.contact_item span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: #c58a1c;
}
.contact_item a {
  color: #212121;
}
.contact_item .social a {
  color: #fff !important;
}
.contact_item .social .fa-facebook-f {
  background-color: #1877f2;
}
.contact_item .social .fa-instagram {
  background-color: #e4405f;
}
.contact_item .social .fa-youtube {
  background-color: #cd201f;
}
.contact_item .social .fa-tiktok {
  background-color: #433737;
}

/* Footer
=====================*/
footer {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  z-index: 9997;
  background-color: #000000;
}
@media (max-width: 991px) {
  footer {
    padding-top: 10px;
  }
}
footer::before {
  content: "";
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  position: absolute;
  opacity: 0.3;
  background: url(../images/shap.png) center repeat;
}
footer .container {
  z-index: 999;
}
footer .gallery_list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
footer .gallery_list li {
  width: 70px;
  margin: 5px 10px 5px 0;
  height: 50px;
  overflow: hidden;
}
footer .gallery_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-border-radius: 0 15px;
  -moz-border-radius: 0 15px;
  border-radius: 0 15px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  footer .gallery_list li {
    width: 60px;
  }
}
@media (max-width: 991px) {
  footer .gallery_list li {
    width: 80px;
  }
}
@media (max-width: 767px) {
  footer .gallery_list {
    margin-bottom: 0px;
  }
  footer .gallery_list li {
    margin-bottom: 0;
    height: 70px;
    width: 75px;
  }
}
@media (max-width: 575px) {
  footer .gallery_list li {
    width: 85px;
  }
}
footer .logo {
  margin: 0;
  margin-bottom: 15px;
  width: 80px;
}
footer p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.5px;
}
footer h3 {
  margin: 20px 0;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  line-height: 30px;
  color: #fff;
  /* font-family: 'Kalam', cursive; */
}
footer h3::before {
  content: "";
  background-color: #c58a1c;
  position: absolute;
  inset-inline-start: 0;
  bottom: -5px;
  margin: auto;
  height: 3px;
  width: 30px;
}
footer ul.quick_links .row {
  margin: 0;
}
footer ul.quick_links li {
  display: block;
  position: relative;
  padding: 0;
  padding-inline-start: 20px;
  margin-bottom: 5px;
}
footer ul.quick_links li a {
  display: inline-block;
  color: #fff;
  line-height: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: capitalize;
  -webkit-transition: 0.4s linear all;
  -moz-transition: 0.4s linear all;
  -ms-transition: 0.4s linear all;
  -o-transition: 0.4s linear all;
  transition: 0.4s linear all;
}
footer ul.quick_links li a:hover {
  color: #e7b85e;
  -webkit-transform: translatex(5px);
  -moz-transform: translatex(5px);
  -ms-transform: translatex(5px);
  -o-transform: translatex(5px);
  transform: translatex(5px);
}
footer ul.quick_links li::before {
  content: "";
  color: #fff9;
  position: absolute;
  content: "\f105";
  inset-inline-start: 0;
  line-height: 30px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
[dir=rtl] footer ul.quick_links li::before {
  -webkit-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
footer .social a {
  background-color: #fff1;
}
footer .social a:hover {
  background-color: #fff;
  color: #e7b85e;
}
footer .subscribe_form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: initial;
}
footer .subscribe_form .form-control {
  width: 100%;
  -webkit-border-radius: 0 15px;
  -moz-border-radius: 0 15px;
  border-radius: 0 15px;
}
footer .subscribe_form .icon {
  min-width: 35px;
  margin: 0;
  position: absolute;
  inset-inline-end: 5px;
}
footer .copyrights {
  text-transform: uppercase;
  position: relative;
  z-index: 999;
  color: #fff;
  padding: 15px 0;
  margin-top: 50px;
  border-top: 1px solid #fff1;
}
footer .copyrights .col-12 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
footer .copyrights p {
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}
footer .copyrights .power {
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}
footer .copyrights .power a {
  display: inline-block;
  color: #fece4e;
}
footer .copyrights .power a img {
  display: inline-block;
  margin: 0 3px;
}
@media (max-width: 991px) {
  footer .copyrights {
    margin-top: 20px;
    padding: 25px 15px;
  }
  footer .copyrights .col-12 {
    flex-direction: column;
  }
}
@media (max-width: 575px) {
  footer .copyrights {
    padding: 10px 10px 60px;
    text-align: center;
  }
}

.up_btn {
  position: fixed;
  inset-inline-start: 15px;
  bottom: 137px;
  margin: auto;
  font-size: 16px;
  z-index: 9998;
  display: none;
}
.reg_btn{
  margin:0;
  position: fixed;
  inset-inline-start: 15px;
  bottom: 150px;
  z-index: 9998;
  text-align: center;
}
.modal{
  z-index:9999;
}
.modal-open {
  overflow:hidden !important;
  padding: 0 !important;
}
.modal-open .modal{
  overflow:hidden !important;
  padding: 0 !important;
  top: 20%;
}
.modal-backdrop.show{
  opacity: 70%;
  z-index: 9998;
}
.modal-content{
  /* border-radius: 30px 0; */
  overflow: hidden;
  box-shadow: 0 0 10px #c58a1c;
  background: #000;
}
.modal-content .close {
  color: #fff;
  font-size: 30px;
  background: #c58a1c;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.modal-body .contact_form{
  padding: 25px 25px 15px;
  text-align: start;
}
.modal-body .contact_form h3{
  font-family: 'Kalam', cursive;
  letter-spacing: 0;
  font-size: 28px;
  margin: 0 0 25px;
}
.chat_btns {
  position: fixed;
  inset-inline-start: 15px;
  bottom: 15px;
  width: 45px;
  z-index: 9998;
  text-align: center;
}
.chat_btns a {
  display: block;
  position: relative;
  font-size: 22px;
  margin: auto;
  color: #fff !important;
  border: 0;
  width: 45px;
  height: 45px;
  padding: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.chat_btns a i {
  line-height: 45px;
}
.chat_btns a::after, .chat_btns a::before {
  width: 45px;
  height: 45px;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s all linear;
  -moz-transition: 0.3s all linear;
  -ms-transition: 0.3s all linear;
  -o-transition: 0.3s all linear;
  transition: 0.3s all linear;
  animation: ripple 1.5s infinite;
  animation-delay: 0.6s;
}
.chat_btns a::after {
  animation-delay: 0.6s;
}
.chat_btns a.whats {
  background-color: #25d366;
}
.chat_btns a.whats::after, .chat_btns a.whats::before {
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
}
.chat_btns a.mes {
  background-color: #09f;
  margin-bottom: 15px;
}
.chat_btns a.mes::after, .chat_btns a.mes::before {
  box-shadow: 0 0 0 0 rgba(0, 153, 255, 0.6);
}
.chat_btns a.reg {
  background-color: #c58a1c;
  margin-bottom: 15px;
}
.chat_btns a.reg::after, .chat_btns a.reg::before {
  box-shadow: 0 0 0 0 rgba(197, 138, 28, 0.6);
}

@-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.facilitie{
    padding: 15px;
    border-radius: 15px;
    background-color: #c58a1c;
    margin: 0 auto 25px;
    text-align: center;
    min-height: 275px;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    position: relative;
    transition: 0.4s linear all;
    /* border-radius: 0 35px; */
}
.facilitie img{
    margin: 0 auto;
    
    width: 60px;
    transform: translateY(40px);
    transition: 0.4s linear all;
}
.facilitie h3{
    font-size: 22px;
    font-weight: 600;
    margin: 20px auto 10px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'Kalam', cursive;
    transform: translateY(40px);
    transition: 0.4s linear all;
}
.facilitie p{
    line-height: 20px;
    font-size: 14px;
    margin: 0;
    transform: translateY(40px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s linear all;
    color: #fff;
}
.facilitie:hover img , .facilitie:hover h3, .facilitie:hover p{
    transform: translateY(0px);
    opacity: 1;
  visibility:  visible
}
.client{
    margin: 0 auto 25px;
    text-align: center;
    width: 100%;
    /* height: 290px; */
    overflow: hidden;
    border-radius: 0 25px;
}
.client img{
    margin: 0 auto;
    width: 100%;
    transition: 0.4s linear all;
    height: 100%;
    object-fit: cover;
}
.client .cont{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c58a1c;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 100%;
  flex-direction: column;
  border-radius: 0 20px;
  transition: 0.4s linear all;
}
.client h3{
    font-size: 25px;
    font-weight: 600;
    margin: 0 auto 25px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: 'Kalam', cursive;
}
.client p{
    font-size: 16px;
    text-align: center;
    margin: 0;
    color: #FFF;
}
.client:hover img {
    transform: translateY(0px);
    opacity: 1;
  visibility:  visible
}
.client:hover .cont{
  top: 0
}
.iframe{
   position: relative; 
}
.iframe a{
   position: absolute;
    left: 10px;
    top: 10px;
    padding: 15px 50px;
    background-color: #c58a1c;
    color: #fff;
    border-radius: 0 15px;
}

/*New Edits*/
.intro_wrapper{
    position: relative;
}

.intro_content{
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_section .intro_cont{
    align-items: center;
}

.main_section .intro_cont p{
    border-inline-start: 0;
}

.link,
.icon,
.navbar ul.navbar-nav li a,
.about_img img,
.client,
.blog_item,
.iframe a,
footer .gallery_list li img,
footer .subscribe_form .form-control,
.social a,
.blog_details span,
.contact_item i,
.form-control,
.main_section .intro_cont span,
.client .cont{
    border-radius: 4px;
}

#main_section:after{
    content: "";
    position: absolute;
    z-index: 1;
    background-color: #000000b8;
    height: 100%;
    width: 100%;
    top: 0;
}

.main-projects{
    
}

.main-projects-item{
    background-color: #050608;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.05);
}

.main-projects-item .cover{
    position: relative;
    height: 290px;
    width: 100%;
    overflow: hidden;
    display: block;
}

.main-projects-item .cover img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    -webkit-transition: 0.4s linear transform;
    -moz-transition: 0.4s linear transform;
    -ms-transition: 0.4s linear transform;
    -o-transition: 0.4s linear transform;
    transition: 0.4s linear transform;
}

.main-projects-item .cont {
    padding: 35px;
    font-weight: 700;
    position: relative;
}

.main-projects-item .cont:after{
    content: "";
    position: absolute;
    border: 1px solid #c58a1c;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.main-projects-item .cont a {
    color: #c58a1c;
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-family: 'Kalam', cursive;
    letter-spacing: 0;
}

.main-projects-item .cont p {
    color: #f5f5f5;
    margin: 0;
    font-size: 14px;
}

.main-projects-item .video_btn i {
    margin-left: 0;
    font-size: 20px;
    line-height: 60px;
}

.main-projects-item .video_btn {
    width: 60px;
    height: 60px;
}

.main-projects-item .video_btn::after, .main-projects-item .video_btn::before {
    width: 60px;
    height: 60px;
}

.main-projects-item:hover .cover img {
    filter: blur(1px);
    -webkit-transform: scale(1.04);
    -moz-transform: scale(1.04);
    -ms-transform: scale(1.04);
    -o-transform: scale(1.04);
    transform: scale(1.04);
}

.blog_item .cover::before {
    content: "View More";
    font-family: "Urbanist", sans-serif;
    width: 110px;
    height: 40px;
    line-height: 40px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

[dir="rtl"] .blog_item .cover::before {
    content: "التفاصيل";
    font-family: "Cairo", sans-serif;
    font-weight: 400;
}

.blog_item:hover .cover img {
    filter: blur(1px);
}

section {
    background-color: #000;
}

section.colored {
    background-color: #000000;
}

.section_title h3 {
    color: #fafafa;
}

.section_title p,
.about_cont p{
    color: #fafafa;
    opacity: .8;
}

header {
    background-color: #0000007C;
}

.navbar ul.navbar-nav li a{
    color: #fafafa;
}

.controls {
    border-radius: 0;
    z-index: 2;
}

.about_img{
    position: relative;
}


.about_img:after{
    content:"";
    position: absolute;
    border: 1px solid #c58a1c;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 4px;
}

.contact_form {
    background-color: #000000;
    border-radius: 4px;
}

label {
    color: #fafafa;
}

.form-control {
    background-color: #212121;
    color: #fff;
}

.contact_item {
    background-color: #0F0F0F;
    border-radius: 4px;
}

.contact_item .cont *:not(span),
.contact_item .cont{
    color: #fafafa;
}

.contact_form .form-control {
    border: 1px solid #191919 !important;
}

.form-control:focus {
    color: #fff;
    background-color: #2e2f30;
}

input:-internal-autofill-selected {
    background-color: #2e2f30 !important;
    color: #fff !important;
}

.blog_item {
    background-color: #0F0F0F;
}

.main_section .intro_cont span {
    background-color: #0F0F0F;
}

.blog_details {
    background-color: #0f0f0f;
}

.blog_details p{
    color: #fff !important;
    opacity: .8;
}

footer p,
footer ul.quick_links li a{
    opacity: .8;
}

footer .subscribe_form .form-control {
    background-color: #0f0f0f;
}

footer .social a:hover,
.top_header .col-12 .social a:hover{
    background-color: #0f0f0f;
}

.navbar ul.navbar-nav li.dropdown .dropdown-menu{
    background-color: #0f0f0f;
    padding-top: 0;
}

.navbar ul.navbar-nav li.dropdown .dropdown-menu a {
    border-top: 1px solid #000;
}

.filterDiv {
  display: none;
}
    
.filterDiv.show {
  display: block;
}

#myBtnContainer{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 2.5rem;
}

#myBtnContainer .btn:not(.active){
    color: #c58a1c;
    background-color: transparent;
    border: 1px solid #c58a1c;
}

.value-item{
    background-color: #c58a1c;
    color: #fff;
    padding: 2rem 1rem;
    border-radius: 4px;
    text-align: center;
    height: calc(100% - 2rem);
    margin-bottom: 2rem;
    transition: .3s all ease-in-out;
    position: relative;
    top: 0;
}

.value-item:hover{
    top: -1rem;
}

.value-item i{
    color: #000;
    font-size: 45px;
    margin-bottom: 2rem;
}
.value-item img {
    border-radius: 50%;
    margin-bottom: 20px;
}

.value-item h6{
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.feature-item-img img{
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 4px;
}

.single-feature-item{
    margin-bottom: 2rem;
    color: #fff;
}

.single-feature-item h5{
    border-bottom: 1px solid #c58a1c;
    padding-bottom: 0.5rem;
    display: inline-flex;
}

.single-feature-item ul li{
    display: flex;
    padding: 0.5rem 2rem;
    position: relative;
}

.single-feature-item ul li:after{
    position: absolute;
    content: "\f00c";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    left: 0;
    color: #c58a1c;
}