@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

body {
   font-family: "Outfit", serif;
}

header.header.scrolled {
   position: sticky;
   top: 0;
   width: 100%;
   background-color: #000000;
   z-index: 1000;
   box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.back-to-top {
   position: fixed;
   right: 30px;
   bottom: 30px;
   transition: 0.5s;
   z-index: 999;
}


.btn {
   font-weight: 600;
   transition: .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: .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: var(--bs-primary);
}

.navbar-light .navbar-brand img {
   max-height: 60px;
   transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
   max-height: 50px;
}

.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: #6cb015;
   color: #fff;
}

.navbar .nav-item:hover .dropdown-menu {
   transform: rotateX(0deg);
   visibility: visible;
   margin-top: 8px !important;
   background: var(--bs-light);
   transition: .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: 0;
      margin-top: 8px !important;
      transition: .5s;
      opacity: 0;
   }
}

@media (max-width: 991px) {
   .navbar.navbar-expand-lg .navbar-toggler {
      padding: 0px 0px;
      border: 1px solid #ffffff00;
      color: #6cb015;
   }

   .navbar-toggler:focus {
      text-decoration: none;
      outline: 0;
      box-shadow: 0 0 0 0;
   }

   .sticky-top .navbar-light .navbar-nav .nav-link {
      padding: 12px 0;
   }
}

/*** Navbar End ***/

.header-carousel .header-carousel-item img {
   object-fit: cover;
   object-position: bottom;
}


@media (min-width: 1200px) {

   /* .header-carousel .header-carousel-item,
   .header-carousel .header-carousel-item img {
      height: 541px;
   } */

   .header-carousel .header-carousel-item, .header-carousel .header-carousel-item img {
      height: 582px !important;
      object-fit: cover !important;
      object-position: center !important;
   }

}





@media (max-width: 1199px) {

   .header-carousel .header-carousel-item,
   .header-carousel .header-carousel-item img {
      height: 700px;
   }
}

.header-carousel .owl-nav .owl-prev {
   display: none;
}

.header-carousel .owl-nav .owl-next {
   position: absolute;
   width: 60px;
   height: 60px;
   bottom: -60px;
   right: 50%;
   transform: translateY(-50%);
   margin-right: -60px;
   border-radius: 60px;
   background: var(--bs-primary);
   color: var(--bs-white);
   font-size: 26px;
   display: none;
   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-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: #00000059;
   display: flex;
   align-items: center;
}

.carousel-caption .ticket-form {
   background: rgba(255, 255, 255, 0.4);
   border-radius: 10px;
}

.header-carousel .header-carousel-item img {
   animation-name: image-zoom;
   animation-duration: 10s;
   animation-delay: 1s;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   transition: 1s;
}

@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: rgba(0, 0, 0, 0.7);
   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/carousel-1.jpg);
   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, .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 i {
   color: var(--bs-primary);
   transition: 0.5s;
}

.service .service-item:hover i {
   color: var(--bs-white);
}

.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, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) 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, .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;
   color: var(--bs-white);
   font-size: 24px;
   font-weight: 600;
   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-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, .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, .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 {
   position: relative;
   overflow: hidden;
   padding: 90px 0;
}

.testimonial::after {
   content: "";
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   background-image: url(../img/shape.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;
   opacity: 0.5;
   animation-iteration-count: infinite;
   animation-direction: alternate;
   transition: 1s;
}


.testimonial .testimonial-carousel .testimonial-item {
   text-align: center;
   border-radius: 10px;
   max-width: 710px;
   margin: 0 auto;
   padding: 0 30px 30px 30px;
}

.testimonial-item p {
   font-size: 16px;
   color: #4d4d4d;
   letter-spacing: 0;
   font-weight: 400;
   line-height: 25px;
   margin: 0 0 20px 0;
}

.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: 0px solid var(--bs-white);
}

.testimonial-inner h4 {
   color: #212121;
   margin: 15px 0 0 0;
   font-size: 20px;
   font-weight: 600;
}

