.user-select-none {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
select, .form-control, .form-select, textarea, input{
        padding: 0 43px 0 43px;
}
.arabic-font {
  /*font-family: "Cairo", sans-serif;*/
}

.cursor-pointer {
  cursor: pointer;
}

.nice-shadow {
  box-shadow: 0 3px 15px rgba(22, 41, 124, 0.1);
}

.dashed-border {
  border-bottom: 1px dashed #6f6f6f;
}

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

.border-aurora {
  border-color: var(--main-color) !important;
}

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

.bg-semi-light {
  background-color: #f9fbfd;
}

.hovered {
  color: #adb5bd;
}

.hovered:hover {
  color: var(--main-color);
}
h2,h3,h4,h5,h6 {
    color:var(--titles-color);
}
a {
  text-decoration: none;
  color: var(--main-color);
  transition: 0.3s;
}

a.hovered {
  color: #adb5bd;
}

a:hover {
  color: #adb5bd;
}

a.hovered:hover {
  color: var(--main-color);
}

a.text-white:hover {
  opacity: 0.5;
}

.title-area {
  margin-bottom: 30px;
}
.title-area .sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--titles-color);
  text-transform: uppercase;
  margin-top: -0.41em;
  margin-bottom: 25px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.title-area .sub-title .shape {
  display: inline-block;
  height: 3px;
  width: 40px;
  background-color: var(--main-color);
  border-radius: 99px;
  position: relative;
}
.title-area .sub-title .shape.right .dots {
  right: -6px;
}
.title-area .sub-title .shape.right .dots:before {
  right: -6px;
}
.title-area .sub-title .shape .dots {
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: inherit;
  border-radius: 99px;
  position: absolute;
  top: 0;
}
.title-area .sub-title .shape .dots::before, .title-area .sub-title .shape .dots::after {
  content: "";
  height: inherit;
  width: inherit;
  background-color: inherit;
  border-radius: inherit;
  display: inline-block;
  position: absolute;
  top: 0;
}
.title-area .sub-title .shape .dots::after {
  right: -12px;
}
.title-area .sec-title {
  margin-top: -0.23em;
  font-size: 2rem;
  color: var(--titles-color);
}
.title-area.text-center .sub-title {
  justify-content: center;
}
.title-area.text-center .sub-title .shape.left .dots {
  left: -6px;
}
.title-area.text-center .sub-title .shape.left .dots:before {
  left: -6px;
}
.title-area.text-center .sub-title .shape.left .dots::after {
  left: -12px;
}

.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;
}

.dropdown-toggle::after {
  width: 8px;
  height: 8px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
  border-top: 0;
  border-left: 0;
  margin-left: 5px;
  margin-right: 5px;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

select,
.form-control,
.form-select,
textarea,
input {
  height: 55px;
  padding: 0 25px 0 25px;
  border: 1px solid transparent;
  color: #4d5765;
  background-color: #ebecf2;
  border-radius: 0;
  font-size: 16px;
  width: 100%;
  transition: 0.3s ease-in-out;
}

select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--main-color);
  background-color: #ebecf2;
}

[class*=col-].form-group > i {
  right: calc(0.75rem + 25px);
}

textarea.form-control,
textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 0;
}

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 19px;
  font-size: 16px;
  color: #93a5be;
}
.form-group > i.fa-envelope {
  padding-top: 1px;
}

.btn-aurora {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: var(--button-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 20.5px 29px;
  border-radius: 0;
  transition: all ease 0.4s;
  text-decoration: none;
  outline: none;
}
.btn-aurora:before, .btn-aurora:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  width: 0%;
  background-color: var(--main-color);
  z-index: -1;
  transition: all 0.4s ease-out;
}
.btn-aurora:before {
  left: 0;
  border-radius: 0 20px 20px 0;
}
.btn-aurora::after {
  right: 0;
  border-radius: 20px 0 0 20px;
}
.btn-aurora:hover {
  color: #fff;
}
.btn-aurora:hover::before, .btn-aurora:hover::after, .btn-aurora.active::before, .btn-aurora.active::after {
  width: 50%;
  border-radius: 0;
}

