@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
body {
  font-family: "Roboto", serif;
}

#header {
  z-index: 99;
  position: fixed;
  width: 100%;
  top: 0px;
  transition: height 0.5s;
  height: 80px;
}
#header.is-sticky {
  height: 70px;
}

.navbar {
  background-color: #487280;
  height: 100%;
}
.navbar .container .logo {
  order: 2;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.navbar .container .logo img {
  height: 25px;
}
.navbar .container ul.nav-area-nav {
  display: none;
}
.navbar .container .call-btn {
  order: 3;
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  background: #fff;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.4s;
}
.navbar .container .call-btn .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d7bb7d;
  color: #fff;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  transition: all 0.4s;
  animation-name: trin;
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.navbar .container .call-btn span {
  padding: 0 16px 0 10px;
  display: none;
}
.navbar .container .call-btn:hover {
  background-color: #d7bb7d;
  color: #fff;
}
.navbar .container .call-btn:hover .icon {
  background-color: #f1eee9;
  color: #d7bb7d;
}

.offcanvas-menu > label {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  z-index: 9999;
  margin: 0;
}
.offcanvas-menu label span {
  transition: background 0.3s, transform 0.3s;
}
.offcanvas-menu label span::before, .offcanvas-menu label span::after {
  transition: background 0.3s, transform 0.3s;
}
.offcanvas-menu label span {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: #fff;
}
.offcanvas-menu label span::before, .offcanvas-menu label span::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: #fff;
}
.offcanvas-menu label span::before {
  transform: translateY(-12px);
}
.offcanvas-menu label span::after {
  transform: translateY(12px);
}
.offcanvas-menu nav {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  left: -100%;
  overflow: hidden;
  background: #487280;
  transition: 0.3s ease;
}
.offcanvas-menu nav > div label {
  position: absolute;
  left: 16px;
  top: 22px;
  width: 40px;
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s ease;
}
.offcanvas-menu nav > div label span {
  background: #fff;
}
.offcanvas-menu nav > div label span:before, .offcanvas-menu nav > div label span:after {
  background: #fff;
}
.offcanvas-menu nav > ul {
  margin: 0;
  list-style: none;
  padding-left: 1rem;
}
.offcanvas-menu nav > ul li {
  cursor: pointer;
  padding: 10px 0;
  transform: translateX(-30px);
  opacity: 0;
}
.offcanvas-menu nav > ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: block;
  text-transform: uppercase;
  transition: all 0.4s;
}
.offcanvas-menu nav > ul li a:hover {
  color: #d7bb7d;
}
.offcanvas-menu nav > ul li.active a {
  color: #d7bb7d;
}
.offcanvas-menu input[type=checkbox] {
  display: none;
}
.offcanvas-menu input[type=checkbox]:checked ~ label {
  opacity: 0;
  pointer-events: none;
}
.offcanvas-menu input[type=checkbox]:checked ~ nav {
  left: 0;
}
.offcanvas-menu input[type=checkbox]:checked ~ nav label span {
  background: transparent;
}
.offcanvas-menu input[type=checkbox]:checked ~ nav label span:before {
  transform: rotate(-45deg);
}
.offcanvas-menu input[type=checkbox]:checked ~ nav label span:after {
  transform: rotate(45deg);
}
.offcanvas-menu input[type=checkbox]:checked ~ nav label span:before, .offcanvas-menu input[type=checkbox]:checked ~ nav label span:after {
  transition-delay: 0.2s;
}
.offcanvas-menu input[type=checkbox]:checked ~ nav ul li {
  opacity: 1;
  transform: translateX(0px);
}

.container {
  z-index: 1;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  background: url(../images/bg.webp) no-repeat center;
  background-size: cover;
  width: 100%;
  position: relative;
  height: 100vh;
  background-color: #000;
  color: #fff;
}
.intro::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.intro h1 {
  color: #d7bb7d;
  font-size: 2rem;
  font-weight: 800;
}
.intro h2 {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 30px;
  margin: 20px 0 0;
}
.intro .charter-booking-form {
  display: none;
}

.number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  margin-top: 10px;
}
.number .minus,
.number .plus {
  width: 50px;
  height: 50px;
  background: #f1eee9;
  border-radius: 50px;
  padding: 0;
  border: 0;
  color: #000;
  font-size: 20px;
  line-height: 50px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  position: absolute;
  left: 0;
  cursor: pointer;
}
.number .plus {
  right: 0;
  left: auto;
}
.number input {
  height: 50px;
  width: 100%;
  text-align: center;
  border: 0;
  border-radius: 50px;
  display: inline-block;
  vertical-align: middle;
  color: #000;
}
.number input:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}

section {
  padding: 30px 0;
}
section.shade {
  background: #f1eee9;
}

#header.is-sticky .offcanvas-menu nav > div label {
  top: 16px;
}