.testimonial-inner i {
   color: orange;
   margin-top: 13px;
   font-size: 12px;
   margin: 15px 4px 0 0;
}

.testimonial-item .testimonial-inner .testimonial-img .testimonial-quote {
   position: absolute;
   top: 0;
   left: -25px;
   color: #619e13;
   background: #ededed00;
}

.testimonial-carousel .owl-dots {
   display: flex;
   justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
   width: 20px;
   height: 20px;
   border-radius: 30px;
   margin: 10px 10px 0 10px;
   background: #c2dda0;
   transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
   width: 20px;
   height: 20px;
   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: #212121;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
   content: "";
   width: 10px;
   height: 10px;
   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: var(--bs-white);
   transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-next {
   font-size: 50px;
   margin-left: 80px;
   color: var(--bs-white);
   transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
   color: var(--bs-primary);
}

.footer {
   background: #f4ffe7;
}

.footer-item h4 {
   margin: 0 0 15px 0;
   font-size: 18px;
   font-weight: 600;
   letter-spacing: 0.3px;
   color: #6cb015;
}

.footer-item h3 {
   font-size: 40px;
   margin: 0 0 15px 0;
   font-weight: 800;
   color: #212121;
}

.footer-item p {
   margin-top: 0;
}

.icon_detail {
   margin: 10px 0 0 0;
}

.icon_detail p {
   color: #212121;
   font-size: 16px;
   font-weight: 500;
   letter-spacing: 0.5px;
}

.icon_detail i {
   margin-right: 10px;
   color: #619f13;
}

.footer .footer-item {
   display: flex;
   flex-direction: column;
}

.footer .footer-item a {
   line-height: 30px;
   color: #212121;
   transition: 0.5s;
   font-size: 15px;
   font-weight: 500;
   letter-spacing: 0.3px;
}

i.fas.fa-copyright {
   margin-right: 9px;
}

.footer .footer-item p {
   line-height: 30px;
   font-size: 15px;
   font-weight: 500;
   letter-spacing: 0.3px;
   color: #212121;
}

.opening-clock p i {
   margin-right: 4px;
   color: #6cb015;
}

.footer .footer-item a:hover {
   color: #6cb015;
}

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

.opening-clock h6 {
   margin: 0;
   font-size: 14px;
   font-weight: 500;
}

.copyright {
   border-top: 0px solid rgba(255, 255, 255, 0.08);
   background: #69ab14;
   padding: 10px 0;
   font-size: 15px;
   font-weight: 400;
}

.pd_1 {
   padding: 60px 30px;
}

.copyright span {
   font-size: 15px;
   display: inline-block;
   font-weight: 400;
}


.navbar-brand {
   padding-top: 0;
   padding-bottom: 0;
   margin-right: 0;
   font-size: 40px;
   font-weight: 800;
   color: white;
}


.header-topbar {
   background: #6cb015;
   padding: 8px 0;
}

.top_in_left a i {
   color: #6cb015;
   display: inline-block;
   margin-right: 10px;
   font-size: 16px;
   background: #ffffff;
   width: 30px;
   height: 30px;
   line-height: 30px;
   border-radius: 50%;
   text-align: center;
   box-shadow: 0px 0px 7px #55555566;
}

body {
   margin: 0;
}

.top_in_left a span {
   color: #fff;
   font-size: 16px;
   font-weight: 400;
   display: inline-block;
}

.top_in_left a {
   margin-right: 20px;
   border-right: 1px solid #ffffff78;
   padding-right: 20px;
}

.top_in_right_social a i {
   color: #fff;
   font-size: 17px;
   margin-left: 8px;
   border: 1px solid #ffffff59;
   width: 30px;
   height: 30px;
   text-align: center;
   line-height: 30px;
   border-radius: 50%;
}

.top_in_right_social {
   text-align: end;
}

.top_in_right_social a {
   display: inline-block;
}

.top_in_right_social a i:hover {
   background: #fff;
   color: #6cb015;
}

.nav-link {
   display: block;
   padding: .5rem 1rem;
   color: white;
   transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
   font-size: 18px;
   letter-spacing: 0.3px;
   margin: 0 12px;
}

.nav-link:hover,
.nav-link:focus {
   color: #6cb015;
}

a.btn_get {
   background: #6cb015;
   color: #fff;
   padding: 16px 40px;
   border-radius: 6px;
   font-size: 15px;
   box-shadow: 0px 0px 3px #00000078;
   letter-spacing: 0.5px;
   font-weight: 500;
   text-transform: uppercase;
   transition: 0.5s;
   border: 1px solid #6cb015;
}

a.btn_get:hover {
   background: transparent;
   color: #6cb015;
   border: 1px solid #6cb015;
   transition: 0.5s;
}

.banner_inner {
   text-align: center;
}

.banner_inner h4 {
   margin: 0 0 15px 0;
   color: #f8f9fa;
   font-size: 16px;
   text-transform: uppercase;
   letter-spacing: 2px;
   font-weight: 300;
}

.banner_inner h1 {
   margin: 120px 0 0px 0;
   color: #f8f9fa;
   font-size: 58px;
   text-transform: capitalize;
   letter-spacing: 0.5px;
   font-weight: 700;
   line-height: 80px;
}

.btn_banner a {
   background: #6cb01500;
   color: #fff;
   padding: 16px 40px;
   border-radius: 6px;
   font-size: 15px;
   box-shadow: 0px 0px 3px #00000078;
   letter-spacing: 1px;
   font-weight: 400;
   text-transform: uppercase;
   transition: 0.5s;
   border: 1px solid #ffffff87;
   display: inline-block;
   margin-top: 16px;
}


.btn_banner a:hover {
   background: #6cb015;
   color: #fff;
   border: 1px solid #6cb015;
   transition: 0.5s;
}

header.header {
   padding: 5px 0;
   position: absolute;
   z-index: 999;
   left: 0;
   right: 0;
}
.form_booking_main {
   background: #ffffff;
   padding: 25px;
   border-radius: 10px;
   margin-top: 0;
   position: relative;
   z-index: 999;
   bottom: 47%;
   box-shadow: 0px 0px 5px 4px #00000021;
}

.form_booking_main .form-group {
   display: inline-flex;
   width: 24%;
   align-items: center;
   border: 1px solid #00000029;
   padding: 6px 10px;
   border-radius: 5px;
   margin-bottom: 10px;
   margin-right: 0;
   height: 50px;
   box-shadow: 0px 0px 3px #00000040;
}

.form_booking_main .form-group .form-control {
   display: block;
   width: 100%;
   padding: 0.375rem .75rem 0.375rem 6px;
   font-size: 15px;
   font-weight: 400;
   line-height: 1.5;
   color: #000000;
   background-color: #ffffff00;
   background-clip: padding-box;
   border: 1px solid #ffffff00;
   appearance: none;
   border-radius: 0;
   transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form_booking_main .form-select {
   display: block;
   width: 100%;
   padding: .375rem 2.25rem .375rem .75rem;
   font-size: 15px;
   font-weight: 400;
   line-height: 1.5;
   color: #212121c9;
   background-color: #ffffff00;
   background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
   background-repeat: no-repeat;
   background-position: right .75rem center;
   background-size: 16px 12px;
   border: 1px solid #ced4da00;
   border-radius: 0;
   appearance: none;
   height: 50px;
}

.form-group-btn {
   display: inline-block;
   width: 24%;
   background: #6cb015;
   color: #fff;
   padding: 0;
   text-align: center;
   border-radius: 5px;
   height: 50px;
   line-height: 50px;
}

.form-group-btn a {
   background: #6cb015;
   color: #fff;
   font-size: 15px;
   box-shadow: 0px 0px 3px #00000000;
   letter-spacing: 0.5px;
   font-weight: 500;
   text-transform: uppercase;
   transition: 0.5s;
   border: 0px solid #6cb015;
}

.form_booking_main form {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}


.form-control:focus {
   border-color: #9edff700;
   outline: 0;
   box-shadow: 0 0 0 .25rem rgb(60 190 238 / 0%);
}

.form-select:focus {
   border-color: #9edff700;
   outline: 0;
   box-shadow: 0 0 0 .25rem rgb(60 190 238 / 0%);
}

.form-group-btn a i {
   margin-right: 10px;
   font-size: 15px;
}

.abt_main_in h2 {
   margin: 0 0 12px 0;
   color: #212121;
   font-size: 48px;
   text-transform: capitalize;
   letter-spacing: 0.5px;
   font-weight: 700;
   line-height: 58px;
}

.abt_main_in p {
   font-size: 16px;
   color: #4d4d4d;
   letter-spacing: 0;
   font-weight: 400;
   line-height: 25px;
   margin: 0 0 15px 0;
}

.btn_abt_main {
   display: flex;
   align-items: center;
   justify-content: space-between;
   max-width: 84%;
   margin-top: 20px;
}

.btn_abts {
   display: flex;
}

.btn_abts i {
   width: 40px;
   height: 40px;
   line-height: 40px;
   background: #6caf15;
   border-radius: 50%;
   text-align: center;
   color: #fff;
   margin-right: 10px;
   box-shadow: 0px 0px 5px #00000054;
}

.phone_detail span {
   font-size: 15px;
   color: #000000de;
   font-weight: 500;
   opacity: 0.8;
}

.phone_detail p {
   font-size: 16px;
   font-weight: 700;
   color: #6caf15;
   margin-top: 4px;
   letter-spacing: 0.5px;
}

.btn_abt_discover a {
   background: #6cb01500;
   color: #6caf15;
   padding: 15px 30px;
   border-radius: 6px;
   font-size: 15px;
   box-shadow: 0px 0px 3px #00000000;
   letter-spacing: 1px;
   font-weight: 400;
   text-transform: uppercase;
   transition: 0.5s;
   border: 1px solid #6caf15;
   display: inline-block;
   margin-top: 0;
}

.btn_abt_discover a:hover {
   background: #6caf15;
   color: #fff;
   transition: 0.5s;
   border: 1px solid #6caf15;
}

section.map_abt_amain {
   margin-top: 0;
   padding: 40px 0 130px 0px;
   position: relative;
}

.map_img {
   position: absolute;
   top: -90px;
   left: 0;
   right: 0;
   width: 100%;
   opacity: 0.9;
}

.img_text_left p {
   transform: rotate(180deg);
   writing-mode: vertical-lr;
   color: #6cb015;
   text-transform: uppercase;
   text-wrap: nowrap;
   letter-spacing: .135rem;
   margin: 0;
   font-size: 14px;
}

.img_text_left {
   display: flex;
   justify-content: center;
   align-items: center;
   position: absolute;
   /* background: red; */
   height: 100%;
   left: 0;
   /* padding: 15px; */
}

.abt_main_img {
   position: relative;
   padding-left: 40px;
}

.img_text_left1 {
   position: absolute;
   max-width: 280px;
   /* height: 170px; */
   right: 0;
   bottom: -14%;
   right: 8%;
}

.img_text_left1 img {
   height: 226px;
   width: 268px;
   object-fit: cover;
   filter: grayscale(1);
   border-radius: 10px;
}

.abt_main_img img {
   border-radius: 10px;
}

.abt_main_in {
   padding-left: 35px;
}


.abt_main_img:hover .hv1 {
   filter: grayscale(1);
   transition: 0.5s;
}

.abt_main_img:hover .img_text_left1 img {
   filter: grayscale(0);
   transition: 0.5s;
}


#slider-container {
   position: relative;
   overflow: hidden;
}

#slider-container {
   padding-top: 5px;
   height: auto;
   position: relative;
   overflow: hidden;
}

