/*** 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;
  transition: 0.5s;
  z-index: 99;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/*** 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-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  border: none;
}

.btn.btn-primary:hover {
  background: var(--bs-dark);
}

.btn.btn-light {
  color: var(--bs-primary);
  border: none;
}

.btn.btn-light:hover {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.btn.btn-dark {
  color: var(--bs-white);
  border: none;
}

.btn.btn-dark:hover {
  color: var(--bs-primary);
  background: var(--bs-light);
}

/*** Navbar Start ***/
.nav-bar {
  background: var(--bs-white);
}

.sticky-top {
  transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  letter-spacing: 1px;
  color: var(--bs-dark);
  font-size: 17px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #23549a;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top .navbar-light .navbar-brand img {
  max-height: 60px;
  width: auto;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  margin-top: 8px !important;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    margin-top: 8px !important;
    transition: 0.5s;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 8px 15px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 12px 0;
  }
}

/*** Navbar End ***/

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item .slide_img {
  object-fit: cover;
}

@media (min-width: 1200px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item .slide_img {
    height: 700px;
  }
}

@media (max-width: 1199px) {
  .header-carousel .header-carousel-item,
  .header-carousel .header-carousel-item .slide_img {
    height: 1200px;
  }
}

.header-carousel .owl-nav .owl-prev {
  /* display: none; */
    position: absolute;
  width: 60px;
  height: 60px;
      bottom: 50%;
    left: 35px;
  /* transform: translateY(-50%); */
  /* margin-right: -60px; */
  border-radius: 60px;
  background: #154c8e;
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
  position: absolute;
  width: 60px;
  height: 60px;
  /* bottom: -60px;
  right: 50%; */
   bottom: 50%;
    right: 35px;
  /* transform: translateY(-50%); */
  /* margin-right: -60px; */
  border-radius: 60px;
  background: #154c8e;
  color: var(--bs-white);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.header-carousel .owl-nav .owl-next:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--bs-primary);
}
.header-carousel .owl-nav .owl-prev:hover {
  box-shadow: inset 0 0 100px 0 var(--bs-light);
  color: var(--bs-primary);
}
.header-carousel .owl-nav .owl-next i {
  /* position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: carousel-next-btn;
  animation-duration: 4s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  transition: 1s; */
}

/* @keyframes carousel-next-btn {
  0% {
    margin-top: 35%;
  }

  50% {
    margin-bottom: 70%;
  }

  100% {
    margin-top: 35%;
  }
} */

.header-carousel .header-carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, .7); */
  background: rgb(0 0 0 / 45%);
  display: flex;
  align-items: center;
  animation-name: image-blur;
   animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}
@keyframes image-blur {
  0% {
    backdrop-filter: blur(1px);
  }
  25% {
    backdrop-filter: blur(10px);
  }
  50% {
    backdrop-filter: blur(15px);
  }
  75% {
    backdrop-filter: blur(10px);
  }
  100% {
    backdrop-filter: blur(1px);
  }
}

.carousel-caption .ticket-form {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
}

.header-carousel .header-carousel-item .slide_img {
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
      backdrop-filter: blur(20px);
}

@keyframes image-zoom {
  0% {
    width: 100%;
    height: 100%;
  }

  25% {
    width: 115%;
    height: 115%;
  }

  50% {
    width: 130%;
    height: 130%;
  }

  75% {
    width: 120%;
    height: 120%;
  }

  100% {
    width: 100%;
    height: 100%;
  }
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/carousel-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
  position: relative;
  border-radius: 10px;
  background: var(--bs-light);
}

.feature-item .feature-content {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  margin-top: 0;
  margin-right: 0;
  background: rgb(0 0 0 / 85%);
  border-radius: 10px;
  z-index: 2;
}

.feature-item .feature-content .feature-content-inner {
  position: relative;
  z-index: 5;
}

/*** Feature End ***/

/*** Service Start ***/
.service {
  /* position: relative;
    overflow: hidden;
    background-image: url(../img/banner/banner_2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover; */
}

.service::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.service .service-section {
  position: relative;
  z-index: 5;
}

.service .service-days {
  border-radius: 10px;
  background: var(--bs-white);
}

.service .service-item {
  position: relative;
  height: 100%;
  text-align: center;
  border-radius: 10px;
  background: var(--bs-white);
  z-index: 1;
}

.service .service-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 2;
}


.service .service-item:hover:after {
  height: 100%;
}

.service .service-item #icon_box {
  fill: var(--bs-primary);
  transition: 0.5s;
}

.service .service-item:hover #icon_box {
  fill: var(--bs-white) !important;
}

.service .service-item .service-content {
  position: relative;
  z-index: 3;
}

.service .service-item .service-content p {
  transition: 0.5s;
}

.service .service-item:hover .service-content p {
  color: var(--bs-white);
}

.service .service-item .service-content a.h4 {
  transition: 0.5s;
}