.btn {
  border: 0;
  position: relative;
  color: #fff;
  background: #487280;
  overflow: hidden;
  border-radius: 50px;
  font-size: 12px;
  padding: 15px 20px;
  transition: all 0.4s;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: auto;
}
.btn span:first-child {
  position: relative;
  z-index: 5;
}
.btn span:last-child {
  color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  transition: all 0.4s cubic-bezier(0.48, 0, 0.12, 1);
  z-index: 10;
  opacity: 0;
  top: 50%;
  transform: translateY(225%);
  height: 14px;
  line-height: 13px;
}
.btn::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: 0;
  width: 103%;
  height: 100%;
  background-color: #d7bb7d;
  transform-origin: bottom center;
  transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  transform: skewY(9.3deg) scaleY(0);
  z-index: 9;
}
.btn:hover span:last-child {
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.48, 0, 0.12, 1);
}
.btn:hover:after {
  transform-origin: bottom center;
  transform: skewY(9.3deg) scaleY(2);
}
.text-center .btn {
  float: none;
  margin: auto;
}

.float-btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0 5rem;
  z-index: 99;
}
.float-btn .btn {
  width: 100%;
  border-radius: 12px 12px 0 0;
}
.float-btn .btn span:last-child {
  left: 0;
  width: 100%;
}

.step-card {
  border: rgba(0, 0, 0, 0.1) 1px solid;
  border-radius: 1rem;
  padding: 2rem 1rem;
  margin-top: 1rem;
}
.step-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #d7bb7d;
  background: #487280;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  font-size: 20px;
}
.step-card h3 {
  margin: 2rem 0 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: #000;
}

.mt-2r {
  margin-top: 2rem;
}

.mt-1r {
  margin-top: 1rem;
}

h2 {
  font-size: 1.6rem;
}

.card {
  margin-top: 1rem;
  border-radius: 20px;
}
.card .card-img {
  width: 100%;
  height: 200px;
}
.card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.card small {
  color: #d7bb7d;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
}
.card .card-text {
  margin-top: 1rem;
}

.safety-program img {
  margin: 2rem 0;
}

footer {
  background: #487280;
  color: #fff;
  padding: 30px 0 80px;
}
footer .logo img {
  height: 30px;
  margin-bottom: 20px;
}
footer .footer-nav {
  display: flex;
  align-items: start;
  justify-content: inherit;
  flex-direction: column;
}
footer .footer-nav ul h6 {
  font-size: 25px;
  color: #d7bb7d;
  font-weight: 600;
}
footer .footer-nav ul {
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}
footer .footer-nav ul li {
  padding: 0.4rem 0;
}
footer .footer-nav ul li a {
  text-decoration: none;
  transition: all 0.4s;
  color: #fff;
}
footer .footer-nav ul li a:hover {
  color: #d7bb7d;
}
footer .footer-nav ul .social-links {
  margin-top: 1rem;
}
footer .footer-nav ul .social-links .btn {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  line-height: 40px;
  font-size: 16px;
  background: none;
  border: #d7bb7d 1px solid;
}
footer .footer-nav ul .social-links .btn::after {
  background: #d7bb7d;
}
footer .footer-nav ul .social-links .btn span:last-child {
  width: 100%;
  color: #fff;
}
footer .copy-rights {
  border-top: rgba(255, 255, 255, 0.1) 1px solid;
  padding-top: 30px;
  margin-top: 30px;
}
footer .copy-rights a {
  color: #d7bb7d;
  text-decoration: none;
  transition: all 0.4s;
}
footer .copy-rights a:hover {
  color: #fff;
}

.video {
  width: 100%;
  position: relative;
  margin-top: 80px;
}
.video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq-sticky {
  background: #fff;
  position: sticky;
  top: 70px;
  text-align: center;
  z-index: 9;
  padding-top: 1rem;
}

ul.faq-nav {
  list-style: none;
  width: 90%;
  border-bottom: 1px solid #d7bb7d;
  padding: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 16px;
  margin: 20px auto 0;
}
ul.faq-nav li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

.faq-main {
  position: relative;
  width: 100%;
}
.faq-main h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: #000;
}

.hero-bg {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  width: 100%;
  background: url(../images/flyroving-membership.webp) no-repeat;
  position: relative;
  height: 280px;
  margin-top: 80px;
  color: #fff;
  background-size: cover;
}
.hero-bg::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.hero-bg h1 {
  color: #d7bb7d;
}
.hero-bg p {
  font-size: 1.5rem;
}