#slider-container .btn {
   position: absolute;
   top: -36px;
   height: 12px;
   width: 12px;
   border-left: 3px solid pink;
   border-top: 3px solid pink;
   z-index: 9999;
}

section.product_main_in {
   position: relative;
   z-index: 1;
   padding: 0px 0 90px 0;
}

#slider-container .btn:hover {
   transform: scale(1.2);
}

#slider-container .btn.inactive {
   border-color: rgb(153, 121, 126)
}

#slider-container .btn:first-of-type {
   transform: rotate(-45deg);
   right: 30px;
}

#slider-container .btn:last-of-type {
   transform: rotate(135deg);
   right: 10px;
}

#slider-container #slider {
   display: flex;
   width: 1000%;
   height: 100%;
   transition: all .5s;
}

#slider-container #slider .slide {
   width: calc(2.5% - 20px);
   height: 90%;
   margin: auto 10px;
}


@media only screen and (min-width: 1100px) {

   #slider-container #slider .slide {
      width: calc(2.5% - 20px);
   }

}

@media only screen and (max-width: 1100px) {

   #slider-container #slider .slide {
      width: calc(3.3333333% - 20px);
   }

}

@media only screen and (max-width: 900px) {

   #slider-container #slider .slide {
      width: calc(5% - 20px);
   }

}

