@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

/*** 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: #757575 !important;
  text-decoration: dotted;
}

/*** 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;
}

/*** Topbar Start ***/
.fixed-top .container {
  transition: 0.5s;
}

.topbar {
  padding: 2px 10px 2px 20px;
  background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
  transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
  color: var(--bs-secondary) !important;
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
}

/*** Topbar End ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  /* padding: 35px 15px; */
  padding: 8px 15px;
  /* color: #fff !important; */
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 6px 15px;
  /* color: var(--bs-dark) !important; */
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #fff;
}

.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: 73px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 73px;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  /* background: var(--bs-light); */
  background: #fff;
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .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);
  }

  .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: #ffffff !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: 88px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, .1); */
    z-index: 999;
    /* background-color: white; */
    height: 80px;
  }

  .sticky-top.navbar-light {
    position: fixed;
    /* background: var(--bs-light); */
    background: #fff;
  }

  .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;
  }

  .navbar-light .navbar-nav .nav-link {
    position: relative;
    padding-bottom: 2px;
    /* Optional: to give some space for the border */
    /* border-bottom: 2px solid transparent; */
    /* Set initial border color to transparent */
    transition: border-bottom-color 0.5s ease-in;
    /* Smooth transition for the border color */
  }

  .navbar-light .navbar-nav .nav-link:hover {
    border-bottom-color: var(--bs-primary);
    /* Change border color on hover */
  }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
  background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 0;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 50px;
  background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 25px 30px;
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 0;
  background-size: 60% 60%;
}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
  opacity: 0;
}

.carousel-header .carousel-inner::before {
  content: "";
  background-image: url("../img/img/vdo1.mp4");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}

.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: 700px;
    margin-top: -100px;
  }

  .carousel-header {
    height: 700px !important;
  }

  .carousel-header .carousel-control-prev .carousel-control-prev-icon,
  .carousel-header .carousel-control-next .carousel-control-next-icon {
    opacity: 0;
  }

  .search-bar {
    margin-top: -100px;
    transition: 0.5s;
  }
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/breadcrumb-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
  color: var(--bs-secondary) !important;
}

/*** Single Page Hero Header End ***/

/*** About Start ***/
.about .container .section-about-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.about .container .section-about-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-primary) !important;
}

/*** About 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 ***/

/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 1;
}

.destination
  .tab-class
  .tab-content
  .tab-pane
  .destination-img
  .destination-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 3;
  transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  justify-content: end;
  padding: 20px 20px 0 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: 0.5s;
}

.destination
  .tab-class
  .tab-content
  .tab-pane
  .destination-img
  .search-icon
  a
  i {
  opacity: 0;
  transition: 0.5s;
}

.destination .tab-class .nav-item {
  padding: 0 0 20px 0;
}

.destination .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
  background: rgba(19, 53, 123, 0.4);
}

.destination
  .tab-class
  .tab-content
  .destination-img:hover
  .destination-overlay {
  bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
  opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
  transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
  transform: scale(1.2);
}

/*** Destination End ***/

/*** Packages Start ***/
.packages .packages-item .packages-img {
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
  background: rgba(0, 0, 0, 0.3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
  color: var(--bs-white);
  transition: 0.5s;
}

.packages .packages-item .packages-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;
}

.packages .packages-item .packages-img:hover.packages-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;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
  color: var(--bs-white) !important;
}

.packages .packages-item .packages-img img {
  transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
  transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
  position: absolute;
  width: 100px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
  background: var(--bs-primary);
  color: var(--bs-white);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 5;
}

.packages .packages-carousel {
  position: relative;
}

.packages .packages-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;
}

.packages .packages-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;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}

/*** Packages End ***/

/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
  padding: 0 0 20px 0;
}

.ExploreTour .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
  transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
  transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: end;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
  background: rgba(19, 53, 123, 0.6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
  opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 40px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--bs-primary);
  color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
  transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 20px;
  border-top-right-radius: 30px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 80px;
  background: var(--bs-primary);
  color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: end;
  justify-content: center;
  transition: 0.5s;
}

.ExploreTour
  #InternationalTab-2
  .international-item:hover
  .international-content {
  background: rgba(19, 53, 123, 0.6);
}

