/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}
a {
  color: #0084cc;
  text-decoration: none;
}
a:hover {
  color: #ff724a;
  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: 85px;
  z-index: 996;
  background: #0084cc;
  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;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0084cc;
  border-top-color: #ffe9e3;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgb(0 132 204);
  padding: 10px 0;
}
#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 50px;
}
/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 8px 12px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  /*
  color: #fff;
  background: #0084cc;
  border-color: #0084cc;
*/
  color: #0084cc;
  background: #fff;
  border-color: #fff;
}
.navbar > ul > li > .getstarted:before {
  visibility: hidden;
}
.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: 14px;
  text-transform: none;
  color: #15222b;
  font-weight: 400;
}
.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: #0084cc;
}
.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: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@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(4, 7, 9, 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: #15222b;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #0084cc;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 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: #0084cc;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}
#hero:before {
  content: "";
  background: rgba(13, 20, 26, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}
#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}
#hero .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  /*  display: inline-block;*/
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #0084cc;
  border: 2px solid #0084cc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#hero .btn-get-started:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}
#hero .btn-watch-video:hover i {
  color: #0084cc;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}
.section-bg {
  background-color: #f0f4f8;
}
.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c8eb0;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #0084cc;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #263d4d;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  /*  padding-bottom: 50px;*/
  padding: 10px 20px 30px 20px;
  border-radius: 25px;
}
.about .count-box {
  padding: 60px 0;
  width: 100%;
}
.about .img-wrapper {
  overflow: hidden;
}
.about .inner-img {
  transition: 0.3s;
}
.about .inner-img:hover {
  transform: scale(1.1);
}
.about .count-box i {
  display: block;
  font-size: 48px;
  color: #0084cc;
  float: left;
  line-height: 0;
}
.about .count-box span {
  font-size: 28px;
  line-height: 25px;
  display: block;
  font-weight: 700;
  color: #365870;
  margin-left: 60px;
}
.about .count-box p {
  padding: 5px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2e4b5e;
}
.about .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #2e4b5e;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}
.about .count-box a:hover {
  color: #477392;
}
.about .content {
  font-size: 15px;
}
.about .content h3 {
  font-weight: 700;
  font-size: 24px;
  color: #263d4d;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.about .content ul i {
  font-size: 18px;
  color: #0084cc;
  position: absolute;
  left: 0;
  top: 0px;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#0084cc 50%, rgba(255, 74, 23, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}
.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(255, 74, 23, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.about .play-btn:hover::after {
  border-left: 15px solid #0084cc;
  transform: scale(20);
}
.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# About Boxes
--------------------------------------------------------------*/
.about-boxes {
  background: url("../img/about-boxes-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 30px 0;
  position: relative;
}
.about-boxes::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}
.about-boxes .container, .about-boxes .container-fluid {
  position: relative;
  z-index: 10;
}
.about-boxes .card {
  border-radius: 3px;
  border: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
.about-boxes .card .img-wrapper {
  overflow: hidden;
}
.about-boxes .card .inner-img {
  transition: 0.3s;
}
.about-boxes .card .inner-img:hover {
  transform: scale(1.1);
}
.about-boxes .card .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #0084cc;
  border: 1px solid #0084cc;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
  margin: 25px auto 10px auto;
}
.about-boxes .card .btn-get-started:hover {
  border: 1px dotted #0084cc;
  color: #fff;
  background: #29acf3;
  /*  background: rgba(255, 255, 255, 0.1);*/
}
.about-boxes .card-icon {
  text-align: center;
  margin-top: -32px;
  z-index: 111;
}
.about-boxes .card-icon i {
  font-size: 32px;
  color: #fff;
  width: 64px;
  height: 64px;
  padding-top: 5px;
  text-align: center;
  background-color: #0084cc;
  border-radius: 4px;
  text-align: center;
  border: 2px solid #fff;
  transition: 0.3s;
  display: inline-block;
}
.about-boxes .card-body {
  padding-top: 12px;
}
.about-boxes .card-title {
  font-weight: 700;
  text-align: center;
}
.about-boxes .card-title a {
  color: #15222b;
}
.about-boxes .card-title a:hover {
  color: #0084cc;
}
.about-boxes .card-text {
  color: #5e5e5e;
  font-weight: 400;
  font-size: .95rem;
}
.about-boxes .card-text span {
  color: #111;
  font-weight: 600;
  padding: 10px 0px;
  display: block;
  text-align: center;
}
.about-boxes .card:hover .card-icon i {
  background: #fff;
  color: #0084cc;
  border: dotted 1px #0084cc;
}
@media (max-width: 1024px) {
  .about-boxes {
    background-attachment: scroll;
  }
}
/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: #f0f4f8;
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.clients img:hover {
  filter: none;
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}
/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}
.features .nav-link {
  border: 1px solid #b5ccdb;
  padding: 15px;
  transition: 0.3s;
  color: #15222b;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}
.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.features .nav-link:hover {
  color: #0084cc;
}
.features .nav-link.active {
  background: #0084cc;
  color: #fff;
  border-color: #0084cc;
}
@media (max-width: 768px) {
  .features .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .features .nav-link {
    padding: 15px;
  }
  .features .nav-link i {
    font-size: 24px;
  }
}
.features .tab-content {
  margin-top: 30px;
}
.features .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}
.features .tab-pane ul {
  list-style: none;
  padding: 0;
}
.features .tab-pane ul li {
  padding-bottom: 10px;
}
.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0084cc;
}
.features .tab-pane p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  transition: 1s all;
}
.services .btn-get-started {
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 35px 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #0084cc;
  border: 1px solid #0084cc;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 10px;
  margin: 25px auto 10px auto;
}
.services .btn-get-started:hover {
  border: 1px dotted #0084cc;
  color: #fff;
  background: #29acf3;
}
.services .icon-box:hover {
  transform: translateY(-10px);
  webkit-box-shadow: #007bff 0px 20px 10px -18px;
  box-shadow: #007bff 0px 20px 10px -18px;
  box-shadow: rgb(0 127 255 / 50%) 0px 20px 10px -18px;
}
.services .icon-box i {
  float: left;
  color: #0084cc;
  font-size: 40px;
  line-height: 0;
}
.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.services .icon-box h4 a {
  color: #365870;
  transition: 0.3s;
}
.services .icon-box .icon-box:hover h4 a {
  color: #0084cc;
}
.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
}
.services .icon-box:hover h4 a {
  color: #0084cc;
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.testimonials .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}
.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(13, 20, 26, 0.7);
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}
.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  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 auto 15px auto;
  color: #eee;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #a1bdd1;
  opacity: 0.5;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0084cc;
  opacity: 1;
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  position: relative;
  background: #d0f0ff;
  padding: 50px 0px;
}
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 10px 0 20px 0;
  background: #f6fcff;
  /*	border-radius: 20px;*/
}
.contact iframe {
  border: solid 10px #fff !important;
  /*  border-radius: 20px;*/
}
.contact .info-box i {
  font-size: 32px;
  color: #0084cc;
  border-radius: 50%;
  padding: 8px;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .info-box span {
  display: inline-block;
  background: #e84f13;
  border-radius: 10px;
  padding: 3px 15px;
  font-size: 1rem;
  color: #fff;
  vertical-align: super;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #121d24;
}
#footer .footer-top {
  padding: 50px 0 30px 0;
  background: #15222b;
  color: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 10px;
}
#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .footer-contact .imglogo {
  display: inline-block;
  border: dotted 1px #007ec7;
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  margin-top: 15px;
  max-width: 60px;
  height: auto;
}
#footer .footer-top .footer-contact p a {
  text-decoration: none;
  color: #fff;
}
#footer .footer-top .footer-contact p a:hover {
  text-decoration: underline;
  color: #ffd863;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-contact ul {
  margin: 0 auto;
  padding: 0px 0px 25px 0;
  position: relative;
  list-style-type: none;
  display: flex;
  justify-content: center;
}
#footer .footer-top .footer-contact ul li {
  font-size: 14px;
  line-height: 24px;
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: #555;
  border-left: solid 1px #ccc;
  text-align: center;
  padding: 5px 15px;
}
#footer .footer-top .footer-contact ul li:first-child {
  border-left: none;
}
#footer .footer-top .footer-contact ul li a {
  text-decoration: none;
  color: #fff;
}
#footer .footer-top .footer-contact ul li a:hover {
  text-decoration: underline;
  color: #ffd863;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007ec7;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: #2da7ee;
  color: #fff;
  text-decoration: none;
}
.banners {
  position: relative;
  padding: 0px;
}
.banners .page-header {
  background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url("../../images/privacy-policy.jpg");
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  min-height: 450px;
  height: 100%;
}
.banners .book-now-banner {
  background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url("../../images/book-now.jpg") !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  min-height: 450px;
  height: 100%;
}
.page-header h1 {
  position: relative;
  padding: 2px 10px;
  margin: 250px auto 0px auto;
  font-size: 2.5rem;
  color: #fff;
  background: #21a9f7;
  width: fit-content;
  border-radius: 10px;
}
.innerpage {
  position: relative;
  padding: 40px;
}
.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;
}
.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: 30px;
  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: 768px) {
  #hero {
    width: 100%;
    height: 70vh;
  }
  .navbar > ul > li > a:before {
    background-color: #0084cc;
  }
  .navbar .getstarted, .navbar .getstarted:focus {
    padding: 8px 25px;
    border-radius: 4px;
    color: #0084cc;
    border: 2px solid #0084cc;
  }
  .navbar .getstarted:hover, .navbar .getstarted:focus:hover {
    color: #fff;
    background: #0084cc;
    border-color: #fff;
  }
  .about .count-box {
    padding: 30px 0;
  }
}
@media (max-width: 426px) {
  #hero {
    width: 100%;
    height: 50vh;
  }
  #hero .hero-container {
    top: 72px;
  }
  #hero h1 {
    font-size: 25px;
  }
  #hero h2 {
    font-size: 15px;
  }
  #hero .btn-get-started {
    padding: 5px 25px 5px 25px;
  }
  .innerpage {
    padding: 20px 0;
  }
  #footer .footer-top .footer-contact ul {
    flex-direction: column;
  }
  #footer .footer-top .footer-contact ul li {
    border-left: none;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
  .innerpage .content h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  #booknow .bokwrap h2 {
    font-size: 1.5rem;
  }
}