@media only screen and (max-width: 550px) {

   #slider-container #slider .slide {
      width: calc(10% - 20px);
   }

}


.slide_main_inner {
   position: relative;
}

.img_slide {
   position: relative;
}

.highlight {
   position: absolute;
   top: 0;
   display: flex;
   justify-content: space-between;
   width: 100%;
   left: 0;
   right: 0;
   align-items: center;
   padding: 0 20px;
}

.highlight p {
   background: #ffffff;
   padding: 6px 10px;
   font-size: 13px;
   color: #6cb015;
   border-radius: 5px;
   font-weight: 500;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.highlight a i {
   color: #fff;
   font-size: 18px;
}

.img_slide img {
   width: 100%;
   height: 250px;
   object-fit: cover;
   border-radius: 10px;
}

.content_inner {
   background: #fff;
   box-shadow: 0px 0px 6px #00000054;
   border-radius: 10px;
   margin: -15px 7px 0 7px;
   position: relative;
   z-index: 99;
   padding: 18px;
}

.star_main i {
   color: orange;
}

.content_inner h3 {
   font-size: 20px;
   font-weight: 600;
   margin: 10px 0 10px 0;
   color: #212121;
}

.content_inner p i {
   color: #6cb015;
   margin-right: 7px;
}

.content_inner p {
   color: #212121d6;
   font-size: 16px;
   font-weight: 400;
   letter-spacing: 0.3px;
}

.content_inner a {
   color: #599011;
   font-size: 16px;
   display: block;
   font-weight: 400;
   letter-spacing: 0.5px;
   border-top: 1px solid #00000033;
   padding-top: 12px;
}

span.btn_in {
   display: inline-block;
}

span.btn_in1 {
   display: inline-block;
}

.btn_in-selectbtn {
   display: flex;
   align-items: center;
   justify-content: space-between;
   /* padding: 15px 0; */
}

span.btn_in i {
   background: #69ab14;
   margin: 0 15px;
   border-radius: 50%;
   width: 40px;
   height: 40px;
   font-size: 25px;
   color: #fff !important;
   box-shadow: 0px 0px 4px #00000091;
   display: inline-block;
   text-align: center;
   line-height: 40px;
}

span.btn_in1 i {
   background: #69ab14;
   margin: 0 15px;
   border-radius: 50%;
   width: 40px;
   height: 40px;
   font-size: 25px;
   color: #fff !important;
   box-shadow: 0px 0px 4px #00000091;
   display: inline-block;
   text-align: center;
   line-height: 40px;
}

.content_inner_heading h2 {
   text-align: center;
   margin: 0 0 -18px 0;
   color: #212121;
   font-size: 48px;
   text-transform: capitalize;
   letter-spacing: 0.5px;
   font-weight: 700;
   line-height: 58px;
}


.prd_main_in:hover span.btn_in i {
   background: transparent;
   border: 1px solid #6caf15;
   color: #6caf15 !important;
   box-shadow: 0px 0px 4px #00000000;
   transition: 0.9s;
}

.prd_main_in:hover span.btn_in1 i {
   background: transparent;
   border: 1px solid #6caf15;
   transition: 0.9s;
   box-shadow: 0px 0px 4px #00000000;
   color: #6caf15 !important;
}


.main_tour_inner_box {
   position: relative;
   transition: 0.5s;
}

.main_tour_inner_box img {
   height: 67vh;
   width: 100%;
   object-fit: cover;
   position: relative;
   transition: 0.5s;
}

.content_inner_box {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   width: 100%;
   background: #00000063;
   padding: 15px;
   border-radius: 0;
   transition: 0.5s;
   display: grid;
   align-items: end;
   justify-content: center;
   align-content: space-evenly;
}

.content_inner_box h3 {
   color: #fff;
   font-size: 30px;
   text-transform: capitalize;
   letter-spacing: 0.5px;
   margin: 0;
}

.content_inner_box a {
   color: #ffffff;
   font-size: 15px;
   display: block;
   font-weight: 400;
   letter-spacing: 0.5px;
   transition: 0.5s;
   padding-top: 0;
   text-align: center;
   text-transform: uppercase;
}

.content_inner_box a i {
   background: #000000;
   color: #69ab14;
   padding: 9px 11px;
   border-radius: 50%;
   margin-left: 10px;
   transition: 0.5s;
}

section.main_tour_area .container-fluid .row .col-md-6 {
   padding: 0;
}

.main_tour_inner_box:hover .content_inner_box {
   background: #0000008c;
   transition: 0.5s;
}

.main_tour_inner_box:hover .content_inner_box a i {
   margin-left: 20px;
   transition: 0.5s;
   box-shadow: 0px 0px 5px 1px #ffffff42;
}

.testi_heading {
   text-align: center;
   margin: 0;
   color: #212121;
   font-size: 48px;
   text-transform: capitalize;
   letter-spacing: 0.5px;
   font-weight: 700;
   line-height: 58px;
}

.testimonial-quote i {
   opacity: 0.4;
   font-size: 46px;
   margin-bottom: 14px;
   color: #6cb015;
}

.testimonial-carousel .owl-nav .owl-prev {
   display: none;
}

.testimonial-carousel .owl-nav .owl-next {
   display: none;
}

.video-two__action .popup-video {
   display: inline-block;
   font-size: 34px;
   color: #000000;
   text-align: center;
   position: relative;
   -webkit-transition: all 0.35s;
   transition: all 0.35s;
   -moz-transition: all 0.35s;
   -ms-transition: all 0.35s;
   width: 85px;
   height: 85px;
   line-height: 85px;
   border-radius: 50%;
   background: #ffffff;
}

.video-two__action .popup-video::before {
   position: absolute;
   content: '';
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
   border: 1px solid #fff;
   opacity: 0;
   border-radius: 50%;
   -webkit-animation: pulse-border-2 2s linear infinite;
   animation: pulse-border-2 2s linear infinite;
}

.video-two__action .popup-video::after {
   position: absolute;
   content: '';
   left: 0;
   top: 0;
   height: 100%;
   width: 100%;
   border: 1px solid #fff;
   opacity: 0;
   border-radius: 50%;
   -webkit-animation: pulse-border 1.5s linear infinite;
   animation: pulse-border 1.5s linear infinite;
}


@keyframes pulse-border {
   0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
   }

   100% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
      opacity: 0;
   }
}


