/*@import url('https://fonts.googleapis.com/css2?family=League+Gothic&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');*/
/**{*/
/*      font-family: "Mulish", sans-serif;*/

/*}*/



.user-select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.small-text{
    color:white
}

.nice-shadow {
  box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
}
.slide-wrapper p{
    color:white !important;
}
.arabic-font {
  /*font-family: "Cairo", sans-serif;*/
}

.text-aurora {
  color: var(--main-color);
}

.border-aurora {
  border-color: var(--main-color) !important;
   font-size: 54px !important;
    font-weight: 900;
}

.bg-aurora {
  background-color: var(--main-color);
}

.form-control {
  border: none;
  outline: 1px solid #ced4da;
  border-radius: 0;
}
a{
    color: #fff;
}
.form-control:focus {
  box-shadow: none;
  outline: 2px solid var(--main-color);
}

.with-point {
  position: relative;
  color: var(--titles-color);
}
.with-point::before {
  content: "";
  height: 7px;
  width: 7px;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -15px;
  border: none;
  border-radius: 50%;
  z-index: 2;
}
.with-point.text-center::before {
  content: none;
}
.with-point.text-center::after {
  left: 50%;
  transform: translate(-50%);
}
.with-point::after {
  content: attr(data-text);
  position: absolute;
  top: -65px;
  left: 0;
  display: inline-block;
  /*font-family: "Lavishly Yours", cursive;*/
  font-size: 100px;
  line-height: 130px;
  color: var(--main-color);
  opacity: 0.2;
  pointer-events: none;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  -webkit-animation-name: DropDownSlide;
  animation-name: DropDownSlide;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.dropdown-menu .dropdown-item .active, .dropdown-menu .dropdown-item:active {
  background-color: var(--main-color);
}
.dropdown-menu .dropdown-item:hover, .dropdown-menu .dropdown-item:focus {
  color: var(--main-color);
  background-color: rgba(13, 106, 165, 0.1);
}
.dropdown-menu .dropdown-divider {
  height: 0;
  opacity: 1;
  border-top: 1px solid #eff2f7;
}

.btn-14 {
  display: inline-block;
  text-decoration: none;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--main-color);
  transition: color 0.5s;
  z-index: 3;
  font-size: 1.2rem;
  border-radius: 6px;
  font-weight: 500;
  color: var(--main-color);
  background: var(--button-color);
  text-align: center;
}
.btn-14.sm {
  width: 5em;
  height: 2em;
  line-height: 1.6em;
}
.btn-14:hover, .btn-14.hover {
  color: #fff;
}
.btn-14.hover:hover {
  color: var(--main-color);
}
.btn-14.hover:hover:before {
  top: 100%;
  left: 100%;
}
.btn-14:before {
  top: 100%;
  left: 100%;
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--main-color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
  transition: all 0.7s;
}
.btn-14:hover:before, .btn-14.hover:before {
  top: -30px;
  left: -30px;
}
.btn-14:active:before {
  background: var(--main-color);
  transition: background 0s;
}

.custom-form-input {
  width: 100%;
  height: 52px;
  background-color: #303036;
  outline: none;
  border: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  transition: 0.3s;
  line-height: 52px;
  border-bottom: solid 2px var(--main-color);
  box-shadow: none;
}
.custom-form-input .current {
  color: #868383;
}

textarea.custom-form-input {
  height: auto;
  padding-top: 10px;
}

select.custom-form-input {
  border-radius: 0;
}

input[type=file].custom-form-input {
  color: #868383;
}
input[type=file].custom-form-input::file-selector-button {
  display: none;
}

