/* loader */

/* Loader Overlay */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to top,
    #012d52,
    #003764,
    #004177,
    #004b8a,
    #00559d
  );
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#loader-content {
  text-align: center;
}

.loader-logo {
  width: 180px;
  /* Adjust as needed */
}

.loader-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

body.loaded #loader-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.bounce-animation {
  animation: bounce 1.5s infinite;
}

.video-container {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  margin-top: -100px;
}

video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: -1;
}

/* Controls container */
.controls {
  position: absolute;
  bottom: 50px;
  display: flex;
  width: 100%;
}

.buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.control-btn {
  background: rgba(0, 0, 0, 0);
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.control-btn img {
  width: 30px;
  height: 30px;
}

/* Custom progress bar */
.progress-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
}

.progress-filled {
  height: 100%;
  background: white;
  width: 0%;
  border-radius: 3px;
}

.cntr {
  display: flex;
  width: 100%;

  justify-content: space-between;
  align-items: center;
}

.cntr-right {
  display: flex;
  width: 150px;
  justify-content: space-between;
  padding-left: 20px;
}

.cntr-left {
  display: contents;
}

.controls .col-lg-8 {
  display: flex;
  align-items: flex-end;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease-out;
  will-change: transform, opacity;
}

.scroll-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* navbar */

.navbar {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  width: 220px;
}

/* nav menu button */

.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  content: "";
  position: absolute;
}

.navbar .menu-btn__lines,
.navbar .menu-btn__lines::before,
.navbar .menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: #132f48;
  transition: all 0.4s ease-in-out;
}

.navbar .menu-btn__lines::before {
  transform: translateY(-0.5rem);
}

.navbar .menu-btn__lines::after {
  transform: translateY(0.5rem);
}

.navbar .menu-items {
  display: flex;
  align-items: center;
}

.navbar ul li {
  list-style: none;
  transition: 0.3s ease;
}

.navbar ul li .arrow {
  transition: all 0.3s ease-out;
}

.navbar ul li a {
  text-decoration: none;
  color: #ffffff;
}

/* dropdown menu */

.navbar .dropdown {
  position: relative;
}

.expand-btn:after {
  font-family: "Material-Design-Iconic-Font";
  content: "\f2f9";
  margin-left: 8px;
  font-size: 20px;
  padding-top: 0px;
}

.navbar .dropdown-menu,
.menu-right {
  position: absolute;
  background: #e9ecef;
  width: 190px;
  line-height: 30px;
  border-radius: 0 0 5px 5px;
  top: 65px;
  border-top: 1px solid white;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  -webkit-box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 20px 50px 0 rgb(0 0 0 / 5%);
}

.navbar .menu-right {
  top: 0;
  left: 100%;
}

.navbar .dropdown-menu,
.menu-left {
  left: unset;
  right: 0;
}

.navbar .menu-left {
  left: -100%;
}

.navbar .menu-item {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 1.5rem;
  font-size: 16px;
  font-weight: 600;
}

.navbar .menu-item:hover {
  color: #b4ddff;
}

.menu-item.first-item {
  padding: 2.1rem 1rem;
  display: flex;
  text-transform: uppercase;
  align-items: center;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-right {
  left: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown-right:hover .menu-left {
  left: -100%;
}

/* mega menu  */

.navbar .mega-menu {
  position: absolute;

  width: 100vw;
  top: 100px;

  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out 0s, visibility 0.1s linear 0s;
}

.mega-menu .content {
  background: #e4f0f9;
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 650px;
  justify-content: space-between;
  border-radius: 0px 0px 20px 20px;
  margin-left: 20px;
  overflow: hidden;
}

.mega-menu .content2 {
  background: #e4f0f9;
  display: flex;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 220px;
  justify-content: space-between;
  border-radius: 0px 0px 20px 20px;
  margin-left: 20px;
  overflow: hidden;
}

.blog .content {
  grid-template-columns: repeat(4, 1fr);
}

.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 3rem;
}

.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 20vw;
  overflow: hidden;
}

