@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;1,700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("owl.carousel.min.css");
@import url("owl.theme.default.min.css");
@import url("jquery-ui.css");
@import url("animate.min.css");
@import url("glightbox.min.css");
* {
  outline: none;
}

html,
body,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: #0088DD;
}

a:hover,
a:active,
a:focus {
  transition: all ease-in-out 0.3s;
  color: #0D49CD;
}

:focus-visible {
  outline: none;
}

button:focus:not(:focus-visible) {
  box-shadow: none;
}

a,
a:hover {
  text-decoration: none;
}

a,
span {
  transition: all 0.3s ease 0s;
}

.custum-input {
  background-color: #efefef;
  border-radius: 3.125rem;
  border: 0;
  border-bottom: 4px solid #0088DD !important;
  color: #0088DD;
  min-height: 60px;
  padding-left: 1.25rem;
}

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

:focus::-webkit-input-placeholder {
  opacity: 0.5;
  color: #0D49CD;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #ffffff;
  background-color: #0D49CD;
  border-color: transparent;
  opacity: 0.5;
}

.dropdown-toggle:hover, .dropdown-toggle:first-child:active {
  background-color: #0088DD;
}
.dropdown-toggle.show {
  background-color: #0088DD;
}

.dropdown-menu {
  padding: 0;
}
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active, .dropdown-menu .dropdown-item:hover {
  background-color: #efefef;
  color: #0D49CD;
}

.nav-link:focus-visible,
.nav-link:focus {
  box-shadow: none;
  outline: none;
}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #0D49CD;
  outline: 0;
  box-shadow: 0 0 0 0.05rem rgba(13, 73, 205, 0.9);
}

.form-control-cust {
  padding: 1rem;
  color: #0088DD;
}
.form-control-cust::-webkit-input-placeholder {
  color: #000000 !important;
}

.form-check-input {
  border: 2px solid #0D49CD;
}
.form-check-input:checked {
  background-color: #0D49CD;
  border-color: #0D49CD;
}

html {
  font-size: 1rem;
}

body {
  font-family: "Nunito", sans-serif;
}

.font-small {
  font-size: 0.875rem;
}

.font-extra-small {
  font-size: 0.75rem;
}

.font-black {
  font-weight: 900;
}

.theme-bg-primary {
  background-color: #0D49CD;
}

.theme-bg-secondary {
  background-color: #0088DD;
}

.theme-bg-accent-one {
  background-color: #cfcfcf;
}

.theme-bg-accent-two {
  background-color: #696969;
}

.theme-bg-accent-three {
  background-color: #efefef;
}

.yellow-color {
  color: #e8b723;
}

.theme-bg-gradient {
  background: linear-gradient(-180deg, #0D49CD 0%, #0088DD 100%);
}

.theme-bg-white {
  background: #ffffff;
}

.theme-text-white {
  color: #ffffff;
}

.theme-text-primary {
  color: #0D49CD;
}

.theme-text-secondary {
  color: #0088DD;
}

.theme-text-accent-one {
  color: #cfcfcf;
}

.theme-text-accent-two {
  color: #696969;
}

.theme-text-accent-three {
  color: #efefef;
}

.body-text-dark {
  color: #000000;
}

.body-bg {
  background-color: #000000;
}

.gray-dark {
  color: #575757;
}

.theme-box-shadow {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}

.theme-text-shadow {
  text-shadow: 0 0 1.375rem rgba(0, 136, 221, 0.1);
}

.custom-link {
  background-color: #696969;
  color: #0D49CD;
  min-width: 120px;
  min-height: 40px;
}
.custom-link:hover {
  background-color: transparent;
  color: #0088DD;
  border: 2px solid #0D49CD;
}

.theme-border-radius {
  border-radius: 3.125rem;
}

.theme-border {
  border: 1px solid #0D49CD;
}

.custom-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.primary-button-effect {
  background: #0D49CD;
  border-radius: 3.125rem;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 50px;
  min-width: 75px;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.primary-button-effect::after {
  transition: all 0.3s;
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.primary-button-effect::before, .primary-button-effect::after {
  background: #0088dd;
  content: "";
  position: absolute;
  z-index: -1;
}
.primary-button-effect:hover {
  color: #000000;
}
.primary-button-effect:hover:after {
  height: 100%;
  z-index: -1;
}

.btn-second {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 100px;
  padding: 3px 16px;
  background: #0D49CD;
  display: inline-block;
}
.btn-second .btn-text {
  margin-left: -13px;
  position: relative;
  z-index: 3;
  transition: transform 0.6s 125ms cubic-bezier(0.1, 0.75, 0.25, 1);
}
.btn-second .btn-icon {
  margin-left: 6px;
  position: relative;
  transition: opacity 0.4s 0.25s, transform 0.6s 0.25s;
  transition-timing-function: cubic-bezier(0.1, 0.75, 0.25, 1);
  line-height: 0;
  z-index: 3;
}
.btn-second .btn-icon + .btn-icon {
  order: -2;
  opacity: 0;
  transition-delay: 0s;
  margin-left: 0;
  transform: translateX(-10px);
}
.btn-second:hover {
  background: #000000;
  color: #ffffff;
}
.btn-second:hover .btn-icon {
  transition-delay: 0s;
  transform: translateX(10px);
  opacity: 0;
}
.btn-second:hover .btn-text {
  transition-delay: 0.1s;
  transform: translateX(23px);
}
.btn-second:hover .btn-icon + .btn-icon {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 225ms;
}

.max {
  max-width: 650px;
  margin: auto;
}

.max-1 {
  max-width: 50rem;
}

.end-1 {
  right: 1rem;
}

.img-max {
  max-width: 150px;
  min-height: 40px;
}

.lh-2 {
  line-height: 2;
}

.padd-5 {
  padding: 5rem 0 5rem 0;
}

.text-justify {
  text-align: justify;
}

.letter-space {
  letter-spacing: 5px;
}

.justify {
  text-align: justify;
}

.set-bg {
  background-repeat: no-repeat !important;
  background-size: cover;
  background-position: center center;
}

.cardeffect {
  transition: all 500ms ease-in-out;
}
.cardeffect:hover {
  transform: translateY(-10px);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.divider {
  display: inline-block;
  width: 120px;
  height: 1px;
  border-radius: 3.125rem;
  background-color: #0D49CD;
  background: linear-gradient(218deg, rgb(255, 255, 255) 0%, rgb(0, 136, 221) 100%);
  margin-top: 1rem;
}

.owl-nav {
  margin: 0;
}

.owl-carousel .owl-item .promo {
  height: 100%;
  min-height: auto;
}
.owl-carousel .owl-item .promo img {
  height: auto;
}
.owl-carousel .owl-nav {
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  color: #000000;
  font-size: 3rem;
  position: absolute;
  top: 40%;
  background: #ffffff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
}
.owl-carousel .owl-nav button.owl-prev span,
.owl-carousel .owl-nav button.owl-next span {
  line-height: 3rem;
  position: absolute;
  top: -10px;
  left: 8px;
  color: #0088DD;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background-color: #0D49CD;
  color: #ffffff;
}
.owl-carousel .owl-nav button.owl-prev {
  left: -2%;
}
@media screen and (max-width: 575px) {
  .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
  }
}
.owl-carousel .owl-nav button.owl-next {
  right: -2%;
}
@media screen and (max-width: 575px) {
  .owl-carousel .owl-nav button.owl-next {
    right: 0px;
  }
}
.owl-carousel:hover .owl-nav {
  opacity: 1;
}

.img-lt {
  filter: grayscale(100%);
  transition: 0.5s ease-in-out;
}
.img-lt:hover {
  filter: grayscale(0%);
}

.trophy-wrap {
  display: inline-block;
  margin-left: 63px;
  position: relative;
  margin-bottom: 1.5rem;
}
.trophy-wrap .rotate-360 {
  animation: rotate-infinite 15s linear infinite;
}
@keyframes rotate-infinite {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.trophy-wrap .trophy {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
}

blockquote {
  padding-left: 80px;
  position: relative;
  margin: 27px 0 28px;
  font-size: 1.5rem;
  color: #696969;
  line-height: 1.2;
  font-style: italic;
}
blockquote::before {
  content: "\f6b0";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "bootstrap-icons";
  color: #0D49CD;
  font-size: 4rem;
  line-height: 1;
  font-style: normal;
}
blockquote cite {
  display: block;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  font-style: normal;
}
blockquote cite::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 5px;
  background: #0D49CD;
}

.play-btn {
  height: 60px;
  width: 60px;
  display: inline-block;
  background: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: #0D49CD;
}
.play-btn:hover {
  background: #0D49CD;
  color: #ffffff;
}

.pulse-border {
  border-radius: 50%;
  z-index: 1;
  position: relative;
}
.pulse-border::after, .pulse-border::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: pulsebg 2s linear infinite;
  animation-delay: 0s;
  animation-delay: 0s;
  z-index: -1;
  transition: all 0.3s 0s ease-out;
  z-index: -1;
}
@keyframes pulsebg {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
.pulse-border::before {
  animation-delay: 0.7s;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #0088DD;
  color: #000000;
}

.img-effect img {
  transition: all 0.3s ease;
}
.img-effect:hover img {
  transform: scale(1.05);
}

.page-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000000;
  z-index: 9999;
  overflow: visible;
  justify-content: center;
  align-items: center;
  display: flex;
}
.page-loader .loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #ffffff;
  animation: loader 2s infinite ease;
}
.page-loader .loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #ffffff;
  animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

.wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #0088DD;
  top: 0;
  left: 0;
  z-index: 9999;
  bottom: 0;
  right: 0;
}
.wrap .inner {
  width: 532px;
  margin: 0 auto;
  padding: 10% 0;
}
@media screen and (max-width: 767px) {
  .wrap .inner {
    width: 232px;
  }
}
.wrap .inner .ship {
  position: relative;
  top: 49px;
  left: 100px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .wrap .inner .ship {
    left: -30px;
  }
}
.wrap .inner .ship img {
  width: 285px;
  display: block;
}
@media screen and (max-width: 767px) {
  .wrap .inner .ship img {
    width: 215px;
  }
}
.wrap .inner .line {
  width: 35px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  top: 49px;
  left: 328px;
  z-index: 1;
  animation: move-toggle 1s infinite ease;
}
@keyframes move-toggle {
  0% {
    left: 328px;
  }
  50% {
    left: 326px;
  }
  100% {
    left: 328px;
  }
}
.wrap .inner .line1 {
  width: 35px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  top: 47px;
  left: 320px;
  z-index: 0;
  animation: move-left1 5s infinite linear;
}
@keyframes move-left1 {
  0% {
    left: 320px;
  }
  100% {
    left: 0;
    width: 0;
  }
}
.wrap .inner .line2 {
  width: 35px;
  margin-left: 5px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  top: 45px;
  left: 320px;
  z-index: 0;
  animation: move-left2 5s infinite linear;
  animation-delay: 0.5s;
}
@keyframes move-left2 {
  0% {
    left: 320px;
  }
  100% {
    left: 0;
    width: 0;
  }
}
.wrap .inner .line3 {
  width: 35px;
  margin-left: 5px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  top: 43px;
  left: 320px;
  z-index: 0;
  animation: move-left3 5s infinite linear;
  animation-delay: 1.2s;
}
@keyframes move-left3 {
  0% {
    left: 320px;
  }
  100% {
    left: 0;
    width: 0;
  }
}
.wrap .inner .line4 {
  width: 35px;
  margin-left: 5px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  top: 41px;
  left: 320px;
  z-index: 0;
  animation: move-left4 5s infinite linear;
  animation-delay: 1.5s;
}
@keyframes move-left4 {
  0% {
    left: 320px;
  }
  100% {
    left: 0;
    width: 0;
  }
}
.wrap .inner .line5 {
  width: 35px;
  margin-left: 5px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  top: 39px;
  left: 320px;
  z-index: -1;
  animation: move-left5 5s infinite linear;
  animation-delay: 2s;
}
@keyframes move-left5 {
  0% {
    left: 320px;
  }
  100% {
    left: 0;
    width: 0;
  }
}
.wrap .inner .line6 {
  width: 35px;
  margin-left: 5px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  top: 37px;
  left: 320px;
  z-index: 0;
  animation: move-left6 5s infinite linear;
  animation-delay: 2.2s;
}
@keyframes move-left6 {
  0% {
    left: 320px;
  }
  100% {
    left: 0;
    width: 0;
  }
}
.wrap .inner .line7 {
  width: 35px;
  margin-left: 5px;
  height: 2px;
  background-color: #ffffff;
  position: relative;
  top: 35px;
  left: 320px;
  z-index: 0;
  animation: move-left7 5s infinite linear;
  animation-delay: 3s;
}
@keyframes move-left7 {
  0% {
    left: 320px;
  }
  100% {
    left: 0;
    width: 0;
  }
}