.ExploreTour
  #InternationalTab-2
  .international-item
  .international-content
  .international-info
  a {
  font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.ExploreTour
  #InternationalTab-2
  .international-item:hover
  .international-plus-icon {
  opacity: 1;
}

/* carousel Start */
.ExploreTour
  #InternationalTab-2
  .InternationalTour-carousel
  .international-item {
  position: relative;
  overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
  width: 40px;
  background: var(--bs-primary);
}

/*** Explore Tour End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  min-height: 300px;
  object-fit: cover;
}

.gallery .gallery-item .gallery-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
  position: relative;
  margin-bottom: -100%;
  opacity: 0;
  transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
  opacity: 1;
  margin: 0;
}

.gallery .gallery-item img {
  transition: 0.5s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
  background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
  padding: 0 0 20px 0;
}

.gallery .tab-class .nav-item a.active {
  background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
  background: linear-gradient(rgb(197 91 39 / 80%), rgb(197 91 39 / 80%)),
    url(../img/blue-copy-space-digital-background_1191642-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.booking .container .section-booking-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.booking .container .section-booking-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
  box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
  position: relative;
}

.guide .guide-item .guide-img .guide-icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
  border: 1px solid var(--bs-primary);
  background: var(--bs-light);
  z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
  position: relative;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
  height: 100%;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  background: rgba(19, 53, 123, 0.5);
}

.guide .guide-item .guide-img-efects img {
  transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects img {
  transform: scale(1.1);
}

.guide .guide-item .guide-title {
  position: relative;
  background: var(--bs-light);
  transition: 0.5s;
}

.guide .guide-item .guide-title::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
  height: 100%;
  background: var(--bs-primary) !important;
  color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
  transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
  position: relative;
  color: var(--bs-white) !important;
  z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
  color: var(--bs-white);
}

/*** Travel Guide End ***/

/*** Blog Start ***/
.blog .blog-item .blog-img {
  position: relative;
}

.blog .blog-item .blog-img .blog-info {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
  position: relative;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
  position: absolute;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
  opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
  height: 100%;
  background: rgb(197 91 39 / 60%);
  opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
  overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
  transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
  transform: scale(1.2);
}

/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
  position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
  position: relative;
  width: 100px;
  height: 100px;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid var(--bs-primary);
  border-style: dotted;
  border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: var(--bs-light);
  border: 1px solid var(--bs-primary);
  border-radius: 10px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
  width: 40px;
  background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -55px;
  left: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
  position: absolute;
  top: -55px;
  right: 0;
  padding: 5px 30px;
  border: 1px solid var(--bs-primary);
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
  color: var(--bs-primary);
  font-size: 17px;
  transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
  color: var(--bs-white);
}

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-comment {
  background: var(--bs-primary) !important;
  color: var(--bs-white);
  transition: 0.5s;
}

.testimonial
  .testimonial-carousel
  .owl-item.center
  .testimonial-item
  .testimonial-img {
  border: 3px solid var(--bs-white);
  border-style: dotted;
  transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
  box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
  box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
  color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
  background: linear-gradient(rgba(19, 53, 123, 0.6), rgba(19, 53, 123, 0.6)),
    url(../img/Dial\ 100\ Madhya\ Pradesh\ Police.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subscribe .subscribe-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-white);
}

.subscribe .subscribe-title::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid var(--bs-white) !important;
}

/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
  background: #f3eae6;
}

.footer .footer-item a {
  line-height: 30px;
  color: black;
  transition: 0.5s;
}

.footer .footer-item a:hover {
  letter-spacing: 2px;
  color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark) !important;
}

/*** copyright end ***/

/* Own Changes Made By BS */
.owl-prev,
.owl-next {
  display: none;
}

/* Call to  */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(0.9);
  }
}

.mypage-alo-phone {
  position: relative;
  right: -211px;
  bottom: -5px;
  visibility: visible;
  background-color: transparent;
  width: 110px;
  height: 110px;
  cursor: pointer;
  z-index: 200000 !important;
}

.mypage-alo-ph-img-circle {
  width: 30px;
  height: 30px;
  top: 43px;
  left: 43px;
  position: absolute;
  background: url(https://i.imgur.com/J9AXAq7.png) no-repeat center center;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-color: #ff992c;
  background-size: 70%;
  -webkit-animation: pulse 01s infinite;
}

.mypage-alo-ph-circle-fill {
  width: 60px;
  height: 60px;
  top: 28px;
  left: 28px;
  position: absolute;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid transparent;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  background-color: rgba(241, 168, 5, 0.5);
  opacity: 0.75 !important;
  -webkit-animation: pulse 1s infinite;
}

.mypage-alo-ph-circle {
  width: 90px;
  height: 90px;
  top: 12px;
  left: 12px;
  position: absolute;
  background-color: transparent;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  border: 2px solid rgba(30, 30, 30, 0.4);
  opacity: 0.1;
  border-color: #ffb56b;
  opacity: 0.5;
}

.call100 {
  margin: -64px 0px 0px -215px;
  color: white;
  font-size: 24px;
  font-weight: 900;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  height: 244px !important;
}

.service-content-inner {
  height: 250px;
}

/* .packages-content .p-4 {
    height: 227px;
} */

.whatsapp-float img {
  width: 50px;
  position: fixed;
  bottom: 40px;
  left: 20px;
  /* border-radius: 10px; */
  z-index: 1;
}

/* Counter Start */
#counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #e6e6e7; */
  padding: 40px 0px;
  width: 100%;
}