@-webkit-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 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);
  }
}
@-webkit-keyframes DropDownSlide {
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}
@keyframes DropDownSlide {
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}
@-webkit-keyframes jumpIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes jumpIcon {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
/* 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;
}

body {
  /*--main-color: #13c296;*/
  /*--gray-color: #a8aaac;*/
  /*--other-color: #000f57;*/
  /*--main-color-rgb: 13, 106, 165;*/
  background-color: #f8f9fa;
  color:var(--description-color);
}

.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;
  border: 1px solid #FFF;
}
.back-to-top:hover {
  color: #fff;
}

.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);
}

.about-us-section {
  position: relative;
  background: center/cover no-repeat ;
}
.about-us-section::before {
  content: "";
  display: block;
  background-color: #fff;
  width: 100%;
  position: absolute;
  height: 100%;
  z-index: -1;
}
.about-us-section .about-image-wrapper {
  position: relative;
}
.about-us-section .about-image-wrapper .about-image img {
  width: 400px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
}
@media (min-width: 1200px) {
  .about-us-section .about-image-wrapper .about-image img {
    width: 500px;
    height: 500px;
  }
}
.about-us-section .about-image-wrapper .about-shape {
  position: absolute;
  left: -55px;
  bottom: 33px;
  width: 100%;
  height: 100%;
}