.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.content .col img {
  width: 100%;
  transition: transform 0.3s ease-in-out;
}

.content .col .img-wrapper:hover img {
  transform: scale(1.1);
}

.content .col .menu-title {
  color: #ff5722;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}

.content .col p {
  line-height: 1.2rem;
  margin-top: 5px;
  color: #112f48;
}

.content .col .mega-links {
  border-left: 1px solid #3c3c3c;
}

.content .col .read-more {
  font-size: 16px;
  display: flex;
  padding-top: 1rem;
  color: #03a9f4;
  transition: color 0.3s ease;
  justify-content: flex-end;
  padding-right: 10px;
}

.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem;
}

.menu-items li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.content .col .read-more:hover {
  color: #ff5722;
}

/* animation menu hamburger */
.menu-btn.open .menu-btn__lines {
  transform: translateX(1rem);
  background: transparent;
}

.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-0.5rem, 0.5rem);
  background: #132f48;
}

.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-0.5rem, -0.5rem);
  background: #132f48;
}

/* Responsive style */

@media screen and (max-width: 992px) {
  .navbar {
    padding: 10px 20px;
  }

  .overflow {
    overflow: hidden;
  }

  .overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .menu-btn {
    display: flex;
  }

  .navbar .menu-items {
    position: fixed;
    height: 100%;
    max-height: initial;
    overflow-y: auto;
    width: 80%;
    top: 65px;
    left: 0;
    background: #fcfcfc;
    display: block;
    transform: translateX(-100vh);
    transition: 0.3s ease-out;
    padding-bottom: 100px;
  }

  .menu-items.open {
    transform: translateY(0);
  }

  .menu-items li:first-child {
    margin-top: 20px;
  }

  .menu-items li a {
    padding: 10px 1rem;
    display: block;
    font-size: 18px;
  }

  .menu-items .dropdown-right .right-arrow {
    transform: rotate(90deg);
  }

  .menu-item.first-item {
    padding: 1rem 1rem;
  }

  /* DROPDOWN, MEGA MENUS */
  .menu-items .dropdown-menu,
  .menu-items .menu-right,
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    margin-left: -18px;
    width: auto;
    max-height: 0;
    /* transform: scaleX(0);
    transform-origin: left; */
    overflow: hidden;
    /* transition: all 0.5s ease; */
  }

  .menu-items .dropdown-menu,
  .menu-items .menu-right {
    padding-left: 1rem;
    width: 102%;
    margin-left: -10px;
  }

  .menu-items .mega-menu .col {
    padding-left: 1rem;
  }
  .expand-btn {
    position: relative;
  }
  .expand-btn.open + .sample {
    max-height: 100%;
    transform: scaleZ(1);
  }

  .expand-btn.open + .blog.sample {
    max-height: 100%;
    transform: scaleZ(1);
    max-width: fit-content;
  }

  .navbar .sample {
    border-top: none;
  }

  .sample li {
    margin: 0;
  }

  .sample li:last-child {
    border-bottom: none;
  }

  .sample li a {
    font-size: 1rem;
  }

  .mega-menu .content {
    grid-template-columns: auto;
  }

  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .col .mega-links li,
  .col .mega-links li a {
    padding: 0 0.5rem;
  }

  .content .col .mega-links {
    border-left: 0;
    padding-left: 0.5rem;
  }

  .col .mega-links li {
    margin: 0;
  }
}

.menu-items-full {
  transition: background-color 0.3s ease;
}

.menu-items-full.scrolled {
  background: rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  backdrop-filter: blur(8px) saturate(120%);
  color: #000000;
}

.menu-items-full.scrolled.navbar ul li a {
  color: #000000;
}

.menu-items-full.scrolled.navbar ul li a:hover {
  color: #004f92;
}

.menu-items-full.scrolled.navbar .logo {
  filter: invert(85%) sepia(40%) saturate(3200%) hue-rotate(180deg)
    brightness(85%) contrast(110%);
}