#counter .item {
  background: #fff;
  /* width: 200px; */
  padding: 35px 40px;
  margin: 10px;
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
}

#counter .item .count {
  color: #c55b27;
  margin-bottom: 5px;
  font-size: 40px;
}

#counter .item h3 {
  color: #4f4e28;
  text-transform: capitalize;
}

.counter {
  background: url(../img/counter.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Counter End */

/* Sevices Start in Service Page */
.header12 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  max-height: 600px;
  margin: 40px auto 20px auto;
}

.header12 .hero {
  display: grid;
  grid-template-columns: 4fr 1fr 4fr;
  grid-template-rows: 1fr 6fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

/* LEFT PART */
.left {
  grid-area: 1 / 1 / 3 / 3;
  border: 10px solid #c55b27;
  padding: 30px;
  background-color: #ffffff;
  position: relative;
}

.left h1 {
  text-transform: uppercase;
  font-size: clamp(20px, 5vw, 40px);
  font-weight: 700;
  white-space: nowrap;
}

.left h1 span {
  color: #c55b27;
}

.left p {
  margin-top: 25px;
  margin-bottom: 50px;
  font-size: 16px;
}

.left a {
  padding: 10px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #c55b27;
  color: #000;
  font-weight: 700;
}

.left a:hover {
  color: #ffffff;
  background-color: #c55b27;
}

/* RIGHT PART */
.right {
  grid-area: 2 / 2 / 4 / 4;
  border: 10px solid #c55b27;
  z-index: -1;
  position: relative;
}

.right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LEFT AND RIGHT BANDS */
.left::before,
.right::before {
  content: "";
  position: absolute;
  top: 50%;
  height: 50%;
  width: 17vw;
  background: #c55b27;
}

.left::before {
  left: 0;
  transform: translateY(-50%) translateX(-100%);
}

.right::before {
  right: 0;
  transform: translateY(-50%) translateX(100%);
}

@media screen and (max-width: 450px) {
  .header12 .hero {
    grid-template-rows: 6fr 1fr 6fr;
  }

  .left {
    grid-area: 1 / 1 / 3 / 4;
  }

  .right {
    grid-area: 2 / 1 / 4 / 4;
  }
}

/*  */

/* Services End */

/* Delivery Model Start */

.section-services {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #202020;
  padding-top: 115px;
  padding-bottom: 120px;
}

.section-services .header-section {
  margin-bottom: 34px;
}

.section-services .header-section .title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #ff4500;
  border-radius: 3px;
}

.section-services .header-section .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: #504f93;
  border-radius: 3px;
}

.section-services .header-section .description {
  font-size: 14px;
  color: #282828;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
  height: 580px;
}

.section-services .single-service .content1 {
  position: relative;
  z-index: 20;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #c55b27;
  border: 6px solid #0f0f10;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 10;
  transition: all 0.6s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: #c55b27;
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all 0.3s;
}

.section-services .single-service:hover .icon {
  background-color: #fff;
  color: #ff4500;
}

.section-services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 23px;
  transition: color 0.3s;
}

.section-services .single-service:hover .title {
  color: #fff;
}

.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color 0.3s;
}

.section-services .single-service:hover .description {
  color: #fff;
}

.section-services .single-service a {
  position: relative;
  font-size: 18px;
  color: #202020;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.section-services .single-service:hover a {
  color: #fff;
}

.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #ff4500;
  transition: background-color 0.3s;
}

.section-services .single-service:hover a:after {
  background-color: #fff;
}

.iconsize1 {
  width: 60px;
  height: 60px;
}

/* Delivery <odel End */

/* Pricing and Estimation Start */

:root {
  --gradient: #c55b27, #cc7144;
  --purple: hsl(237, 63%, 64%);
  --very-light-grayish-blue: hsl(240, 78%, 98%);
  --light-grayish-blue: hsl(234, 14%, 74%);
  --grayish-blue: hsl(233, 13%, 49%);
  --dark-grayish-blue: hsl(232, 13%, 33%);
  --white: white;
  --body-font: "Montserrat", sans-serif;
}

