/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50%;
}

.btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

.btn.btn-light {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
  box-shadow: inset 300px 0 0 0 var(--bs-primary);
  color: var(--bs-light) !important;
}

.btn-hover {
  transition: 0.5s;
}

.btn-hover:hover {
  color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.section-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  padding: 35px 15px;
  color: var(--bs-white) !important;
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
  color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
  color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
  color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }
  .fa-4x {
    font-size: 40px;
  }

  .navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
    display: none;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--bs-dark) !important;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .sticky-top.navbar-light {
    position: fixed;
    background: #ffffff;
    width: 100%;
  }

  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: -1px;
    left: 0;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: -1;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    height: calc(100% + 1px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/*** Carousel Hero Header Start ***/

.carousel-header .carousel-inner .carousel-item {
  position: relative;
  min-height: 100vh;
}

.carousel-header .carousel-inner .carousel-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
}

@media (max-width: 768px) {
  .carousel-header .carousel-inner .carousel-item img,
  .carousel-header .carousel-inner .carousel-item .carousel-caption {
    height: 800px;
    margin-top: -100px;
  }

  .carousel-header {
    height: 700px !important;
  }
}
/*** Carousel Hero Header End ***/

/*** Services Start ***/
.service .service-content-inner {
  transition: 0.5s;
}
.service .service-content-inner:hover {
  position: relative;
  background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
  transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
  color: var(--bs-white) !important;
}
/*** Service End ***/

/*** Packages Start ***/
.products .products-item .products-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  z-index: 1;
}

.products .products-item .products-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0px solid;
  border-radius: 10px !important;
  visibility: hidden;
  transition: 0.7s;
  z-index: 3;
}

.products .products-item .products-img:hover.products-img::after {
  width: 100%;
  height: 100%;
  border: 300px solid;
  border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6)
    rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
  visibility: visible;
}

.products .products-item .products-img img {
  transition: 0.5s;
}

.products .products-item .products-img:hover img {
  transform: scale(1.3);
}

.products .products-carousel {
  position: relative;
}
.products .products-content {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}
.products .products-item {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}
.products .products-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.products .products-carousel .owl-nav .owl-next {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.products .products-carousel .owl-nav .owl-prev i,
.products .products-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.products .products-carousel .owl-nav .owl-prev:hover,
.products .products-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.products .products-carousel .owl-nav .owl-prev:hover i,
.products .products-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}
/*** Products End ***/

/*** industries Start ***/
.industries .industries-item .industries-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  z-index: 1;
}

.industries .industries-item .industries-img::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0px solid;
  border-radius: 10px !important;
  visibility: hidden;
  transition: 0.7s;
  z-index: 3;
}

.industries .industries-item .industries-img:hover.industries-img::after {
  width: 100%;
  height: 100%;
  border: 300px solid;
  border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6)
    rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
  visibility: visible;
}

.industries .industries-item .industries-img img {
  transition: 0.5s;
}

.industries .industries-item .industries-img:hover img {
  transform: scale(1.3);
}

.industries .industries-carousel {
  position: relative;
}
.industries-content {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.industries-item {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}
.industries .industries-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -50px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.industries .industries-carousel .owl-nav .owl-next {
  position: absolute;
  top: -50px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.industries .industries-carousel .owl-nav .owl-prev i,
.industries .industries-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.industries .industries-carousel .owl-nav .owl-prev:hover,
.industries .industries-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.industries .industries-carousel .owl-nav .owl-prev:hover i,
.industries .industries-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}
/*** industries End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-dark);
}
.footer .footer-item a {
  line-height: 30px;
  color: var(--bs-white);
  transition: 0.5s;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: #6992e5;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}
/*** copyright end ***/

.owl-carousel {
  display: flex;
}
.owl-carousel .owl-stage {
  display: flex;
}

.owl-item {
  display: flex;
  flex: 1 0 auto;
  height: auto !important;
  min-height: unset !important;
}

.owl-dots {
  text-align: center;
  padding-top: 30px;
  width: 100%;
}
.owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}
.owl-dots .owl-dot.active span {
  background-color: #000;
}
.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  border-radius: 30px;
  transition: opacity 0.2s ease;
  display: block;
}
.owl-dot {
  cursor: pointer;
}
.owl-dot span {
  background-color: #869791;
}