.menu-item.first-item.down {
  background-image: linear-gradient(
    to right,
    #004f92,
    #004884,
    #004177,
    #003a6a,
    #01335d
  );
  height: 50px;
  border-radius: 50px;
  padding: 10px 2rem;
  font-weight: 600;
}

.mar-ft-2 {
  margin-left: 20px;
}
/* .menu-items.open{ width: 300px; } */

/* new button */

.btn-dash {
  flex: 1 0 0px;
  text-align: center;
  box-sizing: border-box;
  height: 50px;
  border-radius: 50px;
  padding: 10px 2rem;
  font-weight: 600;
  background-image: linear-gradient(
    to right,
    #004f92,
    #004884,
    #004177,
    #003a6a,
    #01335d
  );
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  transition: all 0.5s;
}

.btn-dash:hover {
  cursor: pointer;
}

.btn__effect--3 {
  position: relative;
}

.btn__effect--3:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: attr(data-text);
  transform: translate3d(0, 0px, 0);
  transition: opacity 0.2s 0.25s;
  line-height: 50px;
}

.btn__effect--3 span {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: transparent;
  transition: color 0.25s ease-in-out;
}

.btn__effect--3 span:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  transform: translate3d(-100%, 0, 0);
}

.btn__effect--3:hover:before {
  opacity: 0.2;
  transition-delay: 0s;
}

.btn__effect--3:hover span {
  color: #fff;
  transition-delay: 0.75s;
}

.btn__effect--3:hover span:after {
  transform: translate3d(100%, 0, 0);
  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1) 0.2s;
}

/* creame button */

.btn-dash-plain {
  flex: 1 0 0px;
  text-align: center;
  box-sizing: border-box;
  height: 50px;

  font-weight: 600;

  color: #72442f;
  font-weight: 600;
  border: none;
  transition: all 0.5s;
  background: none;
  font-size: 18px;
  margin-left: -5px;
}

.btn-dash-plain:hover {
  cursor: pointer;
}
.btn__effectplain--3 {
  position: relative;
}
.btn__effectplain--3:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: attr(data-text);
  transform: translate3d(0, 0px, 0);
  transition: opacity 0.2s 0.25s;
  line-height: 50px;
}

.btn__effectplain--3 span {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: transparent;
  transition: color 0.25s ease-in-out;
}

.btn__effectplain--3 span:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #72442f;
  transform: translate3d(-100%, 0, 0);
}

.btn__effectplain--3:hover:before {
  opacity: 0.2;
  transition-delay: 0s;
}

.btn__effectplain--3:hover span {
  color: #72442f;
  transition-delay: 0.75s;
}

.btn__effectplain--3:hover span:after {
  transform: translate3d(100%, 0, 0);
  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1) 0.2s;
}

/* blue button */

.btn-dash-blue {
  flex: 1 0 0px;
  text-align: center;
  box-sizing: border-box;
  height: 50px;

  font-weight: 600;

  color: #00293e;
  font-weight: 600;
  border: none;
  transition: all 0.5s;
  background: none;
  font-size: 18px;
  margin-left: -5px;
}

.btn-dash-blue:hover {
  cursor: pointer;
}
.btn__effectblue--3 {
  position: relative;
}
.btn__effectblue--3:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  content: attr(data-text);
  transform: translate3d(0, 0px, 0);
  transition: opacity 0.2s 0.25s;
  line-height: 50px;
}

.btn__effectblue--3 span {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: transparent;
  transition: color 0.25s ease-in-out;
}

.btn__effectblue--3 span:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #00293e;
  transform: translate3d(-100%, 0, 0);
}

.btn__effectblue--3:hover:before {
  opacity: 0.2;
  transition-delay: 0s;
}

.btn__effectblue--3:hover span {
  color: #00293e;
  transition-delay: 0.75s;
}

.btn__effectblue--3:hover span:after {
  transform: translate3d(100%, 0, 0);
  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1) 0.2s;
}

/* pink button */

.btn-dash-pink {
  flex: 1 0 0px;
  text-align: center;
  box-sizing: border-box;
  height: 60px;
  border-radius: 60px;
  padding: 10px 2rem;
  font-weight: 600;
  background: #ffffff;
  color: #01335e;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  transition: all 0.5s;
  width: 100%;
  font-size: 22px;
}