.banner-bg {
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: inherit;
  flex-direction: row;
  width: 100%;
  position: relative;
  background: #fff;
  margin-top: 80px;
  color: #fff;
  padding: 40px 0 0 0;
}
.banner-bg h1 {
  color: #000;
  text-align: left;
  margin: 0.5rem 0;
  font-size: 2.5rem;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .banner-bg h1 {
    font-size: 2.2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .banner-bg h1 {
    font-size: 2rem;
  }
}
@media (width <= 575.98px) {
  .banner-bg h1 {
    font-size: 1.8rem;
  }
}
.banner-bg p {
  color: #000 !important;
  text-align: left;
  font-size: 1.3rem;
}
@media (width <= 768px) {
  .banner-bg p {
    font-size: 1.1rem;
  }
}
.banner-bg .breadcrumb-nav {
  display: flex;
  padding-left: 0;
  flex-wrap: wrap;
}
.banner-bg .breadcrumb-nav li {
  list-style: none;
  position: relative;
  padding-right: 25px;
  margin-right: 14px;
  font-size: 1rem;
  color: #797777;
}
@media (width <= 575.98px) {
  .banner-bg .breadcrumb-nav li {
    font-size: 0.875rem;
  }
}
.banner-bg .breadcrumb-nav li::after {
  content: "\eb6d";
  font-family: unicons-line;
  font-size: 20px;
  color: #d7bb7d;
  position: absolute;
  margin-left: 10px;
}
.banner-bg .breadcrumb-nav li a {
  color: #797777;
}
.banner-bg .breadcrumb-nav li:last-child {
  padding: 0;
  margin: 0;
}
.banner-bg .breadcrumb-nav li:last-child::after {
  display: none;
}

.blog-bg {
  padding-top: 20px;
}
.blog-bg .blog-box {
  padding: 1.5rem;
  border: 1px solid #E2D9D9;
  background: #F3E8D0;
  background: linear-gradient(180deg, rgb(243, 232, 208) 0%, rgb(252, 252, 252) 100%);
}
.blog-bg .blog-box .blog-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 13/9;
}
.blog-bg .blog-box .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-bg .blog-box .blog-content {
  margin-top: 1rem;
}
.blog-bg .blog-box .blog-content .author-date {
  width: 100%;
  line-height: 22px;
}
.blog-bg .blog-box .blog-content .author-date .author {
  color: #487280;
  font-size: 1rem;
  font-weight: 500;
}
.blog-bg .blog-box .blog-content .author-date .author span {
  color: #000;
}
.blog-bg .blog-box .blog-content .author-date .date {
  color: #575757;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
}
.blog-bg .blog-box .blog-content .author-date .date span {
  color: #353535;
  font-weight: 400;
}
.blog-bg .blog-box .blog-content .author-date .date .line {
  padding: 0rem 0.5rem;
  color: #d7bb7d;
}
.blog-bg .blog-box .blog-content h4 {
  margin: 0.5rem 0;
  text-align: left;
  color: #000;
  display: -webkit-box;
  height: 50px;
  font-size: 1.3rem;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .blog-bg .blog-box .blog-content h4 {
    height: 48px;
    min-height: 40px;
  }
}
.blog-bg .blog-box .blog-content p {
  text-align: left;
  display: -webkit-box;
  height: 80px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}