.body3 {
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  /* for Firefox */
  overflow-y: scroll;
  box-sizing: border-box;
  font-family: var(--body-font);
  background-color: var(--very-light-grayish-blue);
  background-image: url("https://i.ibb.co/3Cbd7gX/bg-top.png"),
    url("https://i.ibb.co/jGJKtgy/bg-bottom.png");
  background-repeat: no-repeat, no-repeat;
  background-size: 26.5%, 26.5%;
  background-position: top 0 right -1rem, bottom -4.7rem left -1.9rem;
}

.body3::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.main3 {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* h1 {
  color: var(--grayish-blue);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
} */

/* Toggle Section */
.toggle-section {
  display: inline-flex;
  flex-direction: row;
  gap: 1.9rem;
  margin: 0 auto;
  margin-top: 2.6rem;
  align-items: center;
}

.toggle-area {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  width: 3.8rem;
  height: 2.3rem;
  border-radius: 25px;
  background: linear-gradient(var(--gradient));
}

.toggle-btn {
  cursor: pointer;
  position: relative;
  width: 1.7rem;
  height: 1.7rem;
  margin: 5%;
  border-radius: 50%;
  background-color: var(--very-light-grayish-blue);
}

.toggle-area.monthly {
  justify-content: flex-end;
  align-content: flex-end;
}

.toggle-area.anually {
  justify-content: flex-start;
  align-content: flex-start;
}

.toggle-section p {
  color: var(--light-grayish-blue);
}

/* Pricing Section */

.pricing-container {
  display: grid;
  width: 72%;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  margin-top: 5.8rem;
}

.pricing {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  border-radius: 10px;
  padding: 2.1rem 0.8rem;
}

.container-2 {
  background: linear-gradient(var(--gradient));
  color: var(--white);
  margin-top: -1.6rem;
  margin-bottom: -1.6rem;
}

.container-1,
.container-3 {
  background-color: var(--white);
  gap: 1.3rem;
}

.pricing h2 {
  font-size: 1.23rem;
  font-weight: 700;
}

.container-2 h2 {
  padding-top: 12px;
}

.container-1 h2,
.container-1 li,
.container-3 h2,
.container-3 li {
  color: var(--light-grayish-blue);
}

.pricing p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 auto;
  font-size: 4.6rem;
}

.dollar-sign {
  font-size: 2.6rem;
}

.container-1 p,
.container-3 p {
  color: var(--dark-grayish-blue);
}

.container-2 p {
  margin-top: -11px;
}

hr {
  width: 80%;
  border-width: 0.5px;
  margin: 0 auto;
  border-color: transparent;
  border-color: var(--light-grayish-blue);
  border-style: solid;
  opacity: 0.5;
}

.pricing ul {
  list-style: none;
  margin-top: 10px;
}

.pricing ul li {
  padding: 1.06rem;
}

.container-2 ul li {
  padding: 1.1rem;
}

.pricing button {
  cursor: pointer;
  width: 90%;
  margin: 0 auto;
  margin-top: 1rem;
  border-radius: 10px;
  border-color: transparent;
  border-style: solid;
  border-width: 1px;
  padding: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  word-spacing: 3px;
  font-weight: 700;
  text-align: center;
}

.container-2 button {
  color: black;
  background-color: var(--white);
}

.container-1 button,
.container-3 button {
  color: var(--white);
  background: linear-gradient(var(--gradient));
  background-repeat: no-repeat;
}

@media (hover: hover) {
  .container-1 button:hover,
  .container-3 button:hover {
    background: transparent;
    border-color: var(--light-grayish-blue);
    color: black;
    border-width: 1px;
  }

  .container-2 button:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
    border-width: 1px;
  }
}

@media screen and (max-width: 1025px) {
  .pricing-container {
    width: 50%;
    grid-template-columns: 1fr;
    margin-top: 5.8rem;
    gap: 5rem;
  }

  .container-2 {
    margin-top: initial;
    margin-bottom: initial;
  }

  .container-2 ul li {
    padding: 1.06rem;
  }

  .container-2 h2 {
    padding-top: initial;
  }

  .container-2 p {
    margin-top: initial;
  }
}

@media screen and (max-width: 800px) {
  .body3 {
    background-size: 80%, 26.5%;
    background-position: top 0 right -10rem, bottom -4.7rem left -1.9rem;
  }

  .pricing-container {
    width: 60%;
  }
}

@media screen and (max-width: 600px) {
  .pricing-container {
    width: 90%;
  }
}

/* Pricing and Estimation End */

.blog-content {
  height: 150px;
}

.blog-img-inner img {
  height: 278px;
}