@keyframes flipX {
  0% {
    transform: perspective(200px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(200px) rotateX(-180deg) rotateY(0deg);
  }
  100% {
    transform: perspective(200px) rotateX(-180deg) rotateY(-180deg);
  }
}
@keyframes DropDownSlide {
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}
/* loading animation */
.loading-overlay {
  position: fixed;
  background: #fff;
  width: 100%;
  height: calc(100% + 90px);
  z-index: 1040;
  display: none;
  margin-top: -90px;
}

.loading-container {
  position: fixed;
  top: 50%;
  z-index: 1050;
  text-align: center;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.loading-container .loader-body {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: relative;
  background: var(--main-color);
  box-sizing: border-box;
  animation: flipX 1s linear infinite;
}

body.load {
  overflow: hidden;
}
body.load .loading-container,
body.load .loading-overlay {
  display: block;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  font-size: 22px;
  background-color: var(--main-color);
  cursor: pointer;
}
.back-to-top:hover {
  color: #fff;
}

body {
  /*--main-color: #fe6b2a;*/
  /*--main-color-rgb: 254, 107, 42;*/
  position: relative;
  /*background-color: #0c0c0e;*/
  background-color: var(--main-bg);
   color: var(--description-color);
}
p{
  color: var(--description-color);
}
.h4,.h5{
    color:var(--titles-color);
}

.banner {
  height: 300px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.6);
}

.our-services-section .single-slide .image {
  position: relative;
  z-index: 1;
}

.our-services-section .single-slide .image::before {
  content: "";
  height: 100%;
  position: absolute;
  transition: 0.4s;
  width: 100%;
  background-image: -webkit-linear-gradient(bottom, rgba(var(--main-color-rgb), 0.7) 20%, transparent);
  opacity: 0;
}

.our-services-section .single-slide:hover .image::before {
  opacity: 0.8;
}

.our-services-section .single-slide .image img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.our-services-section .single-slide .wrapper {
  background-color: #35353a;
}

.our-services-section .single-slide .wrapper a {
  /*color: var(--main-color);*/
  font-weight: 600;
  transition: 0.3s;
    color:white;

}

.our-services-section .single-slide .wrapper a:hover {
  color: #fff;
}

.our-services-section .slider__arrow.slider__arrow--next.glide__arrow.glide__arrow--next {
  right: 0;
}

.our-services-section .slider__arrow.slider__arrow--next.glide__arrow.glide__arrow--next i {
  position: relative;
  top: -2px;
  left: 2px;
}

.our-services-section .slider__arrow.slider__arrow--prev.glide__arrow.glide__arrow--prev i {
  position: relative;
  top: -2px;
  right: 2px;
}

.our-services-section .glide__arrow {
  border-radius: 50%;
  background-color: var(--main-color);
  border-color: var(--main-color);
  padding: 0;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 45px;
  color: #fff;
}

.our-services-section .glide__arrow:hover {
  opacity: 0.9;
}

.news-section .single-feed .img img {
  height: 250px;
  width: 100%;
  /*-o-object-fit: cover;*/
  /*object-fit: cover;*/
}
.news-section .single-feed .wrapper {
  border-bottom: 4px solid var(--main-color);
  background-color: #35353a;
}
.news-section .single-feed .wrapper a {
  /*color: var(--main-color);*/
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
    color: white;

}
.news-section .single-feed .wrapper a:hover {
  text-decoration: underline;
  color: white;
}

.project-details-page .images-glary .single-image img {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
}
.project-details-page .glide__bullets {
  bottom: 0;
}
.project-details-page .glide__bullets .glide__bullet {
  background-color: #d6d6d6;
}
.project-details-page .glide__bullets .glide__bullet.glide__bullet--active {
  background-color: var(--main-color);
}

.contact-us {
  position: relative;
}
.contact-us .wrapper a {
  color: #fff;
  transition: 0.4s;
}
.contact-us .wrapper a:hover {
  color: var(--main-color);
}

.post-details .main-image {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 500px;
}

footer.footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:var(--header-footer-color);
}

footer.footer .widget a {
  color: #fff;
  transition: 0.5s;
  text-decoration: none;
}

footer.footer .widget a:hover {
  color: rgb(187, 185, 185);
}

footer.footer .widget .widget-link {
  position: relative;
}

footer.footer .widget .widget-link:hover:before {
  opacity: 0.5;
}

footer.footer .widget .widget-link::before {
  position: absolute;
  content: "\f292";
  /*font-family: "Mulish", sans-serif;*/
  font-weight: 900;
  color: #fff;
  left: -17px;
  opacity: 0;
}

footer ul.footer-social-media li a {
  width: 40px;
  height: 40px;
  display: inline-block;
  background-color: #b6b6b6;
  color: #000;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  border-radius: 50%;
  transition: 0.5s;
}