.our-services-section {
  background: center/cover no-repeat;
}
.our-services-section .single-slide {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.our-services-section .single-slide .service-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 250px;
}
.our-services-section .single-slide .service-content {
  position: relative;
  left: 50px;
  margin-top: -94px;
  max-width: calc(100% - 50px);
  padding: 30px;
  z-index: 3;
  background-color: var(--main-color);
  box-shadow: 0 6px 20px rgba(7, 36, 95, 0.06);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.our-services-section .single-slide .service-content:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
  transition: 0.4s ease-in-out;
}
.our-services-section .single-slide .service-content .service-title:hover {
  color: var(--button-color);
}
.our-services-section .single-slide .service-content .service-info {
  /*color: #6c757d;*/
  color: var(--description-color);
}
.our-services-section .single-slide .service-btn {
  background-color: var(--main-color);
  color: #fff;
  width: 50px;
  height: 112px;
  line-height: 115px;
  display: inline-block;
  text-align: center;
  position: absolute;
  left: 0;
  transition: 0.4s;
  text-decoration: none;
  bottom: 0;
}
.our-services-section .single-slide .service-icon {
  width: 60px;
  height: 60px;
  line-height: 56px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 32px;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: -35px;
  transition: 0.4s ease-in-out;
}
.our-services-section .single-slide .service-icon:before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
}
.our-services-section .single-slide .service-icon img {
  transition: 0.4s ease-in-out;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.our-services-section .single-slide:hover .service-content:before {
  height: 0;
}
.our-services-section .single-slide:hover .service-title {
  color: var(--button-color);
}
.our-services-section .single-slide:hover .service-btn {
  background-color: var(--button-color);
}
.our-services-section .single-slide:hover .service-info {
  color: #fff;
}
.our-services-section .single-slide:hover .service-icon {
  color: var(--main-color);
  background-color: #fff;
}
.our-services-section .single-slide:hover .service-icon img {
  transform: rotateY(180deg);
  -webkit-filter: none;
  filter: none;
}
.our-services-section .glide__arrow {
  top: auto;
  bottom: -100px;
  background-color: var(--main-color);
  border-color: var(--main-color);
  padding: 0;
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  color: #fff;
}
.our-services-section .glide__arrow:hover {
  opacity: 0.7;
}
.our-services-section .slider__arrow.slider__arrow--next.glide__arrow.glide__arrow--next {
  left: 50%;
  margin: 0 10px;
}
.our-services-section .slider__arrow.slider__arrow--next.glide__arrow.glide__arrow--next em {
  position: relative;
  top: -2px;
  left: 1px;
}
.our-services-section .slider__arrow.slider__arrow--prev.glide__arrow.glide__arrow--prev {
  right: 50%;
  margin: 0 10px;
}
.our-services-section .slider__arrow.slider__arrow--prev.glide__arrow.glide__arrow--prev em {
  position: relative;
  top: -2px;
  right: 1px;
}

.category-page .category-block {
  position: relative;
  z-index: 2;
}
.category-page .category-block .category-image {
  overflow: hidden;
}
.category-page .category-block .category-image img {
  width: 100%;
  transition: 0.4s ease-in-out;
  height: 300px;
}
.category-page .category-block .category-content {
  position: relative;
  text-align: center;
  margin-top: -150px;
  max-width: calc(100% - 60px);
  margin-left: 30px;
  margin-right: 30px;
  padding: 0 30px 30px 30px;
  z-index: 3;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(7, 36, 95, 0.08);
}
.category-page .category-block .category-content .category-icon {
  width: 60px;
  height: 60px;
  line-height: 56px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(7, 36, 95, 0.2);
  color: #fff;
  font-size: 32px;
  text-align: center;
  border-radius: 50%;
  position: relative;
  top: -35px;
  margin: 0 auto auto;
  transition: 0.4s ease-in-out;
}
.category-page .category-block .category-content .category-icon img {
  transition: 0.4s ease-in-out;
}
.category-page .category-block .category-content .category-icon:before {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: transparent;
  border: 1px solid var(--main-color);
  border-radius: inherit;
}
.category-page .category-block .category-content .category-title {
    color:var(--titles-color);
}
.category-page .category-block .category-content .category-title:hover {
  color: var(--main-color);
}
.category-page .category-block .category-content .category-text {
  margin-bottom: -0.45em;
  color: var(--description-color);
}
.category-page .category-block .category-btn {
  max-width: calc(100% - 60px);
  width: 100%;
  margin-left: 30px;
  margin-right: 30px;
}
.category-page .category-block:hover .category-image img {
  transform: scale(1.1);
}
.category-page .category-block:hover .category-content .category-icon {
  color: var(--main-color);
  background-color: var(--main-color);
}
.category-page .category-block:hover .category-content img {
  transform: rotateY(180deg);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.category-page .category-block:hover .category-btn {
  color: #fff;
}
.category-page .category-block:hover .category-btn::before,
.category-page .category-block:hover .category-btn::after,
.category-page .category-block:hover .service-btn::before,
.category-page .category-block:hover .service-btn::after {
  width: 50%;
  border-radius: 0;
}

.our-projects-section {
  position: relative;
  background: center/cover no-repeat ;
}
.our-projects-section .single-slide, .our-category-section .single-slide {
  position: relative;
}
.our-projects-section .single-slide .project-image, .our-category-section .single-slide .project-image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.our-projects-section .single-slide .project-image:before, .our-category-section .single-slide .project-image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #000f57 0%, rgba(7, 36, 95, 0) 100%);
  z-index: 1;
}
.our-projects-section .single-slide .project-image img, .our-category-section .single-slide .project-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s ease-in-out;
  height: 300px;
}
.our-projects-section .single-slide .project-content, .our-category-section .single-slide .project-content {
  background: #fff;
  box-shadow: 0 4px 15px rgba(7, 36, 95, 0.1);
  border-radius: 10px;
  padding: 30px;
  width: calc(100% - 40px);
  margin: 0 auto;
  position: relative;
  z-index: 4;
  margin: -65px auto 0 auto;
}
.our-projects-section .single-slide .project-content .project-title, .our-category-section .single-slide .project-content .project-title {
  font-size: 20px;
  margin-bottom: -0.2em;
  color: var(--titles-color);
  transition: 0.4s;
}
.our-projects-section .single-slide .project-content .project-title:hover , .our-category-section .single-slide .project-content .project-title:hover {
  color: var(--main-color);
}
.our-projects-section .single-slide .project-icon,.our-category-section .single-slide .project-icon {
  display: inline-block;
  background-color: var(--main-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 8px 19px rgba(var(--main-color-rgb), 0.3);
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: -25px;
  right: 25px;
}
.our-projects-section .single-slide:hover .project-image img,.our-category-section .single-slide:hover .project-image img {
  transform: scale(1.1);
}
.our-projects-section .single-slide:hover .project-icon ,.our-category-section .single-slide:hover .project-icon {
  -webkit-animation: jumpIcon 1s linear infinite;
  animation: jumpIcon 1s linear infinite;
}

.quote-form-wrapper {
  padding: 40px;
  border-top: 5px solid var(--main-color);
  background-color: #fff;
  box-shadow: 0 10px 50px rgba(7, 36, 95, 0.1);
}

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

.contact-us {
  position: relative;
  background: #f3f4fe;
  overflow: hidden;
  z-index: 1;
}
.contact-us .contact-us-desc .single-desc {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.contact-us .contact-us-desc .single-desc .info {
  flex-grow: 1;
}
.contact-us .contact-us-desc .single-desc .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--main-color);
}