@media (min-width: 992px) {
  .menunav {
    padding: 0;
  }
  .menunav ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: end;
  }
  .menunav ul li {
    position: relative;
  }
  .menunav ul li.button a {
    background: #0D49CD;
    border-radius: 50rem;
    color: #ffffff;
  }
  .menunav ul li.button:hover a {
    background: #0088DD;
    color: #ffffff;
  }
  .menunav ul li:hover {
    color: #0D49CD;
  }
  .menunav ul li:hover a, .menunav ul li:hover:active, .menunav ul li:hover:focus {
    color: #0D49CD;
  }
  .menunav a, .menunav:focus {
    color: #ffffff;
    padding: 12px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .menunav a i, .menunav:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  .menunav .active {
    color: #0D49CD;
  }
  .menunav .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: #ffffff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 150%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 0 0 3.125rem 3.125rem;
    z-index: 99;
    -webkit-backdrop-filter: blur(8px) saturate(180%);
            backdrop-filter: blur(8px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.85);
  }
  .menunav .dropdown ul li {
    min-width: 200px;
  }
  .menunav .dropdown ul li a {
    padding: 10px 20px;
    text-transform: none;
    color: #000000;
  }
  .menunav .dropdown ul li a:hover {
    color: #0D49CD;
  }
  .menunav .dropdown ul li a i {
    font-size: 0.75rem;
  }
  .menunav .dropdown ul li:hover > a {
    color: #0D49CD;
  }
  .menunav .dropdown ul.active:hover {
    color: #0D49CD;
  }
  .menunav .dropdown:hover > ul {
    opacity: 1;
    top: 134%;
    visibility: visible;
  }
  .menunav .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
    border-radius: 3.125rem 0 0 3.125rem;
  }
  .menunav .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}
@media (max-width: 992px) {
  .mobile-menu-toggle {
    color: #ffffff;
    font-size: 3rem;
    line-height: 0;
    margin-right: 0px;
    cursor: pointer;
    transition: color 0.3s;
  }
  .menunav {
    padding: 0;
    z-index: 9997;
  }
  .menunav ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 3.125rem;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  }
  .menunav a, .menunav:focus {
    color: #000000;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
  .menunav a:hover, .menunav a.active, .menunav:focus:hover, .menunav:focus.active {
    color: #0D49CD;
  }
  .menunav a:hover:focus, .menunav a.active:focus, .menunav:focus:hover:focus, .menunav:focus.active:focus {
    color: #0D49CD;
  }
  .menunav a i, .menunav:focus i {
    font-size: 0.75rem;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: rgba(13, 73, 205, 0.5);
  }
  .menunav a i:hover, .menunav:focus i:hover {
    background-color: #0D49CD;
    color: #000000;
  }
  .menunav .active i {
    background-color: #0D49CD;
    color: #000000;
  }
  .menunav .active i:focus i {
    background-color: #0D49CD;
    color: #000000;
    transform: rotate(180deg);
  }
  .menunav .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #cfcfcf;
    transition: all 0.5s ease-in-out;
  }
  .menunav .dropdown ul ul {
    background-color: rgba(0, 0, 0, 0.1);
  }
  .menunav .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(0, 0, 0, 0.03);
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .smooth {
    height: 100%;
  }
  .mobile-nav-active .mobile-menu-toggle {
    color: #ffffff;
    position: absolute;
    font-size: 2rem;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
  .mobile-nav-active .menunav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: 0.3s;
    border-radius: 50rem;
  }
  .mobile-nav-active .menunav > ul {
    display: block;
    height: 380px;
  }
}
.cruise-search {
  position: absolute;
  width: 100%;
  bottom: 5%;
  padding: 0;
  background: none;
  z-index: 2;
  /*checkbox css*/
}
.cruise-search .hedaing {
  color: #ffffff;
}
@media screen and (max-width: 992px) {
  .cruise-search .hedaing {
    color: #000000;
    padding-top: 1rem;
  }
}
@media screen and (max-width: 992px) {
  .cruise-search {
    position: relative;
  }
}
.cruise-search .icon-20 {
  width: 20px;
  height: 20px;
}
.cruise-search .search-pan {
  background: transparent;
  padding: 0rem;
  min-height: auto;
  /*Date calender*/
}
@media screen and (max-width: 1200px) {
  .cruise-search .search-pan {
    background: transparent;
  }
}
.cruise-search .search-pan .dropdown-toggle::after {
  position: absolute;
  right: 10px;
  top: 50%;
}
.cruise-search .search-pan .dropdown .dropdown-menu {
  width: 100%;
  padding: 0px 0.5rem;
  border-radius: 0.5rem;
  /*-- Droup down Traveller --*/
}
.cruise-search .search-pan .dropdown .dropdown-menu .drop-rest li {
  border-bottom: 1px solid #efefef;
  display: flex;
  padding: 5px 0 5px 0;
}
.cruise-search .search-pan .dropdown .dropdown-menu .drop-rest li span {
  font-size: 14px;
  font-weight: 500;
}
.cruise-search .search-pan .dropdown .dropdown-menu .drop-rest li .br {
  display: block;
  padding-top: 0px;
}
.cruise-search .search-pan .dropdown .dropdown-menu .drop-rest li .btn {
  background-color: #0088DD;
  color: #ffffff;
  border: 0;
}
.cruise-search .search-pan .dropdown .dropdown-menu .drop-rest li .btn:hover {
  background-color: #0D49CD;
}
.cruise-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
  align-items: center;
  width: 45%;
}
@media screen and (max-width: 992px) {
  .cruise-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
    width: 30%;
  }
}
@media screen and (max-width: 575px) {
  .cruise-search .search-pan .dropdown .dropdown-menu .plus-minus-input {
    width: 50%;
  }
}
.cruise-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button {
  background-color: #0088DD;
  border: none;
  color: #ffffff;
}
.cruise-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-button button:hover {
  background-color: #ff5f4a;
}
.cruise-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field {
  text-align: center;
  width: 50%;
  background: #efefef;
  border: 0;
}
.cruise-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-inner-spin-button, .cruise-search .search-pan .dropdown .dropdown-menu .plus-minus-input .input-group-field::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}
.cruise-search .search-pan .form-group {
  position: relative;
}
.cruise-search .search-pan .icon-pos {
  top: 16px;
  left: 20px;
  color: #696969;
  font-size: 1rem;
}
@media screen and (max-width: 992px) {
  .cruise-search .search-pan .icon-pos {
    top: 1rem;
  }
}
.cruise-search .search-pan .input-group {
  color: inherit;
}
.cruise-search .search-pan .form-control {
  font-size: 14px;
  background-color: #efefef;
  min-height: 50px;
  border: 0px;
  text-decoration: none;
  border-radius: 50rem;
  text-align: left;
}
.cruise-search .search-pan .cal-input {
  background: none;
  border: 0px;
  width: 6rem;
  padding: 3px 0 0 5px;
}
.cruise-search .search-pan .dep-date-input {
  position: relative;
  padding: 0 0;
  margin: 0.3rem 0 0 2rem;
}
.cruise-search .search-pan .dropdown-select {
  padding: 0 1rem 0 0 1rem 0 1.5rem;
}
.cruise-search .search-pan .dropdown-select::before {
  color: #696969;
  right: 0.8rem;
}
.cruise-search .nav-tabs .nav-item .nav-link {
  font-weight: 700;
  color: #0088DD;
  background-color: transparent;
  border: none;
  padding: 0.5rem 1rem 1.5rem 0rem;
}
.cruise-search .nav-tabs .nav-item .nav-link:hover {
  border-color: transparent;
  color: #0D49CD;
}
.cruise-search .nav-tabs .nav-item .active span {
  background: #ffffff !important;
  border: 1px solid #0D49CD;
  position: relative;
}
.cruise-search .nav-tabs .nav-item .active span:after {
  content: "";
  display: block;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #0D49CD;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  position: absolute;
}
.cruise-search .btn-search {
  background-color: #0088DD;
  min-height: 56px;
  color: #ffffff;
  min-width: 75px;
  width: 100%;
  border-radius: 50rem;
  border: none;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cruise-search .btn-search:before {
  width: 100%;
  height: 100%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: -100%;
  background: #0D49CD;
  transition: all 0.2s;
  z-index: -1;
}
.cruise-search .btn-search:hover {
  color: #cfcfcf;
}
.cruise-search .btn-search:hover:before {
  top: 0;
  left: 0;
}
.cruise-search .pos-swap {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #0088DD;
  position: absolute;
  top: 0.9rem;
  right: -1.2rem;
  z-index: 1;
  text-align: center;
  line-height: 30px;
  color: #ffffff;
  border: 0;
  cursor: pointer;
}
.cruise-search .pos-swap:hover {
  background-color: #0D49CD;
  color: #cfcfcf;
}
@media screen and (max-width: 992px) {
  .cruise-search .pos-swap {
    right: 0;
    top: 2.5rem;
  }
}
.cruise-search .check-wrap {
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #cfcfcf;
}
.cruise-search .check-wrap input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.cruise-search .check-wrap .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1rem;
  width: 1rem;
  border-radius: 0.2rem;
  border: 1px solid #cfcfcf;
}
.cruise-search .check-wrap .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.cruise-search .check-wrap .checkmark:after {
  left: 0.2rem;
  top: 0rem;
  width: 0.5rem;
  height: 0.8rem;
  border: solid #cfcfcf;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.cruise-search .check-wrap:hover input ~ .checkmark {
  background-color: #efefef;
  background: #0D49CD;
}
.cruise-search .check-wrap input:checked ~ .checkmark {
  border: 1px solid #cfcfcf;
}
.cruise-search .check-wrap input:checked ~ .checkmark:after {
  display: block;
}

