:root {
  --bg-color: #f5f5f5;
  --white: #fff;
  --text: #4d4d4d;
  --black: #000;
  --header-color: #180a08;
  --text-main: "Poppins", sans-serif;
  --header-font: "Poly", serif;
}
* {
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--bg-color);
  color: var(--text);
  overflow-x: hidden;
  font-family: var(--text-main);
  font-size: 14px;
}
.header-one {
  color: var(--header-color);
  font-family: var(--header-font);
  font-size: 60px;
  text-transform: capitalize;
  line-height: 70px;
  margin-bottom: 20px;
  text-align: center;
}
.header-two {
  color: var(--header-color);
  font-size: 25px;
  font-weight: 600;
}
p {
  line-height: 25px;
  font-weight: 400;
  text-align: center;
}
a {
  color: var(--text);
  text-decoration: none;
}
.bg-transperent {
  background-color: transparent;
}
a:hover {
  color: var(--black);
}
/* main button */
.main-btn {
    font-size: 13px;
  cursor: pointer;
  padding: 4px 4px 4px 30px;
  color: #fff;
  background-color: #180a08;
  transition: background 300ms, transform 200ms;
  transition: font-size 300ms, transform 200ms;
}
.main-btn:hover {
  transform: scale(1.05);
  color: var(--white);
}
.main-btn:hover .button__icon {
  color: #180a08;
}
.main-btn:hover .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.main-btn:hover .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}
.button__circle {
  width: 34px;
  height: 34px;
  background: #dcdcdc;
  color: var(--black);
}
.button__icon--copy {
  transform: translate(-150%, 150%);
}
@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}
.width-header {
  width: 50%;
}
/* main btn */
.section-hedaer {
  padding: 100px 0px;
}
.icon {
  width: 26px;
}
.bg-cover {
  background-size: cover;
  background-position: bottom;
}
.bg-white {
  background-color: #fff;
}
.text-white {
  color: var(--white);
}
.border-radius {
  border-radius: 25px;
}
/* NAVIGATION */
.page-wrapper {
  z-index: 1000;
}
.nav-wrapper {
  position: -webkit-sticky; /* Safari */
  background-color: #fff;
  font-size: 14px;
}
.navbar {
  grid-template-columns: 1fr 4fr;
  background-color: var(--bg-color);
}
.navbar img {
  height: 240px;
  justify-self: start;
  top: -74px;
  z-index: 1;
}
.navbar .nav {
  grid-template-columns: repeat(6, 1fr);
  justify-self: auto;
}
.nav .nav-item.active {
  font-weight: 600;
}
.nav-item a {
  text-decoration: none;
  transition: color 0.3s ease-out;
}
.social-header ul li {
  font-size: 16px;
}
.nav-item a:hover {
  color: var(--);
}
.social-header li:hover,
.social-footer li:hover {
  background-color: #180a08;
  border-radius: 7px;
}
.social-header li:hover i,
.social-footer li:hover i {
  color: var(--white);
}
/* MOBILE MENU & ANIMATION */
.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.menu-toggle,
.main-menu-btn-wrapper {
  justify-self: end;
  margin-right: 25px;
  display: none;
}
.menu-toggle:hover {
  cursor: pointer;
}
#mobile-menu.is-active .bar:nth-child(2) {
  opacity: 0;
}
#mobile-menu.is-active .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}
#mobile-menu.is-active .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}
/* hero banner */
.hero-banner-section {
  height: 80vh;
  background-color: var(--bg-color);
}
.hero-gradient {
  background: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.21) 50%,
    rgba(0, 0, 0, 0.22) 0%
  );
}
.carousel-item_hero {
  padding: 0px 20px 0px;
  background-color: var(--bg-color);
  visibility: visible;
  -webkit-align-items: center;
  -webkit-justify-content: flex-end;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  z-index: 0;
  transition: 0.6s all linear;
}
.carousel-item__info {
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-flex-direction: column;
  order: 1;
  z-index: 2;
  bottom: 190px;
  left: 90px;
}
.carousel-item__image {
  order: 2;
  align-self: flex-end;
  flex-basis: 100%;
  -webkit-order: 2;
  -webkit-align-self: flex-end;
  -webkit-flex-basis: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateX(100%);
  transition: 0.6s all ease-in-out;
}
.carousel-item__title {
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
}
.carousel-item__description {
  transform: translateY(25%);
  opacity: 0;
  visibility: hidden;
  transition: 0.6s all ease-in-out;
  font-weight: 400;
  font-size: 15px;
}
.carousel__nav {
  position: absolute;
  z-index: 2;
  left: 90px;
  bottom: 150px;
}
.carousel__arrow {
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.carousel__arrow i {
  padding: 10px;
  border: 1px solid var(--white);
}
.active {
  z-index: 1;
  display: flex;
  visibility: visible;
}
.active .carousel-item__title,
.active .carousel-item__description {
  transform: translateY(0);
  opacity: 1;
  transition: 0.6s all ease-in-out;
  visibility: visible;
}
.active .carousel-item__image {
  transition: 0.6s all ease-in-out;
  transform: translateX(0);
}
.carousel-item__container {
  width: 500px;
}
.header-one.carousel-item__title {
  font-size: 100px;
  line-height: 100px;
}
/* hero banner */
/* Home */
.booking-card-wrapper {
  padding: 40px 50px;
}
.shadow-hover:hover {
  box-shadow: 4px 3px 20px 0px #180a0870;
  transition: 0.6s all linear;
}
.booking-card-wrapper .header-one {
  line-height: 40px;
  font-size: 35px;
}
.about-gradient {
  background: #f5f5f5;
  background: linear-gradient(
    90deg,
    rgb(245 245 245) 36%,
    rgb(255 255 255 / 0%) 64%
  );
  padding: 150px 0px;
}
.home-about {
  background-position-x: right;
}
.bg-white {
  background-color: var(--white);
}
marquee {
  font-size: 358px;
  -webkit-text-stroke: 1px #d2d2d2;
  color: transparent;
  line-height: 380px;
}
.banner {
  background-repeat: no-repeat;
  background-size: contain;
}
.accomadation-marqee-wrapper {
  height: 600px;
}
.section-hedaer-villas {
  top: 220px;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link {
  border: none;
}
.nav-tabs .nav-link.active {
  color: var(--white);
  background-color: #3a2927;
}
.nav-tabs .nav-link.active img.icon {
  filter: brightness(0) invert(1);
}
.nav-tabs .nav-link {
  background-color: #f4f4f4;
  border-radius: 30px;
  padding: 12px 20px;
  color: var(--black);
  min-width: 170px;
  border: 1px solid #392927;
}
.fix-box {
  height: 860px;
}
.fix-box-gradien {
  background: linear-gradient(
    0deg,
    rgb(0 0 0) 0% 0%,
    rgb(255 255 255 / 0%) 35%
  );
}
.facility-icon {
  width: 25px;
  margin-left: 5px;
}
.facility-icon-small {
  width: 20px;
}
.border-right {
  border-right: 1px solid var(--white);
}
.villa-detail-box p {
  font-size: 12px;
}
.villa-detail-box-small p {
  font-size: 11px;
}
.main-btn.btn-yellow {
  background-color: #fff8e3;
  color: var(--black);
}
.btn-yellow .arrow-animation {
  background-color: #dcdcdc;
}
.room-details-card {
  height: 410px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
}
.carousel-control-prev-icon i,
.carousel-control-next-icon i {
  color: var(--black);
  padding: 10px;
  border: 1px solid var(--black);
}
.carousel-control-next,
.carousel-control-prev {
  top: auto;
  bottom: -50px;
  width: 90%;
}
.carousel.rooms-carousel {
  height: 100%;
}
.room-info {
  width: 60%;
}
.room-btn {
  width: 40%;
}
.details-card p {
  line-height: 12px;
}
.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0px;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid #392927;
}
.sri-lanka-banner {
  height: 95vh;
}
.villa-box-wrapper {
  margin-top: -400px;
  margin-bottom: 100px;
  z-index: 2;
}
.sri-lanka-gradient {
  background: linear-gradient(
    180deg,
    rgb(245 245 245) 4% 4%,
    rgb(255 255 255 / 0%) 50%
  );
}

.footer-banner .sri-lanka-gradient {
  background: linear-gradient(
    180deg,
    rgb(245 245 245) 4% 4%,
    rgb(255 255 255 / 0%) 50%
  );
  display: none;
}
.visit-details {
  background: linear-gradient(
    135deg,
    rgb(165 239 255 / 29%) 10%,
    rgb(110 191 244 / 27%) 54%,
    rgb(244 244 244 / 26%) 100%
  );
  min-height: 270px;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  color: var(--black);
  padding: 10px;
  border: 1px solid var(--black);
  border-radius: 50%;
}
.visit {
  margin-top: -50px;
}
.owl-carousel .owl-item img.commenter {
  width: 100px;
  height: 100px;
}
.owl-carousel .owl-item img.star {
  width: 36px;
}
.owl-carousel .owl-item img.tree {
  width: 200px;
}
.testamonials-card-wrapper {
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  padding: 20px 0px 180px;
}
.testamonial-card {
  padding: 0px 100px;
}
.testamonial-marqee-wrapper {
  bottom: 50px;
}
.testamonial-scroll {
  height: 100px;
}
.insta-img img {
  height: 400px;
  width: 380px;
}
.marquee {
  display: flex;
  animation: scroll-left 20s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-reverse {
  display: flex;
  animation: scroll-right 20s linear infinite;
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.insta-header img {
  width: 50px;
}
.offer-cartd-bg {
  height: 300px;
  padding-bottom: 200px;
}
.offer-card-wrapper {
  background-color: #180a08;
}
.padding-left {
  padding-left: 25px;
}
.header-two.offer-header {
  color: var(--white);
  font-size: 60px;
}
.offer-details {
  width: 80%;
  margin-top: -80px;
}
/*.footer-banner {*/
/*  height: 80vh;*/
/*}*/
.booking-card-wrapper p,
.booking-card-wrapper label {
  line-height: 22px;
  font-size: 14px;
}
.form-control.font-small {
  font-size: 13px;
}
.input-counter {
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-counter input {
  width: 40px;
  outline: none;
}
.input-counter button {
  width: 16px;
  height: 16px;
  cursor: pointer;
  font-size: 12px;
}
.input-counter button:hover {
  background-color: #ddd;
}
.booking-card-section {
  margin-top: -50px;
  z-index: 3;
}
.floating-btn {
  z-index: 999;
  position: fixed;
  right: 10px;
  bottom: 10px;
}
.appinment img {
  width: 25px;
}
.appinment,
.wtsapp-icon img {
  width: 48px;
  height: 48px;
}
.floatig-wrapper {
  right: 30px;
  bottom: 30px;
}
/* about us */
.inner-hero-section {
  padding: 0px 20px 0px;
}
.inner-main-banner {
  height: 550px;
}
.bredcrumb {
  padding: 30px;
}
.page-name {
  width: 620px;
  padding: 30px 40px 40px;
  bottom: -100px;
  right: 40px;
}
.long-img {
  height: 280px;
}
.row-one {
  gap: 10px;
}
.width-header-one {
  width: 70%;
}
.width-phrgraph {
  width: 70%;
}
.footer-list {
  flex-wrap: wrap;
}
.card-padding-y {
  padding-top: calc(var(--bs-gutter-x) / 2);
  padding-bottom: calc(var(--bs-gutter-x) / 2);
}
.contact-white-card {
  padding: 30px;
}
.inquiry-form label {
  font-size: 14px;
}
.form-control .btn {
  font-size: 13px;
  color: #6c757d;
}
.dropdown.form-control {
  padding: 0px;
}
.form-control.contact-us-massage {
  height: 200px;
}
.experiences-img {
  height: 330px;
}
.brown-bg {
  background-color: #3a2927;
}
.booking-card .header-one {
  line-height: 52px;
}
.villa-imgs {
  height: 675px;
}
#villaImages .carousel-control-next,
#villaImages .carousel-control-prev {
  top: auto;
  bottom: -50px;
  width: 96%;
}
.room-images-section {
  margin: 50px 0px 100px;
}
.border-right-black {
  border-right: 1px solid var(--black);
}
.accomodation-img {
  height: 450px;
}
.radio-btn {
  background-repeat: no-repeat;
}
.form-check-input:checked[type="radio"] {
  background-repeat: no-repeat;
}
.booking-form .form-control,
.booking-form .input-counter {
  color: #6c757d;
  font-size: 13px;
}
input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 4px solid var(--black) !important;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}

input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  top: 0px;
  left: 0px;
  background: #ffd521;
  border-radius: 50%;
}
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  box-shadow: 4px 3px 20px 0px #180a0870;
}
.conatct-header a:hover,
.footer-contact-link a:hover {
  color: #000;
}
/* floating btn hover */
.holographic-card {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  transition: all 0.5s ease;
}
.holographic-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(0, 255, 255, 0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}
.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
.min-width {
  min-width: 180px;
  justify-content: space-between;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: var(--black);
  border-radius: 50%;
}
.owl-theme .owl-nav [class*="owl-"]:hover i {
  color: var(--white);
}
.accordion-button:not(.collapsed) {
  color: var(--black);
  background-color: #180a0824;
}
.accordion-button::after {
  padding: 16px;
  background-color: #180a08;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background-size: 15px;
  background-position: center;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.swiper {
  width: 100%;
  height: 860px;
}
.swiper-button-next,
.swiper-button-prev {
  position: relative;
  top: auto;
  bottom: -35px;
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-next i,
.swiper-button-prev i {
  color: var(--black);
  padding: 10px;
  border: 1px solid black;
  border-color: #180a08;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: none;
  font-size: 0px;
}
/*.owl-carousel .owl-item .visit-card-main-wrapper img {*/
/*  height: 300px !important;*/
/*}*/
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 22px);
}
.expirience-img{
  height: 800px;
}
.inner-main-banner {
      background-position: center;
}