footer.footer-wrapper {
  background-color: var(--main-color);
  overflow: hidden;
  position: relative;
  z-index: 2;
  /*background: center/cover no-repeat url("../images/background/bg-footer-overlay.jpg");*/
}
footer.footer-wrapper .widget-area {
  padding-top: 120px;
  padding-bottom: 75px;
  color: var(--header-footer-color);
}
footer.footer-wrapper .widget-area .footer-widget,
footer.footer-wrapper .widget-area .footer-widget .widget {
  padding: 0;
  border: none;
  background-color: transparent;
  box-shadow: none;
  margin-bottom: 40px;
}
footer.footer-wrapper .widget-area .footer-widget .social-media a,
footer.footer-wrapper .widget-area .footer-widget .widget .social-media a {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  margin-right: 8px;
  border-radius: 50%;
  transition: all ease 0.4s;
  text-decoration: none;
  background-color: transparent;
  color: var(--header-footer-color);
  border: 1px solid #fff;
}
footer.footer-wrapper .widget-area .footer-widget .social-media a:not(footer.footer-wrapper .widget-area .footer-widget .social-media a:first-of-type,
footer.footer-wrapper .widget-area .footer-widget .widget .social-media a:first-of-type),
footer.footer-wrapper .widget-area .footer-widget .widget .social-media a:not(footer.footer-wrapper .widget-area .footer-widget .social-media a:first-of-type,
footer.footer-wrapper .widget-area .footer-widget .widget .social-media a:first-of-type) {
  margin-left: 8px;
}
footer.footer-wrapper .widget-area .footer-widget .social-media a:hover,
footer.footer-wrapper .widget-area .footer-widget .widget .social-media a:hover {
  background-color: var(--button-color);
  border-color: var(--button-color);
}
footer.footer-wrapper .widget-area .footer-widget .widget-title,
footer.footer-wrapper .widget-area .footer-widget .widget .widget-title {
  position: relative;
  font-weight: 700;
  line-height: 1em;
  margin: -0.1em 0 30px 0;
  padding-bottom: 20px;
  color: #fff;
  font-size: 20px;
  max-width: 275px;
  margin-bottom: 35px;
  text-transform: uppercase;
}
footer.footer-wrapper .widget-area .footer-widget .widget-title::before, footer.footer-wrapper .widget-area .footer-widget .widget-title::after,
footer.footer-wrapper .widget-area .footer-widget .widget .widget-title::before,
footer.footer-wrapper .widget-area .footer-widget .widget .widget-title::after {
  content: "";
  height: 3px;
  width: 60px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
footer.footer-wrapper .widget-area .footer-widget .widget-title::after,
footer.footer-wrapper .widget-area .footer-widget .widget .widget-title::after {
  width: 3px;
  background-color: #fff;
  left: 65px;
  box-shadow: 8px 0 0 0 #fff;
}
footer.footer-wrapper .widget-area .footer-widget ul.menu,
footer.footer-wrapper .widget-area .footer-widget .widget ul.menu {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
}
footer.footer-wrapper .widget-area .footer-widget ul.menu li a,
footer.footer-wrapper .widget-area .footer-widget .widget ul.menu li a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 0 18px;
  margin-bottom: 20px;
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 0;
  background-color: transparent;
  position: relative;
  color:var(--header-footer-color);
  transition: 0.4s;
}
footer.footer-wrapper .widget-area .footer-widget ul.menu li a:before,
footer.footer-wrapper .widget-area .footer-widget .widget ul.menu li a:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 0;
  top: 1px;
  background-color: transparent;
  border: none;
  color: inherit;
  transition: 0.4s transform;
  position: absolute;
  right: 25px;
}
footer.footer-wrapper .widget-area .footer-widget ul.menu li a:hover,
footer.footer-wrapper .widget-area .footer-widget .widget ul.menu li a:hover {
  background-color: transparent;
  color: var(--button-color);
}
footer.footer-wrapper .widget-area .footer-widget ul.menu li a:hover:before,
footer.footer-wrapper .widget-area .footer-widget .widget ul.menu li a:hover:before {
  transform: translateX(3px);
  color: var(--button-color);
}
footer.footer-wrapper .widget-area .footer-widget.newsletter-widget,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget {
  position: relative;
  z-index: 2;
  padding: 40px;
  padding-top: 0;
  max-width: 360px;
}
@media (max-width: 992px) {
  footer.footer-wrapper .widget-area .footer-widget.newsletter-widget,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget {
    padding-top: 40px;
  }
}
footer.footer-wrapper .widget-area .footer-widget.newsletter-widget .widget-title::before,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget .widget-title::before {
  background-color: #fff;
}
footer.footer-wrapper .widget-area .footer-widget.newsletter-widget .newsletter-form,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget .newsletter-form {
  display: flex;
}
footer.footer-wrapper .widget-area .footer-widget.newsletter-widget .newsletter-form .form-control,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget .newsletter-form .form-control {
  background-color: #fff;
  border: 1px solid #fff;
  /*color: var(--other-color);*/
}
footer.footer-wrapper .widget-area .footer-widget.newsletter-widget .newsletter-form .icon-btn,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget .newsletter-form .icon-btn {
  display: inline-block;
  width: 50px;
  line-height: 50px;
  font-size: v16px;
  text-align: center;
  border: none;
  transition: 0.4s ease-in-out;
  min-width: 55px;
  height: 55px;
  border-radius: 0;
  background-color: var(--button-color);
  color: #fff;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
}
footer.footer-wrapper .widget-area .footer-widget.newsletter-widget .newsletter-form .icon-btn:hover,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget .newsletter-form .icon-btn:hover {
  background-color: var(--main-color);
}
footer.footer-wrapper .widget-area .footer-widget.newsletter-widget .bg-shape,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget .bg-shape {
  background: center/cover no-repeat var(--main-color) ;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: -1;
  border:1px solid var(--header-footer-color);
}
@media (max-width: 992px) {
  footer.footer-wrapper .widget-area .footer-widget.newsletter-widget .bg-shape,
footer.footer-wrapper .widget-area .footer-widget .widget.newsletter-widget .bg-shape {
    height: 100%;
  }
}
footer.footer-wrapper .copyright-wrap {
  padding: 16px 0;
  background-color: var(--main-color);
}
footer.footer-wrapper .copyright-wrap .copyright-text {
  margin: 0;
  color: var(--header-footer-color);
}
footer.footer-wrapper .copyright-wrap .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer.footer-wrapper .copyright-wrap .footer-links ul li {
  display: inline-block;
  padding-right: 15px;
  margin-right: 10px;
  position: relative;
}
footer.footer-wrapper .copyright-wrap .footer-links ul li:last-child {
  margin-right: 0;
  padding-right: 0;
}
footer.footer-wrapper .copyright-wrap .footer-links ul li:last-child:after {
  content: none;
}
footer.footer-wrapper .copyright-wrap .footer-links ul li:after {
  content: "";
  height: 20px;
  width: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 0;
  margin: -10px 0;
}
footer.footer-wrapper .copyright-wrap .footer-links ul li a {
  color: #fff;
  transition: 0.4s;
}
footer.footer-wrapper .copyright-wrap .footer-links ul li a:hover {
  color: var(--main-color);
}