.blog-item:hover .blog-content {
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
}

/* Career Start */
/* .container23 {
	#more {
		display: none;
	}

	.more {
		.card {
			animation: view-cards both linear;
			animation-timeline: view(y 90dvh auto);
		}
	}

	&:not(:has(input[type="checkbox"]:checked)) {
		.more {
			display: none;
		}
	}
}

@keyframes view-cards {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
} */

/*
 *
 * demo
 * 
*/
.body23 {
  --stop-color-1: #fff;
  --stop-color-2: #fff;

  margin: 0;
  font-family: sans-serif;
  background-color: var(--stop-color-1);
  background-image: radial-gradient(var(--stop-color-2) 15%, transparent 16%),
    repeating-linear-gradient(
      0deg,
      transparent 6.5%,
      var(--stop-color-1) 7%,
      var(--stop-color-1) 9%,
      transparent 10%
    ),
    linear-gradient(
      45deg,
      transparent 49%,
      var(--stop-color-2) 49%,
      var(--stop-color-2) 51%,
      transparent 51%
    ),
    linear-gradient(
      135deg,
      transparent 49%,
      var(--stop-color-2) 49%,
      var(--stop-color-2) 51%,
      transparent 51%
    );
  background-size: 1rem 1rem;
  background-attachment: fixed;
  padding: 40px 0px;
}

.container23 {
  max-width: 80vw;
  margin-block: 10vh;
  margin-inline: auto;

  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;

    .card {
      min-height: 25dvh;
      display: grid;
      place-content: center;
      background-color: white;
      color: #fff;
      transition: scale 200ms;
      padding: 60px;

      /* 			img {
				display: block;
				object-fit: cover;
			} */

      &:hover {
        scale: 1.1;
        z-index: 1;
      }
    }
  }

  .show-more-cards {
    margin-block: 1rem;
    text-align: center;

    & label {
      display: inline-flex;
      padding: 0.75rem 1.2rem;
      cursor: pointer;
      text-transform: uppercase;
      font-weight: bold;
      background-color: #ffffff1a;
      color: #fff;
      border: 2px solid #ffffff66;
      border-radius: 0.35rem;
      transition: scale 200ms;

      &:hover {
        scale: 1.4;
      }
    }
  }
}

.cards .card a {
  text-transform: uppercase;
}

.cards .card p {
  color: black;
}

/* Styles for popup form */
.popup-form {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.close-icon {
  position: absolute;
  top: 50px;
  right: 25px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
  /* Add other necessary styles for the close icon */
}

/* Styles for overlay */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Center align text */
.center {
  text-align: center;
}

/* Button style */
form .btn24 {
  padding: 10px 20px;
  background-color: #c55b27 !important;
  color: white;
  border: none;
  cursor: pointer;
}

form input {
  border: 1px solid black;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
}

/* Career End */

/* Hero All Pages */
.hero1 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero1.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.hero2 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero2.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.hero3 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero3.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.hero4 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero4.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.hero5 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero5.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.hero6 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero6.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.hero7 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero7.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.hero8 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero8.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.hero9 {
  background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)),
    url(../img/hero9.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 150px 0 50px 0;
}

.logoheader {
  width: 129px;
  height: 100px;
}

.logofooter {
  width: 129px;
  height: 73px;
}

/* service section start */
.service-box {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
}

.service-box .btn {
  margin-top: 20px;
}

.service-img {
  width: 643px;
  border-radius: 10px;
  height: 300px;
  object-fit: cover;
}

.service-box1 {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
  /* margin: -57px 0px 0px 0px; */
}

/* service section end */

/* other service start */
/* blockquote {
    margin: 0 auto;
    max-width: 756px;
    border-left: 4px solid gray;
    padding: 20px;
    font-weight: 600;
}

blockquote .code {
    color: orange;
    font-family: monospace;
    font-weight: 500;
    display: inline-block;
    padding: 2px 8px 2px 4px;
    background-color: #222;
    border-radius: 6px;
} */

#some-box {
  background: #fff;
  /* padding: 40px 0px 80px; */
  font-family: "Open Sans", sans-serif;
}

#some-box h1 {
  text-align: center;
}

#some-box h3 {
  font-size: 26px;
}

#some-box a {
  color: #757575;
  text-decoration: none;
  display: block;
  /* font-weight: bold; */
  width: 19%;
  position: relative;
  left: 355px;
}

#some-box a:hover {
  color: orange;
  text-decoration: dotted;
}

article.row {
  width: 1100px;
  margin: 0 auto;
  padding: 45px 0;
  align-items: center;
  justify-content: space-between;
}