.btn-dash:hover {
  cursor: pointer;
}

.btn__effect--6 {
  position: relative;
}

.btn__effect--6:before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  content: attr(data-text);
  transform: translate3d(0, 0px, 0);
  transition: opacity 0.2s 0.25s;
  line-height: 50px;
}

.btn__effect--6 span {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  margin: 0 auto;
  color: transparent;
  transition: color 0.25s ease-in-out;
}

.btn__effect--6 span:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #01335e;
  transform: translate3d(-100%, 0, 0);
}

.btn__effect--6:hover:before {
  opacity: 0.2;
  transition-delay: 0s;
}

.btn__effect--6:hover span {
  color: #01335e;
  transition-delay: 0.75s;
}

.btn__effect--6:hover span:after {
  transform: translate3d(100%, 0, 0);
  transition: transform 0.75s cubic-bezier(0.7, 0, 0.3, 1) 0.2s;
}

/* Slider home hawaii */
.swiper {
  padding: 20px 0;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: solid 1px #e4f0f9;
  background: #fff;
  border-radius: 30px;
}

.card__background {
  background-size: cover;
  background-position: center;

  /* filter: brightness(0.75) saturate(1.2) contrast(0.85); */
  transition: filter 200ms linear, transform 200ms linear;
  width: 100%;
  padding-bottom: 60px;
}

.card__background img {
  width: 100%;
}
.swiper-slide:hover .card__background {
  transform: scale(1.05);
}

.mySwiper:hover
  > .swiper-wrapper
  > .swiper-slide:not(:hover)
  .card__background {
  filter: brightness(2) saturate(0) contrast(1.2) blur(8px);
  transition: filter 0.3s ease;
}
.mySwiper.no-blur > .swiper-wrapper > .swiper-slide .card__background {
  filter: none !important;
}
.card__content {
  position: absolute;
  text-align: center;
  color: white;
  padding-bottom: 34px;
  z-index: 9999999;
  bottom: 0px;
  width: 100%;
}

.mySwiper {
  margin-top: 30px;
}
.mySwiper h3 {
  font-size: 16px;
  font-weight: 700;
  color: #00293e;
}
.namer {
  background: #00293e;
  border-radius: 30px;
  width: fit-content;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2px 4px;
  margin-bottom: 10px;
  margin-top: 0px;
  display: flex;
  align-items: center;
  padding-right: 15px;
}
.bg-lg {
  background: url(../images/icon-logo.svg) no-repeat;
  background-position: center left;
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-button-next {
  width: 60px;
  height: 60px;
  background: rgba(239, 248, 255, 0.6);
  border: solid 1px #ffffff;
  border-radius: 50%;
}
.swiper-button-next i {
  font-size: 2.6rem;
  color: #00293e;
}
.swiper-button-next:hover {
  background: rgba(239, 248, 255, 1);
}

.swiper-button-prev {
  width: 60px;
  height: 60px;
  background: rgba(239, 248, 255, 0.6);
  border: solid 1px #ffffff;
  border-radius: 50%;
}
.swiper-button-prev i {
  font-size: 2.6rem;
  color: #00293e;
}
.swiper-button-prev:hover {
  background: rgba(239, 248, 255, 1);
}

/* prodct luxury home hawaii */

.single-product-slider {
  width: 600px;
  margin: 0 auto;
}
.single-product-slider img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

/* testimonial home hawaii */
.testimonial-slider {
  max-width: 960px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}

.testimonial-item {
  padding: 20px;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-role {
  font-size: 15px;
  color: #b8b8b8;
}

/* Slick dots custom style */
.slick-dots li button:before {
  color: #19466d;
  font-size: 12px;
}
.slick-dots {
  left: 0px;
}
.slick-dots li {
  margin: 0 2px;
}
.slick-dots li.slick-active button:before {
  color: #19466d;
  opacity: 1;
}

.swiper-button-next svg,
.swiper-button-prev svg {
    display: none;
}