 /*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
 body {
   font-family: "Open Sans", sans-serif;
   color: #444444;
 }
 a {
   color: #144fff;
   text-decoration: none;
 }
 a:hover {
   color: #206bfb;
   text-decoration: none;
 }
 h1, h2, h3, h4, h5, h6 {
   font-family: "Raleway", sans-serif;
 }
 /*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
 .back-to-top {
   position: fixed;
   visibility: hidden;
   opacity: 0;
   right: 15px;
   bottom: 70px;
   z-index: 996;
   background: #ff6a40;
   width: 40px;
   height: 40px;
   border-radius: 4px;
   transition: all 0.4s;
 }
 .back-to-top i {
   font-size: 24px;
   color: #fff;
   line-height: 0;
 }
 .back-to-top:hover {
   background: #ff6a40;
   color: #fff;
 }
 .back-to-top.active {
   visibility: visible;
   opacity: 1;
 }
 /*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
 #header {
   background: #fff;
   /*	box-shadow: 0px 2px 15px rgb(1 151 214);*/
   box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
   transition: all 0.5s;
   z-index: 997;
   padding: 12px 0;
 }
 #header a.google {
   position: absolute;
   top: -10px;
   left: 0;
 }
 #header img.googlrev {
   width: 170px;
 }
 #header.header-scrolled {
   /*  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
   /*	box-shadow: 0px 2px 15px rgb(1 151 214);*/
   padding: 10px 0;
 }
 #header .logo {
   font-size: 32px;
   margin: 0;
   padding: 0;
   line-height: 1;
   font-weight: 700;
   letter-spacing: 0.5px;
 }
 #header .logo a {
   color: #5f687b;
 }
 #header .logo img {
   max-height: 55px;
 }
 @media (max-width: 991px) {
   #header {
     padding: 12px 0;
   }
 }
 /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
 /**
* Desktop Navigation 
*/
 .navbar {
   padding: 0;
 }
 .navbar ul {
   margin: 0;
   padding: 0;
   display: flex;
   list-style: none;
   align-items: center;
 }
 .navbar li {
   position: relative;
 }
 .navbar a, .navbar a:focus {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 0 10px 30px;
   font-family: "Raleway", sans-serif;
   font-size: 16px;
   font-weight: 600;
   color: #6a7489;
   white-space: nowrap;
   transition: 0.3s;
 }
 .navbar a i, .navbar a:focus i {
   font-size: 12px;
   line-height: 0;
   margin-left: 5px;
 }
 .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
   color: #0197d6;
 }
 .navbar .getstarted, .navbar .getstarted:focus {
   padding: 10px 25px;
   margin-left: 30px;
   border-radius: 4px;
   line-height: 1;
   color: #fff;
   font-size: 14px;
   font-weight: 500;
   border: 1px solid #0197d6;
   background: #0197d6;
 }
 .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
   background: #206bfb;
   color: #fff;
   border-color: #206bfb;
 }
 .navbar .dropdown ul {
   display: block;
   position: absolute;
   left: 14px;
   top: calc(100% + 30px);
   margin: 0;
   padding: 10px 0;
   z-index: 99;
   opacity: 0;
   visibility: hidden;
   background: #fff;
   box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
   transition: 0.3s;
   border-radius: 4px;
 }
 .navbar .dropdown ul li {
   min-width: 200px;
 }
 .navbar .dropdown ul a {
   padding: 10px 20px;
   font-size: 15px;
   text-transform: none;
   font-weight: 600;
 }
 .navbar .dropdown ul a i {
   font-size: 12px;
 }
 .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
   color: #0197d6;
 }
 .navbar .dropdown:hover > ul {
   opacity: 1;
   top: 100%;
   visibility: visible;
 }
 .navbar .dropdown .dropdown ul {
   top: 0;
   left: calc(100% - 30px);
   visibility: hidden;
 }
 .navbar .dropdown .dropdown:hover > ul {
   opacity: 1;
   top: 0;
   left: 100%;
   visibility: visible;
 }
 @media (max-width: 1366px) {
   .navbar .dropdown .dropdown ul {
     left: -90%;
   }
   .navbar .dropdown .dropdown:hover > ul {
     left: -100%;
   }
 }
 /**
* Mobile Navigation 
*/
 .mobile-nav-toggle {
   color: #5f687b;
   font-size: 28px;
   cursor: pointer;
   display: none;
   line-height: 0;
   transition: 0.5s;
 }
 .mobile-nav-toggle.bi-x {
   color: #fff;
 }
 @media (max-width: 991px) {
   .mobile-nav-toggle {
     display: block;
   }
   .navbar ul {
     display: none;
   }
 }
 .navbar-mobile {
   position: fixed;
   overflow: hidden;
   top: 0;
   right: 0;
   left: 0;
   bottom: 0;
   background: rgba(73, 80, 94, 0.9);
   transition: 0.3s;
   z-index: 999;
 }
 .navbar-mobile .mobile-nav-toggle {
   position: absolute;
   top: 15px;
   right: 15px;
 }
 .navbar-mobile ul {
   display: block;
   position: absolute;
   top: 55px;
   right: 15px;
   bottom: 15px;
   left: 15px;
   padding: 10px 0;
   border-radius: 10px;
   background-color: #fff;
   overflow-y: auto;
   transition: 0.3s;
 }
 .navbar-mobile a, .navbar-mobile a:focus {
   padding: 10px 20px;
   font-size: 15px;
   color: #5f687b;
 }
 .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
   color: #0197d6;
 }
 .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
   margin: 15px;
   padding: 10px 15px;
 }
 .navbar-mobile .dropdown ul {
   position: static;
   display: none;
   margin: 10px 20px;
   padding: 10px 0;
   z-index: 99;
   opacity: 1;
   visibility: visible;
   background: #fff;
   box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
 }
 .navbar-mobile .dropdown ul li {
   min-width: 200px;
 }
 .navbar-mobile .dropdown ul a {
   padding: 10px 20px;
 }
 .navbar-mobile .dropdown ul a i {
   font-size: 12px;
 }
 .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
   color: #0197d6;
 }
 .navbar-mobile .dropdown > .dropdown-active {
   display: block;
 }
 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
 #hero {
   width: 100%;
   height: 80vh;
   background: #fff;
   padding-top: 82px;
 }
 #hero h1 {
   margin: 0;
   font-size: 48px;
   font-weight: 700;
   line-height: 56px;
   color: #3e4450;
 }
 #hero h2 {
   color: #858ea1;
   margin: 10px 0 30px 0;
   font-size: 24px;
 }
 #hero .btn-get-started {
   font-family: "Raleway", sans-serif;
   font-weight: 500;
   font-size: 16px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 8px 30px 10px 30px;
   border-radius: 4px;
   transition: 0.5s;
   color: #fff;
   background: #0197d6;
   box-shadow: 0 8px 28px #b8e9fb;
   /*  box-shadow: 0 8px 28px rgba(22, 223, 126, 0.45);*/
 }
 #hero .btn-get-started:hover {
   background: #206bfb;
   box-shadow: 0 8px 28px rgba(32, 107, 251, 0.45);
 }
 #hero .btn-watch-video {
   font-size: 16px;
   /*  display: inline-block;*/
   transition: 0.5s;
   margin-left: 25px;
   color: #5f687b;
   display: inline-flex;
   align-items: center;
   justify-content: center;
 }
 #hero .btn-watch-video i {
   color: #666;
   font-size: 32px;
   line-height: 0;
   margin-right: 8px;
 }
 #hero .btn-watch-video:hover i {
   color: #0197d6;
 }
 #hero .animated {
   animation: up-down 2s ease-in-out infinite alternate-reverse both;
 }
 .hero-img::before {
   content: '';
   position: absolute;
   width: 46px;
   height: 73px;
   background: #206efa;
   z-index: 11;
   right: 0;
   margin: 181px 69px 0 0;
 }
 @media (max-width: 991px) {
   #hero {
     height: 100vh;
   }
   #hero .animated {
     /*    animation: none;*/
   }
   #hero .hero-img {
     text-align: center;
   }
   #hero .hero-img img {
     width: 50%;
   }
 }
 @media (max-width: 768px) {
   #hero {
     height: auto;
   }
   #hero h1 {
     font-size: 28px;
     line-height: 36px;
   }
   #hero h2 {
     font-size: 18px;
     line-height: 24px;
     margin-bottom: 30px;
   }
   #hero .hero-img img {
     width: 70%;
   }
 }
 @media (max-width: 575px) {
   #hero .hero-img img {
     width: 80%;
   }
 }
 @keyframes up-down {
   0% {
     transform: translateY(10px);
   }
   100% {
     transform: translateY(-10px);
   }
 }
 /*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
 section {
   padding: 60px 0;
   overflow: hidden;
 }
 .section-bg {
   background-color: #f9f9fa;
 }
 .section-title {
   text-align: center;
   padding: 30px 0;
   position: relative;
 }
 .section-title h2 {
   font-size: 32px;
   font-weight: 700;
   text-transform: uppercase;
   margin-bottom: 20px;
   padding-bottom: 0;
   color: #5f687b;
   position: relative;
   z-index: 2;
 }
 .section-title span {
   position: absolute;
   top: 30px;
   /*  color: #f0f1f3;*/
   color: #cff1ff;
   left: 0;
   right: 0;
   z-index: 1;
   font-weight: 700;
   font-size: 52px;
   text-transform: uppercase;
   line-height: 0;
 }
 .section-title p {
   margin-bottom: 0;
   position: relative;
   z-index: 2;
 }
 @media (max-width: 575px) {
   .section-title h2 {
     font-size: 28px;
     margin-bottom: 15px;
   }
   .section-title span {
     font-size: 38px;
   }
 }
 /*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
 .featured-services {
   padding: 60px 0;
   background: url(../../images/feedback.webp) center center;
   background-size: cover;
 }
 .featured-services .icon-box {
   padding: 20px;
   color: #5f687b;
   background: #f9f9fa;
   border-radius: 4px;
   border: 1px solid #f9f9fa;
   transition: 0.3s;
   height: 100%;
 }
 .featured-services h2 {
   color: #cff1ff;
 }
 .featured-services .section-title span {
   color: #ebf2ff42;
 }
 .featured-services .icon {
   margin: 0 0 15px 0;
 }
 .featured-services .icon i {
   color: #0197d6;
   font-size: 36px;
 }
 .featured-services .title {
   font-weight: 600;
   margin-bottom: 15px;
   font-size: 18px;
 }
 .featured-services .title a {
   color: #5f687b;
   transition: 0.3s;
 }
 .featured-services .icon-box:hover {
   border-color: #eaecef;
 }
 .featured-services .icon-box:hover .title a {
   color: #0197d6;
 }
 .featured-services .description {
   line-height: 24px;
   font-size: 14px;
 }
 /*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
 .about {
   background: #fbfbfb;
 }
 .about .content h3 {
   font-weight: 700;
   font-size: 32px;
   color: #5f687b;
 }
 .about .animated {
   animation: up-down 2s ease-in-out infinite alternate-reverse both;
 }
 .about .content ul {
   list-style: none;
   padding: 0;
 }
 .about .content ul li {
   padding-bottom: 10px;
 }
 .about .content ul i {
   font-size: 20px;
   padding-right: 4px;
   color: #0197d6;
 }
 .about .content p:last-child {
   margin-bottom: 0;
 }
 /*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
 .counts {
   /*   padding-top: 0;*/
   background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../../images/counter.webp") center center;
   /*    background-size: auto, auto;*/
   background-position: 100% 60%;
   background-size: cover;
   padding: 100px 60px;
 }
 .counts .counters span {
   font-size: 48px;
   display: block;
   color: #0197d6;
   font-weight: 700;
 }
 .counts .counters p {
   padding: 0;
   margin: 0 0 20px 0;
   font-family: "Raleway", sans-serif;
   font-size: 14px;
   font-weight: 600;
   color: #fff;
 }
 .purecounter::after {
   content: "K";
 }
 .purecounter1::after {
   content: "" !important;
 }
 /*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
 .services {
   position: relative;
 }
 .services .imgperson {
   position: absolute;
   bottom: 0;
   /*   right: -129px;*/
   left: 0;
   z-index: 11;
   width: 400px;
 }
 .services .icon-box {
   text-align: center;
   border: 1px solid #fff;
   padding: 80px 20px;
   transition: all ease-in-out 0.3s;
   background: #fff;
 }
 .services .icon-box .icon {
   margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
   transition: ease-in-out 0.3s;
 }
 .services .icon-box .icon i {
   color: #0197d6;
   font-size: 36px;
   transition: 0.3s;
 }
 .services .icon-box h4 {
   font-weight: 700;
   margin-bottom: 15px;
   font-size: 24px;
 }
 .services .icon-box h4 a {
   color: #5f687b;
   transition: ease-in-out 0.3s;
 }
 .services .icon-box p {
   line-height: 24px;
   font-size: 14px;
   margin-bottom: 0;
 }
 .services .icon-box:hover {
   border-color: #eaecef;
 }
 .services .icon-box:hover h4 a {
   color: #0197d6;
 }
 .services .box {
   overflow: hidden;
   position: relative;
 }
 .services .overlay {
   width: 100%;
   height: 100%;
   position: absolute;
   left: 0;
   top: 50;
   right: 0;
   bottom: 0;
 }
 /* SLIDE UP */
 .services .slide-up .overlay {
   background-color: #0197d6;
   line-height: 1.3;
   color: #fff;
   transform: translateY(100%);
   -webkit-transition: transform 0.5s ease-out;
   -o-transition: transform 0.5s ease-out;
   transition: transform 0.5s ease-out;
 }
 .services .slide-up .box:hover .overlay {
   transform: translateY(80%);
 }
 .services a.cta-btn {
   text-transform: uppercase;
   font-weight: 500;
   font-size: 16px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 8px 28px;
   border-radius: 4px;
   transition: 0.5s;
   margin-top: 15px;
   border: 2px solid #fff;
   color: #fff;
 }
 .services a.cta-btn:hover {
   background: #097cd1 !important;
   color: #fff;
 }
 /*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
 .testimonials {
   background: #e9f6ff;
   position: relative;
 }
 .testimonials .testimonials-carousel, .testimonials .testimonials-slider {
   overflow: hidden;
 }
 .testimonials .testimonial-item {
   box-sizing: content-box;
   /*min-height: 320px;*/
   padding: 40px 0px;
 }
 .testimonials img.googlrev {
   width: 270px;
   position: absolute;
   top: -18px;
   right: 0;
 }
 .testimonials .testimonial-item .testimonial-img {
   width: 90px;
   border-radius: 50%;
   margin: -40px 0 0 40px;
   position: relative;
   z-index: 2;
   border: 6px solid #fff;
 }
 .testimonials .testimonial-item h3 {
   font-size: 18px;
   font-weight: bold;
   margin: 10px 0 5px 45px;
   color: #111;
 }
 .testimonials .testimonial-item h4 {
   font-size: 14px;
   color: #999;
   margin: 0 0 0 45px;
 }
 .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
   color: #e4e6ea;
   font-size: 26px;
 }
 .testimonials .testimonial-item .quote-icon-left {
   display: inline-block;
   left: -5px;
   position: relative;
 }
 .testimonials .testimonial-item .quote-icon-right {
   display: inline-block;
   right: -5px;
   position: relative;
   top: 10px;
 }
 .testimonials .testimonial-item p {
   font-style: italic;
   margin: 0 15px 0 15px;
   padding: 20px 20px 60px 20px;
   background: white;
   position: relative;
   border-radius: 6px;
   position: relative;
   z-index: 1;
 }
 .testimonials .swiper-pagination {
   margin-top: 20px;
   position: relative;
 }
 .testimonials .swiper-pagination .swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   background-color: #fff;
   opacity: 1;
   border: 1px solid #0197d6;
 }
 .testimonials .swiper-pagination .swiper-pagination-bullet-active {
   background-color: #0197d6;
 }
 /*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
 .cta {
   /*   background: #0197d6;*/
   /*   background-size: cover;*/
   padding: 60px 0;
   background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url("../../images/bg-book-now.webp") center center;
   /*    background-size: auto, auto;*/
   background-position: 100% 60%;
   background-size: cover;
   /*  padding: 100px 60px;*/
   /*  border-radius: 15px;*/
   overflow: hidden;
 }
 .cta h3 {
   color: #fff;
   font-size: 28px;
   font-weight: 700;
 }
 .cta p {
   color: #fff;
 }
 .cta .cta-btn {
   font-family: "Raleway", sans-serif;
   text-transform: uppercase;
   font-weight: 500;
   font-size: 16px;
   letter-spacing: 1px;
   display: inline-block;
   padding: 8px 28px;
   border-radius: 4px;
   transition: 0.5s;
   margin-top: 10px;
   border: 2px solid #fff;
   color: #fff;
 }
 .cta .cta-btn:hover {
   background: #206bfb;
   border-color: #206bfb;
 }
 /*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
 .contact .info {
   border-top: 3px solid #0197d6;
   border-bottom: 3px solid #0197d6;
   padding: 30px;
   width: 100%;
   background-color: #f9f9fa;
 }
 .contact .info i {
   font-size: 20px;
   color: #0197d6;
   float: left;
   width: 44px;
   height: 44px;
   background: #fff;
   display: flex;
   justify-content: center;
   align-items: center;
   border-radius: 50px;
   transition: all 0.3s ease-in-out;
 }
 .contact .info h4 {
   padding: 0 0 0 60px;
   font-size: 22px;
   font-weight: 600;
   margin-bottom: 5px;
   color: #5f687b;
 }
 .contact .info h4 span {
   background: #0197d6;
   color: #fff;
   border-radius: 20px;
   padding: 5px 15px;
   font-size: .8rem;
 }
 .contact .info p {
   padding: 0 0 10px 60px;
   margin-bottom: 20px;
   font-size: 14px;
   color: #949cac;
 }
 .contact .info .social-links {
   padding-left: 60px;
 }
 .contact .info .social-links a {
   font-size: 18px;
   display: inline-block;
   background: #333;
   color: #fff;
   line-height: 1;
   padding: 8px 0;
   border-radius: 50%;
   text-align: center;
   width: 36px;
   height: 36px;
   transition: 0.3s;
   margin-right: 10px;
 }
 .contact .info .social-links a:hover {
   background: #0197d6;
   color: #fff;
 }
 .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
   background: #0197d6;
   color: #fff;
 }
 /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
 .footer {
   font-size: 14px;
   background-color: #0769a7;
   padding: 0px 0;
   color: white;
 }
 #footer .footer-top {
   padding: 50px 0 30px 0;
   background-color: #0197d6;
 }
 .footer .footer-info .logo {
   line-height: 0;
   margin-bottom: 25px;
 }
 .footer .footer-info .logo img {
   /*  max-height: 40px;*/
   /*  margin-right: 6px;*/
   display: inline-block;
   border: dotted 1px #007ec7;
   background-color: #fff;
   padding: 2px;
   border-radius: 5px;
   margin-bottom: 15px;
   margin-top: 15px;
   max-width: 55px;
   width: 100%;
   height: auto;
 }
 .footer .footer-info .logo span {
   font-size: 30px;
   font-weight: 700;
   letter-spacing: 1px;
   color: #fff;
 }
 .footer .footer-info p {
   font-size: 14px;
   text-align: center;
   line-height: 1.7;
 }
 .footer .footer-info p a {
   text-decoration: none;
   color: #fff;
 }
 .footer .footer-info p a:hover {
   text-decoration: underline;
 }
 .footer .social-links a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.2);
   font-size: 16px;
   color: rgba(255, 255, 255, 0.7);
   margin-right: 10px;
   transition: 0.3s;
 }
 .footer .social-links a:hover {
   color: #fff;
   border-color: #fff;
 }
 .footer h4 {
   font-size: 16px;
   font-weight: bold;
   position: relative;
   padding-bottom: 12px;
 }
 .footer .footer-links {
   margin-bottom: 10px;
 }
 .footer .footer-links ul {
   margin: 0 auto;
   padding: 0px 0px 25px 0;
   position: relative;
   list-style-type: none;
   display: flex;
   justify-content: center;
 }
 .footer .footer-links ul i {
   padding-right: 2px;
   color: rgba(0, 131, 116, 0.8);
   font-size: 12px;
   line-height: 0;
 }
 .footer .footer-links ul li {
   font-size: 14px;
   line-height: 24px;
   margin: 0;
   color: #fff;
   text-align: center;
   padding: 5px 15px;
 }
 .footer .footer-links ul li span {
   border: dotted 1px #fff;
   margin-left: 28px;
 }
 .footer .footer-links ul a {
   color: rgba(255, 255, 255, 0.7);
   transition: 0.3s;
   display: inline-block;
   line-height: 1;
 }
 .footer .footer-links ul a:hover {
   color: #fff;
   text-decoration: underline;
 }
 .footer .footer-contact p {
   line-height: 26px;
 }
 .footer .copyright {
   text-align: center;
 }
 .page-header {
   /*    background: linear-gradient(rgba(24, 29, 56, .4), rgba(24, 29, 56, .4)), url(../img/carousel-1.webp);*/
   background-position: center center !important;
   background-repeat: no-repeat !important;
   background-size: cover !important;
   min-height: 400px;
   height: 100%;
   filter: grayscale(50%);
 }
 .page-header h1 {
   position: relative;
   padding: 2px 10px;
   margin: 150px auto 0px auto;
   font-size: 2.5rem;
   color: #fff;
   background: #21a9f7;
   width: fit-content;
   border-radius: 10px;
 }
 .contact-banner {
   background: linear-gradient(rgba(24, 29, 56, .4), rgba(24, 29, 56, .4)), url(../images/contact-banner.webp);
 }
 .privacy-policy-banner {
   background: linear-gradient(rgba(24, 29, 56, .4), rgba(24, 29, 56, .4)), url("../../images/privacy-policy.webp") no-repeat;
 }
 .cancellation-policy-banner {
   background: linear-gradient(rgba(24, 29, 56, .4), rgba(24, 29, 56, .4)), url("../../images/cancellation-policy.webp") no-repeat;
 }
 .refund-policy-banner {
   background: linear-gradient(rgba(24, 29, 56, .4), rgba(24, 29, 56, .4)), url("../../images/refund-policy.webp") no-repeat;
 }
 .term-condition-banner {
   background: linear-gradient(rgba(24, 29, 56, .4), rgba(24, 29, 56, .4)), url("../../images/term-condition.webp") no-repeat;
 }
 .shipping-policy-banner {
   background: linear-gradient(rgba(24, 29, 56, .4), rgba(24, 29, 56, .4)), url("../../images/shipping-policy.webp") no-repeat;
 }
 .book-now-banner {
   background: linear-gradient(rgba(24, 29, 56, .4), rgba(24, 29, 56, .4)), url("../../images/book-now.webp") no-repeat;
 }
 .innerpage {
   position: relative;
   padding: 40px 10px;
 }
 .innerpage .content p {
   font-size: .95rem;
   line-height: 1.7;
   padding: 0px;
 }
 .innerpage .content h2 {
   font-size: 32px;
   font-weight: bold;
   text-transform: uppercase;
   margin-bottom: 20px;
   padding-bottom: 10px;
   position: relative;
   font-family: Poppins, sans-serif;
 }
 .innerpage .content h2::after {
   content: "";
   position: absolute;
   display: block;
   width: 50px;
   height: 3px;
   background: #007ec7;
   bottom: 0;
   left: 0;
 }
 .innerpage .content ul {
   list-style: none;
   padding: 0;
 }
 .innerpage .content ul li {
   padding: 10px 0 0 28px;
   position: relative;
   font-size: .95rem;
   line-height: 1.7;
   list-style-type: none !important;
 }
 .innerpage .content ul li::before {
   content: '\F26F';
   position: absolute;
   left: 2px;
   top: 11px;
   color: #007ec7;
   font-size: 1rem;
   display: inline-block;
   font-family: bootstrap-icons !important;
 }
 .innerpage .content a:hover {
   text-decoration: underline;
 }
 #drawer .contact-btn {
   position: relative;
   right: 82px;
   text-transform: uppercase;
   top: 160px;
   font-weight: 600;
   padding: 5px 20px;
   background-color: #ff6a40;
   color: #fff;
   font-size: 1.2rem;
   border: none;
   border-radius: 8px 8px 0 0px;
   cursor: pointer;
   z-index: 999;
   rotate: 270deg;
 }
 .drawer {
   position: fixed;
   top: 20%;
   right: -300px; /* initially off-screen */
   width: 300px;
   /*  height: 40%;*/
   /*  background-color: #fff;*/
   transition: right 0.3s ease;
   z-index: 998;
 }
 #drawer .drawer-content {
   padding: 20px;
   background: #fff2e9;
   position: relative;
   border-left: solid 3px #ff7510;
   border-top: solid 1px #f2f2f2;
   border-bottom: solid 1px #f2f2f2;
 }
 #drawer .drawer-content h2 {
   font-size: 1rem;
   text-transform: uppercase;
   line-height: 1.5;
   font-family: 'Roboto';
   font-weight: 400;
   color: #222;
   text-align: left;
   margin: 0px;
   padding: 0px 0px 0 0;
 }
 #drawer .drawer-content p {
   font-size: .9rem;
   line-height: 1.5;
   font-family: 'Roboto';
   font-weight: 400;
   color: #666;
   text-align: left;
   margin: 0px;
   padding: 5px 0px 0 0;
 }
 #drawer .whtchat {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 2;
   font-weight: normal;
   text-align: center;
   white-space: nowrap;
   vertical-align: middle;
   font-family: 'Roboto';
   padding: 10px 30px 10px 30px;
   font-size: 1rem;
   line-height: 1.1;
   outline: none;
   text-decoration: none;
   color: #fff;
   background: #25d366;
   border: 1px solid #25d366;
   transition: all 0.3s ease 0s;
   margin: 10px 0 0 0px;
   /*  border-radius: 20px;*/
   bottom: 0px;
   position: inherit;
   text-transform: inherit;
   z-index: 0;
   border-radius: 10px;
   width: auto;
 }
 #drawer .whtchat:hover {
   background: #686868;
   border: 1px solid #686868;
   color: #fff;
 }
 .drawer a.applybtnew {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 2;
   font-weight: normal;
   text-align: center;
   white-space: nowrap;
   vertical-align: middle;
   font-family: 'Roboto';
   padding: 10px 30px 10px 30px;
   font-size: 1rem;
   line-height: 1.1;
   outline: none;
   text-decoration: none;
   color: #fff;
   background: #0672cb;
   border: 1px solid #0672cb;
   transition: all 0.3s ease 0s;
   margin: 15px 0 0 0px;
   /*  border-radius: 20px;*/
   bottom: 0px;
   position: inherit;
   text-transform: inherit;
   z-index: 0;
   border-radius: 10px;
   width: auto;
 }
 .drawer a.applybtnew:hover {
   background: #686868;
   border: 1px solid #686868;
   color: #fff;
   /*  border-radius: 20px;*/
 }
 #drawer .btn-close {
   position: absolute;
   top: 0px;
   right: 0px;
 }
 @keyframes pulse {
   0% {
     transform: scale(1);
   }
   50% {
     transform: scale(1.05);
   }
   100% {
     transform: scale(1);
   }
 }
 @keyframes swing {
   0% {
     transform: rotate(0deg);
   }
   25% {
     transform: rotate(10deg);
   }
   50% {
     transform: rotate(-10deg);
   }
   75% {
     transform: rotate(5deg);
   }
   100% {
     transform: rotate(0deg);
   }
 }
 .pulse {
   animation: pulse 1s infinite ease-in-out;
 }
 .swing {
   animation: swing 1s infinite ease-in-out;
   transform-origin: top center;
 }
 .floatbtn {
   position: fixed;
   width: 50px;
   height: 50px;
   bottom: 14px;
   right: 11px;
   background-color: #25d366;
   color: #FFF;
   border-radius: 50px;
   text-align: center;
   font-size: 25px;
   box-shadow: 2px 2px 3px #999;
   z-index: 99999;
 }
 .floatbtn:hover {
   color: #000;
 }
 @media (max-width: 1367px) {
   .hero-img::before {
     margin: 154px 61px 0 0;
   }
}
   @media (max-width: 768px) {
     .footer .footer-links ul {
       flex-direction: column;
     }
     .footer .footer-links ul li span {
       display: none;
     }
     .social-links {
       margin-top: 15px !important;
       position: relative;
     }
     .innerpage .content h2 {
       font-size: 24px;
     }
     .mobile-nav-show {
       border: solid 2px #f5f5f5;
     }
     .testimonials img.googlrev {
       width: 100px;
       position: absolute;
       top: -6px;
       left: 0;
       right: 0;
       margin: 0 auto;
     }
     #header img.googlrev {
       width: 100px;
     }
     .counts {
       padding: 60px 10px;
     }
     .hero-img::before {
       margin: 100px 124px 0 0;
       border-radius: 32%;
       width: 24px;
       height: 47px;
     }
     .imgperson {
       display: none;
     }
   }
   @media (max-width: 576px) {
     .hero-img::before {
       margin: 124px 111px 0 0;
       border-radius: 21%;
       width: 27px;
       height: 50px;
     }
   }
   @media (max-width: 426px) {
     .hero .btn-watch-video {
       padding: 0 10px;
     }
     .hero .btn-get-started {
       padding: 10px 10px;
     }
     .call-to-action .cta-btn {
       padding: 12px 25px;
     }
     .header .logo img {
       max-height: 50px;
     }
     #booknow .bokwrap .card h4 {
       padding: 10px 5px;
     }
     #header a.google {
       position: absolute;
       top: -5px;
       left: 20%;
     }
     #header img.googlrev {
       width: 80px;
     }
     .hero-img::before {
       margin: 90px 84px 0 0;
       border-radius: 21%;
       width: 19px;
       height: 40px;
     }
   }