article.row div {
  width: 44.4%;
  display: inline-block;
  position: relative;
  left: 80px;
  border: 1px solid white;
  /* box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06); */
}

/**** For your reference ****/
article.row {
  border: 1px solid white;
  justify-content: space-between;
  align-items: center;
}

/* article.row:hover {
    border: 1px solid yellow;
  } */
/* article.row div:hover {
    border: 1px solid green;
  } */
/* Your divs won't expand to contain absolute positioned images */

#idea-one img,
#idea-two img,
#idea-three img {
  /* position: absolute;
    top: -20px; */
  /* left: 50px; */
  height: 100%;
  width: 94%;
}

/* Here's the column repositioning magic. This media query says "Apply these styles only until page width is greater than 750px" 
  
  ***To make this work, your media query has to be beneath your other styles to keep it from being overwritten later on by your general styles*** */
@media (max-width: 750px) {
  /* This resizes the divs that contain your content to fill the width of the page so that they stack vertically */
  article.row div {
    min-width: 300px;
    width: 90%;
    /* margin: 0 5%; */
    text-align: center;
    display: block;
  }

  /* Center your text */
  #some-other-box h3 {
    text-align: center;
  }

  /* Center your image */
  #idea-one img,
  #idea-two img,
  #idea-three img {
    position: relative;
    margin: auto;
    left: inherit;
    bottom: inherit;
  }

  /* This tells the browswer to stack the content vertically */
  #idea-two {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    box-orient: vertical;
  }

  /* This tells the browswer to draw the first box (div:first-of-type) within our stacked content block (identified in the previous rule) in the second position ([...]box-ordinal-group:2;)
    This gives us a nice arrangement of alternating text and images, and allows us two have a custom layout for smaller or wider screens.*/
  #idea-two div:first-of-type {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    box-ordinal-group: 2;
  }
}

/*
  If we had 3 boxes, we could draw them in order C, A, B by writing div:first-of-type{[...]group:2;} and div:nth-of-type(2) {[...]group:3;}, and so on.
    */

/* other service end */
.demo {
  color: #000 !important;
}

.demo1 {
  font-size: 15px;
}

.demo2 {
  text-align: justify;
}

.hei45 {
  height: 244px;
}

/* Hero Vdo Start */
.overlay-container {
  position: relative;
}

.content {
  position: absolute;
  z-index: 99;
  top: 38%;
  left: 12%;
}

.video-overlay {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers the entire container */
  z-index: 2;
  /* Ensures the video stays on top of the content */
  pointer-events: none;
  /* Ensures the video does not block interactions with underlying content */
}

/*  */
.body65 {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  /* position: relative;
    right: 380px; */
}

.body65 img {
  width: 100px;
  height: 100px;
}

.body65 h1 {
  font-size: 68px;
  color: #ffffff;
  /* color: #747474; */
  /* margin: 116px 0px 0px 0px; */

  span.text {
    padding: 0;
    padding-right: 4px;
    border-right: 2px solid #747474;
    animation: blink 0.75s infinite;
  }

  .blue {
    color: #4480ff;
  }

  .green {
    color: #4caf50;
  }

  .yellow {
    color: #f4b400;
  }

  .red {
    color: #f44336;
  }
}

.body65 p.info {
  font-size: 12px;
  margin-top: 6rem;
  color: #747474;

  a {
    text-decoration: none;
    color: #4480ff;
  }
}

@keyframes blink {
  from {
    border: none;
  }

  to {
    border-color: 2px solid #747474;
  }
}

@media screen and (max-width: 670px) {
  .body65 h1 {
    font-size: 40px;
  }

  .body65 img {
    width: 75px;
    height: 75px;
  }
}

@media screen and (max-width: 400px) {
  .body65 h1 {
    font-size: 32px;
  }
}

.section-title1 {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  color: var(--bs-primary);
}

.section-title1::after {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -50px;
  border: 1px solid white !important;
}

.section-title1::before {
  content: "";
  width: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-right: -50px;
  border: 1px solid white !important;
}

/* .image1 {
    height: 200px !important;
} */

.demo5 {
  color: #7a7a7a;
  display: flex;
  /* position: relative; */
  justify-content: right;
  /* left: 140px; */
}

.demo5:hover {
  color: orange !important;
  border-bottom: 2px dotted orange;
}

/* Team Start */
.card-pink {
  border-radius: 6px;
  border-bottom: 4px solid #ff2c95 !important;
}

.card-blue {
  border-radius: 6px;
  border-bottom: 4px solid #1c68b3 !important;
}

.col .card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.card-body {
  padding: 1rem 1.5rem;
}