footer ul.footer-social-media li a svg{
    fill: #000;
}

footer ul.footer-social-media li a:hover {
  color: #fff;
  background-color: var(--main-color);
}

footer ul.footer-social-media li a:hover svg{
    fill: #fff;
}

header.hero-slider-container .single-slide {
  height: calc(100vh - 90px);
  width: 100%;
  position: relative;
  z-index: 1;
}
header.hero-slider-container .single-slide::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.3764705882);
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: -1;
}
header.hero-slider-container .single-slide .slide-wrapper {
  border-left: 15px solid var(--main-color);
}

nav.navbar {
  padding: 20px 0;
  transition: 0.4s;
  background-color: transparent;
}
nav.navbar .navbar-brand .img-brand {
  width: 175px;
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}
nav.navbar .navbar-toggler {
  box-shadow: none;
  border: none;
}
nav.navbar .nav-item {
  margin: 0 5px;
}
nav.navbar .navbar-nav .nav-link {
  font-size: 1.2rem;
  color: #fff;
  transform: perspective(1px) translateZ(0);
  position: relative;
  overflow: hidden;
  color:var(--menu-font-color);
}
nav.navbar .navbar-nav .nav-link:focus {
  color: var(--main-color) !important;
}
nav.navbar .navbar-nav .nav-link.active, nav.navbar .navbar-nav .nav-link:hover {
  color: var(--main-color) !important;
}
nav.navbar .navbar-nav .nav-link.active::before, nav.navbar .navbar-nav .nav-link:hover::before {
  left: 0;
  right: 0;
}
nav.navbar .navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 51%;
  right: 51%;
  bottom: 0;
  background: var(--main-color);
  height: 3px;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
nav.navbar.scrolled {
  padding: 15px 0;
  background-color:var(--header-footer-color);
  /*background-color: #070708;*/
}
@media (max-width: 768px) {
  nav.navbar {
    padding: 15px 0;
    background-color: #070708;
  }
}

nav.navbar .ham-svg {
  cursor: pointer;
  transition: transform 400ms;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
nav.navbar .ham-svg.active {
  transform: rotate(45deg);
}
nav.navbar .ham-svg .line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--main-color);
  stroke-width: 5.5;
  stroke-linecap: round;
}
nav.navbar .ham-svg.ham-4 .top {
  stroke-dasharray: 40 160;
}
nav.navbar .ham-svg.ham-4 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}
nav.navbar .ham-svg.ham-4 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}
nav.navbar .ham-svg.ham-4.active .top {
  stroke-dashoffset: -64px;
}
nav.navbar .ham-svg.ham-4.active .middle {
  transform: rotate(90deg);
}
nav.navbar .ham-svg.ham-4.active .bottom {
  stroke-dashoffset: -64px;
}

.popup-search-box {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.8);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}
.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  border-radius: 0;
  top: 0;
}
.popup-search-box.show form {
  transition-delay: 0.5s;
  transform: translate(-50%, -50%) scale(1);
}
.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--main-color);
  background-color: transparent;
  font-size: 22px;
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
  color: var(--main-color);
}
.popup-search-box button.searchClose:hover {
  background-color: #fff;
  border-color: transparent;
  transform: rotate(90deg);
}
.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
}
@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid var(--main-color);
  background-color: transparent;
  padding-left: 30px;
  color: #fff;
  border-radius: 50px;
  outline: none;
}
.popup-search-box form input::-webkit-input-placeholder {
  color: #fff;
}
.popup-search-box form input::-moz-placeholder {
  color: #fff;
}
.popup-search-box form input:-ms-input-placeholder {
  color: #fff;
}
.popup-search-box form input::-ms-input-placeholder {
  color: #fff;
}
.popup-search-box form input::-webkit-input-placeholder {
  color: #fff;
}
.popup-search-box form input::placeholder {
  color: #fff;
}
.popup-search-box form button {
  position: absolute;
  top: 0;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  right: 12px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.popup-search-box form button:hover {
  transform: scale(1.1);
}
input::placeholder {
  color: white !important;
}
.text-color{
    color:#7a7575 !important;
}
/*# sourceMappingURL=style.css.map */