@keyframes pulse-border-2 {
   0% {
      -webkit-transform: scale(1);
      transform: scale(1);
      opacity: 1;
   }

   100% {
      -webkit-transform: scale(1.5);
      transform: scale(1.5);
      opacity: 0;
   }
}


section.ready_main_area {
   height: 60vh;
   display: flex;
   align-items: center;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.ready_cnt h2 {
   margin: 0;
   padding: 20px;
   color: #ffffff;
   font-size: 48px;
   text-transform: capitalize;
   letter-spacing: 0.5px;
   font-weight: 700;
   line-height: 68px;
}

.vd_btm {
   text-align: end;
   margin-right: 10%;
}

.join_main_btn .form-group {
   width: 24%;
   display: inline-flex;
   align-items: center;
   background: #fff;
   height: 55px;
   padding: 13px;
   border-radius: 5px;
   box-shadow: -4px 0px 3px 0px #69ab14;
}

.join_main_btn .form-group input {
   border: none;
   outline: none;
}

.join_main_btn form {
   display: flex;
   justify-content: space-between;
}

.form-group-btn-join {
   width: 24%;
   display: inline-flex;
   justify-content: center;
   align-items: center;
}

section.join_main {
   padding: 60px 28px;
   background: #000000;
}

.form-group-btn-join {
   display: inline-block;
   width: 24%;
   background: #6cb015;
   color: #ffffff;
   padding: 0;
   text-align: center;
   border-radius: 5px;
   height: 55px;
   line-height: 55px;
}

.form-group-btn-join a {
   background: #6cb015;
   color: #fff;
   font-size: 15px;
   box-shadow: 0px 0px 3px #00000000;
   letter-spacing: 0.5px;
   font-weight: 500;
   text-transform: uppercase;
   transition: 0.5s;
   border: 0px solid #6cb015;
}

.form-group-btn-join a i {
   margin-left: 10px;
}

a.back-to-top i {
   background: #000000;
   padding: 16px 17px;
   border-radius: 50%;
   color: #fff;
   font-size: 16px;
}


section.banner_inner_pg {
    height: 70vh;
    border-radius: 15px;
    margin: 0 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.inner_main_banner_main h2 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 52px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: 68px;
}
section.breadcrups_in {
    padding: 8px 0;
    background: #f2ffe2;
    text-align: center;
    display: flex;
    justify-content: center;
}
ol.breadcrumb {
    margin-bottom: 0;
}
li.breadcrumb-item a {
    color: #212121;
    font-size: 16px;
    font-weight: 500;
}
.breadcrumb-item.active {
    color: #69ab14;
}
section.map_abt_amain_in {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.abt_main_inner1 img {
    border-radius: 10px;
}

.abt_main_inner h2 {
    margin: 0 0 15px 0;
    color: #212121;
    font-size: 48px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: normal;
    border-left: 5px solid #6cae15;
    padding-left: 14px;
}
.abt_main_inner p {
    font-size: 16px;
    color: #4d4d4d;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 25px;
    margin: 0 0 15px 0;
}

.abt_main_inner {
    padding-left: 30px;
}

section.ireland_plan {
    text-align: center;
    padding: 60px 0 0;
}
.plan_inner_detail h2 {
    margin: 0;
    margin: 0 0 15px 0;
    color: #6caf15;
    font-size: 48px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 700;
    line-height: normal;
}

.plan_inner_detail a {
    background: #6cb01500;
    color: #6caf15;
    padding: 15px 30px;
    border-radius: 6px;
    font-size: 15px;
    box-shadow: 0px 0px 3px #00000000;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    transition: 0.5s;
    border: 1px solid #6caf15;
    display: inline-block;
    margin-top: 0;
}

.plan_inner_detail a:hover {
    background: #6caf15;
    color: #fff;
    transition: 0.5s;
    border: 1px solid #6caf15;
}
.join_main_btn_contact form {
    background: #b8b8b800;
    padding: 20px;
}
.join_main_btn_contact form .form-group {
    display: flex;
    align-items: center;
}
.join_main_btn_contact form .form-group input {
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 400;
}







































/*responsive*/

@media (max-width: 767px) {
   .navbar-brand {
      font-size: 30px;
   }

   .header-topbar {
      display: none;
   }

   .nav-link {
      padding: .5rem 1rem;
      font-size: 16px;
      margin: 0 0px;
   }

   a.btn_get {
      padding: 13px 26px;
      font-size: 14px;
      display: inline-block;
      margin-top: 12px;
   }

   .banner_inner h1 {
      font-size: 40px;
      line-height: 56px;
   }

   .banner_inner h4 {
      font-size: 14px;
   }

   .btn_banner a {
      padding: 13px 26px;
      font-size: 14px;
   }

   .header-carousel .header-carousel-item,
   .header-carousel .header-carousel-item img {
      height: 600px;
   }

   .form_booking_main {
      bottom: 47%;
   }

   .form_booking_main .form-group {
      width: 49%;
      padding: 6px 10px;
      margin-bottom: 8px;
      box-shadow: 0px 0px 3px #00000040;
   }

   .form-group-btn {
      width: 49%;
   }

   .form-group-btn a {
      font-size: 14px;
   }

   .img_text_left1 {
      display: none;
   }

   .img_text_left {
      display: none;
   }

   .abt_main_img {
      padding-left: 0;
   }

   .abt_main_in h2 {
      font-size: 30px;
      line-height: 40px;
      margin-top: 15px;
   }

   .abt_main_in {
      padding-left: 0;
   }

   .abt_main_in p {
      font-size: 15px;
      line-height: 24px;
   }

   .btn_abt_main {
      max-width: 100%;
   }

   .btn_abts i {
      width: 30px;
      height: 30px;
      line-height: 30px;
      margin-right: 9px;
   }

   .phone_detail span {
      font-size: 14px;
   }

   .btn_abt_discover a {
      padding: 13px 26px;
      font-size: 14px;
   }

   section.map_abt_amain {
      padding: 00px 0 60px 0px;
   }

   .content_inner_heading h2 {
      margin: 0 0 25px 0;
      font-size: 30px;
      line-height: normal;
   }

   span.btn_in1 i {
      width: 30px;
      height: 30px;
      font-size: 20px;
      line-height: 30px;
   }

   span.btn_in i {
      width: 30px;
      height: 30px;
      font-size: 20px;
      line-height: 30px;
   }

   .img_slide img {
      height: 215px;
   }

   .content_inner {
      margin: -15px 9px 0 9px;
      padding: 14px;
   }

   section.product_main_in {
      padding: 0px 0 50px 0;
   }

   .main_tour_inner_box {
      margin-bottom: 10px;
   }

   .testimonial {
      padding: 50px 0 60px 0;
   }

   .testi_heading {
      font-size: 30px;
      line-height: normal;
   }

   .testimonial-item p {
      font-size: 15px;
      line-height: 24px;
   }

   .testimonial .testimonial-carousel .testimonial-item {
      padding: 0 15px 15px 15px;
   }

   .video-two__action .popup-video {
      font-size: 30px;
      width: 57px;
      height: 57px;
      line-height: 57px;
      background: #ffffffe3;
   }

   section.join_main {
      padding: 50px 0;
   }

   .join_main_btn .form-group {
      width: 100%;
      margin-bottom: 10px;
   }

   .join_main_btn form {
      flex-wrap: wrap;
   }

   .ready_cnt h2 {
      margin: 0;
      padding: 0;
      font-size: 30px;
      line-height: normal;
      margin-bottom: 25px;
   }

   .vd_btm {
      text-align: left;
      margin-right: 0;
      margin-left: 5%;
   }

   .form-group-btn-join {
      width: 100%;
   }

   .form-group-btn-join a {
      font-size: 14px;
   }

   .pd_1 {
      padding: 40px 15px;
   }

   .footer-item h3 {
      font-size: 35px;
   }

   .icon_detail {
      margin: 7px 0 0 0;
   }

   .footer .footer-item {
      margin-bottom: 20px;
   }

   .pd_1 {
      padding: 40px 15px 0;
   }
   .inner_main_banner_main h2 {
        line-height: normal;
}
section.map_abt_amain_in {
    padding: 40px 0;
}
.abt_main_inner h2 {
    margin: 20px 0 15px 0;
    font-size: 30px;
    border-left: 0px solid #6cae15;
    padding-left: 0;
}
.abt_main_inner {
    padding-left: 0;
}
.abt_main_inner p {
    font-size: 14px;
    margin: 0 0 10px 0;
}
.phone_detail p {
    margin: 0;
}
.plan_inner_detail a {
    padding: 13px 26px;
    font-size: 14px;
}
.plan_inner_detail h2 {
    margin: 0 0 15px 0;
    font-size: 30px;
}
section.ireland_plan {
    padding: 40px 0 0;
}
}