.card-body p {
  color: #4b5563;
}

.card-blue svg {
  fill: #1c68b3;
}

.card-pink svg {
  fill: #ff2c95;
}

.card-blue .card-footer p {
  color: #1c68b3;
}

.card-pink .card-footer p {
  color: #ff2c95;
}

.card-shape {
  position: relative;
}

.custom-shape-divider-bottom-1634717805 {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1634717805 svg {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
}

.custom-shape-divider-bottom-1634717805 .shape-fill {
  fill: #ffffff;
}

/* Team Start */

.demo6 {
  height: 365px;
}

/* -------------------------------- */
.navbar {
  transition: background-color 0.5s, color 0.5s;
}

.nav-link {
  color: #fff;
  /* Default color */
  transition: color 0.5s;
}

#idea-one1 img {
  position: absolute;
  top: 4px;
  /* left: 50px; */
  height: 387px;
  width: 512px;
}

#idea-two2 img {
  position: absolute;
  top: -79px;
  left: 50px;
  height: 556px;
  width: 492px;
}

.hei98 {
  height: auto;
  padding: 0px 0px 50px 0px;
}

article.row1 div {
  width: 49.4%;
  display: inline-block;
  position: relative;
  left: 80px;
  margin: 43px 0px 0px 0px;
  border: 1px solid white;
  box-shadow: 0 3.2rem 6.4rem rgba(0, 0, 0, 0.06);
}

.new12 {
  margin: -95px 0px 0px 0px;
}

.mar12 {
  margin-top: 27px;
}

.mar13 {
  height: 476px !important;
  margin-top: -26px;
}

.mar14 {
  margin-top: -105px;
}

.hei14 {
  height: 355px !important;
}

.hei16 {
  margin-top: 80px;
}

.hei17 {
  position: relative;
  top: -108px !important;
  height: 290px !important;
}

.mar15 {
  margin-top: -98px;
}

.demo7 {
  margin-top: 75px;
}

/* methodology start */
.container1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
}

.section1 {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.section1 img {
  width: 50%;
  border-radius: 8px;
}

.section1 h2 {
  margin-top: 0;
}

/* methodology end */

/* .scrolled-logo {
    display: none;
} */

.image3 {
  position: relative;
  top: 15px !important;
}
.posrel34 {
  position: relative;
}

.readmore {
  color: #8a8a8a;
  position: absolute;
  right: 24px;
  bottom: -46px;
  /* left: 657px;
    top: 45px; */
}

.readmore:hover {
  color: orange !important;
  border-bottom: 2px dotted orange;
}

.readmore {
  border-bottom: 2px dotted rgb(255, 255, 255);
}
.fa-3x {
  font-size: 1em;
}

.contactflex {
  display: flex;
  align-items: center !important;
}

.phone1 {
  position: relative;
  bottom: 9px;
}

.demo8 {
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
  border-radius: 1.5%;
}
.demo9 {
  color: #fff;
  text-transform: capitalize;
  text-decoration: none;
  letter-spacing: 0.15em;
  /* display: inline-block; */
  /* padding: 15px 20px; */
  position: relative;
}

.demo9:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 87%;
  /* top: 7px; */
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}

.demo9:hover:after {
  width: 100%;
  left: 0;
}

/* New class to change color after hero section */
.demo9-black {
  color: #000 !important;
}

.demo9-black:after {
  background: #000 !important;
}

/* New Add */

.overlay-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust height as needed */
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    43,
    42,
    42,
    0.644
  ); /* Adjust opacity (last value) for overlay */
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  color: #fff; /* Set text color for content */
  padding: 20px; /* Adjust padding as needed */
}

.blue {
  color: #007bff; /* Adjust text color as needed */
}

.content {
  position: absolute;
  z-index: 99;
  top: 58%;
  left: 10%;
}
.demo25 {
  position: relative;
  left: 266px;
  top: -40px;
}
.demo25:hover {
  color: orange !important;
  border-bottom: 2px dotted orange;
}
.margi {
  margin: 3px !important;
}

/*Responsive*/

@media (max-width: 600px) {
  .navbar {
    transition: background-color 0.5s, color 0.5s;
    background: rgb(0, 0, 0) !important;
  }

  #counter {
    display: block;
  }

  .dropdown-item {
    font-size: 10px;
  }
  .navbar-nav .dropdown-menu {
    width: 340px;
  }

  .container23 {
    .cards {
      display: block;
    }
  }
  .mobconbtn {
    width: 47% !important;
  }

  #idea-two {
    display: block;
  }

  article.row div {
    min-width: 157px;
    width: 31%;
    left: 0px;
  }

  #some-box a {
    display: contents;
  }
  article.row {
    display: block;
  }
}