.service .service-item:hover .service-content a.h4:hover {
  color: var(--bs-white);
}

/*** Service End ***/

/*** Attractions Start ***/
.attractions {
  position: relative;
  overflow: hidden;
}

.attractions::after {
  content: "";
  width: 100%;
  height: 70%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../img/banner/banner_4.png) center center no-repeat;
  background-size: cover;
  z-index: -2;
  animation-name: attraction-image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

@keyframes attraction-image-zoom {
  0% {
    width: 100%;
  }

  25% {
    width: 115%;
  }

  50% {
    width: 130%;
  }

  75% {
    width: 120%;
  }

  100% {
    width: 100%;
  }
}

.attractions .attractions-section {
  position: relative;
  z-index: 3;
}

.attractions .attractions-item {
  position: relative;
  border-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.attractions .attractions-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.7);
  transition: 0.5s;
  z-index: 2;
}

.attractions .attractions-item:hover:after {
  height: 100%;
}

.attractions .attractions-item .attractions-name {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 3;
  opacity: 0;
}

.attractions
  .attractions-item
  .attractions-name
  .inner_attractions_name
  .attractions_heading {
  color: var(--bs-white);
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  height: 100%;
}

.attractions
  .attractions-item
  .attractions-name
  .inner_attractions_name
  .attractions_content {
  color: var(--bs-white);
  font-size: 15px;
  /* font-weight: 600; */
  width: 100%;
  height: 100%;
  padding: 15px;
}

/* .attractions .attractions-item .attractions_content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    color: var(--bs-white);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 3;
    opacity: 0;
} */
.attractions .attractions-item:hover .attractions-name {
  opacity: 1;
}

/* .attractions .attractions-item:hover .attractions_content {
    opacity: 1;
} */

.attractions-carousel .owl-stage-outer {
  margin-top: 58px;
}

.attractions .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  left: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.attractions .owl-nav .owl-prev:hover {
  background: var(--bs-white);
  color: var(--bs-primary);
}

.attractions .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 6px 35px;
  border-radius: 30px;
  transition: 0.5s;
}

.attractions .owl-nav .owl-next:hover {
  background: var(--bs-white);
  color: var(--bs-primary);
}

/*** Attractions End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.5s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.2);
}

.gallery .gallery-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  transition: 0.5s;
  z-index: 1;
}

.gallery .gallery-item:hover::after {
  width: 100%;
  height: 100%;
}

.gallery .gallery-item .search-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  z-index: 5;
  opacity: 0;
}

.gallery .gallery-item:hover .search-icon {
  opacity: 1;
}

/*** Gallery End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.blog .blog-item .blog-img .blog-category {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  color: var(--bs-white);
  background: var(--bs-primary);
  z-index: 5;
}

.blog .blog-item .blog-img .blog-date {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: var(--bs-white);
  z-index: 5;
}

.blog .blog-item .blog-content {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--bs-light);
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  background: var(--bs-primary);
  border-radius: 10px;
}

.team .team-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: var(--bs-dark);
  transition: 0.5s;
  z-index: 1;
}

.team .team-item:hover:after {
  height: 100%;
}

.team .team-item .team-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.team .team-item .team-content .team-icon {
  background: var(--bs-light);
  border-radius: 10px;
  display: flex;
  display: inline-flex;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
  transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
  color: var(--bs-primary);
}

.team .team-item .team-content p {
  color: var(--bs-white);
  transition: 0.5s;
}

.team .team-item:hover .team-content p {
  color: var(--bs-body);
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial {
  position: relative;
  overflow: hidden;
}

.testimonial::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../img/banner/banner_9.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
  animation-name: image-zoom;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: 1s;
}

.testimonial::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.testimonial .testimonial-carousel .testimonial-item {
  text-align: center;
  border-radius: 10px;
  background: rgba(256, 256, 256, 0.2);
}

.testimonial-carousel .testimonial-item .testimonial-inner {
  display: flex;
  justify-content: center;
}

.testimonial-item .testimonial-inner .testimonial-img {
  position: relative;
}

.testimonial-item .testimonial-inner .testimonial-img img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 2px solid var(--bs-white);
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
  position: absolute;
  top: 0;
  left: -25px;
  color: var(--bs-white);
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin: 20px 10px 0 10px;
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--bs-light);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
  background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
  transition: 0.5s;
}

.testimonial-carousel .owl-nav {
  position: absolute;
  bottom: -22px;
  right: 50%;
  transform: translateX(-50%);
  margin-right: -210px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev {
  font-size: 50px;
  margin-right: 80px;
  color: #f27129;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
  font-size: 50px;
  margin-left: 80px;
  color: #f27129;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: var(--bs-primary);
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
  /* background: var(--bs-dark); */
}

.footer .footer-item {
  display: flex;
  flex-direction: column;
}
.footer .footer-item h4 {
  font-size: 20px;
}