header.hero-slider-container {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
header.hero-slider-container ul.glide__slides {
  margin: 0;
}
header.hero-slider-container .single-slide {
  height: calc(100vh - 90px);
  width: 100%;
  position: relative;
  z-index: 1;
}
header.hero-slider-container .single-slide .bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: center/cover no-repeat ;
}
header.hero-slider-container .single-slide .bg-overlay::before {
  opacity: 0.9;
  /*background-color: #edeef2;*/
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

header.hero-slider-container .single-slide .hero-image {
  max-width: 45%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 45%;
  height: 100%;
}
@media (max-width: 1399px) {
  header.hero-slider-container .single-slide .hero-image {
    max-width: 48%;
  }
}
@media (max-width: 991px) {
  header.hero-slider-container .single-slide .hero-image {
    max-width: 34%;
  }
}
@media (max-width: 767px) {
  header.hero-slider-container .single-slide .hero-image {
    display: none;
  }
}
header.hero-slider-container .single-slide .hero-image:before {
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--main-color);
  position: absolute;
  top: 0;
  right: 0;
  -webkit-clip-path: polygon(115px 0, 100% 0, 100% 100%, 115px 100%, 0 50%);
  clip-path: polygon(115px 0, 100% 0, 100% 100%, 115px 100%, 0 50%);
}
header.hero-slider-container .single-slide .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-clip-path: polygon(170px 0, 100% 0, 100% 100%, 170px 100%, 0 50%);
  clip-path: polygon(170px 0, 100% 0, 100% 100%, 170px 100%, 0 50%);
}
header.hero-slider-container .single-slide .hero-image .icon-btn {
  line-height: 60px;
  font-size: 24px;
  background-color: var(--button-color);
  color: #fff;
  border-radius: 10px;
  border: 4px solid #fff;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%) rotate(45deg);
  cursor: pointer;
  text-align: center;
  transition: 0.4s;
  display: inline-block;
  width: 70px;
  height: 70px;
}
header.hero-slider-container .single-slide .hero-image .icon-btn:hover {
  background-color: var(--main-color);
}
header.hero-slider-container .single-slide .hero-image .icon-btn i {
  transform: rotate(-45deg);
}
header.hero-slider-container .single-slide .hero-content {
  position: relative;
  z-index: 6;
  color:var(--slider-font-color);
}