.serimgsize {
  /* height: 100%; */
  width: 100%;
  max-height: 324px;
  max-width: fit-content;
}
.posabs123 {
  border-bottom: 2px dotted rgb(255, 255, 255);
  position: relative;
  /* bottom: -3px; */
  /* right: 16px; */
  /* top: 246px; */
  float: inline-end;
  color: #8a8a8a;
  margin-top: 20px;
  margin-bottom: 20px;
}
.disflexstart {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  width: 93%;
}
.disflexend {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100%; */
}
.disflexend1 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100%; */
}
/* .disflexstart{
    display: flex;
    justify-content: center;
    height: 88%;
} */
/* .aboutvdo1{
    width: 100%;
    height: 100%;
} */
.aboutvdo {
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 5rem;
  }
}
.disflexstart p {
  text-align: justify;
}
.posabs123 a:hover {
  color: orange;
  text-decoration: dotted;
}

.posabs123 a {
  color: #757575;
  text-decoration: none;
  display: block;
  /* font-weight: bold; */
  width: 19%;
  position: relative;
  left: 355px;
}
.posabs123:hover {
  color: orange !important;
  border-bottom: 2px dotted orange;
}

@media (max-width: 600px) {
  .rowgapmob {
    row-gap: 53px;
  }
  .serimgsize {
    height: 100%;
    width: 100%;
  }
  .disflexstart {
    margin-top: 15px;
    margin-bottom: 15px;
    position: relative;
    width: 100%;
  }
  .posabs123 {
    position: absolute;
    /* bottom: -3px; */
    right: 17px;
    top: 231px;
    color: #8a8a8a;
  }
  .overlay-container {
    position: relative;
    width: 100%;
    height: 30vh;
    overflow: hidden;
  }
  .body65 h1 {
    font-size: 23px;
  }
  .popup-form {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 17px;
    width: 96%;
    /* margin: 20px; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .close-icon {
    position: absolute;
    top: 0px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #000;
  }
  .container23 {
    & .cards {
      .card {
        min-height: 25dvh;
        display: grid;
        place-content: center;
        background-color: white;
        color: #fff;
        transition: scale 200ms;
        padding: 60px;
        margin-bottom: 20px;
      }
    }
  }

  .modal-dialog {
    width: 95vw !important;
    max-width: 95vw !important;
  }
}

/* exceptions / special changes ----------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
@media (max-width: 350px) {
  .blog-content a {
    font-size: 18px;
  }

  .posabs123 {
    margin-top: 100px !important;
  }

  .readmore {
    margin-top: 60px !important;
  }
}

@media screen and (min-device-width: 601px) and (max-device-width: 999px) {
  /* .navbar {
        transition: background-color 0.5s, color 0.5s;
        background: rgb(0, 0, 0) !important;
    } */

  #counter .item {
    padding: 20px 20px;
    margin: 8px;
  }

  .container23 .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem;
  }
}

@media screen and (min-device-width: 1001px) and (max-device-width: 1200px) {
  .blog-content a {
    font-size: 18px;
  }
}

/* ----------------------------------------------------------------------------------------------------- */

.servall {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contactmail {
  margin-top: -11px;
}

.conmap {
  width: 102%;
}

/* /right,left arrow of package carousel*/

.packages-carousel-wrapper {
  position: relative;
}

.carousel-arrow-left,
.carousel-arrow-right {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  cursor: pointer;
  font-size: 2rem;
  color: #000;
  z-index: 10;
}

.carousel-arrow-left {
  left: -30px; /* Adjust as needed */
}

.carousel-arrow-right {
  right: -30px; /* Adjust as needed */
}

/* form  */
.formdiv {
  /* width: 100%; */
  display: flex;
  justify-content: space-around;
  /* align-items: center; */
}

.modal-dialog {
  width: 70%;
  max-width: 70%;
}

.itimg {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*  */
/*  */

@media screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /*  */
  .navbar-light .navbar-nav .nav-link {
    font-family: "Roboto", sans-serif;
    position: relative;
    /* padding: 35px 15px; */
    padding: 8px 11px;
    /* color: #fff !important; */
    font-size: 11px;
    font-weight: 400;
    outline: none;
    transition: 0.5s;
  }
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 6px 11px;
    /* color: var(--bs-dark) !important; */
  }
}

@media screen and (min-device-width: 375px) and (max-device-width: 667px) {
  .readmore {
    color: #8a8a8a;
    position: absolute;
    right: 53px;
    bottom: -46px;
  }
}