.footer .footer-item a {
  line-height: 35px;
  color: var(--bs-body);
  transition: 0.5s;
  font-size: 15px;
}

.footer .footer-item p {
  /* line-height: 35px; */
  font-size: 15px;
}

.footer .footer-item a:hover {
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary);
}

.footer .footer-item .opening-date {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .footer-item .opening-date .opening-clock {
  display: flex;
  align-items: center;
  line-height: 35px;
}
.footer .footer-item .map_icon_and_all{
  font-size: 20px;
}
footer .footer_social_icon_section a{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    width: 32px;
    height: 32px;
    background: #f27129;
    color: white;
}
footer .footer_social_icon_section a i{
  color: white;
}
footer{
      background: linear-gradient(180deg, color-mix(in srgb, #d3d3d3, #e2e2e2cf 30%) 0%, color-mix(in srgb, #225297 , #225297 60%) 100%);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* background-color: #021016; */
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}

/*** copyright end ***/

/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: #ffffff;
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}

@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }

  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }

  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }

  65% {
    opacity: 0;
  }

  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}

/*---------------------------------------
  COUSTOM CSS              
-----------------------------------------*/

.header-carousel {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/banner/banner_5.png") center center no-repeat;
}
.header-carousel .header-carousel-item .inner_header_banner_content_section {
  font-size: 40px;
}

.header-carousel
  .toper_inner_section_for_content
  .inner_banner_content_section
  .custom-btn-group
  .custom_btn_hero {
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  background-size: cover;
  z-index: 9;
  width: 165px;
}

.header-carousel
  .toper_inner_section_for_content
  .inner_banner_content_section
  .custom-btn-group
  .custom_btn_hero::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -160px;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #23549a, #23549a);
  /* background: linear-gradient(145deg, #c0c0c0, #ffffff); */
  box-shadow: 0px 0px 5px 0px rgb(0, 0, 0) inset;
  z-index: -1;
  border-radius: 5px;
  transition: 0.5s;
}

.header-carousel
  .toper_inner_section_for_content
  .inner_banner_content_section
  .custom-btn-group
  .custom_btn_hero:hover:before {
  left: 0px;
  transition: 0.5s;
}

.header-carousel
  .toper_inner_section_for_content
  .inner_banner_content_section
  .custom-btn-group
  .custom_btn_hero
  .Coustom_button_banner {
  border: solid 1px #ffffff;
  border-radius: 5px;
  color: #ffffff;
  transition: 0.5s;
  width: 100%;
}

.header-carousel
  .toper_inner_section_for_content
  .inner_banner_content_section
  .custom-btn-group
  .custom_btn_hero
  .Coustom_button_banner:hover {
  color: black;
  transition: 0.5s;
}

.ml-2 {
  margin-left: 1.5rem;
}

.vision_mission_content_main_section
  .feature-content
  .inner_vision_mission_content
  h4 {
  font-size: 30px;
}

.text-justify {
  text-align: justify;
}

.main_about_section .inner_about_section_content h2 {
  font-size: 42px;
}

.contact_main_section_page_footer {
  background: linear-gradient(
        rgba(255, 255, 255, 0.745),
        rgba(255, 255, 255, 0.745)
      )
      0% 0% / cover fixed,
    url("../img/banner/banner_7.png");
}