.cruise-search-page {
  padding: 6rem 0;
}
.cruise-search-page .filter-btn {
  border-radius: 3.125rem;
  margin-bottom: 1rem;
  color: #0D49CD !important;
  border: 1px solid #0D49CD;
}

.filter-sec .filter-tag {
  background-color: #0088DD;
  color: #ffffff;
  border-radius: 3.125rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
}
.filter-sec .nav-category .nav-item .nav-link {
  color: #000000;
  padding-left: 0px;
  font-weight: 500;
}
.filter-sec .nav-category .nav-item .nav-link:hover {
  color: #0D49CD;
}

@media (min-width: 992px) {
  .offcanvas-collapse {
    background-color: transparent;
    bottom: auto !important;
    display: block;
    height: auto !important;
    left: auto !important;
    position: static;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    visibility: visible;
    width: 100% !important;
  }
}

.offcanvas.offcanvas-start {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  border-radius: 3.125rem;
  border-right: 0;
}

.slider-area {
  display: flex;
  align-items: center;
  width: 94%;
  -webkit-backdrop-filter: blur(100px);
          backdrop-filter: blur(100px);
  margin-left: 5px;
}
.slider-area-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.slider-area #skip-value-lower,
.slider-area #skip-value-upper {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-area .noUi-target {
  flex: 1;
  position: relative;
  background: #696969;
  border-radius: 50px;
}
.slider-area .noUi-target.noUi-horizontal {
  height: 10px;
}
.slider-area .noUi-target .noUi-base,
.slider-area .noUi-target .noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.slider-area .noUi-target .noUi-connects {
  border-radius: 3px;
  overflow: hidden;
  z-index: 0;
}
.slider-area .noUi-target .noUi-connects .noUi-connect {
  height: 100%;
  width: 100%;
  transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
  background-color: #0D49CD;
}
.slider-area .noUi-target .noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 0;
  width: 100%;
}
.slider-area .noUi-target .noUi-origin .noUi-handle {
  border-radius: 50px;
  background: #ffffff;
  cursor: default;
  background-color: #0D49CD;
  backface-visibility: hidden;
  position: absolute;
  width: 21px;
  height: 21px;
  right: -10px;
  top: -6px;
}
.slider-area .noUi-target .noUi-origin .noUi-handle .noUi-touch-area {
  height: 100%;
  width: 100%;
  background: #0088DD;
  border: transparent;
  border-radius: 100%;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}
.slider-area .noUi-draggable {
  cursor: ew-resize;
}

.cruise-box {
  display: flex;
  flex-direction: column;
  border-radius: 3.125rem;
  padding: 1rem;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}
.cruise-box .picHeight {
  position: relative;
  border-radius: 3.125rem;
}
.cruise-box .cruise-tag {
  top: 1rem;
  left: 1rem;
  z-index: 1;
  background-color: #00aa71;
  color: #ffffff;
  border-radius: 3.125rem;
}
.cruise-box .content-box {
  padding-top: 1rem;
}
.cruise-box .content-box .link-pack {
  color: #000000;
  display: inline-block;
  padding-bottom: 1rem;
}
.cruise-box .content-box p {
  margin: 0 0 1rem 0;
  color: #696969;
  font-size: 0.875rem;
}
.cruise-box .content-box .cruise-list {
  margin: 0;
  padding: 0;
}
.cruise-box .content-box .cruise-list li {
  display: inline-block;
  margin: 5px 0px;
  width: 49%;
}
.cruise-box .content-box .cruise-list li i {
  padding-right: 10px;
  color: #00aa71;
}