.navbar-top {
  background-color: var(--main-color);
  padding: 17px 0;
}
.navbar-top .navbar-top-inner {
  padding-left: 250px;
}
@media (max-width: 992px) {
  .navbar-top .navbar-top-inner {
    padding-left: 0;
  }
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 400;
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li > i {
  color: var(--main-color);
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li > a {
  color: #4d5765;
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li > a:hover {
  color: var(--main-color);
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li:not(.navbar-top .navbar-top-inner .navbar-top-links > ul > li:last-child) {
  padding: 0 20px 0 0;
  margin: 0 17px 0 0;
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li:not(.navbar-top .navbar-top-inner .navbar-top-links > ul > li:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background-color: rgba(0, 15, 87, 0.4);
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li .dropdown.language-dropdown .dropdown-toggle {
  color: #4d5765;
  transition: 0.3s;
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li .dropdown.language-dropdown .dropdown-toggle:hover {
  color: var(--main-color);
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li .dropdown.language-dropdown .dropdown-menu {
  top: 30px !important;
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li .navbar-top-social a {
  font-size: 14px;
  display: inline-block;
  color: #4d5765;
  margin: 0 10px 0 0;
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li .navbar-top-social a:hover {
  color: var(--main-color);
}
.navbar-top .navbar-top-inner .navbar-top-links > ul > li .navbar-top-social a:last-child {
  margin-right: 0;
}

.stick-navbar .stick-navbar-inner {
 background-color: #c9c9c9;
}
@media (max-width: 992px) {
  .stick-navbar .stick-navbar-inner {
    overflow: hidden;
  }
}
.stick-navbar .stick-navbar-inner .favicon {
  position: relative;
  z-index: 2;
  padding: 0 80px 39px 0;
  -webkit-filter: drop-shadow(0 -10px 20px rgba(7, 36, 95, 0.05));
  filter: drop-shadow(0 -10px 20px rgba(7, 36, 95, 0.05));
}
.stick-navbar .stick-navbar-inner .favicon img {
  max-width: 100%;
  height: auto;
  width: 200px;
}
@media (max-width: 768px) {
  .stick-navbar .stick-navbar-inner .favicon img {
    width: 130px;
  }
}
.stick-navbar .stick-navbar-inner .favicon::before {
  content: "";
  height: 105px;
  width: 2000px;
  position: absolute;
  bottom: 0;
  right: -15px;
  background-color: #fff;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 100%, 0% 100%);
}
@media (max-width: 992px) {
  .stick-navbar .stick-navbar-inner .favicon::before {
    right: -25px;
    -webkit-clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 100%, 0% 100%);
    height: 100%;
  }
}
@media (max-width: 992px) {
  .stick-navbar .stick-navbar-inner .favicon {
    padding: 19px 60px 19px 0;
  }
}
.stick-navbar .stick-navbar-inner .main-menu ul > li {
  display: inline-block;
  position: relative;
  margin: 0 10px;
}
.stick-navbar .stick-navbar-inner .main-menu ul > li:hover > ul.sub-menu, .stick-navbar .stick-navbar-inner .main-menu ul > li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}
.stick-navbar .stick-navbar-inner .main-menu ul > li > a {
  padding: 5px;
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  /*color: #fff;*/
   color:var(--menu-font-color);
}
.stick-navbar .stick-navbar-inner .main-menu ul > li > a:hover,
.stick-navbar .stick-navbar-inner .main-menu ul > li > a.active{
  color: var(--main-color);
}
.stick-navbar .stick-navbar-inner .main-menu ul > li.menu-item-has-children > a::after {
  content: "\f067";
  position: relative;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  margin-left: 5px;
  top: 0;
  color: var(--main-color);
}
.stick-navbar .stick-navbar-inner .main-menu ul > li ul.sub-menu {
  padding: 5px 0;
  position: absolute;
  top: 100%;
  background-color: #dddddd;
  visibility: hidden;
  min-width: 170px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border: 0;
  border-radius: 5px;
  transform-origin: top center;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.stick-navbar .stick-navbar-inner .main-menu ul > li ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0 20px;
}
.stick-navbar .stick-navbar-inner .main-menu ul > li ul.sub-menu li:first-child {
  margin-left: 0;
}
.stick-navbar .stick-navbar-inner .main-menu ul > li ul.sub-menu li a {
  position: relative;
  padding-left: 23px;
  font-size: 16px;
  line-height: 30px;
}
.stick-navbar .stick-navbar-inner .main-menu ul > li ul.sub-menu li a:before {
  content: "\f5ae";
  position: absolute;
  top: 12px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1;
  color: var(--main-color);
  font-weight: 900;
}

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

.mobile-navigation-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.mobile-navigation-menu-wrapper.open {
  opacity: 1;
  visibility: visible;
}
.mobile-navigation-menu-wrapper.open .mobile-navigation-menu {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--main-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu-toggle {
  border: none;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 17px;
  z-index: 1;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 50%;
  transition: all ease 0.4s;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  border-bottom: 5px solid var(--main-color);
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu > ul {
  padding: 0 40px;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul {
  list-style: none;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  position: relative;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li:last-child {
  border-bottom: none;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li a {
  display: block;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  /*color: var(--main-color);*/
  color:var(--description-color);
  padding-left: 18px;
  text-decoration: none;
  transition: all ease 0.4s;
  position: relative;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li a:before {
  content: "\f054";
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li.has-children.expanded > a:before {
  content: "\f078";
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li.has-children.expanded .expand-menu:before {
  content: "\f068";
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li.has-children .expand-menu {
  position: absolute;
  right: 0;
  top: 25px;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: #ebecf2;
  /*color: var(--other-color);*/
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li.has-children .expand-menu:before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li.has-children ul.sub-menu {
  margin: 0;
  list-style: none;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li.has-children ul.sub-menu li {
  padding-left: 20px;
  padding-right: 20px;
}
.mobile-navigation-menu-wrapper .mobile-navigation-menu .mobile-menu ul li.has-children ul.sub-menu li:first-child {
  border-top: 1px solid #fdedf1;
}
.category-details-des p{
    color:var(--description-color);
}
.about-des p{
    color:var(--description-color);
}
.service-title {
    color:var(--titles-color);
}
/*# sourceMappingURL=style.css.map */