.getaquote {
  padding: 1.5rem;
  border: 1px solid #E2D9D9;
  background: #F3E8D0;
  background: linear-gradient(180deg, rgb(243, 232, 208) 0%, rgb(252, 252, 252) 100%);
  position: sticky;
  top: 80px;
}
.getaquote label {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.getaquote .input-group {
  margin-top: 10px;
}
.getaquote .form-control,
.getaquote .form-select {
  margin: 0;
  border: #f1eee9 1px solid;
}
.getaquote .number {
  border-radius: 50px;
  border: 1px solid #f1eee9;
}
.getaquote .input-group-text {
  border: 1px solid #f1eee9;
  height: 50px;
  border-radius: 50px 0 0 50px;
  padding: 0 1rem;
  background: #fff;
  line-height: 50px;
}
.getaquote .datepicker .form-control {
  border-right: 0;
  padding-right: 0;
}
.getaquote .datepicker .input-group-text {
  border-radius: 0 50px 50px 0;
  padding-left: 0;
}

.blog-details-bg {
  padding-top: 0;
}
.blog-details-bg p {
  text-align: justify;
}
.blog-details-bg .blog-details {
  width: 100%;
  padding-right: 1.5rem;
}
@media (width <= 768px) {
  .blog-details-bg .blog-details {
    padding-right: 0;
  }
}
.blog-details-bg .blog-details .subheading {
  color: #000 !important;
  text-align: justify;
  font-size: 1.3rem;
}
@media (width <= 768px) {
  .blog-details-bg .blog-details .subheading {
    font-size: 1.1rem;
  }
}
.blog-details-bg .blog-details .top_list {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 1rem 0;
  justify-content: space-between;
}
@media (width <= 768px) {
  .blog-details-bg .blog-details .top_list {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog-details-bg .blog-details .top_list .author-date {
  line-height: 22px;
}
@media (width <= 768px) {
  .blog-details-bg .blog-details .top_list .author-date {
    margin-bottom: 1rem;
  }
}
.blog-details-bg .blog-details .top_list .author-date .author {
  color: #487280;
  font-size: 1rem;
  font-weight: 500;
}
.blog-details-bg .blog-details .top_list .author-date .author span {
  color: #000;
}
.blog-details-bg .blog-details .top_list .author-date .author span a {
  color: #000;
}
.blog-details-bg .blog-details .top_list .author-date .date {
  color: #575757;
  font-size: 1rem;
  font-weight: 400;
  display: flex;
  flex-wrap: wrap;
}
.blog-details-bg .blog-details .top_list .author-date .date span {
  color: #353535;
  font-weight: 400;
}
.blog-details-bg .blog-details .top_list .author-date .date .line {
  padding: 0rem 0.5rem;
  color: #d7bb7d;
}
.blog-details-bg .blog-details .top_list .right {
  justify-content: flex-end;
  display: flex;
  align-items: center;
  position: relative;
}
@media (width <= 768px) {
  .blog-details-bg .blog-details .top_list .right {
    width: 100%;
  }
}
.blog-details-bg .blog-details .top_list .right h4 {
  margin: 0;
  color: #487280;
  padding-right: 0.5rem;
}
.blog-details-bg .blog-details .top_list .right .share-button {
  border-radius: 5px;
  background: #d7bb7d;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 35px;
  cursor: pointer;
}
@media (width <= 480px) {
  .blog-details-bg .blog-details .top_list .right .share-button {
    width: 35px;
    height: 35px;
  }
}
.blog-details-bg .blog-details .top_list .right .share-button i {
  color: #fff;
}
.blog-details-bg .blog-details .top_list .right .share-options {
  display: none;
  position: absolute;
  top: 35px;
  z-index: 9;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
@media (width <= 768px) {
  .blog-details-bg .blog-details .top_list .right .share-options {
    left: auto;
    right: 0;
  }
}
.blog-details-bg .blog-details .top_list .right .share-options .list {
  display: flex;
  align-items: center;
  padding: 0.3rem 0.5rem;
  border-bottom: 1px solid #e4e1e1;
}
.blog-details-bg .blog-details .top_list .right .share-options .list .icon {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin-right: 0.5rem;
}
.blog-details-bg .blog-details .top_list .right .share-options .list .fb {
  background: #1877F2;
}
.blog-details-bg .blog-details .top_list .right .share-options .list .twiter {
  background: #000000;
}
.blog-details-bg .blog-details .top_list .right .share-options .list .linkedin {
  background: #0077B5;
}
.blog-details-bg .blog-details .top_list .right .share-options .list .whatsapp {
  background: #25D366;
}
.blog-details-bg .blog-details .top_list .right .share-options .list .mail {
  background: #ff4343;
}
.blog-details-bg .blog-details .top_list .right .share-options .list a {
  display: block;
  text-decoration: none;
  color: #333 !important;
  margin: 5px 0;
}
.blog-details-bg .blog-details .blog-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 13/9;
  margin-bottom: 1rem;
}
.blog-details-bg .blog-details .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-bg .blog-details .blog-content {
  overflow: hidden;
  min-height: 500px;
}
.blog-details-bg .blog-details .blog-content img {
  margin: 0.5rem 0;
}
.blog-details-bg .blog-details .blog-content h1 {
  margin: 0.5rem 0;
  font-size: 2.5rem;
  color: #000;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .blog-details-bg .blog-details .blog-content h1 {
    font-size: 2.2rem;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .blog-details-bg .blog-details .blog-content h1 {
    font-size: 2rem;
  }
}
@media (width <= 575.98px) {
  .blog-details-bg .blog-details .blog-content h1 {
    font-size: 1.8rem;
  }
}
.blog-details-bg .blog-details .blog-content h2 {
  margin: 0.5rem 0;
}
.blog-details-bg .blog-details .blog-content h3 {
  margin: 0.5rem 0;
}
.blog-details-bg .blog-details .blog-content h4 {
  margin: 0.5rem 0;
}
.blog-details-bg .blog-details .blog-content h4 span {
  font-weight: 600;
}
.blog-details-bg .blog-details .blog-content h5 {
  margin: 0.5rem 0;
  font-weight: 400;
}
.blog-details-bg .blog-details .blog-content h5 span {
  font-weight: 600;
}
.blog-details-bg .blog-details .blog-content ul {
  margin-bottom: 1rem;
  margin-left: 0;
  padding-left: 0;
}
.blog-details-bg .blog-details .blog-content ul li {
  position: relative;
  text-align: justify;
  list-style: none;
  padding: 0.2rem 0 0.2rem 1.5rem;
  font-size: 14px;
}
@media (max-width: 480px) {
  .blog-details-bg .blog-details .blog-content ul li {
    font-size: 0.813rem;
  }
}
.blog-details-bg .blog-details .blog-content ul li:before {
  position: absolute;
  left: 0;
  color: #d7bb7d;
  font-size: 0.875rem;
  content: "\ebb5";
  font-family: "unicons-line";
}
.blog-details-bg .blog-details .blog-content .ticklist {
  width: 100% !important;
}
.blog-details-bg .blog-details .blog-content .ticklist ul {
  margin: 10px 0px;
}
.blog-details-bg .blog-details .blog-content .ticklist ul li {
  padding: 2px 0px;
  list-style: none;
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  position: relative;
  padding-left: 25px;
  text-align: justify;
}
.blog-details-bg .blog-details .blog-content .ticklist ul li::before {
  content: "\e859" !important;
  position: absolute;
  color: #d7bb7d;
  left: 0;
  top: 1px !important;
  font-family: "unicons-line";
}
.blog-details-bg .blog-details .blog-content ol li {
  text-align: justify;
}
.blog-details-bg .blog-details .blog-gallery {
  margin-top: 2.5rem;
  width: 100%;
}
.blog-details-bg .blog-details .blog-gallery .gallery-box {
  width: 100%;
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 13/9;
}
.blog-details-bg .blog-details .blog-gallery .gallery-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details-bg .blog-details .blog-gallery .gallery-box i {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #ddd;
  padding: 0.2rem;
  backdrop-filter: blur(10px);
  background-color: rgba(72, 114, 128, 0.4470588235);
}
.blog-details-bg .blog-details .blog-gallery h3 {
  font-size: 2.5rem;
  color: #487280;
  font-weight: 600;
}
@media (width <= 768px) {
  .blog-details-bg .blog-details .blog-gallery h3 {
    font-size: 2rem;
  }
}
@media (width <= 575.98px) {
  .blog-details-bg .blog-details .blog-gallery h3 {
    font-size: 1.8rem;
  }
}
.blog-details-bg .blog-details .blog-gallery .owl-carousel .owl-nav button.owl-prev,
.blog-details-bg .blog-details .blog-gallery .owl-nav button.owl-next {
  border-radius: 50%;
  background: #fff;
  color: #328f89;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  border: 1px solid #000;
}
.blog-details-bg .blog-details .blog-gallery .owl-carousel .owl-nav button.owl-prev:hover,
.blog-details-bg .blog-details .blog-gallery .owl-nav button.owl-next:hover {
  background: #328f89;
  color: #fff;
}
.blog-details-bg .blog-details .blog-gallery .owl-prev {
  position: absolute;
  right: auto;
  left: 0px;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .blog-details-bg .blog-details .blog-gallery .owl-prev {
    left: 30px;
  }
}
.blog-details-bg .blog-details .blog-gallery .owl-next {
  position: absolute;
  right: -40px;
  left: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .blog-details-bg .blog-details .blog-gallery .owl-next {
    right: -10px;
  }
}
.blog-details-bg .blog-details .blog-faq {
  margin-top: 2.5rem;
  width: 100%;
  text-align: justify;
}
.blog-details-bg .blog-details .blog-faq .accordion-item:first-of-type > .accordion-header .accordion-button {
  line-height: 22px;
}
.blog-details-bg .blog-details .blog-faq h3 {
  font-size: 2.5rem;
  color: #487280;
  font-weight: 600;
}
@media (width <= 768px) {
  .blog-details-bg .blog-details .blog-faq h3 {
    font-size: 2rem;
  }
}
@media (width <= 575.98px) {
  .blog-details-bg .blog-details .blog-faq h3 {
    font-size: 1.8rem;
  }
}

.membership-card {
  width: 100%;
  border-radius: 16px;
  border: rgba(0, 0, 0, 0.1) 1px solid;
  padding-bottom: 1rem;
  margin-top: 1rem;
}
.membership-card .membership-card--head {
  background: #487280;
  color: #fff;
  text-align: center;
  padding: 1rem;
  border-radius: 16px 16px 0 0;
}
.membership-card .membership-card--head h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}
.membership-card .membership-card--head p {
  font-weight: 600;
  margin: 0;
}
.membership-card .membership-card--body {
  margin-bottom: 1rem;
}
.membership-card .membership-card--body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.membership-card .membership-card--body h4 {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin: 1rem 0;
  padding: 0 1rem;
  text-transform: uppercase;
}
.membership-card .membership-card--body ul.membership-card--highlights {
  border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
  padding: 0 1rem 1rem;
  margin-top: 1rem;
}
.membership-card .membership-card--body ul.membership-card--highlights li {
  padding: 0.2rem 0;
}
.membership-card .membership-card--body ul.flex-list li {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
  border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
  padding: 0.5rem 1rem;
}
.membership-card .membership-card--body ul.flex-list li span:first-child {
  width: 80%;
}
.membership-card .membership-card--body ul.flex-list li span:last-child {
  text-align: right;
}
.membership-card .membership-card--body ul.flex-list li span i {
  color: #487280;
  font-size: 20px;
}
.membership-card .btn {
  margin: 0 auto;
}
.membership-card.is-gold .membership-card--head {
  background: #d7bb7d;
}
.membership-card.is-gold .membership-card--body ul.flex-list li span i {
  color: #d7bb7d;
}

.mt-80 {
  margin-top: 80px;
}

.contact-details ul {
  list-style: none;
  padding: 0;
}
.contact-details ul li {
  padding: 0.2rem 0;
}
.contact-details ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.4s;
}
.contact-details ul li a:hover {
  color: #d7bb7d;
}
.contact-details .nav-links {
  margin-bottom: 1rem;
}
.contact-details .nav-links li {
  list-style: none;
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
}
.contact-details .nav-links li span {
  position: absolute;
  left: 0;
  top: 8px;
  color: #487280;
  font-size: 1.3rem;
}
.contact-details img {
  border-radius: 20px;
}

.contact-form {
  margin-top: 2rem;
}
.contact-form form {
  background: #f1eee9;
  padding: 2rem;
  border-radius: 20px;
}
.contact-form form h2 {
  margin-bottom: 1rem;
}
.contact-form form .form-label {
  margin: 0;
}
.contact-form form textarea.form-control {
  min-height: 180px;
  padding: 1rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-control,
.form-select {
  border: 0;
  border-radius: 50px;
  height: 50px;
  padding: 0 1rem;
  margin-top: 10px;
}
.form-control:focus,
.form-select:focus {
  border: 0;
  box-shadow: none;
}

.datepicker {
  margin-top: 10px;
  padding: 0;
}
.datepicker .form-control {
  margin: 0;
}
.datepicker .input-group-text {
  border: 0;
  height: 50px;
  border-radius: 0 50px 50px 0;
  padding: 0 1rem;
  background: white;
  line-height: 50px;
}

.modal.custom .modal-content {
  border-radius: 40px;
  padding: 1rem;
}
.modal.custom .modal-content .modal-header {
  border: 0;
}
.modal.custom .modal-content .modal-header .btn-close {
  transition: all 0.4s;
}
.modal.custom .modal-content .modal-header .btn-close:hover {
  transform: rotate(180deg);
}
.modal.custom .modal-content .modal-body label {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.modal.custom .modal-content .modal-body {
  padding: 0 1rem 1rem;
}
.modal.custom .modal-content .modal-body .input-group {
  margin-top: 10px;
}
.modal.custom .modal-content .modal-body .form-control,
.modal.custom .modal-content .modal-body .form-select {
  margin: 0;
  border: #f1eee9 1px solid;
}
.modal.custom .modal-content .modal-body .number {
  border-radius: 50px;
  border: 1px solid #f1eee9;
}
.modal.custom .modal-content .modal-body .input-group-text {
  border: 1px solid #f1eee9;
  height: 50px;
  border-radius: 50px 0 0 50px;
  padding: 0 1rem;
  background: transparent;
  line-height: 50px;
}
.modal.custom .modal-content .modal-body .datepicker .form-control {
  border-right: 0;
  padding-right: 0;
}
.modal.custom .modal-content .modal-body .datepicker .input-group-text {
  border-radius: 0 50px 50px 0;
  padding-left: 0;
}

.accordion-button {
  color: #000;
  font-weight: 600;
}
.accordion-button:not(.collapsed) {
  background: #487280;
  color: #d7bb7d;
}
.accordion-button:focus {
  box-shadow: none;
}

.accordion-body p {
  margin: 1rem 0 0;
}

form.search-follow h1 {
  margin-bottom: 2rem;
}
form.search-follow .input-group {
  margin: 10px 0 20px;
}
form.search-follow .form-control,
form.search-follow .form-select {
  margin: 0;
  border: #f1eee9 1px solid;
}
form.search-follow .number {
  border-radius: 50px;
  border: 1px solid #f1eee9;
}
form.search-follow .input-group-text {
  border: 1px solid #f1eee9;
  height: 50px;
  border-radius: 50px 0 0 50px;
  padding: 0 1rem;
  background: transparent;
  line-height: 50px;
}

.filled-form {
  background: #f1eee9;
  padding: 2rem;
  border-radius: 40px;
}
.filled-form h2 {
  margin-bottom: 1rem;
}
.filled-form ul {
  list-style: none;
  border-top: rgba(0, 0, 0, 0.1) 1px solid;
  border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
  padding: 1rem 0;
}
.filled-form ul li {
  padding: 0.3rem 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: row;
}
.filled-form ul li span:last-child {
  text-align: right;
}

.thanks {
  padding: 3rem 0;
}
@media (width <= 768px) {
  .thanks {
    padding: 3rem 0;
  }
}
.thanks h1 {
  margin: 2rem 0 1rem;
}
@media (width <= 768px) {
  .thanks h1 {
    font-size: 1.2rem;
  }
}
@media (width <= 768px) {
  .thanks img {
    width: 80px;
  }
}

.error {
  padding: 2rem 0;
}
.error img {
  width: 200px;
}
@media (width <= 768px) {
  .error img {
    width: 150px;
  }
}
.error .error_content {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.error .error_content h1 {
  margin: 2rem 0 1rem;
}
@media (width <= 768px) {
  .error .error_content h1 {
    font-size: 1.2rem;
  }
}
.error .error_content img {
  width: 120px;
}
@media (width <= 768px) {
  .error .error_content img {
    width: 80px;
  }
}

.ui.input {
  margin-top: 10px;
}
.ui.input input {
  height: 50px;
  border-radius: 50px !important;
}

i.icon {
  font-family: "unicons-line";
  font-size: 16px;
}

i.icon.chevron.left:before {
  content: "\eb79";
}

i.icon.chevron.right:before {
  content: "\eb6d";
}

select option:hover {
  box-shadow: 0 0 10px 100px #000 inset;
  background: red;
}

.ui.form input[type=text]:focus {
  border: 0;
  box-shadow: none;
}

::-webkit-input-placeholder {
  color: #777 !important;
}

::-moz-placeholder {
  color: #777 !important;
}

:-ms-input-placeholder {
  color: #777 !important;
}

.contact-details h1 {
  font-size: 1.6rem;
}

.ui.input input {
  border: #f1eee9 1px solid !important;
}

.mt-100 {
  margin-top: 32px;
}

@keyframes trin {
  from {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  20%, 32%, 44%, 56%, 68% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  23%, 35%, 47%, 59%, 71% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  26%, 38%, 50%, 62%, 74% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  29%, 41%, 53%, 65%, 77% {
    transform: rotate3d(0, 0, 1, -15deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
footer .footer-nav .nav-links li {
  list-style: none;
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
}
footer .footer-nav .nav-links li span {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 1.3rem;
  color: #d7bb7d;
}

/* Extra small devices (phones, 576px and down) */
/* Small devices (portrait tablets and large phones, 576px and up) */
@media only screen and (min-width: 576px) {
  .modal.custom .modal-dialog {
    max-width: 450px;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .offcanvas-menu {
    display: none;
  }
  .navbar .container .logo {
    position: relative;
    transform: none;
    left: 0;
    order: 1;
  }
  .navbar .container .logo img {
    height: 25px;
  }
  .navbar .container .nav-area {
    order: 2;
  }
  .navbar .container .nav-area ul.nav-area-nav {
    display: flex;
    align-items: center;
    justify-content: inherit;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 18px;
  }
  .navbar .container .nav-area ul.nav-area-nav .nav-item .nav-link {
    padding: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.5s;
  }
  .navbar .container .nav-area ul.nav-area-nav .nav-item .nav-link:hover {
    color: #d7bb7d;
  }
  .navbar .container .nav-area ul.nav-area-nav .nav-item.active .nav-link {
    color: #d7bb7d;
  }
  .float-btn {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    right: -44px;
    width: auto;
    padding: 0;
  }
  .float-btn .btn {
    transform: rotate(-90deg);
  }
  .step-card {
    height: 295px;
  }
  .card {
    margin-top: 2rem;
  }
  .card .card-text {
    height: 100px;
  }
  footer .footer-nav {
    margin-top: 2rem;
    flex-direction: row;
    justify-content: space-between;
  }
  footer .footer-nav ul {
    margin: 0;
  }
  .intro .charter-booking-form {
    width: 100%;
    background: rgba(215, 187, 125, 0.7098039216);
    border-radius: 60px;
    padding: 3rem 2rem;
    margin-top: 2rem;
    display: flex;
    align-items: start;
    justify-content: inherit;
    flex-direction: column;
  }
  .intro .charter-booking-form .inputs {
    margin-bottom: 1rem;
    display: inline-flex;
    flex-wrap: wrap;
  }
  .intro .charter-booking-form .inputs .col-md-4,
  .intro .charter-booking-form .inputs .col-md-8 {
    padding: 0 0.5rem;
    margin-top: 20px;
  }
  .intro .charter-booking-form .inputs .ui.form .field > label {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
  }
  .intro .charter-booking-form .btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #487280;
    color: #d7bb7d;
    font-size: 20px;
    padding: 0;
  }
  .intro .charter-booking-form .btn::after {
    background: #fff;
  }
  .intro .charter-booking-form .btn span:last-child {
    color: #487280;
    width: 100%;
  }
  .membership-card .membership-card--body {
    height: 930px;
  }
  ul.faq-nav {
    width: 60%;
  }
  .contact-form {
    margin: 0;
  }
  .mt-100 {
    margin-top: 64px;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .navbar .container .call-btn span {
    display: inline-block;
  }
  .hero-bg {
    height: 400px;
  }
  .membership-card .membership-card--body {
    height: 912px;
  }
  .membership-card {
    margin-top: 2rem;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  section,
  footer {
    padding: 100px 0;
  }
  #header {
    height: 100px;
  }
  #header.is-sticky {
    height: 80px;
  }
  .navbar .container .logo img {
    height: 35px;
  }
  .navbar .container .nav-area ul.nav-area-nav {
    gap: 40px;
    padding: 1rem 0;
  }
  .step-card {
    height: 270px;
  }
  .hero-bg {
    height: 600px;
  }
  .card .card-img {
    height: 230px;
  }
  .intro .charter-booking-form {
    margin-top: 1rem;
    flex-direction: row;
    align-items: center;
    padding: 5rem;
    border-radius: 200px;
  }
  .intro .charter-booking-form .inputs {
    margin: 0;
    flex: 1;
    padding-right: 50px;
  }
  .mt-100 {
    margin-top: 100px;
  }
  .hero-bg h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .card .card-img {
    height: 270px;
  }
  ul.faq-nav {
    width: 50%;
  }
}
@media (width <= 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
}
.btn-whatsapp-pulse {
  background: #25d366;
  color: white !important;
  position: fixed;
  right: 20px;
  font-size: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 20px;
  z-index: 99;
  width: 35px;
  height: 35px;
  padding: 30px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .btn-whatsapp-pulse {
    width: 30px;
    height: 30px;
    bottom: 20px;
    font-size: 25px;
    padding: 25px;
  }
}

.btn-whatsapp-pulse a {
  color: #fff !important;
}

.btn-whatsapp-pulse:hover {
  color: white;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
.pagination .page-item.active .page-link {
  background-color: #487280;
  /* your custom color */
  border-color: #487280;
  color: #fff;
  /* text color */
}

/* Optional: hover effect for other links */
.pagination .page-link:hover {
  background-color: #d7bb7d;
  color: #fff;
}

.pagination a {
  color: #487280;
}

/* Optional: rounded corners or other styling */
@media (max-width: 767.98px) {
  .pagination.pagination-lg .page-link {
    font-size: 1.2rem;
    /* Normal size */
    padding: 0.5rem 0.75rem;
    /* Default spacing */
  }
}
.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  padding: 10px 15px;
  display: block;
}

.nav-menu .submenu {
  list-style: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #935555;
  display: none;
  padding: 0;
  margin: 0;
  min-width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.nav-menu .submenu li a {
  padding: 10px 15px;
  color: #333;
  white-space: nowrap;
}

.nav-menu .submenu li a:hover {
  background: #f0f0f0;
}

/* Hover to show submenu */
.nav-menu li:hover > .submenu {
  display: block;
}

.arrow {
  font-size: 0.8em;
  margin-left: 5px;
}

/* Base dropdown menu styling */
.dropdown-menu {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  display: block;
  visibility: hidden;
  background-color: #d7bb7d;
  /* menu background */
  border: none;
  padding: 0;
  border-radius: 2px;
  /* optional: rounded corners */
}

/* When dropdown is open */
.dropdown-menu.show {
  opacity: 1;
  transform: translateY(8px);
  /* keeps same space — but not margin */
  visibility: visible;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background: transparent;
}

/* Customize each dropdown item */
.dropdown-menu .dropdown-item {
  background-color: #d7bb7d;
  /* your custom background */
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
  border-bottom: 1px solid rgba(53, 53, 53, 0.4196078431);
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover and active states */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: #3d6674;
  /* hover color */
  color: #fff;
  padding-left: 20px;
  transition: 0.4s ease-in-out;
}

.nav-item.dropdown {
  position: relative;
}

.offcanvas-menu nav ul li {
  position: relative;
}
.offcanvas-menu nav ul li .submenu {
  list-style: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.offcanvas-menu nav ul li .submenu li {
  padding: 0;
  background: #d7bb7d;
  border-bottom: 1px solid rgba(53, 53, 53, 0.4196078431);
  transition: background-color 0.3s ease;
}
.offcanvas-menu nav ul li .submenu li a {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  display: block;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.offcanvas-menu nav ul li .submenu li a:hover {
  background-color: #3d6674;
  /* hover color */
  color: #fff;
}
.offcanvas-menu nav ul li:hover > .submenu {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.offcanvas-menu nav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  color: #fff;
  transition: color 0.3s ease;
}
.offcanvas-menu nav ul li a:hover {
  color: rgb(239, 227.8, 203);
}
.offcanvas-menu nav ul li a .arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-left: 10px;
}
.offcanvas-menu nav ul li:hover > a .arrow {
  transform: rotate(225deg);
}/*# sourceMappingURL=app.css.map */