.cruise-rate {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cruise-rate .badge {
  background: #e8b723;
  font-size: 13px;
  border-radius: 50px 50px 50px 0;
}
.cruise-rate .cruise-rate-type {
  color: #0088DD;
  font-weight: 500;
  margin: 0 5px;
}
.cruise-rate .cruise-rate-review {
  color: #696969;
  font-size: 0.75rem;
}

.cruise-details {
  padding: 6rem 0;
}
.cruise-details .owl-carousel .owl-stage-outer {
  border-radius: 3.125rem;
}
.cruise-details .owl-carousel .owl-stage-outer .owl-item .item img {
  border-radius: 3.125rem;
}
.cruise-details .cruise-feature-icon {
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #0088DD;
  border-radius: 3.125rem;
  font-size: 18px;
  text-align: center;
  display: inline-block;
}
.cruise-details .cruise-feature-icon i {
  color: #ffffff;
}
.cruise-details .tour-heading {
  border-bottom: 1px solid #0D49CD;
  padding-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  color: #000000;
}
.cruise-details .list li {
  padding-left: 0;
  margin-bottom: 15px;
  position: relative;
  color: #696969;
}
.cruise-details .list li::before {
  display: none;
}
.cruise-details .list li span {
  margin-right: 10px;
  color: #000000;
}
.cruise-details .list-included li {
  padding-left: 24px;
  margin-bottom: 15px;
  position: relative;
}
.cruise-details .list-included li:before {
  font-family: "bootstrap-icons";
  content: "\f272";
  position: absolute;
  display: inline-block;
  color: #00aa71;
  left: 0px;
}
.cruise-details .list-notincluded li {
  padding-left: 24px;
  margin-bottom: 15px;
  position: relative;
}
.cruise-details .list-notincluded li:before {
  font-family: "bootstrap-icons";
  content: "\f659";
  position: absolute;
  display: inline-block;
  color: rgba(255, 0, 0, 0.75);
  left: 0px;
}
.cruise-details .tour-info li {
  line-height: 1.5rem;
  color: #000000;
  list-style: none;
  padding: 12px 0 12px 25px;
  margin: 0 0 0 0px;
  position: relative;
}
.cruise-details .tour-info li:last-child {
  padding-bottom: 0;
}
.cruise-details .tour-info li:before {
  font-family: "bootstrap-icons";
  content: "\f26a";
  position: absolute;
  display: inline-block;
  color: #696969;
  left: 0px;
}
.cruise-details .itineraryTab .nav-link {
  color: #0D49CD;
  border-radius: 3.125rem;
  border: 2px solid #0088DD;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}
.cruise-details .itineraryTab .nav-link.active {
  color: #ffffff;
  background-color: #0D49CD;
}
.cruise-details .cruise-location iframe {
  width: 100%;
  height: 300px;
  border-radius: 3.125rem;
  margin-top: 2rem;
}
.cruise-details .review-rating-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .cruise-details .review-rating-wrap {
    flex-direction: column;
  }
}
.cruise-details .review-rating-wrap .rating-count {
  background: #ffffff;
  text-align: center;
  padding: 20px 20px;
  border-radius: 25px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.cruise-details .review-rating-wrap .rating-count h2 {
  font-weight: 700;
  font-size: 50px;
  color: #0D49CD;
}
.cruise-details .review-rating-wrap .rating-count p {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cruise-details .review-rating-wrap .rating-count .rating i {
  color: #e8b723;
}
.cruise-details .review-rating-wrap .rating-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 5px 0;
}
@media all and (min-width: 992px) and (max-width: 1200px) {
  .cruise-details .review-rating-wrap .rating-range {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .cruise-details .review-rating-wrap .rating-range {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.cruise-details .review-rating-wrap .rating-range .rating-star i {
  color: #e8b723;
  font-size: 14px;
}
.cruise-details .review-rating-wrap .rating-range .progress {
  margin: 0px 15px;
  width: 300px;
  height: 5px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  background-color: #efefef;
}
@media (max-width: 767px) {
  .cruise-details .review-rating-wrap .rating-range .progress {
    margin: 0px 0px;
  }
}
.cruise-details .review-rating-wrap .rating-range .progress .progress-width {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  border-radius: 5px;
  background: #00aa71;
}
.cruise-details .review-rating-wrap .percentage span {
  color: #696969;
}
.cruise-details .review-list-card {
  background: white;
  border-radius: 5px;
  margin-top: 3rem;
}
.cruise-details .review-list-card .item {
  margin-bottom: 30px;
  border-radius: 25px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.cruise-details .review-list-card .item .review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cruise-details .review-list-card .item .review-author img {
  width: 60px;
  border-radius: 50%;
}
.cruise-details .review-list-card .item .review-author .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cruise-details .review-list-card .item .review-author .author-info span {
  font-size: 0.875rem;
  color: #696969;
}
.cruise-details .review-list-card .item .review-author .author-rating i {
  color: #e8b723;
}
.cruise-details .review-list-card .item p {
  color: #696969;
  margin: 1rem 0;
}
.cruise-details .review-list-card .item .reply-btn-group {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.cruise-details .review-list-card .item .reply-btn-group a {
  color: #0088DD;
}
.cruise-details .review-list-card .item .reply-btn-group a.active {
  color: #ff5f4a;
}
.cruise-details .review-list-card .item .reply-btn-group a:hover {
  color: #00aa71;
}
.cruise-details .review-list-card .item .reply-btn-group .reaction {
  display: flex;
  gap: 15px;
}
.cruise-details .review-list-card .item-reply {
  margin-left: 80px;
}
@media (max-width: 767px) {
  .cruise-details .review-list-card .item-reply {
    margin-left: 30px;
  }
}
.cruise-details .review-form {
  padding: 30px;
  border-radius: 25px;
  margin-top: 30px;
  background: rgba(0, 136, 221, 0.075);
}
.cruise-details .review-form .input-layout {
  height: 50px;
  width: 100%;
  background: #ffffff;
  font-size: 1rem;
  color: #0D49CD;
  padding-left: 20px;
  border-radius: 3.125rem;
  border: 1px solid #efefef;
  margin-bottom: 30px;
}
.cruise-details .review-form .input-layout.textarea {
  min-height: 150px;
  padding-top: 1rem;
}
.cruise-details .review-form .star-rating-wrapper {
  display: inline-block;
}
.cruise-details .review-form .star-rating-wrapper .star-rating {
  direction: rtl !important;
}
.cruise-details .review-form .star-rating-wrapper .star-rating input {
  display: none;
}
.cruise-details .review-form .star-rating-wrapper .star-rating input:checked ~ label {
  color: #F8A611;
}
.cruise-details .review-form .star-rating-wrapper .star-rating label {
  display: inline-block;
  color: #D4D4D4;
  cursor: pointer;
  font-size: 38px;
  transition: color 0.2s;
}
.cruise-details .review-form .star-rating-wrapper .star-rating label:hover {
  color: #e8b723;
}
.cruise-details .review-form .star-rating-wrapper .star-rating label:hover ~ label {
  color: #e8b723;
}
.cruise-details .promo-code input {
  border-color: #0D49CD;
  padding-left: 1rem;
  background-color: #ffffff;
  font-size: 0.875rem;
  border-radius: 3.125rem;
}
.cruise-details .promo-code button {
  border-color: #0D49CD;
  background-color: #0D49CD;
  color: #ffffff;
  font-size: 0.875rem;
  border-radius: 3.125rem;
}
.cruise-details .promo-card li {
  background-color: #efefef;
  border-radius: 3.125rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.cruise-details .promo-card li:last-child {
  margin-bottom: 0;
}
.cruise-details .call-list li {
  margin: 15px 0;
}
.cruise-details .call-list li i {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  background: #0D49CD;
  color: #ffffff;
  font-size: 1.25rem;
  margin-right: 10px;
  border-radius: 3.125rem;
  text-align: center;
  display: inline-block;
}
.cruise-details .call-list li a {
  font-weight: 500;
  color: #0D49CD;
}
.cruise-details .call-list li a:hover {
  color: #0088DD;
}

.header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
  top: 20px;
}
.header img {
  width: auto;
}
.header .menunav a.active {
  color: #0D49CD;
}
@media (max-width: 992px) {
  .header .menunav a.active {
    color: #0D49CD;
  }
}
.header .menunav a,
.header .menunav:focus {
  color: #000000;
}
@media (max-width: 992px) {
  .header .menunav a,
  .header .menunav:focus {
    color: #000000;
  }
}
@media (max-width: 992px) {
  .header .mobile-menu-toggle {
    color: #0D49CD;
  }
}
.header .header-type2 .menunav li.has-dropdown ul li a {
  color: #000000;
}
.header .header-type2 .menunav li.has-dropdown ul li a:hover {
  color: #0D49CD;
}
.header .header-type2 .menunav li a {
  color: #ffffff;
}
@media (max-width: 992px) {
  .header .header-type2 .menunav li a {
    color: #000000;
  }
}
.header .header-type2 .menunav li a:hover {
  color: #0088DD;
}
@media (max-width: 992px) {
  .header .header-type2 .mobile-menu-toggle {
    color: #ffffff;
  }
}

.filter-blur {
  -webkit-backdrop-filter: blur(8px) saturate(180%);
          backdrop-filter: blur(8px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.85);
}

.smooth {
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-name: fadeInDown;
  position: fixed;
  z-index: 10;
}
.smooth .header-type2 {
  background: linear-gradient(-180deg, #0D49CD 0%, #000000 100%);
  padding: 1rem;
  border-radius: 3.125rem;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.head-wrapper {
  position: relative;
  z-index: 2;
}
.head-wrapper::after {
  content: "";
  position: absolute;
  display: block;
  background: #cfcfcf;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 992px) {
  .head-wrapper::after {
    background: #ffffff;
  }
}

.hero-single {
  position: relative;
}
.hero-single #hero-single-slider .hero-single-items {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  min-height: 85vh;
  overflow: hidden;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .hero-single #hero-single-slider .hero-single-items {
    min-height: 50vh;
    align-items: end;
  }
}
.hero-single #hero-single-slider .hero-single-items:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.46);
  left: 0;
  top: 0;
}
.hero-single #hero-single-slider .hero-single-items .hero-con {
  position: relative;
  z-index: 9;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-single #hero-single-slider .hero-single-items .hero-con .heading {
  position: relative;
  color: #ffffff;
  font-weight: bold;
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .hero-single #hero-single-slider .hero-single-items .hero-con .heading {
    font-size: 2rem;
  }
}
.hero-single .owl-carousel .owl-nav {
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.hero-single .owl-carousel .owl-nav button.owl-prev,
.hero-single .owl-carousel .owl-nav button.owl-next {
  color: #000000;
  font-size: 3rem;
  position: absolute;
  top: 40%;
  background: #ffffff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
}
.hero-single .owl-carousel .owl-nav button.owl-prev span,
.hero-single .owl-carousel .owl-nav button.owl-next span {
  line-height: 3rem;
  position: absolute;
  top: -10px;
  left: 8px;
  color: #0088DD;
}
.hero-single .owl-carousel .owl-nav button.owl-prev:hover,
.hero-single .owl-carousel .owl-nav button.owl-next:hover {
  background-color: #0D49CD;
  color: #ffffff;
}
.hero-single .owl-carousel .owl-nav button.owl-prev {
  left: 1%;
}
@media screen and (max-width: 575px) {
  .hero-single .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
  }
}
.hero-single .owl-carousel .owl-nav button.owl-next {
  right: 1%;
}
@media screen and (max-width: 575px) {
  .hero-single .owl-carousel .owl-nav button.owl-next {
    right: 0px;
  }
}
.hero-single .owl-carousel:hover .owl-nav {
  opacity: 1;
}
.hero-single .owl-carousel .owl-dots {
  position: absolute;
  width: 100%;
  bottom: 0rem;
}
.hero-single .animated {
  animation-duration: 3s;
  animation-delay: 500ms;
}
.hero-single .animate-out {
  animation-delay: 0ms;
}

.video-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 12rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.video-image .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.promo-ads-area {
  position: relative;
  z-index: 1;
  padding-top: 5rem;
  padding-bottom: 1rem;
}
.promo-ads-area .promo-ads-wrap {
  border-radius: 3.125rem;
  height: 100%;
  min-height: 200px;
}
.promo-ads-area .promo-ads-wrap.box-1 {
  padding: 0px 45px 45px 20px;
}
.promo-ads-area .promo-ads-wrap.box-1 .ads-content {
  margin-left: 20px;
}
.promo-ads-area .promo-ads-wrap.box-1 .ads-content .ads-upto {
  background: #0D49CD;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: -50px;
  padding-top: 66px;
}
.promo-ads-area .promo-ads-wrap.box-1 .ads-content .ads-upto h2 {
  font-size: 45px;
  line-height: 1;
  text-transform: capitalize;
  color: #ffffff;
}
.promo-ads-area .promo-ads-wrap.box-1 .ads-content .ads-upto .saving {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  color: #ffffff;
  display: inline-block;
  transform: translateY(-8px);
}
.promo-ads-area .promo-ads-wrap.box-1 .ads-content .ads-upto .upto {
  font-weight: 700;
  font-size: 9px;
  text-transform: capitalize;
  color: #ffffff;
  position: absolute;
  top: 35%;
  left: 25px;
}
.promo-ads-area .promo-ads-wrap.box-2 {
  padding: 37px 30px 30px 30px;
}
.promo-ads-area .promo-ads-wrap.box-3 {
  padding: 34px 30px 27px 42px;
}
.promo-ads-area .promo-ads-wrap.box-3 .ads-discount-inner h2 {
  color: #000000;
}
.promo-ads-area .promo-ads-wrap.box-3 .ads-discount-inner h3 {
  color: #000000;
}
.promo-ads-area .promo-ads-wrap.box-3 .ads-discount-inner span {
  color: #000000;
}
.promo-ads-area .promo-ads-wrap.box-3 .ads-discount {
  margin-top: -4px;
}
.promo-ads-area .promo-ads-wrap .ads-discount-inner {
  transform: translateY(-6px);
}
.promo-ads-area .promo-ads-wrap .ads-discount-inner h2 {
  font-size: 50px;
  text-transform: uppercase;
  color: #0D49CD;
}
.promo-ads-area .promo-ads-wrap .ads-discount-inner h3 {
  font-size: 30px;
  text-transform: uppercase;
  color: #0D49CD;
}
.promo-ads-area .promo-ads-wrap .ads-discount-inner span {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #0D49CD;
  display: inline-block;
  line-height: 1;
  transform: translateY(-7px);
}
.promo-ads-area .promo-ads-wrap .ads-discount-inner .ads-discount {
  margin-top: 8px;
}

.grid-container {
  display: flex;
  grid-template-columns: auto auto auto auto;
  grid-gap: 30px;
  padding: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.grid-container > div {
  text-align: center;
  padding: 0px 0;
}
.grid-container > div img {
  border-radius: 3.125rem;
  border: 1px solid #efefef;
  transition: 0.3s;
}
.grid-container > div img:hover {
  border-color: #0088DD;
}

.content {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 1rem;
}
.content li {
  font-size: 0.875rem;
  line-height: 2rem;
  padding-left: 2rem;
  position: relative;
}
.content li::before {
  content: "";
  display: block;
  width: 0.3rem;
  height: 0.3rem;
  background-color: #0D49CD;
  border-radius: 50%;
  position: absolute;
  left: 1rem;
  top: 10px;
}

.choose-us {
  position: relative;
  z-index: 1;
  padding: 8rem 0;
  background-color: #efefef;
}
.choose-us .map-shape-bg {
  position: absolute;
  left: 0;
  bottom: 85px;
  z-index: -1;
  width: 13%;
}
.choose-us .thumb-wrap {
  padding-top: 15px;
  margin-bottom: 35px;
  padding-right: 0;
  padding-left: 55px;
}
@media (max-width: 767px) {
  .choose-us .thumb-wrap {
    padding-right: 30px;
    padding-left: 25px;
  }
}
.choose-us .thumb-wrap .main-thumb {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  background: #ffffff;
  transform: rotate(-4deg);
  border: 8px solid #ffffff;
  border-radius: 3.125rem;
  max-width: 288px;
  position: relative;
  z-index: 1;
}
.choose-us .thumb-wrap .thumb-2 {
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  border: 8px solid #ffffff;
  border-radius: 3.125rem;
  background: #ffffff;
  transform: rotate(3deg);
}

.destination .owl-dots {
  display: none;
}
.destination .owl-nav {
  margin: 0;
}
.destination .owl-carousel .owl-item .promo {
  height: 100%;
  min-height: auto;
}
.destination .owl-carousel .owl-item .promo img {
  height: auto;
}
.destination .owl-carousel .owl-nav {
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.destination .owl-carousel .owl-nav button.owl-prev,
.destination .owl-carousel .owl-nav button.owl-next {
  color: #000000;
  font-size: 3rem;
  position: absolute;
  top: 40%;
  background: #ffffff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
}
.destination .owl-carousel .owl-nav button.owl-prev span,
.destination .owl-carousel .owl-nav button.owl-next span {
  line-height: 3rem;
  position: absolute;
  top: -10px;
  left: 8px;
  color: #0088DD;
}
.destination .owl-carousel .owl-nav button.owl-prev:hover,
.destination .owl-carousel .owl-nav button.owl-next:hover {
  background-color: #0D49CD;
  color: #ffffff;
}
.destination .owl-carousel .owl-nav button.owl-prev {
  left: -2%;
}
@media screen and (max-width: 575px) {
  .destination .owl-carousel .owl-nav button.owl-prev {
    left: 0px;
  }
}
.destination .owl-carousel .owl-nav button.owl-next {
  right: -2%;
}
@media screen and (max-width: 575px) {
  .destination .owl-carousel .owl-nav button.owl-next {
    right: 0px;
  }
}
.destination .owl-carousel:hover .owl-nav {
  opacity: 1;
}
.destination .card-hover-effect {
  width: 100%;
  height: 500px;
  border-radius: 3.125rem;
  padding: 1.5rem;
  background: white;
  position: relative;
  display: flex;
  align-items: flex-end;
  box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.destination .card-hover-effect:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
}
.destination .card-hover-effect img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
  transition: 0.4s ease-out;
}
.destination .card-hover-effect .info {
  position: relative;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
}
.destination .card-hover-effect .info h1 {
  margin: 0px;
}
.destination .card-hover-effect .info p {
  letter-spacing: 1px;
  font-size: 15px;
  margin-top: 8px;
}
.destination .card-hover-effect:hover img {
  transform: translateY(3px);
}
.destination .card-hover-effect:hover .info {
  opacity: 1;
  transform: translateY(0px);
}
.destination .card-hover-effect:hover:before {
  opacity: 1;
}

.testimonial-sec {
  padding-bottom: 110px;
  padding-top: 110px;
  background: rgba(0, 136, 221, 0.05);
}
.testimonial-sec .client-avatar-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 575px) {
  .testimonial-sec .client-avatar-wrap {
    overflow: hidden;
    overflow-x: scroll;
  }
}
.testimonial-sec .client-avatar-wrap a {
  margin-right: 0.5rem;
}
.testimonial-sec .client-avatar-wrap a .box {
  display: block;
}
.testimonial-sec .client-avatar-wrap a .box img {
  border-radius: 3.125rem;
}
.testimonial-sec .content-wrap {
  margin: 0 93px;
}
@media (max-width: 575px) {
  .testimonial-sec .content-wrap {
    margin: 0 0px;
  }
}
.testimonial-sec .content-wrap .title {
  text-transform: capitalize;
  color: #696969;
  margin-bottom: 10px;
  display: inline-block;
}
.testimonial-sec .content-wrap .name {
  font-size: 22px;
  line-height: 136%;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 1rem;
}
.testimonial-sec .content-wrap p {
  font-style: italic;
  font-size: 18px;
  line-height: 36px;
  text-transform: capitalize;
  color: #696969;
}
.testimonial-sec .content-wrap .ratings {
  margin-bottom: 2rem;
  margin-top: 1rem;
}
.testimonial-sec .content-wrap .ratings i {
  color: #e8b723;
  font-size: 18px;
}
.testimonial-sec .content-wrap .ratings i:last-child {
  color: #cfcfcf;
}

.partner {
  padding: 4rem 0 1rem 0;
}

.footer {
  background-color: rgba(13, 73, 205, 0.95);
  position: relative;
  padding: 3rem 0 2rem 0;
}
.footer .footer-bg {
  background-image: url(../images/hero/hero-bg.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.05;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  filter: brightness(100%) contrast(100%) saturate(0%) blur(0px) hue-rotate(0deg);
}
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5 {
  color: #ffffff;
  margin-bottom: 2rem;
}
.footer p {
  color: #ffffff;
  line-height: 1.5rem;
}
.footer .link-reset {
  color: #cfcfcf;
}
.footer .link-reset:hover {
  color: #ffffff;
}
.footer .footer-link li {
  line-height: 2.5rem;
}
.footer .footer-link li a {
  color: #cfcfcf;
  font-size: 0.875rem;
  padding: 0 0 0.5rem 0;
}
.footer .footer-link li a:hover {
  color: #ffffff;
}
.footer .footer-icon {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  transition-duration: 0.3s;
}
.footer .footer-icon:hover {
  transform: translateY(-5px);
}
.footer .footer-icon:hover i {
  color: #0088DD;
}
.footer .footer-icon i {
  font-size: 1.25rem;
  color: #ffffff;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  font-size: 1rem;
  border-radius: 3.125rem;
  background: #ffffff;
  text-align: center;
  transition: 0.3s;
  color: #0D49CD;
}
.footer .content-box {
  text-align: left;
  margin-left: 2rem;
}
.footer .social a {
  color: #000000;
  background: rgba(255, 255, 255, 0.75);
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
}
.footer .social a:hover {
  background: #000000;
  color: #ffffff;
}
.footer .payment-icon {
  max-width: 250px;
  margin: 0 auto;
  width: 100%;
}
.footer .accredation-icon {
  max-width: 350px;
  margin: 0 auto;
  width: 100%;
}

.footer-type2 {
  padding: 3rem 0 0rem 0;
  background: linear-gradient(-180deg, #0D49CD 0%, #000000 100%);
}
.footer-type2 .footer-call {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-type2 .footer-call i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 50px 50px 50px 0;
  background: transparent !important;
  font-size: 45px !important;
  text-align: center;
  transition: 0.3s;
  color: #ffffff;
}
.footer-type2 .footer-call a {
  color: #ffffff;
}
.footer-type2 .footer-call a:hover {
  color: #000000;
}
.footer-type2 .subscribe .form-group {
  position: relative;
  margin-bottom: 1rem;
}
.footer-type2 .subscribe .form-group i {
  position: absolute;
  left: 20px;
  top: 15px;
  color: #696969;
}
.footer-type2 .subscribe .form-group .form-control {
  padding: 14px 20px;
  border-radius: 3.125rem;
  box-shadow: none;
  border: none;
  color: #696969;
  padding: 15px 18px 15px 45px;
}
.footer-type2 .copyright-sec {
  padding: 20px 0;
  border-top: 1px dashed #0D49CD;
}

.scrollup {
  overflow: hidden;
  position: fixed;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  bottom: -5rem;
  left: 1rem;
  text-align: center;
  z-index: 1;
  background-color: black;
  display: block;
  transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
  transform: rotate(90deg);
  z-index: 10;
  border-radius: 3.125rem;
}
.scrollup i {
  font-size: 1.5rem;
  display: inline-block;
  transition: all 0.5s ease-out;
  color: #ffffff;
}
.scrollup i:hover, .scrollup i:focus {
  animation: toBottomFromTop 0.5s forwards;
}
@keyframes toBottomFromTop {
  49% {
    transform: translateX(-20%);
  }
  50% {
    opacity: 0;
    transform: translateX(20%);
  }
  51% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
.scrollup:hover, .scrollup:focus {
  color: #0D49CD;
}
.scrollup:hover {
  background-color: #0088DD;
}
.scrollup.back-top {
  bottom: 100px;
}

.cta-fixed {
  position: fixed;
  bottom: 160px;
  right: 0px;
  text-align: end;
  z-index: 10;
  display: inline-grid;
  justify-content: end;
}
@media screen and (max-width: 992px) {
  .cta-fixed {
    left: 0;
    bottom: 10px;
  }
}
.cta-fixed .phone a {
  background-color: #ff5f4a;
  padding: 8px 20px;
  border-radius: 3.125rem 0 0 3.125rem;
  color: #ffffff;
  font-size: 1.25rem;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  min-width: 60px;
  line-height: 1;
}
.cta-fixed .phone a:hover {
  background-color: #000000;
}
@media screen and (max-width: 575px) {
  .cta-fixed .phone a {
    padding: 8px 5px;
    font-size: 0.875rem;
  }
}
.cta-fixed .whats a {
  background-color: #25D366;
  padding: 8px 20px;
  border-radius: 3.125rem 0 0 3.125rem;
  color: #000000;
  font-size: 1.25rem;
  transition: 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
  min-width: 60px;
  line-height: 1;
}
.cta-fixed .whats a:hover {
  background-color: #efefef;
}
@media screen and (max-width: 575px) {
  .cta-fixed .whats a {
    padding: 8px 5px;
    font-size: 0.875rem;
  }
}

.breadcrumb-area {
  position: relative;
  z-index: 1;
  background-image: url(../images/section/breadcrumb-image.jpg);
  background-position: center top;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: end;
  text-align: center;
}
@media (max-width: 767px) {
  .breadcrumb-area {
    min-height: 350px;
  }
}
.breadcrumb-area::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  left: 0;
  top: 0;
  z-index: -1;
}
.breadcrumb-area .breadcrumb-content {
  width: 30%;
  border-radius: 3.125rem;
  margin: auto;
  -webkit-backdrop-filter: blur(2px) saturate(180%);
          backdrop-filter: blur(2px) saturate(180%);
  background-color: rgba(207, 207, 207, 0.25);
  margin-bottom: 2rem;
}
@media (max-width: 992px) {
  .breadcrumb-area .breadcrumb-content {
    width: 100%;
  }
}
.breadcrumb-area .breadcrumb-content h2 {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  padding: 1rem 0 0 0;
}
.breadcrumb-area .breadcrumb-content ul {
  padding-left: 0;
  list-style-type: none;
  padding: 12px 0 1rem 0;
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb-content ul li {
  color: #ffffff;
  display: inline-block;
  position: relative;
  margin-left: 0px;
  margin-right: 30px;
}
.breadcrumb-area .breadcrumb-content ul li::before {
  content: "\f138";
  font-family: "bootstrap-icons";
  position: absolute;
  right: -25px;
  top: 0px;
}
.breadcrumb-area .breadcrumb-content ul li:last-child::before {
  display: none;
}
.breadcrumb-area .breadcrumb-content ul li a {
  display: inline-block;
  color: #000000;
  transition: 0.4s;
}
.breadcrumb-area .breadcrumb-content ul li a:hover {
  color: #0D49CD;
}

.blink {
  color: #ff5f4a;
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  display: block;
  animation: blinker 1.3s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.contact {
  padding: 8rem 0 5rem 0;
}
.contact .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 710px;
}
.contact a {
  color: #000000;
  display: inline-block;
  margin-top: 1rem;
  font-size: 1.25rem;
}
.contact a:hover {
  color: #0D49CD;
}
.contact a:hover h2,
.contact a:hover span {
  color: #0D49CD;
}

.map-sec {
  padding: 1rem 0 5rem 0;
}
.map-sec iframe {
  border: 0;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 3.125rem;
}

.term h3 {
  color: #0D49CD;
  margin-top: 2rem;
}

.about-sec {
  padding: 5rem 0 2rem 0;
}
.about-sec .about-bg-map {
  top: 0;
  right: -30px;
  position: absolute;
  z-index: -1;
}
@media (max-width: 575px) {
  .about-sec .about-bg-map {
    right: 0px;
  }
}

.what-we-do {
  position: relative;
  z-index: 1;
  padding-bottom: 5rem;
  padding-top: 3rem;
}
.what-we-do .wrap-box {
  padding: 2rem;
  box-shadow: 0 4px 50px 0 #cfcfcf;
  border-radius: 3.125rem;
  background: #ffffff;
}
.what-we-do .wrap-box .icon {
  border-radius: 3.125rem;
  background: rgba(0, 170, 113, 0.25);
  width: 60px;
  height: 60px;
  text-align: center;
  display: inline-block;
  line-height: 60px;
}

.highlight-sec {
  position: relative;
  margin-top: -190px;
  margin-bottom: -40px;
}
.highlight-sec .banner-space {
  padding-top: 175px;
  padding-bottom: 50px;
  text-align: center;
}
.highlight-sec .bottom {
  padding-bottom: 190px;
}
.highlight-sec .bottom .title {
  text-shadow: 0 5px 15px rgba(33, 120, 128, 0.2784313725);
  font-weight: 600;
  font-size: 130px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #ffffff;
  -webkit-text-stroke-width: 2px;
  text-align: center;
}
@media (max-width: 992px) {
  .highlight-sec .bottom .title {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  .highlight-sec .bottom .title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .highlight-sec .bottom .title {
    font-size: 30px;
  }
}

.faq-sec {
  padding: 5rem 0;
}
.faq-sec .custom-accordion .accordion-item {
  border: none;
}
.faq-sec .custom-accordion .accordion-item.faq-active {
  border: 1px solid #cfcfcf;
  border-radius: 3.125rem;
}
.faq-sec .custom-accordion .accordion-item .accordion-button {
  background-color: transparent;
  border: 0px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #000000;
  border: none;
  padding: 26px 30px;
  background: #efefef;
  border-radius: 3.125rem;
}
.faq-sec .custom-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #0D49CD;
  background-color: transparent;
  box-shadow: none;
}
.faq-sec .custom-accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 3.125rem;
  border-bottom-left-radius: 3.125rem;
}
.faq-sec .custom-accordion .accordion-item .accordion-body {
  padding: 0px 30px;
  padding-bottom: 25px;
}

.cta-banner {
  position: relative;
  z-index: 1;
  padding: 1rem 0 6rem 0;
}
.cta-banner .cta-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.cta-banner .cta-content {
  background: #0088DD;
  background: linear-gradient(325deg, #0d49cd 0%, #0088dd 100%);
  height: 100%;
  padding: 73px 20px;
  border-radius: 0px 3.125rem 3.125rem 0px;
  overflow: hidden;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cta-banner .cta-content {
    border-radius: 0px 0px 3.125rem 3.125rem;
  }
}
.cta-banner .cta-content .title {
  font-weight: 800;
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.cta-banner .cta-content .desc {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 0.5rem;
}
.cta-banner .video-wrap {
  border-radius: 3.125rem 0px 0px 3.125rem;
}
@media (max-width: 992px) {
  .cta-banner .video-wrap {
    border-radius: 3.125rem 3.125rem 0px 0px;
  }
}
.cta-banner .video-wrap .video-inner {
  padding: 110px 0;
  text-align: center;
}

.gallery-sec {
  padding: 6rem 0;
}
.gallery-sec .gallery-card {
  position: relative;
  width: 100%;
}
.gallery-sec .gallery-card figure {
  position: relative;
  overflow: hidden;
  margin: 0px;
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 3.125rem;
}
.gallery-sec .gallery-card figure img {
  position: relative;
  display: block;
  min-height: 100%;
  min-width: 100%;
  opacity: 0.8;
  width: -webkit-fill-available;
}
.gallery-sec .gallery-card figure .gallery-text {
  transition: transform 0.5s, opacity 0.3s;
  position: absolute;
  z-index: 99;
  bottom: 37px;
  opacity: 0;
  transform: translateX(0);
  max-width: 100%;
}
.gallery-sec .gallery-card figure .gallery-text .heading {
  color: #ffffff;
  font-size: 1.5rem;
}
.gallery-sec .gallery-card figure .gallery-text .title {
  color: #ffffff;
  font-size: 1rem;
}
.gallery-sec .gallery-card figure:hover .gallery-text {
  opacity: 1;
  transform: translateX(39px);
}
.gallery-sec .gallery-card figure .bg-overlay {
  transition: transform 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  transform: translatey(100%);
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 61.5%, rgba(0, 0, 0, 0.4) 82.25%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-sec .gallery-card figure .bg-overlay i {
  color: #000000;
  font-size: 2.5rem;
}
.gallery-sec .gallery-card figure:hover .bg-overlay {
  transform: translatey(0);
}
.gallery-sec .colum5 .gallery-card figure {
  max-height: 250px;
}
.gallery-sec .colum5 .gallery-card figure .gallery-text .heading,
.gallery-sec .colum5 .gallery-card figure .gallery-text .title {
  display: none;
}

.filter-controls {
  margin: 30px auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
.filter-controls li {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: #000000;
  background: #efefef;
  cursor: pointer;
  border-radius: 3.125rem;
  transition: 0.3s all;
}
.filter-controls li:hover {
  background: #0D49CD;
  color: #ffffff;
}
.filter-controls li.active {
  color: #ffffff;
  background: #0D49CD;
}
.filter-controls li:last-child {
  margin-right: 0;
}

.product-gallery .owl-carousel {
  z-index: 0;
}
.product-gallery .owl-carousel .owl-item img {
  border-radius: 3.125rem;
}
.product-gallery .slider-for img {
  width: 100%;
  height: auto;
}
.product-gallery .gallery-thumb {
  margin-top: 1rem;
}
.product-gallery .gallery-thumb img {
  width: 19%;
  height: auto;
  padding: 1%;
  border-radius: 3.125rem;
}

.widget {
  margin-bottom: 3rem;
  background: rgba(13, 73, 205, 0.05);
  padding: 1rem;
  border-radius: 2rem;
}

.gallery-list li {
  border-bottom: 1px dashed #efefef;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  text-transform: capitalize;
  color: #cfcfcf;
  font-size: 1rem;
  font-weight: 600;
  line-height: 33px;
}
.gallery-list li:last-child {
  border-bottom: none;
}
.gallery-list span {
  display: block;
  font-weight: normal;
  margin: 0;
  text-transform: capitalize;
  color: #696969;
}

.our-team {
  position: relative;
  padding: 6rem 0 6rem 0;
}
.our-team .team-card {
  cursor: pointer;
  position: relative;
  background-color: #efefef;
  overflow: hidden;
  margin: auto;
  text-align: center;
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  transition: 0.3s linear;
  z-index: 0;
  border-radius: 3.125rem;
}
.our-team .team-card figure {
  margin: auto;
}
.our-team .team-card figure img {
  width: 160px;
  height: 160px;
  border-radius: 0 0 3.125rem 3.125rem;
  border: 2px solid #0088DD;
}
.our-team .team-card:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 9%;
  background: #0088DD;
  transform: rotate(0deg);
  transition: all 0.3s ease-out 0s;
  z-index: -1;
}
.our-team .team-card:hover {
  transform: translateY(-7px);
}
.our-team .team-card:hover:before {
  background: #0D49CD;
}
.our-team .team-card:hover figure img {
  border-color: #0D49CD;
}
.our-team .team-social a {
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 3.125rem;
  background: #cfcfcf;
  display: inline-block;
  color: #0D49CD;
  margin-top: 1.25rem;
  font-size: 1rem;
}
.our-team .team-social a:hover {
  background: #0D49CD;
  color: #ffffff;
}

.team-details .details-text {
  position: relative;
}
.team-details .details-text p {
  line-height: 30px;
}
.team-details .details-rating {
  text-align: left;
}
.team-details .details-rating .rating i {
  font-size: 1.5rem;
  display: inline-block;
  color: #0088DD;
}
.team-details .details-rating span {
  display: block;
  font-size: 1.2rem;
}
.team-details .details-widget {
  margin: 1rem 0;
}
.team-details .details-widget ul {
  margin-bottom: 20px;
}
.team-details .details-widget li {
  list-style: none;
  line-height: 2.5rem;
  position: relative;
  padding-left: 18px;
}
.team-details .details-widget li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  height: 6px;
  width: 6px;
  background: #0D49CD;
  border-radius: 3.125rem;
}
.team-details .details-widget li span {
  width: 215px;
  display: inline-block;
  font-weight: 700;
}

.error {
  background-color: rgba(0, 136, 221, 0.1);
  padding: 7rem 0 5rem 0;
}
.error .text {
  background-image: url(../images/section/bgtext.jpg);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 20rem;
  font-weight: 700;
  line-height: 20rem;
}
@media screen and (max-width: 992px) {
  .error .text {
    font-size: 15rem;
  }
}
@media screen and (max-width: 575px) {
  .error .text {
    font-size: 5rem;
    line-height: 5rem;
  }
}

.coming-soon-area {
  position: relative;
  z-index: 1;
  height: 100vh;
  background-image: url(../images/section/coming-page-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.coming-soon-area::before {
  content: "";
  z-index: -1;
  background: rgba(0, 0, 0, 0.68);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.coming-soon-area .social a,
.coming-soon-area .social .botom-link {
  color: #ffffff;
}
.coming-soon-area .social a:hover,
.coming-soon-area .social .botom-link:hover {
  color: #0D49CD;
}
.coming-soon-area ::-webkit-input-placeholder {
  color: #0D49CD !important;
}

#timer {
  font-size: 2.5em;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  justify-content: center;
}
#timer div {
  display: inline-block;
  min-width: 120px;
  text-align: center;
  border-right: 1px solid #cfcfcf;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  #timer div {
    min-width: 60px;
  }
}
#timer div:last-child {
  border-right: none;
}
#timer div span {
  color: #ffffff;
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.price-sec {
  padding: 5rem 0;
}
.price-sec .price-box {
  border: 1px solid #cfcfcf;
  text-align: center;
  position: relative;
  transition: all 0.5s ease-in;
  border-radius: 3.125rem;
  padding: 3rem;
}
@media screen and (max-width: 1200px) {
  .price-sec .price-box {
    padding: 2rem;
  }
}
.price-sec .price-box:hover .price {
  color: #0D49CD;
}
.price-sec .price-box .pricing-rate {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.price-sec .price-box .list {
  text-align: left;
}
.price-sec .price-box .list ul li {
  line-height: 2.5rem;
  color: #696969;
  font-weight: 500;
}
.price-sec .price-box .tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 12px;
  background-color: #0D49CD;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
}
.price-sec .price-box .tag:before {
  content: "";
  position: absolute;
  right: -20px;
  top: 0;
  border-right: 20px solid #ffffff;
  border-bottom: 15px solid #0D49CD;
  border-top: 15px solid #0D49CD;
}

.services-sec {
  padding: 8rem 0;
}
.services-sec .process-card {
  position: relative;
  z-index: 0;
  overflow: hidden;
  cursor: pointer;
  border-radius: 3.125rem;
}
.services-sec .process-card:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2rem;
  left: -2rem;
  background: rgba(13, 73, 205, 0.25);
  opacity: 0.5;
  height: 2rem;
  width: 2rem;
  border-radius: 50%;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
}
.services-sec .process-card:hover:before {
  transform: scale(50);
}
.services-sec .process-card:hover p {
  transition: all 0.3s ease-out;
}
.services-sec .process-card:hover .icon {
  transform: translateY(-10px);
}
.services-sec .process-card .icon {
  width: 70px;
  height: 70px;
  margin: auto;
  transition: 0.5s ease-in-out;
  margin-top: 1rem;
}
.services-sec .position {
  position: absolute;
  top: 50%;
  left: 50%;
}

.service-sidebar {
  background: #ffffff;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 3.125rem;
}
.service-sidebar .title {
  margin-bottom: 1rem;
  position: relative;
}
.service-sidebar .other-services li {
  border-bottom: 1px solid #efefef;
}
.service-sidebar .other-services li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}
.service-sidebar .other-services li a {
  display: block;
  padding: 1rem 0;
  transition: all 0.5s ease-in-out;
  color: #000000;
}
.service-sidebar .other-services li a:hover {
  padding-left: 10px;
  color: #0088DD;
}
.service-sidebar .other-services li a i {
  margin-right: 5px;
  color: #0D49CD;
}

.auth-area {
  position: relative;
  padding: 14rem 0 10rem 0;
  background: linear-gradient(325deg, rgba(13, 73, 205, 0.1) 0%, rgba(232, 183, 35, 0.21) 50%, rgba(0, 136, 221, 0.17) 100%);
}
.auth-area .bg-auth {
  width: 100%;
  height: 100vh;
  display: block;
  background-image: url(../images/section/auth-area.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.login-app {
  list-style: none;
  display: flex;
  justify-content: center;
}
.login-app li {
  padding: 1rem 0.5rem;
}
.login-app li a {
  display: inline-block;
  background: url(../images/icons/app-icon.png) no-repeat;
  width: 60px;
  height: 60px;
}
.login-app li .fb {
  background-position: 0 0;
}
.login-app li .go {
  background-position: 0 -72px;
}
.login-app li .in {
  background-position: 0 -148px;
}

.cruise-checkout {
  padding: 8rem 0 5rem 0;
}

.order-detail {
  background: linear-gradient(325deg, rgba(13, 73, 205, 0.1) 0%, rgba(232, 183, 35, 0.21) 50%, rgba(0, 136, 221, 0.17) 100%);
  border: 1px solid #0088DD;
  border-radius: 3.125rem;
  padding: 2rem;
}
.order-detail .form-pay {
  display: grid;
  grid-gap: 1em;
  gap: 1em;
}
.order-detail .form-pay .pay-radio {
  align-items: center;
  background-color: #ffffff;
  border-radius: 3.125rem;
  display: flex;
  padding: 1rem;
}
.order-detail .form-pay .pay-radio label {
  align-items: center;
  display: flex;
  flex: 1;
  grid-gap: 1em;
  gap: 1em;
}

.shop-cart {
  padding: 6rem 0 6rem 0;
}
.shop-cart img {
  width: 60%;
  border: 1px solid #efefef;
  border-radius: 3.125rem;
}
@media (max-width: 575px) {
  .shop-cart img {
    width: 80%;
  }
}
.shop-cart .input-spinner .button-minus,
.shop-cart .input-spinner .button-plus {
  background-color: transparent;
  border-color: #696969;
  height: 3rem;
  width: 2.4rem;
  line-height: 2.5rem;
  border-radius: 3.125rem;
}
.shop-cart .input-spinner .button-minus:hover,
.shop-cart .input-spinner .button-plus:hover {
  background-color: #efefef;
}
.shop-cart .input-spinner .form-input {
  background: 0 0;
  border: 1px solid #696969;
  height: 100%;
  min-height: 3rem;
  text-align: center;
  width: 2.5rem !important;
  padding: 0;
}

.pagination {
  display: flex;
  border: 1px solid #0088DD;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 0.5rem;
  border-radius: 3.125rem;
  margin: auto;
}
.pagination li .page-link {
  background-color: transparent;
  color: #000000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  font-size: 0.875rem;
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
  border: none;
  border-right: 1px solid #0D49CD;
}
.pagination li .page-link:hover, .pagination li .page-link.active {
  background: #0D49CD;
  color: #ffffff;
}
.pagination li .page-link:first-child {
  border-radius: 0;
  border-radius: 3.125rem;
}
.pagination li .page-link:last-child {
  border-radius: 0;
  border-radius: 3.125rem;
}
.pagination li .page-link.prev, .pagination li .page-link.next {
  width: 90px;
  font-size: 0.875rem;
  background-color: #0088DD;
  border-radius: 3.125rem;
  color: #000000;
  border-right: 0px;
}
@media screen and (max-width: 575px) {
  .pagination li .page-link.prev, .pagination li .page-link.next {
    width: 54px;
  }
}
.pagination li .page-link.prev:hover, .pagination li .page-link.next:hover {
  background-color: #0D49CD;
}
.pagination li:last-child a {
  margin-right: 0px;
}
.pagination .disabled > .page-link,
.pagination .page-link.disabled {
  background-color: rgba(13, 73, 205, 0.5) !important;
}

.blog-list-head {
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  color: #000000;
  font-weight: bold;
  border-bottom: 1px solid #696969;
  padding-bottom: 1rem;
}
.blog-list-head:after {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #0D49CD;
}

.widget-categories li :first-child {
  margin-top: 0;
}
.widget-categories li .count {
  background-color: #0D49CD;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 0.8rem;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
.widget-categories li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #696969;
  padding: 10px 15px;
  padding-left: 15px;
  position: relative;
  transition: all 0.2s;
}
.widget-categories li a:hover {
  background: rgba(13, 73, 205, 0.04);
  color: #0088DD;
}
.widget-categories li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.widget-categories li a::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background: #0088DD;
  border-radius: 2px 0px 0px 2px;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.2s;
  transform: translateX(-5px);
}

.tags-blog {
  list-style-type: none;
}
.tags-blog li {
  padding: 1rem 0.5rem;
  margin: 0 0;
  display: inline-block;
}
.tags-blog li a {
  color: #696969;
  border-radius: 3.125rem;
  background: #efefef;
  padding: 0.5rem;
}
.tags-blog li a:hover {
  background: #0088DD;
  color: #000000;
}

.post-thumb img {
  width: 100px;
  height: auto;
  border-top-left-radius: 0;
}

.search-form {
  border: 1px solid #0088DD;
  border-radius: 3.125rem;
  padding: 0.5rem;
}
.search-form input {
  font-size: 0.875rem !important;
}
.search-form input:focus {
  box-shadow: none;
}
.search-form button {
  background-color: #0D49CD;
  min-width: 50px;
  min-height: 50px;
  border-radius: 3.125rem !important;
}
.search-form button i {
  color: #ffffff;
}
.search-form button:hover {
  background-color: #0088DD;
}

.blog-post-social {
  border-top: 1px solid #696969;
}
.blog-post-social .post-tag-list {
  display: flex;
  justify-content: start;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.blog-post-social .post-tag-list li {
  font-weight: bold;
  color: #000000;
  margin: 0 8px 5px 0;
}
.blog-post-social .post-tag-list li:first-child {
  margin-right: 10px;
  border: none;
}
.blog-post-social .post-tag-list li a {
  font-size: 0.875rem;
  color: #696969;
  font-weight: normal;
  border: 1px solid #696969;
  padding: 0.5rem 1rem;
  display: inline-block;
  border-radius: 3.125rem;
}
.blog-post-social .post-tag-list li a:hover {
  color: #0088DD;
  border-color: #0D49CD;
}
.blog-post-social .blog-icon-list {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #efefef;
  padding: 10px 30px;
  border-radius: 3.125rem;
}
.blog-post-social .blog-icon-list li {
  margin-left: 1.5rem;
}
.blog-post-social .blog-icon-list li a {
  display: inline-block;
  font-size: 1rem;
  transition: 0.4s ease;
  color: #696969;
}
.blog-post-social .blog-icon-list li a i {
  padding-right: 1rem;
}
.blog-post-social .blog-icon-list li a:hover {
  color: #0D49CD;
}

.blog-details-form h4 {
  color: #000000;
  font-weight: 700;
  margin-bottom: 26px;
}
.blog-details-form form input {
  height: 50px;
  width: 100%;
  background: #ffffff;
  font-size: 1rem;
  color: #0D49CD;
  padding-left: 20px;
  border-radius: 3.125rem;
  border: 1px solid #efefef;
  margin-bottom: 30px;
}
.blog-details-form form textarea {
  height: 115px;
  width: 100%;
  background: #ffffff;
  font-size: 1rem;
  color: #0D49CD;
  padding-left: 20px;
  border-radius: 3.125rem;
  padding-top: 12px;
  resize: none;
  border: 1px solid #efefef;
  margin-bottom: 34px;
}

.blog-details-comment {
  padding-bottom: 10px;
}
.blog-details-comment h4 {
  color: #0D49CD;
  font-weight: 700;
  margin-bottom: 40px;
  border-bottom: 1px solid #696969;
  padding-bottom: 15px;
  font-size: 2.5rem;
}
.blog-details-comment .comment-item {
  margin-bottom: 40px;
  overflow: hidden;
  background-color: #efefef;
  border-radius: 3.125rem;
  border-top-left-radius: 0;
  padding: 1rem;
}
.blog-details-comment .comment-item.comment-item--reply {
  margin-left: 40px;
}
.blog-details-comment .comment-item-pic {
  float: left;
  margin-right: 16px;
}
.blog-details-comment .comment-item-text {
  overflow: hidden;
}
.blog-details-comment .comment-item-text span {
  font-size: 0.875rem;
  color: #696969;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.blog-details-comment .comment-item-text h5 {
  color: #0D49CD;
  font-weight: 700;
  margin-bottom: 10px;
}
.blog-details-comment .comment-item-text p {
  color: #696969;
  font-size: 0.875rem;
  line-height: 22px;
  margin-bottom: 25px;
}
.blog-details-comment .comment-item-text a {
  display: inline-block;
  color: #ffffff;
  background: #0D49CD;
  padding: 6px 15px;
  letter-spacing: 2px;
  border-radius: 3.125rem;
  border-top-left-radius: 0;
  transition: all, 0.3s;
  font-size: 0.75rem;
  margin-right: 1rem;
  color: #000000;
}
.blog-details-comment .comment-item-text a:hover {
  background: #0088DD;
}

.blog-card p {
  color: #000000;
  line-height: 2.25rem;
}
.blog-card a {
  font-size: 0.875rem;
}
.blog-card a .cat {
  color: #696969;
}
.blog-card a .cat i {
  color: #696969;
}
.blog-card a .cat:hover {
  color: #0D49CD;
}
.blog-card a .cat:hover i {
  color: #0D49CD;
}
.blog-card .post-wrap {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.blog-card .post-wrap p i {
  line-height: 2rem;
  border-right: 4px solid #0D49CD;
  height: 100%;
  display: block;
  padding: 1rem;
  background: rgba(13, 73, 205, 0.04);
  text-align: justify;
  color: #000000;
}
.blog-card .post-wrap .post-desc {
  line-height: 2.25rem;
  text-align: justify;
  color: #000000;
}
.blog-card .post-wrap .image-caption {
  color: #696969;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
}
.blog-card .post-wrap .blog-details-list ul {
  margin-bottom: 14px;
}
.blog-card .post-wrap .blog-details-list ul li {
  display: flex;
}
.blog-card .post-wrap .blog-details-list ul li span {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: #0D49CD;
  text-align: center;
  line-height: 22px;
  color: #ffffff;
  font-size: 12px;
  border-radius: 50%;
  transform: translateY(7px);
  margin-right: 9px;
}
.blog-card .post-wrap .blog-details-list ul li p {
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 0;
}
.blog-card .post-wrap .blog-details-list ul li:not(:last-child) {
  margin-bottom: 6px;
}
.blog-card .post-wrap .video-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}/*# sourceMappingURL=main.css.map */