.contact_main_section_page_footer .address_deatils_section {
  height: 300px;
  padding: 20px;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section {
  height: 265px;
  border: solid 1px silver;
  margin-top: 15px;
  padding: 20px;
  box-shadow: 0px 0px 16px -4px rgb(0, 0, 0) inset;
  border-radius: 20px;
  background: transparent;
  backdrop-filter: blur(100px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section::before {
  content: "";
  position: absolute;
  top: 250px;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: #4677ffe7; */
  background-image: linear-gradient(145deg, #00ffee, #1ab2dc);
  box-shadow: 0px 0px 13px 2px rgb(0, 0, 0) inset;
  z-index: -1;
  border-radius: 20px;
  transition: 0.5s;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section:hover:before {
  top: 0;
  transition: 0.5s;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section:hover
  svg
  #chnage_color_new {
  fill: #393939 !important;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section:hover
  svg
  #chnage_color {
  fill: black !important;
}

.contact_main_section_page_footer .contact_change_section a {
  color: black;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section
  p {
  font-size: x-large;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section
  span {
  font-size: large;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section:hover
  h2,
.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section:hover
  a,
.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section:hover
  span,
.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section:hover
  p {
  color: rgb(255, 255, 255) !important;
  transition: 0.5s;
}

.contact_main_section_page_footer
  .contact_change_section
  .address_deatils_section:hover
  .button_effect_plus
  a {
  box-shadow: 0px 0px 16px -4px rgb(255, 255, 255) inset !important;
}

.site-footer .footer_img_section {
  width: 60%;
  /* max-width: 245px; */
}

.review_main_section .review_view_section_box {
  margin-bottom: 6rem;
}

/* review section */
.review_main_section .review-carousel {
  position: relative;
}

.review_main_section .review-carousel::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

.review_main_section .review-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 1;
}

@media (min-width: 768px) {
  .review_main_section .review-carousel::before,
  .review_main_section .review-carousel::after {
    width: 200px;
  }
}

@media (min-width: 992px) {
  .review_main_section .review-carousel::before,
  .review_main_section .review-carousel::after {
    width: 300px;
  }
}

.review_main_section .review-carousel .owl-item .testimonial-text {
  background: var(--light);
  transform: scale(0.8);
  transition: 0.5s;
}

.review_main_section .review-carousel .owl-item.center .testimonial-text {
  background: #144f90;
  transform: scale(1);
}

.review_main_section .review-carousel .owl-item .testimonial-text *,
.review_main_section .review-carousel .owl-item .testimonial-item img {
  transition: 0.5s;
}

.review_main_section .review-carousel .owl-item.center .testimonial-text * {
  color: var(--light) !important;
}

.review_main_section .review-carousel .owl-item.center .testimonial-item img {
  border-color: #154c8e !important;
}

.review_main_section .review-carousel .owl-nav {
  position: absolute;
  width: 180px;
  top: -56px;
  right: -4%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  z-index: 1;
}

.review_main_section .review-carousel .owl-nav .owl-prev,
.review_main_section .review-carousel .owl-nav .owl-next {
  font-size: 30px;
  color: #ffffff;
  background-color: #13b1df;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #ffffff inset;
  width: 70px;
  text-align: center;
}

.review_main_section .review-carousel .owl-nav .owl-prev:hover,
.review_main_section .review-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

.checked {
  color: orange;
}

.review_main_section .review-carousel .new_section_add_slide {
  height: 320px;
}

.review_main_section .review-carousel .team-item .new_section_add_slide {
  border: solid 1px silver;
  /* margin-top: 15px;
        padding: 20px; */
  box-shadow: 0px 0px 16px -4px rgb(0, 0, 0) inset;
  border-radius: 20px;
  background: transparent;
  backdrop-filter: blur(100px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.blog {
  position: relative;
}

.blog-content {
  overflow: hidden;
}

.blog .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis !important;
  white-space: nowrap;
}

.blog .blog-content .gen_blog_title {
  font-size: 22px;
  line-height: 30px;
}

.blog .blog-content .gen_blog_title {
  font-size: 28px;
  line-height: 36px;
  margin: 0 0 5px;
}

.text_hiddien {
  display: block;
  display: -webkit-box;
  max-width: 100%;
  height: 123px;
  margin: 0 auto;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contect_height_inner_section {
  height: 190px;
}

.form_section_for_top .inner_form_section {

  border-radius: 10px;
}

.form_section_for_top .inner_form_section {
  border-radius: 10px;
}

.form_section_for_top .inner_form_section .form_type_chage {
  border-radius: 10px;
  color: white;
}

.form_section_for_top .inner_form_section .form-floating label {
  color: white !important;
}

.form_section_for_top .inner_form_section .form-select {
  background-color: black;
  box-shadow: 0px 0px 10px 0px rgb(255, 255, 255) inset;
  border-radius: 10px;
  color: white !important;
}

/*---------------------------------------
    CSS EFFECTS
-----------------------------------------*/

.main_about_section {
  position: relative;
  overflow: hidden;
  background: none;
}

.main_about_section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  top: -300px;
  right: -300px;
  border-radius: 300px;
  border: 100px solid #22245c29;
  animation: aboutCircle 10s linear infinite;
  background: transparent;
  z-index: -1;
}

.main_about_section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -300px;
  left: -300px;
  border-radius: 300px;
  border: 100px solid #22245c29;
  animation: aboutCircletwo 10s linear infinite;
  background: transparent;
  z-index: -1;
}

@keyframes aboutCircle {
  0% {
    top: -200px;
  }
  50% {
    right: -100px;
  }
  75% {
    top: -100px;
  }
  100% {
    top: -200px;
  }
}
@keyframes aboutCircletwo {
  0% {
    bottom: -200px;
  }
  50% {
    left: -100px;
  }
  75% {
    bottom: -100px;
  }
  100% {
    bottom: -200px;
  }
}

 .main_our_strengths_section {
  background: linear-gradient(rgba(4, 15, 40, 0), rgba(4, 15, 40, 0)),
    url("../img/effects/effect_2.png") center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.work-process {
  position: relative;
  overflow: hidden;
  background: none;
}

.work-process::before {
  content: "";
  background: url("../img/sfranme1.png") center center no-repeat;
  position: absolute;
  width: 600px;
  height: 600px;
  top: -300px;
  right: -300px;
  border-radius: 300px;
  /* border: 100px solid #22245c29; */
  animation: RotateMoveCircle 10s linear infinite;
  /* background: transparent; */
  z-index: -1;
}

.work-process::after {
  content: "";
  background: url("../img/sframe2.png") center center no-repeat;
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -400px;
  left: -300px;
  border-radius: 300px;
  /* border: 100px solid #22245c29; */
  animation: RotateMoveCircletwo 10s linear infinite;
  /* background: transparent; */
  z-index: -1;
}

@keyframes RotateMoveCircle {
  0% {
    top: -200px;
  }
  50% {
    right: -100px;
  }
  75% {
    top: -100px;
  }
  100% {
    top: -200px;
  }
}
@keyframes RotateMoveCircletwo {
  0% {
    bottom: -200px;
  }
  50% {
    left: -100px;
  }
  75% {
    bottom: -100px;
  }
  100% {
    left: -200px;
  }
}
/* 
.service_main_section_two .swiper-slide .team-card .inner_service_content h3 {
  font-size: 19px;
}
.service_main_section_three .swiper-slide .team-card .inner_service_content h3 {
  font-size: 19px;
}
.service_main_section_two .swiper-slide .team-card .inner_service_content {
  padding-left: 0px;
  padding-right: 0px;
}

.service_main_section_two .inner_service_section_two .content_section p {
  font-size: 22px;
  color: white;
}
.service_main_section_two .inner_service_section_two {
  padding: 10px;
  border: solid 2px #23549a;
  background-color: #23549a;
  border-radius: 5px;
  transition: 0.7s;
  box-shadow: 0px 0px 5px 0px #ffffff inset;
}
.service_main_section_two .inner_service_section_two .icon_section svg {
  fill: white;
}

.service_main_section_two .inner_service_section_two:hover {
  box-shadow: 0px 0px 0px 60px #f27129 inset;
  transition: 0.7s;
} */
/* 
.service_main_section_two {
  position: relative;
  overflow: hidden;
  background: none;
}

.service_main_section_two::before {
  content: "";
  background: url("../img/effects/effect_5.png") center center no-repeat;
  background-size: 20% 20%;
  position: absolute;
  width: 600px;
  height: 600px;
  top: -300px;
  right: -255px;
  border-radius: 300px;
  animation: serviceSectionTwoNone 10s linear infinite;
  z-index: -1;
}

.service_main_section_two::after {
  content: "";
  background: url("../img/effects/effect_5.png") center center no-repeat;
  background-size: 20% 20%;
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -260px;
  left: -260px;
  border-radius: 300px;
  animation: serviceSectionNone 10s linear infinite;
  z-index: -1;
}

@keyframes serviceSectionTwoNone {
  0% {
    top: -200px;
    transform: rotate(0deg);
  }
  50% {
    right: -100px;
    transform: rotate(90deg);
  }
  75% {
    top: -100px;
    transform: rotate(180deg);
  }
  100% {
    top: -200px;
    transform: rotate(360deg);
  }
}
@keyframes serviceSectionNone {
   0% {
    bottom: -200px;
    transform: rotate(0deg);
  }
  50% {
    left: 45px;
    transform: rotate(90deg);
  }
  75% {
    bottom: -40px;
    transform: rotate(180deg);
  }
  100% {
    bottom: -200px;
    transform: rotate(360deg);
  }
} */

.text_new {
  color: #23549a;
}

.about_inner_number_secction {
  width: 90%;
  height: 80px;
top: -10px;
  left: 50%;
  background: linear-gradient(85deg, #f27129, #f27129);
  transform: translateX(-50%);
  border-radius: 10px 10px 0px 0px;
  z-index: -1;
}
.about_inner_number_secction h3{
  font-size: 21px;
}

.header-carousel .inner_img_section{
      position: relative;
  overflow: hidden;
  background: none;
}

.header-carousel .inner_img_section::before {
  content: "";
  background: url("../img/effects/sfranme1.png") center center no-repeat;
  /* background-size: 20% 20%; */
  position: absolute;
  width: 600px;
  height: 600px;
    top: -225px;
    right: -260px;
  border-radius: 300px;
  /* border: 100px solid #22245c29; */
  animation: bannerEffect 10s linear infinite;
  /* background: transparent; */
  z-index: -1;
}

.header-carousel .inner_img_section::after {
  content: "";
  background: url("../img/effects/sframe2.png") center center no-repeat;
  /* background-size: 20% 20%; */
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -225px;
  left: -265px;
  border-radius: 300px;
  /* border: 100px solid #22245c29; */
  animation: bannerEffectTwo 10s linear infinite;
  /* background: transparent; */
  z-index: -1;
}   

@keyframes bannerEffect {
  0% {
    top: -165px;
    /* transform: rotate(0deg); */
  }
  50% {
    top: -100px;
    /* transform: rotate(90deg); */
  }
  
  100% {
    top: -165px;
    /* transform: rotate(360deg); */
  }
}
@keyframes bannerEffectTwo {
  0% {
    bottom: -165pxpx;
    /* transform: rotate(0deg); */
  }
  50% {
    bottom: -100px;
    /* transform: rotate(90deg); */
  }
100% {
    bottom: -165px;
    /* transform: rotate(180deg); */
  }
}

.main_about_section .about_img_one{
    margin-top: 4rem;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
  color: #ffd700;
}

.testimonials .testimonial-item .stars i {
  margin-right: 2px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.testimonials .testimonial-item .testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author {
  display: flex;
  align-items: center;
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.testimonials .testimonial-item .testimonial-footer .testimonial-author div h5 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
}

.testimonials
  .testimonial-item
  .testimonial-footer
  .testimonial-author
  div
  span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.testimonials .testimonial-item .testimonial-footer .quote-icon {
  font-size: 36px;
  color: color-mix(in srgb, var(--accent-color), transparent 70%);
  line-height: 1;
}

.testimonials .testimonial-item .testimonial-footer .quote-icon i {
  transform: scaleX(-1);
}

@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 25px 20px;
  }

  .testimonials .testimonial-item p {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 45px;
    height: 45px;
  }

  .testimonials
    .testimonial-item
    .testimonial-footer
    .testimonial-author
    div
    h5 {
    font-size: 16px;
  }

  .testimonials
    .testimonial-item
    .testimonial-footer
    .testimonial-author
    div
    span {
    font-size: 13px;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .testimonials .testimonial-item {
    padding: 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer .testimonial-author img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}



.main_contact_section {
  position: relative;
  overflow: hidden;
  background: none;
}

.main_contact_section::before {
  content: "";
  background: url("../img/effects/sfranme1.png") center center no-repeat;
  position: absolute;
  width: 600px;
  height: 600px;
  top: -300px;
  right: -300px;
  border-radius: 300px;
  animation: RotateMoveCircle 10s linear infinite;
  z-index: -1;
}

.main_contact_section::after {
  content: "";
  background: url("../img/effects/sframe2.png") center center no-repeat;
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -400px;
  left: -300px;
  border-radius: 300px;
  animation: RotateMoveCircletwo 10s linear infinite;
  z-index: -1;
}

@keyframes RotateMoveCircle {
  0% {
    top: -200px;
  }
  50% {
    right: -100px;
  }
  75% {
    top: -100px;
  }
  100% {
    top: -200px;
  }
}
@keyframes RotateMoveCircletwo {
  0% {
    bottom: -200px;
  }
  50% {
    left: -100px;
  }
  75% {
    bottom: -100px;
  }
  100% {
    left: -200px;
  }
}














.main_contact_section .contact::before {
  background: linear-gradient(
    to right,
    #ed2024,
    color-mix(in srgb, #ed2024, #fff 30%)
  );
}
.main_contact_section .contact::after {

  background: linear-gradient(
    to right,
    #ed2024,
    color-mix(in srgb, #ed2024, #fff 30%)
  );
}



.main_contact_section {
  position: relative;
  overflow: hidden;
  background: none;
}

.main_contact_section .contact::before {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  top: 0;
  left: 0;
  border-radius: 300px;
  animation: RotateMoveCirclecareer 10s linear infinite;
  z-index: -1;
}

.main_contact_section .contact::after {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  bottom: 112px;
  right: 112px;
  border-radius: 300px;
  animation: RotateMoveCirclecareertwo 10s linear infinite;
  z-index: -1;
}

@keyframes RotateMoveCirclecareertwo {
  0% {
    bottom: 230px;
  }
  50% {
    right: 0px;
  }
  75% {
    bottom: 73px;
  }
  100% {
    bottom: 230px;
  }
}

@keyframes RotateMoveCirclecareer {
  0% {
    top: 186px;
  }
  50% {
    left: 90px;
  }
  75% {
    top: 0px;
  }
  100% {
    top: 186px;
  }
}




.header-carousel .header-carousel-item{
      position: relative;
  overflow: hidden;
  background: none;
}

.header-carousel .header-carousel-item::before {
  content: "";
  background: url("../img/about/banner2-e.png") center center no-repeat;
  position: absolute;
  width: 600px;
  height: 845px;
  right: -160px;
  bottom: -465px;
  border-radius: 300px;
  z-index: 9;
  opacity: 0.4;
}

.header-carousel .header-carousel-item::after {
  content: "";
  background: url("../img/about/banner2-f.png") center center no-repeat;
  position: absolute;
  width: 600px;
  height: 600px;
  left: -210px;
  top: -285px;
  border-radius: 300px;
  z-index: 9;
  opacity: 0.4;
}   






.main_deliver_section{
    background: linear-gradient(90deg, rgba(120, 161, 255, 0), rgba(95, 143, 255, 0)), url('../img/banner/banneer_11.jpg') center no-repeat;
    background-size:cover;


}
.main_deliver_section .inner_deliver_main_section h2{
    font-size: 40px;
    color:#f27129;
}
.main_deliver_section .inner_deliver_main_section{
    border: solid 2px #ffffff;
    padding: 20px;
    border-radius: 10px;
    background: #ffffff87;
    backdrop-filter: blur(20px);
    box-shadow: 0px 0px 7px 0px rgb(255, 255, 255) inset;
    /* height: 270px; */
}
.main_deliver_section .inner_deliver_main_section ul{
  list-style: none;
}
.main_deliver_section .inner_deliver_main_section ul li{
  font-size: 20px;
}
.main_deliver_section .inner_deliver_main_section ul li i{
  color:#f27129;
}
.main_combining_corporate_section .inner_combining_corporate_content_section h2{
  font-size: 45px;
  font-weight: 900;
}

.main_combining_corporate_section {
  position: relative;
  overflow: hidden;
  background: none;
}

.main_combining_corporate_section::before {
  content: "";
  background: url("../img/effects/tp1.png") center center no-repeat;
  position: absolute;
 width: 325px;
    height: 600px;
    top: -150px;
  border-radius: 300px;
  z-index: -1;
}

.main_combining_corporate_section::after {
  content: "";
  background: url("../img/effects/tp1.png") center center no-repeat;
  position: absolute;
  width: 600px;
  height: 600px;
      transform: rotate(180deg);
bottom: -155px;
    right: -130px;
  border-radius: 300px;
  z-index: -1;
}






.call_msg_icon_section .icon_section{
/* background-color: #f27129;
border-radius: 10px; */
}
.call_msg_icon_section .icon_section #phone_icon{
padding: 5px;
/* font-size: 40px; */
fill: rgb(35 84 154);

}
.call_msg_icon_section .content_section{
background-color: rgb(35 84 154);
}
.call_msg_icon_section .content_section .inner_content_number{
  padding: 15px 15px 15px 15px;
font-size: 20px;
color: white;
margin-bottom: 0px;
}
.call_msg_icon_section .content_section p{
    padding: 10px 15px 5px 15px;
    font-size: 20px;
    color: white;
margin-bottom: 0px;
}
.form_section_for_top{
  background: #23549a2b;
}
.form_section_for_top .modal-dialog{
  max-width: 540px;
  margin: 8.75rem auto;
}
.form_section_for_top .modal-dialog .modal-content{
  padding: 11px;
}
.form_section_for_top .modal-dialog .modal-content .modal-body{
  padding: 0px;
}
.form_section_for_top .modal-dialog .modal-content .img_popup_position{
  position: relative;
  overflow: hidden;
}
.form_section_for_top .modal-dialog .modal-content .cut_button_poisition{
    position: absolute;
    right: -40px;
    top: -45px;
    color: white!important;
}
.main_about_section .about_list_section ul{
  list-style: none;
}
.main_about_section .about_list_section ul li{
  margin-top: 10px;
}
.main_about_section .about_list_section ul li i{
  color: #f27129;
}
.main_combining_corporate_section .core_value_list_section ul{
  list-style: none;
}
.main_combining_corporate_section .core_value_list_section ul li{
  margin-top: 10px;
}
.main_combining_corporate_section .core_value_list_section ul li i{
  color: #f27129;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  /* padding-bottom: 60px; */
  position: relative;
}

.section-title h4 {
  font-size: 25px;
  font-weight: 700;
  position: relative;
  color:#fb8301;
}

.section-title h4:before,
.section-title h4:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #fb8301;
  display: inline-block;
}

.section-title h4:before {
  margin: 0 15px 10px 0;
}

.section-title h4:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

.main_about_section
  .custom_btn_hero {
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  background-size: cover;
  z-index: 9;
  width: 165px;
}

.main_about_section
  .custom_btn_hero::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -160px;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #f27129, #f27129);
  /* background: linear-gradient(145deg, #c0c0c0, #ffffff); */
  box-shadow: 0px 0px 7px 0px rgb(0, 0, 0) inset;
  z-index: -1;
  border-radius: 5px;
  transition: 0.5s;
}

.main_about_section
  .custom_btn_hero:hover:before {
  left: 0px;
  transition: 0.5s;
}

.main_about_section
  .custom_btn_hero
  .Coustom_button_banner {
  border: solid 1px #f27129;
  border-radius: 5px;
  color: #f27129;
  transition: 0.5s;
  width: 100%;
}

.main_about_section
  .custom_btn_hero
  .Coustom_button_banner:hover {
  color: black;
  transition: 0.5s;
}

.whatsapp_icon {
 position: fixed;
    left: 45px;
    bottom: 10%;
    border-radius: 10px;
    z-index: 99;
    width: 7%;
    transition: 0.5s;

}

.whatsapp_icon img {
  width: 100%;
   /* background-color: white; */
    border-radius: 25px;
  animation: whatsapp 3s infinite;
}

@keyframes whatsapp {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}
.phone_view_section{
  display: none;
}

.card_view_main_section .card_margin_section{
  margin-top: 6.2rem;
}
.card_view_main_section .inner_core_value .card{
  position: relative;
    border: 2px solid #e6e6e6;
  transition: 0.5s;
  height: 280px;
}
.card_view_main_section .inner_core_value .card .inner_img_card{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card_view_main_section .inner_core_value .card .inner_img_card img{
  border-radius: 100%;
  filter: drop-shadow(5px 2px 5px rgba(0, 0, 0, 0.5));
  transition: 0.5s;
}
.card_view_main_section .inner_core_value .card .inner_img_card::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('../img/effects/circle_1.png') center center no-repeat;
  width: 325px;
  height: 325px;
  z-index: -1;
  transition: 0.5s;
}
.card_view_main_section .inner_core_value .card .inner_img_card::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/effects/circle_2.png") center center no-repeat;
  width: 325px;
  height: 325px;
  z-index: -1;
  transition: 0.5s;
}
.card_view_main_section .inner_core_value .card .card-body{
  margin-top: 6rem;
}
.card_view_main_section .inner_core_value .card .card-body h6{
color: #23549a;
}
.card_view_main_section .inner_core_value .card:hover{
  background: #fff;
  box-shadow: 0 0px 49px 1px rgba(0, 0, 0, 0.1) inset;
  border: 2px solid #fff;
  transition: 0.5s;

}
.card_view_main_section .inner_core_value .card:hover .inner_img_card::after{
  position: absolute;
  top: 90%;
  left: 2%;
  transform: translate(-50%, -50%);

}
.card_view_main_section .inner_core_value .card:hover .inner_img_card::before{
  position: absolute;
  top: 20px;
  left: 100%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.card_view_main_section .inner_core_value .card:hover .inner_img_card img{
  border-radius: 100%;
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0));
  transition: 0.5s;
}
.main_about_section .change_about_numbering_secction {
  text-align: center;
  border: solid 2px #154c8e;
    padding: 20px 0px;
    border-radius: 10px;
}
.main_about_section .change_about_numbering_secction .counter_section .counter, 
.main_about_section .change_about_numbering_secction .counter_section span{
      font-size: 40px;
    font-weight: 900;
    color: #154c8e;
}
.main_about_section .change_about_numbering_secction span{
  color: #154c8e;
}



.service_main_section_two .why_bookmy_stayz_main_section .inner_why_bookmy_stayz .table{
  border: solid 2px #23549a;
  text-align: center;
}
.service_main_section_two .why_bookmy_stayz_main_section .inner_why_bookmy_stayz .table .inner_tabel_section{
  background-color: #23549a;
  color: white;
}
.service_main_section_two .why_bookmy_stayz_main_section .inner_why_bookmy_stayz .table .inner_tabel_body tr td{
    border: solid 1px #23549a;
}
.why_bookmy_stayz_main_section_two .why_bookmy_stayz_section_two .inner_why_bookmy_stayz_two{
    border: solid 1px #23549a;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 0px #23549a inset;
    padding: 20px 5px;
    transition: 0.5s;
    height: 260px;
}
.why_bookmy_stayz_main_section_two .why_bookmy_stayz_section_two .inner_why_bookmy_stayz_two .icon_whybookmystayz #Layer_1{
  fill: #23549a;
}
.why_bookmy_stayz_main_section_two .why_bookmy_stayz_section_two .inner_why_bookmy_stayz_two:hover{
    box-shadow: 0px 0px 150px 150px #23549a inset;
    transition: 0.5s;
}
.why_bookmy_stayz_main_section_two .why_bookmy_stayz_section_two .inner_why_bookmy_stayz_two .content_whybookmystayz h4{
  font-size:20px;
}
.why_bookmy_stayz_main_section_two .why_bookmy_stayz_section_two .inner_why_bookmy_stayz_two:hover .icon_whybookmystayz #Layer_1, 
.why_bookmy_stayz_main_section_two .why_bookmy_stayz_section_two .inner_why_bookmy_stayz_two:hover .content_whybookmystayz h4, 
.why_bookmy_stayz_main_section_two .why_bookmy_stayz_section_two .inner_why_bookmy_stayz_two:hover .content_whybookmystayz p{
  color: white;
  fill: white;
    transition: 0.5s;
}







.why_bookmy_stayz_main_section .border-start {
  border-left: 5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px;
}
.why_bookmy_stayz_main_section .border-dark {
  border-color: #fb8301 !important;
}
.why_bookmy_stayz_main_section .pt-2 {
  padding-top: .5rem !important;
}
.why_bookmy_stayz_main_section .ps-5 {
  padding-left: 3rem !important;
}
.why_bookmy_stayz_main_section .text_new_primary{
  color: #23549a!important;
}
.why_bookmy_stayz_main_section .fa_arrow_right {
  position: relative;
}

.why_bookmy_stayz_main_section .fa_arrow_right:before {
  content: "\f178";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
/*--adjust as necessary--*/
  color: #fb8301;
  font-size: 30px;
  padding-right: 0.5em;
  position: absolute;
  top: -7px;
  left: 0;
}