@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/***** General CSS *****/

html {
  overflow-x: hidden;
}

.slicknav_nav a:hover {
  background: #43613f;
}

.heading {
  text-align: center;
  margin: 0 0 50px 0;
}

body {
  word-break: break-word;
  font: 15px/25px "Poppins", sans-serif;
  color: #393939;
  overflow-x: hidden;
  background-color: #f6f3e7;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "ntseawave-standart";
  src: url("../fonts/NTSEAWAVE-standart.otf");
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.sec {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Butotns Css Starts */

.theme1 {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  height: 50px;
  padding: 0 10px;
  background-color: #43613f;
  border-radius: 5px;
}

.theme1 span.theme1-txt {
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  font-family: "Montserrat";
  text-transform: uppercase;
  font-weight: 500;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 25px;
  background-color: #fff;
  border-radius: 5px;
}

.theme1 span.theme1-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 20px;
}

.theme1:before {
  position: absolute;
  content: "";
  height: 100%;
  /* left: 0; */
  right: 0;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: #000;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  width: 0%;
  opacity: 0;
  transition: 0.9s;
  cursor: pointer;
}

.theme1 {
  position: relative;
  overflow: hidden;
  transition: 0.9s;
}

.theme1::after {
  position: absolute;
  content: "";
  height: 100%;
  left: 0;
  width: 0%;
  transition: 0.9s;
  cursor: pointer;
  background-image: url("../images/btn-icon1.png");
  filter: brightness(0) invert(1);
  background-size: 30px 14px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
}

.theme1:hover:before {
  opacity: 1;
  width: 100%;
}

.theme1:hover::after {
  opacity: 1;
  width: 100%;
}

.theme1:hover span.theme1-icon img {
  filter: unset !important;
  transition: 0.1s;
}

/* Butotns Css Starts */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "ntseawave-standart";
  font-size: 78px;
  line-height: 85px;
  color: #fff;
  font-weight: 600;
  margin: 10px 0;
}

h2 {
  font-family: "ntseawave-standart";
  font-size: 61px;
  line-height: 66px;
  color: #000;
  font-weight: 400;
  margin: 10px 0;
  font-weight: 600;
}

h3 {
  font-family: "ntseawave-standart";
  font-size: 30px;
  line-height: 34px;
  color: #000;
  font-weight: 600;
  margin: 10px 0;
}

h4 {
  font-family: "ntseawave-standart";
  font-size: 28px;
  line-height: 29px;
  color: #000;
  font-weight: 500;
  margin: 10px 0;
}

h5 {
  font-family: "ntseawave-standart";
  font-size: 20px;
  line-height: 25px;
  color: #000;
  font-weight: 600;
  margin: 10px 0;
}

h6 {
  font-family: "ntseawave-standart";
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 10px 0;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  font-family: "Montserrat", serif;
  font-weight: 500;
  margin: 10px 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}
/*header css start */

header {
  padding: 24px 0;
  background: #f6f3e1;
}

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.menuSec ul li {
  position: relative;
  display: inline-flex;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding: 0 10px;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 10px;
  margin-top: 20px;
}

.menuSec li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li > ul > li,
.menuSec li > ul > li > a {
  display: block;
  margin: 0;
}

.menuSec li > ul > li > a:before,
.menuSec li > ul > li > a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
} */

.menuSec ul:after {
  clear: both;
}

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

/*header css Ends */

/*banner css start */

section.main_slider {
  position: relative;
  overflow: hidden;
}

section.main_slider .carousel-caption .container-fluid {
  margin-left: 120px;
}

section.main_slider .carousel-item {
  height: 100vh;
}

.banner_text h1 {
  width: 100%;
  margin-bottom: 10px;
  font-size: 60px;
  line-height: 70px;
}

.banner_text p {
  color: #fff;
  margin: 20px 0 40px 0;
  line-height: 26px;
  opacity: 100%;
  width: 95%;
}

.main-banner-img {
  width: 100%;
  object-fit: cover;
  height: 100vh;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  /* color: #fff; */
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgb(0 0 0 / 38%);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.banner-btn-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
}

/*.banner_slider .draggable {*/
/*  padding: 0 300px 0 0 !important;*/
/*}*/

.banner_slider .slick-slide {
  opacity: 1;
}

.banner_slider .slick-dots {
  bottom: -24%;
  width: 20%;
  right: 281px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_slider .slick-active {
  opacity: 1;
}

.banner_slider .slick-dots li button:before {
  color: #ffffff98;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #fff;
  border: 1px solid #fff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.banner-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 7px;
  transition: ease-in;
  transition-duration: 0.2s;
}

.banner-card:hover {
  background-color: #43613f;
  transition: ease-out;
  transition-duration: 0.2s;
}

.banner-card:hover * {
  color: #fff !important;
}

.banner-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 #0000005e;
}

.banner-card-txt {
  margin: 20px 0 0 0;
}

.banner-card-txt h5 {
  font-size: 25px;
  line-height: 30px;
  margin: 0;
}

.banner-card-txt p {
  color: #3e3e3e;
}

.banner-card-txt p {
  color: #000;
  line-height: 24px;
  margin: 20px 0;
}

.banner-card-btn {
  margin: 0 0 20px 0;
}

.banner-card-ba img {
  filter: brightness(0) saturate(100%) invert(91%) sepia(6%) saturate(5%)
    hue-rotate(355deg) brightness(89%) contrast(87%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: 30px;
  margin: 0 auto;
}

.banner-card-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  font-size: 13px;
  line-height: 20px;
  color: #42603e;
  font-family: "Montserrat";
  font-weight: 500;
  position: relative;
  transition: ease-in;
  transition-duration: 0.2s;
}

.banner-card-btn a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #42603e;
  transition: ease-out;
  transition-duration: 0.2s;
}

.banner-card-btn a:hover::before {
  width: 0;
  transition: ease-in;
  transition-duration: 0.2s;
}

.banner-card:hover .banner-card-btn a::before {
  border-bottom: 1px solid #fff;
}

.banner-card-ba {
  position: relative;
}

.banner-card-ba::before,
.banner-card-ba::after {
  content: "";
  position: absolute;
  top: 70%;
  width: 40%;
  border-top: 1px solid #c7c7c6;
}

.banner-card-ba::before {
  left: 0;
}

.banner-card-ba::after {
  right: 0;
}

.banner-bottom-main {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 91vw;
  height: 100px;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 33%;
}

.socials ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.socials ul li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #ffffff96;
  border-radius: 100px;
  color: #ffffff96;
  transition: ease-in;
  transition-duration: 0.2s;
}

.socials ul li a i:hover {
  background-color: #fff;
  color: #42603e;
  border: 1px solid #0000;
  transition: ease-out;
  transition-duration: 0.2s;
}

.banner-bottom-mid-txt h6 {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.banner-bottom-mid,
.banner-bottom-left,
.banner-bottom-right {
  position: relative;
}

.banner-bottom-mid::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 100px;
  border-top: 1px solid #ffffff3b;
  width: 27vw;
}

.banner-bottom-mid::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100px;
  border-top: 1px solid #ffffff3b;
  width: 24vw;
}

.banner-bottom-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -260px;
  width: 16vw;
  border-top: 1px solid #ffffff3b;
}

.banner-bottom-right::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -220px;
  border-top: 1px solid #ffffff3b;
  width: 9vw;
}

.blobs {
  position: relative;
  z-index: 1;
}

@layer demo {
  :root {
    --blob-size: 370px;
    --blob-speed: 10s;
    --blob-opacity: 1;
    --blob-blur: 90px;
    --blob-color: #76b76e;
  }
  .blobs {
    position: relative;
    filter: blur(var(--blob-blur));
    width: 100%;
    height: 100%;
  }
  .blob {
    width: var(--blob-size);
    height: calc(0.25 * var(--blob-size));
    background-color: #76b76e;
    border-radius: 100%;
    opacity: var(--blob-opacity);
    mix-blend-mode: multiply;
    animation: blob ease-in-out var(--blob-speed) infinite;
  }
  @keyframes blob {
    0%,
    100% {
      transform: scale(0.8, 2);
    }
    50% {
      transform: scale(1.4, 0.8);
    }
  }
  .blob-rotate {
    position: absolute;
    left: -220px;
    bottom: -650px;
    animation: blob-rotate linear var(--blob-speed) infinite alternate;
  }
  @keyframes blob-rotate {
    0% {
      transform: translate3d(0, 0, 0) rotateZ(-28deg);
      transform-origin: 50% 100%;
    }
    100% {
      transform: translate3d(0, 0, 0) rotateZ(28deg);
      transform-origin: 50% 0%;
    }
  }
}

section.main_slider a.theme1.btn-color-ex {
  background: #ffff;
}

section.main_slider a.theme1.btn-color-ex span.theme1-txt {
  color: #476843;
}

section.main_slider a.theme1.btn-color-ex span.theme1-icon {
  background: #476742;
}

section.main_slider a.theme1.btn-color-ex span.theme1-icon img {
  filter: brightness(0) invert(1);
}

/*banner css end*/

/*Inner Banner Css Starts*/

section.inner-banner .carousel-item {
  height: 70vh;
}

section.inner-banner .main-banner-img {
  object-position: 0 -110px;
}

.banner-list {
  position: relative;
  z-index: 999;
}

.banner-list ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}

.banner-list ul li h6,
.banner-list ul li h6 a {
  font-size: 30px;
  line-height: 25px;
  color: #fff;
  margin: 0;
  font-weight: 600;
}

section.inner-banner .blobs-inn .blob-rotate {
  bottom: -445px;
}

section.inner-banner .blobs-in .blob-rotate {
  left: 1150px;
  bottom: -330px;
}

/*Inner Banner Css Ends*/

/*About Us Css Starts*/

section.about-sec {
  position: relative;
}

section.about-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 58%;
  background-color: #fbf9f3;
  z-index: -1;
}

section.about-sec h2.about-ex-txt {
  font-size: 132px;
  line-height: 1;
  color: #42603e;
  margin: 0;
  writing-mode: tb;
  -moz-transform: scale(-1, -1);
  -webkit-transform: scale(-1, -1);
  -o-transform: scale(-1, -1);
  -ms-transform: scale(-1, -1);
  transform: scale(-1, -1);
  position: absolute;
  top: 8%;
  right: -50px;
  background: linear-gradient(270deg, #198754cc 20%, rgb(66 96 62 / 60%) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.about-heading h2 {
  font-size: 44px;
  line-height: 65px;
  font-weight: 600;
}

.about-heading p {
  line-height: 26px;
  font-weight: 500;
  opacity: 100%;
}

.about-ab {
  position: absolute;
  bottom: 18%;
  right: 0;
}

.about-ab::before {
  content: "";
  position: absolute;
  bottom: 45%;
  right: 20px;
  width: 380px;
  border-top: 1px solid #00000042;
}

.about-img img {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  object-fit: cover;
}

.about-img .about-left {
  height: 510px;
  margin: 20px 0 50px 0;
  width: 95%;
}

.about-img .about-right {
  height: 373px;
  box-shadow: 0 0 20px 0 #00000026;
}

.about-right .about-img {
  position: absolute;
  bottom: -440px;
  width: 650px;
  right: 7%;
}

.about-right {
  position: relative;
}

.about-heading-txt-main {
  margin: 60px 0 0 40px;
}

.about-heading-txt-main .about-txt {
  width: 90%;
  padding-left: 0px;
}

.about-heading-txt-main .about-txt p {
  color: #000;
  font-weight: 500;
  line-height: 24px;
  opacity: 100%;
}

section.about-bottom-sec {
  background-color: #fbf9f3;
  margin: -40px 0 0 0;
  padding: 120px 0 80px 0;
}

.about-txt-counter {
  position: relative;
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-txt-counter::before {
  content: "";
  position: absolute;
  top: 25%;
  right: -50px;
  height: 52%;
  border-right: 1px solid #d6dacf;
  border-style: dashed;
  border-width: 1px;
}

.about-txt-counter::after {
  content: "";
  position: absolute;
  background-image: url("../images/about-ab.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 15px;
  width: 12px;
  bottom: 0;
  right: -55px;
  filter: brightness(0) saturate(100%) invert(33%) sepia(24%) saturate(646%)
    hue-rotate(66deg) brightness(92%) contrast(88%);
}

.counter-txt {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.counter {
  position: relative;
}

.counter::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -25%;
  height: 50px;
  width: 50px;
  background-color: #f6f3e7;
  border-radius: 100px;
  z-index: -1;
}

.counter,
.counter-txt h6 {
  font-size: 44px;
  line-height: 1;
  color: #42603e;
  font-family: "ntseawave-standart";
  margin: 0;
  position: relative;
  z-index: 9;
  font-weight: 600;
}

.about-txt-counter p {
  margin: 0;
  color: #000;
  font-weight: 500;
}

.about-txt-counter-ex::before,
.about-txt-counter-ex::after {
  display: none;
}

/*About Us Css Ends*/

/* SHARING PART => 1 SHARING PART => 1 SHARING PART => 1 SHARING PART => 1 SHARING PART => 1  */
/* SHARING PART => 1 SHARING PART => 1 SHARING PART => 1 SHARING PART => 1 SHARING PART => 1  */

/* FOOTER ** FOOTER ** FOOTER ** FOOTER ** FOOTER ** FOOTER ** FOOTER * */
/* Footer styling start here  */

footer {
  background: #161616;
  color: #fff;
  padding: 140px 60px 0px 60px;
  /* overflow: hidden; */
}

footer .padds {
  padding: 40px 0px 110px 0px;
  height: 100%;
}

footer.footerSec .row {
  overflow: hidden;
}

footer .ft-logo {
  margin-bottom: 18px;
}

footer p {
  color: #fff;
  opacity: 100%;
  font-weight: 400;
  line-height: 24px;
}

footer h3 {
  font-size: 28px;
  line-height: 37px;
  color: #fff;
  margin: 0;
}

footer ul {
  margin: 0px;
  position: relative;
}

footer ul li {
  margin: 24px 0px;
}

footer ul li a {
  text-transform: uppercase;
  color: #fff;
  transition: 0.5s;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat";
  letter-spacing: 1px;
  opacity: 100%;
}

footer ul li a:hover {
  opacity: 1;
  text-decoration: underline;
  font-weight: 600;
  opacity: 1;
}

footer .foot-links ul {
  position: relative;
  width: 70%;
  column-count: 2;
}

footer .follow ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

footer .follow ul li a i {
  width: 40px;
  height: 40px;
  border-radius: 45px;
  color: #fff;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  font-size: 17px;
  opacity: 100%;
}

footer .follow ul li a i:hover {
  background: #42603e;
  border: 1px solid #42603e;
  color: #fff;
  opacity: 1;
}

footer .follow ul li a:hover {
  text-decoration: unset !important;
}

.footer-btm {
  padding: 20px 0;
  position: relative;
}

.footer-btm p {
  margin: 0px;
  color: #fff;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 500;
  opacity: 100%;
}

footer .foot-links {
  position: relative;
  padding: 40px 0px 40px 80px;
}

footer .foot-links:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #363537;
  left: 0px;
  bottom: -20px;
}

footer .foot-links:after {
  position: absolute;
  content: "";
  width: 1px;
  right: 54px;
  height: 100%;
  background: #363537;
  bottom: -19px;
}
.footer-btm:before {
  position: absolute;
  content: "";
  width: 115%;
  left: -120px;
  top: 0;
  background: #363537;
  height: 1px;
}

footer .ft-logo h2 {
  font-weight: 500;
}

/* Footer Mail section css st  */

/* Footer Mail section css st  */

/* section.mail-ft {
  position: relative;
  margin-top: -60px;
} */

footer {
  position: relative;
}

section.mail-ft .mailWraper {
  width: 65%;
  margin: 0px auto;
  position: absolute;
  top: -10%;
  left: 0;
  right: 0;
}

section.mail-ft .col-lg-4.col-md-4.col-12 {
  padding: 0;
}

section.mail-ft .connectLinks {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 20px 10px 20px 0px;
  transition: 0.9s;
  height: 110px;
  width: 100%;
}

section.mail-ft .connectLinks .connecIcon {
  width: 52px;
  height: 50px;
  background: #42603e;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.9s;
  cursor: pointer;
  border-radius: 0px 12px 12px 0px;
  width: 20%;
}

section.mail-ft .connectLinks .connecIcon i {
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  transition: 0.9s;
}

section.mail-ft .connectLinks .conneTxt {
  position: relative;
  width: 96%;
}

section.mail-ft .connectLinks .conneTxt h6 {
  font-size: 14px;
  margin: 0px;
  color: #42603e;
  font-family: "ntseawave-standart";
  text-transform: capitalize;
  letter-spacing: 2px;
  font-weight: 700;
}

section.mail-ft .connectLinks .conneTxt a {
  transition: 0.9s;
  color: #000;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 500;
  line-height: 21px;
  display: inline-block;
}

section.mail-ft .connectLinks:hover .connecIcon {
  transform: translate(0px, -2px);
  background: #000;
}

section.mail-ft .connectLinks:hover a {
  text-decoration: underline;
}

section.mail-ft .mailWraper .row {
  margin: 0px auto;
  padding: 0;
  box-shadow: 0px 0px 20px 20px #1211110a;
}

section.mail-ft .differCol .connectLinks {
  background: #42603e;
}

section.mail-ft .differCol .connectLinks h6 {
  color: #fff;
}

section.mail-ft .differCol .connectLinks a {
  color: #fff;
}

section.mail-ft .differCol .connectLinks .connecIcon {
  background: #fff;
}

section.mail-ft .differCol .connectLinks .connecIcon i {
  color: #42603e;
}

footer .follow {
  margin-top: 24px;
}

footer ul li:first-child {
  display: inline;
}

footer h5 {
  font-size: 24px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
  margin: 0 0 30px;
}

footer .follow ul li {
  margin: 0px;
}

footer .newlatter {
  position: relative;
}

footer .newlatter form {
  display: flex;
  position: relative;
  width: 90%;
  margin-top: 28px;
}

footer .newlatter form input {
  width: 100%;
  position: relative;
  background: #2e2e2e;
  border: 0px;
  padding: 12px 40px 12px 20px;
  border-radius: 10px;
  color: #ffffffad;
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}

footer .newlatter form input::placeholder {
  color: #fff;
  opacity: 40%;
  text-transform: uppercase;
}

footer .newlatter form button {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #42603e;
  border-radius: 10px;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  right: 0;
  top: 1px;
  transition: 0.9s;
}

footer .newlatter form button:hover {
  transform: scale(0.985);
  background: #fff;
  color: #000;
}

footer .newlatter form button:hover i {
  color: #42603e;
}
footer .newlatter form button i {
  color: #fff;
}

section.mail-ft .connectLinks .connecIcon i.fas.fa-phone-volume {
  transform: rotate(-35deg);
}

/* Footer Mail section css end  */

/* Reserve section css start  */

section.reserve {
  position: relative;
}

section.reserve .reserve-txt {
  position: absolute;
  left: 0%;
  width: 420px;
  background: #fffffffa;
  padding: 30px 24px 40px 24px;
  border-radius: 8px;
  top: -30px;
}

section.reserve .reserve-txt h2 {
  text-transform: capitalize;
  line-height: 56px;
  font-size: 50px;
  margin: 0px;
}

section.reserve .reserve-txt h6 {
  font-family: "Montserrat";
  font-weight: 600;
  color: #000;
  font-size: 14px;
  line-height: 23px;
  margin: 10px 0px 21px;
}

section.reserve .reserve-txt p {
  margin-bottom: 30px;
  line-height: 24px;
  font-weight: 500;
  opacity: 62%;
}

section.reserve .reserve-txt a.theme1 {
  height: 50px;
}

.reserve-img img {
  width: 100%;
  height: 870px;
  object-fit: cover;
}

footer .site_des.padds p {
  width: 70%;
}
/* Reserve section css end */

/* Find of us Section css start  */

section.find-us {
  position: relative;
  padding: 170px 0;
  overflow: hidden;
  background: #f6f3e7;
}

/* section.find-us .wraper {
  width: 92%;
  margin: 0px auto;
}

section.find-us .findMap {
  position: relative;
  width: 100%;
}

section.find-us .findMap iframe {
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0px 0px 17px 7px #44444417;
}

section.find-us .contents {
  padding-left: 20px;
} */

section.find-us .contents h2 {
  margin-top: 0px;
}

/* section.find-us .contents p {
  font-weight: 500;
  line-height: 23px;
  opacity: 60%;
}

section.find-us .contents .find-btn {
  margin-top: 26px;
} */

.find-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0 0 0;
}

/* Find of us Section css end */

/* Adventure section css start  */

section.adventure {
  position: relative;
  padding: 0px 0 80px;
  background-image: url(../images/nettingfish.jpg) !important;
  background-repeat: no-repeat !important;
  background: #f6f3e7;
  width: 100%;
  height: 920px;
  background-size: cover;
  margin-top: 100px;
  margin-bottom: 40px;
}

section.adventure .adventure-txt {
  width: 430px;
  background: #fff;
  padding: 20px 20px 30px 30px;
  border-radius: 8px;
  margin-top: -120px;
  /* float: inline-end; */
  !i;!;
}

section.adventure .adventure-txt p {
  line-height: 22px;
  font-weight: 500;
  opacity: 100%;
  font-size: 13px;
  margin-bottom: 10px;
}

section.adventure .adventure-lists {
  position: relative;
  margin-top: 35%;
  z-index: 2;
}

section.adventure h2 {
  font-size: 55px;
  line-height: 1.1;
  margin: 0px 0px 20px;
}

section.adventure .adventure-btn {
  margin-top: 24px;
}

section.adventure .adventure-lists .adv-list {
  position: relative;
  padding: 15px;
  background: #fff;
  text-align: center;
  display: table;
  margin: 0px auto;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 7px #5555551f;
  transition: 0.9s;
  width: 94%;
}

section.adventure .adventure-lists .adv-list .list-img img {
  width: 100%;
  margin: 0px auto;
  border-radius: 5px;
  transition: 0.9s;
  box-shadow: 0px 0px 20px 6px #4444442e;
  height: 250px;
  object-fit: cover;
}

section.adventure .adventure-lists .adv-list:hover .list-img img {
  filter: drop-shadow(2px 4px 206px white);
}

section.adventure .adventure-lists .adv-list:hover {
  background: #42603e;
  transform: translate(0px, -2px);
}

section.adventure .adventure-lists .adv-list:hover .list-text h4 {
  color: #fff;
}

section.adventure .adventure-lists .adv-list .list-text {
  margin-top: 16px;
}

section.adventure .adventure-lists .adv-list .list-text h4 {
  font-weight: 600;
  letter-spacing: 1px;
}

/* Adventure section css end */

/* Water Home section css start  */

section.waterHome {
  position: relative;
  overflow: hidden;
  background: #f6f3e7;
  padding: 80px 0 80px;
}

section.waterHome .slick-list {
  padding: 40px 0px 40px;
}

section.waterHome .slick-list .item {
  opacity: 1;
}

section.waterHome .heading.text-center {
  margin: 0px;
}

section.waterHome .heading h2 {
  font-weight: 600;
  margin: 0px 0 14px;
}

section.waterHome .heading p {
  font-weight: 500;
  line-height: 26px;
  opacity: 100%;
  width: 70%;
  margin: 0px auto;
}

section.waterHome .waterh-box {
  padding: 24px 16px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 7px #55555505;
  transition: 0.9s;
  height: 710px;
  position: relative;
}

section.waterHome .waterh-box .waterImg img {
  width: 100%;
  margin: 0px auto;
  border-radius: 5px;
  transition: 0.9s;
  box-shadow: 0px 0px 20px 6px #4444442e;
  height: 270px;
  object-fit: cover;
}

section.waterHome .waterh-box h4 {
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.9s;
  font-size: 28px;
}

section.waterHome .waterh-box p {
  line-height: 26px;
  font-weight: 500;
  opacity: 100%;
  transition: 0.9s;
  margin: 12px 0 20px;
  font-size: 14px;
  height: 170px;
}

section.waterHome .waterh-box .waterTxt {
  margin: 30px 0 16px;
}

section.waterHome .waterh-box .location a {
  display: flex;
}

section.waterHome .waterh-box .loaction a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-left: 4px;
  color: #000;
  font-family: "Montserrat";
  font-weight: 500;
  transition: 0.9s;
}

section.waterHome .waterh-box .loaction a i {
  font-size: 18px;
  color: #405d3c;
  transition: 0.9s;
}

section.waterHome .waterh-box .listing {
  justify-content: space-between;
  align-items: center;
  margin: 10px 0 15px;
  gap: 10px;
  padding: 0px 3px 0px;
  position: relative;
}

section.waterHome .waterh-box .listing .txt-icons {
  position: relative;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
}

section.waterHome .waterh-box .listing .txt-icons h6 {
  margin: 0px;
  position: relative;
  font-size: 12px;
  font-family: "Montserrat";
  font-weight: 600;
  color: #000;
  opacity: 100%;
  line-height: 22px;
  transition: 0.9s;
}

section.waterHome .waterh-box .listing .txt-icons h6 span {
  transition: 0.2s;
}

section.waterHome .waterh-box .listing .count-i {
  display: inline-block;
  position: relative;
}

section.waterHome .waterh-box .listing .count-i i {
  color: #42603e;
  transition: 0.9s;
  font-size: 18px;
}

section.waterHome .waterh-box ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0px 3px 10px;
  position: relative;
}

section.waterHome .waterh-box ul p {
  margin: 0;
  color: #000;
  opacity: 1;
  font-family: "ntseawave-standart";
  font-weight: 600;
  transition: 0.9s;
  position: relative;
}

section.waterHome .waterh-box ul a {
  display: inline-block;
  color: #42603e;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  text-decoration: underline;
  transition: 0.9s;
  position: relative;
  z-index: 2;
}

section.waterHome .waterh-box .banner-card-ba img {
  width: auto;
  filter: unset;
  height: auto;
  transition: 0.9s;
}

section.waterHome ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

section.waterHome ul.slick-dots li {
  margin: 0px;
  width: 7px;
  height: 7px;
  background: #aaa8a0;
  border-radius: 45px;
  transition: 0.6s;
}

section.waterHome ul.slick-dots buttton {
  padding: 0px;
}

section.waterHome .slick-dots li button:before {
  display: none;
}

section.waterHome ul.slick-dots li.slick-active {
  outline: 1px solid #42603e;
  background: #42603e;
  outline-offset: 9px;
  box-shadow: 0px 0px 20px 8px #42603e42;
  opacity: 1 !important;
}

/* prev & Next  */

section.waterHome .slick-prev {
  width: 50px;
  height: 50px;
  top: 48%;
  border-radius: 45px;
  transition: 0.9s;
  background-size: 17px 17px !important;
  background-position: center;
  left: -60px;
  border: 1px solid #3e5a3a;
}

section.waterHome .slick-prev::before {
  content: url(../images/prev-arrwo.png) !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  margin: 0px auto;
}

section.waterHome .slick-next::before {
  background-image: url(../images/btn-icon1.png) !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 41%;
  left: 3px;
  right: 0;
  margin: 0px auto;
  background-repeat: no-repeat;
  content: "";
}
section.waterHome .slick-next {
  background-size: 17px 17px !important;
  background-position: center;
  width: 50px;
  height: 50px;
  top: 47%;
  border-radius: 45px;
  transition: 0.9s;
  right: -60px;
  background-color: transparent;
  border: 1px solid #3e5a3a;
}

section.waterHome .slick-prev:hover,
section.waterHome .slick-next:hover {
  background-color: #405d3c;
}

section.waterHome .slick-prev:hover::before,
section.waterHome .slick-next:hover::before {
  filter: brightness(0) invert(1);
}
/* Water Home section css end */

/* Testimonial Section Start */

.sec-head {
  text-align: center;
  margin-bottom: 40px;
}

.sec-head p {
  font-size: 15px;
  color: #000;
  line-height: 25px;
  font-weight: 500;
  margin: 0 auto;
  opacity: 100%;
}

.testi-small-imag {
  position: relative;
  background: #000;
  overflow: hidden;
  width: 110px;
  height: 150px;
  border-radius: 7px;
}

.testi-small-imag img {
  width: 112px;
  height: 157px;
  object-fit: cover;
  margin: 0px auto;
}

.testimonial-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: -1px 3px 5px 0 #98979773;
  margin: 10px 20px;
  padding: 0;
  background-color: #ffff;
}

img.ts-design {
  /* position: absolute; */
  /* bottom: 0; */
  /* right: 0; */
  width: auto;
}

.testi-left-content {
  width: 760px;
  height: 277px;
  background: #42603e;
  position: relative;
  padding: 0 0 0 20px;
  border-radius: 10px;
}

img.ts-2 {
  position: absolute;
  right: 0px;
  top: 12px;
  margin: 0px auto;
  left: 0;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 4px #ccccccd1;
  width: 122px;
  height: 157px;
  cursor: pointer;
  transition: 0.9s;
}

.testi-left-content h5 {
  font-size: 21px;
  margin: 20px 0 3px;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.testi-left-content h6 {
  font-size: 15px;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0;
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 13px;
}

.testi-left-right p {
  font-size: 13px;
  color: #000;
  line-height: 22px;
  font-weight: 500;
  font-family: "Montserrat";
}

ul.testim-review {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
}

ul.testim-review span {
  color: #3f5b4b;
  font-size: 12px;
}

ul.testim-review a {
  color: #ffac0d;
  font-size: 12px;
}

.testi-left-right {
  padding: 10px 40px 10px 130px;
}

.testimonial-sec {
  padding: 30px 0 180px 0;
  overflow: hidden;
  background: #f6f3e7;
}

.testimonial-sec .row {
  align-items: center;
}

.testi-left-content .testi-small-imag {
  position: absolute;
  top: 0;
  right: -125px;
  bottom: 0;
  margin: auto;
  background: #fff;
  width: 150px;
  padding: 7px;
  height: 180px;
  box-shadow: -20px 9px 16px 6px #24242436;
}

.testi-slider .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  bottom: -80px;
}

.smal-imag-1 {
  position: relative;
}

.smal-imag-1:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #42603ead;
  transition: 0.9s;
}

.smal-imag-1:hover:before {
  opacity: 0;
  cursor: pointer;
}

img.img-fluid.quoteImg {
  height: 95px;
  width: 40%;
  object-fit: contain;
  margin-top: 50px;
  margin-left: 10px;
}

img.ts-2:hover {
  filter: brightness(0.7);
}

.testimonial-sec .testi-slider {
  position: relative;
  left: 11px;
}

/* prev & Next  */

.testimonial-sec .slick-prev {
  width: 40px;
  height: 40px;
  top: 58%;
  border-radius: 45px;
  transition: 0.9s;
  background-size: 17px 17px !important;
  background-position: center;
  border: 1px solid #3e5a3a;
  z-index: 12;
  filter: brightness(0) invert(1);
  left: -92px;
}

.testimonial-sec .slick-prev::before {
  content: url(../images/prev-arrwo.png) !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 11%;
  left: 3px;
  right: 0;
  margin: 0px auto;
}

.testimonial-sec .slick-next::before {
  background-image: url(../images/btn-icon1.png) !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 41%;
  left: 3px;
  right: 0;
  margin: 0px auto;
  background-repeat: no-repeat;
  content: "";
}
.testimonial-sec .slick-next {
  background-size: 17px 17px !important;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 58%;
  border-radius: 45px;
  transition: 0.9s;
  background-color: transparent;
  border: 1px solid #3e5a3a;
  right: -90px;
  z-index: 12;
  filter: brightness(0) invert(1);
}

.testimonial-sec .slick-prev:hover,
.testimonial-sec .slick-next:hover {
  background-color: #fff;
  filter: unset;
  border: 1px solid #fff;
}

.testimonial-sec .slick-prev:hover::before,
.testimonial-sec .slick-next:hover::before {
  filter: unset;
}

section.waterHome ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.testimonial-sec ul.slick-dots li {
  margin: 0px;
  width: 7px;
  height: 7px;
  background: #aaa8a0;
  border-radius: 45px;
  transition: 0.6s;
}

.testimonial-sec ul.slick-dots buttton {
  padding: 0px;
}

.testimonial-sec .slick-dots li button:before {
  display: none;
}

.testimonial-sec ul.slick-dots li.slick-active {
  outline: 1px solid #42603e;
  background: #42603e;
  outline-offset: 9px;
  box-shadow: 0px 0px 20px 8px #42603e42;
  opacity: 1 !important;
}

/* Testimonial Section End */

/* INNER PAGES CSS START  */

/* Services page start   */

section.waterHome.servicesPage {
  padding-bottom: 120px;
}

section.waterHome.servicesPage .waterh-box {
  /* display: table; */
  margin: 0px 0px 60px;
  height: 440px;
  position: relative;
}

section.waterHome.servicesPage .waterh-box .services-btn {
  display: inline-block;
  position: absolute;
  bottom: 38px;
}

section.waterHome.servicesPage .waterh-box:hover {
  transform: scale(0.99);
}

section.waterHome .heading.text-center p {
  width: 65%;
  margin: 0px auto;
}
section.waterHome.servicesPage .heading.text-center {
  margin-bottom: 30px;
}

/* Services detail page css start  */

section.service-detail-page {
  position: relative;
  background: #f6f3e7;
  padding: 100px 0 150px;
}

section.service-detail-page .detail-img {
  width: 100%;
  object-fit: fill;
  padding-right: 40px;
}

section.service-detail-page .detail-img img {
  width: 100%;
  border-radius: 10px;
  transition: 0.9s;
  cursor: pointer;
  box-shadow: 0px 0px 20px 10px #5555552b;
  /* height: 680px; */
  height: auto;
  object-fit: cover;
}

section.service-detail-page .detail-img img:hover {
  filter: brightness(0.6);
  transform: translate(0px, -2px);
}

section.service-detail-page .detail-txt {
  position: relative;
  width: 80%;
}

section.service-detail-page .row {
  align-items: center;
}

section.service-detail-page p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  opacity: 70%;
  margin: 0 0 24px;
}

section.service-detail-page h2 {
  padding-bottom: 10px;
}

section.service-detail-page .bottom-para {
  margin-top: 60px;
}

/* Services detail page css end */

/* Rate Page st */

section.ratesPage {
  padding: 80px 0 180px;
  position: relative;
  background: #f6f3e7;
}

section.ratesPage .heading p {
  font-weight: 500;
  line-height: 26px;
  opacity: 100%;
}

section.ratesPage .heading.text-center {
  margin-bottom: 50px;
}

section.ratesPage .waterh-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 7px #55555505;
  transition: 0.9s;
  cursor: pointer;
  padding: 40px 20px 50px 40px;
  margin: 0px 10px;
}

section.ratesPage .waterh-box span.label {
  text-align: center;
  margin: 0px auto;
  display: table;
  transition: 0.9s;
  padding-bottom: 8px;
  font-family: "Montserrat";
  font-weight: 600;
}

section.ratesPage .waterh-box h1 {
  position: relative;
  color: #42603e;
  font-size: 75px;
  line-height: 1;
  display: table;
  margin: 0px auto;
  text-align: center;
  font-weight: 600;
}

section.ratesPage .waterh-box h1 span.symbol {
  position: absolute;
  font-size: 48px;
  left: -29%;
  transition: 0.9s;
  bottom: 0;
}

section.ratesPage .waterh-box h1 span.pecentabe {
  position: absolute;
  right: -100%;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Poppins";
  bottom: 3px;
  transition: 0.9s;
  opacity: 100%;
}

section.ratesPage .waterh-box p {
  margin: 20px 0px;
  font-weight: 500;
  line-height: 25px;
  opacity: 100%;
  transition: 0.9s;
}

section.ratesPage .waterh-box ul {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

section.ratesPage .waterh-box ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}

section.ratesPage .waterh-box ul li img.img-fluid.listImg {
  transition: 0.9s;
  cursor: pointer;
}

section.ratesPage .waterh-box ul li span {
  color: #000;
  transition: 0.9s;
}

section.ratesPage .waterh-box .rates {
  width: 100%;
  text-align: center;
}

section.ratesPage .waterh-box .rates a.theme1 {
  margin: 0px auto;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  height: 55px;
  transition: 0.9s;
  border: 2px solid transparent;
}

section.ratesPage .waterh-box:hover {
  background: #42603e;
  transform: translate(0px, 3px);
  box-shadow: 0px 0px 20px 7px #55555573;
}

section.ratesPage .waterh-box:hover span.label {
  color: #fff;
}

section.ratesPage .waterh-box:hover h1 {
  color: #fff;
}

section.ratesPage .waterh-box:hover p {
  color: #fff;
  opacity: 1;
}

section.ratesPage .waterh-box:hover ul li span {
  color: #fff;
}

section.ratesPage .waterh-box:hover ul li img {
  filter: brightness(0) invert(1);
}

section.ratesPage .waterh-box:hover .rates a.theme1 {
  border: 2px solid #fff;
}
/* Rate Page end */

/* Contact Us Start*/
.btn-theme.snd {
  padding: 2%;
}
section.contact-us {
  background: #f6f3e7;
  padding: 60px 0px 150px;
}

.cntct-head h4 {
  font-size: 50px;
  line-height: normal;
  font-weight: 700;
  margin: 0 0 30px;
  color: #000;
}

.contact-input {
  position: relative;
}

.contact-input::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 45px;
  top: 5px;
  left: 55px;
  background: url(../images/contact-input-bef.png) no-repeat;
}

input[type="time"]::-webkit-calendar-picker-indicator {
  background: none;
}

.contact-input input {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 20px 0 80px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #7e7e7e;
  font-family: "Montserrat";
  border-radius: 7px;
}

.contact-input textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 12px 20px 12px 21px;
  font-size: 14px;
  font-weight: 400;
  color: #3d3d3d;
  resize: none;
  background: transparent;
  border-radius: 11px;
}

.contact-input input::placeholder,
.contact-input textarea::placeholder {
  color: #000;
}

.contact-input i {
  position: absolute;
  top: 15px;
  left: 18px;
  color: #42603e;
  /* padding: 12px 16px; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.send-btn {
  background-color: var(--golden);
  padding: 15px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 16px;
  background: #0288d1;
  font-family: "Montserrat";
  border: none;
}

button.send-btn:hover {
  background: transparent;
  color: var(--golden);
  border: 1px solid var(--golden);
  transition: 0.5s all ease-in-out;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 34px 30px;
  border: 1px solid #c1c1c1;
  margin: 15px 0;
  transition: 0.8s all ease-in-out;
  background: #42603e;
  border-radius: 6px;
}

.cntct-info-icon {
  width: 55px;
  height: 55px;
  border: 1px solid var(--golden);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.8s all ease-in-out;
}

.cntct-info-icon i {
  font-size: 28px;
  transition: 0.8s all ease-in-out;
  border: 1px solid;
  border-radius: 50%;
  height: 55px;
  width: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 0px 20px 0px #8d88883b;
  color: #42603e;
}

.contact-info-item:hover i {
  transform: rotate(360deg);
  transition: 0.8s all ease-in-out;
}

.contact-info-item-details h5 {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  color: #fff;
  letter-spacing: 1px;
  line-height: 35px;
}

.contact-info-item-details a,
.contact-info-item-details p {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  font-family: "Montserrat";
}

.contact-input.selectbox select {
  width: 100%;
  height: 55px;
  border: 1px solid #7e7e7e6b;
  margin-bottom: 20px;
  padding: 0 80px 0 20px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: "Montserrat";
  border-radius: 7px;
  z-index: 1;
  position: relative;
}

section.contact-us .rates button.theme1 {
  border: 0px;
}

section.contact-us .get-in-touch.cntct-head {
  padding-right: 30px;
}

.contact-input.selectbox:before {
  left: unset !important;
  right: 60px;
  transform: rotateY(156deg);
}

.contact-input.selectbox i.fa-solid.fa-angle-down {
  position: absolute;
  right: 20px;
  left: unset !important;
  top: 19px;
  color: #000;
  opacity: 40%;
  cursor: pointer;
}

.contact-input.textaryea:before {
  display: none;
}

.contact-input.textaryea textarea::placeholder {
  position: absolute;
  bottom: 20px;
}

section.contact-us .formWraper {
  width: 88%;
  margin: 0px auto;
}

section.contact-us .heading {
  margin-bottom: 50px;
}

section.contact-us .heading p {
  font-weight: 500;
  opacity: 100%;
  line-height: 26px;
  width: 60%;
  margin: 0px auto;
}

section.contact-map {
  position: relative;
  overflow: hidden;
}

section.contact-map iframe {
  width: 100%;
  margin-bottom: -7px;
}

section.contact-us.sec.withMap {
  padding: 60px 0px 80px;
}

/* Contact Us End */

/* About Us css start  */

section.inner-about-sec::before {
  display: none;
}

section.inner-about-sec .about-heading-txt-main {
  margin: 0;
}

section.inner-about-sec .about-heading-txt-main .about-txt {
  width: 97%;
}

section.inner-about-sec .about-img .about-left {
  height: 500px;
  margin: 0;
  width: 100%;
}

section.inner-about-sec .about-txt p {
  margin: 30px 0;
}

section.inner-about-sec .about-img-bottom {
  margin: 80px 0 0 0;
}

section.inner-about-sec .about-img-bottom img {
  height: 373px;
  object-position: 0 90%;
}

section.about-sec.inner-about-sec.sec .about-img-bottom img {
  height: 473px;
  object-position: center;
  object-fit: contain;
}

section.inner-about-bottom-sec {
  background-color: unset;
  margin: 0;
  padding: 80px 0;
}

/*About Us Page Css Ends*/

/*Cabins Detail Page Css Starts*/

.cabins-detail-card {
  position: relative;
}

.cabins-detail-card-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 580px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.cabins-detail-card-txt{
  padding: 10px 10px;
  background-color: #fff;
  border-radius: 10px;
  width: 20%;
  position: absolute;
  bottom: -15%;
  right: 1%;
  height: 200px;
}

.cabins-detail-card-txt p {
  margin: 20px 0;
}

.cabins_detail_slider .slick-slide {
  margin: 0 0 100px 0;
}

.cabins-detail-list {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 60px;
}

.cabins-detail-list-card-txt-img {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.cabins-detail-list-card-txt h6 {
  font-size: 13px;
  line-height: 1;
  font-family: "Montserrat", serif;
  color: #000;
  margin: 0;
}

.cabins-detail-list-card {
  position: relative;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.cabins-detail-list-card-ex::before,
.cabins-detail-list-card-ex::after,
.cabins-detail-list-card-main-ex::before {
  display: none;
}

.cabins-detail-list-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: -35px;
  height: 10px;
  width: 10px;
  background-image: url("../images/about-ab.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0) saturate(100%) invert(32%) sepia(15%) saturate(978%)
    hue-rotate(66deg) brightness(100%) contrast(90%);
}

.cabins-detail-list-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -35px;
  height: 10px;
  width: 10px;
  background-image: url("../images/about-ab.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: brightness(0) saturate(100%) invert(32%) sepia(15%) saturate(978%)
    hue-rotate(66deg) brightness(100%) contrast(90%);
}

.cabins-detail-list-card-main {
  position: relative;
}

.cabins-detail-list-card-main::before {
  content: "";
  position: absolute;
  top: 14px;
  right: -27%;
  border-right: 1px solid #00000040;
  height: 60%;
  border-style: dashed;
  border-width: 1px;
}

.cabins-location a {
  font-size: 13px;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  transition: ease-in;
  transition-duration: 0.2s;
}

.cabins-location a:hover {
  color: #42603e;
  transition: ease-out;
  transition-duration: 0.2s;
}

.cabins-location a i {
  color: #42603e;
}

.cabins-detail-txt {
  width: 90%;
}

.cabins-detail-txt p {
  margin: 0px 0 20px;
  font-weight: 500;
  opacity: 100%;
  line-height: 24px;
  font-size: 14px;
}

.cabins-detail-txt-ex {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: end;
  height: 250px;
  width: 100%;
}

.cabins-detail-txt-ex p {
  margin: 0;
}

.cabins-detail-bottom-img img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 390px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.cabins-detail-bottom-txt {
  padding-top: 10px;
}

/* prev & Next  */

section.cabins-detail-sec .slick-prev {
  width: 50px;
  height: 50px;
  top: 48%;
  border-radius: 45px;
  transition: 0.9s;
  background-size: 17px 17px !important;
  background-position: center;
  left: -60px;
  border: 1px solid #3e5a3a;
}

section.cabins-detail-sec .slick-prev::before {
  content: url(../images/prev-arrwo.png) !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 22%;
  left: 0;
  right: 0;
  margin: 0px auto;
}

section.cabins-detail-sec .slick-next::before {
  background-image: url(../images/btn-icon1.png) !important;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 41%;
  left: 3px;
  right: 0;
  margin: 0px auto;
  background-repeat: no-repeat;
  content: "";
}

section.cabins-detail-sec .slick-next {
  background-size: 17px 17px !important;
  background-position: center;
  width: 50px;
  height: 50px;
  top: 47%;
  border-radius: 45px;
  transition: 0.9s;
  right: -60px;
  background-color: transparent;
  border: 1px solid #3e5a3a;
}

section.cabins-detail-sec .slick-prev:hover,
section.cabins-detail-sec .slick-next:hover {
  background-color: #405d3c;
}

section.cabins-detail-sec .slick-prev:hover::before,
section.cabins-detail-sec .slick-next:hover::before {
  filter: brightness(0) invert(1);
}

/*Cabins Detail Page Css Ends*/

/* Boat page css start  */
section.boat-sec1 {
  position: relative;
  padding: 100px 0 40px;
  background: #f6f3e7;
}

section.boat-sec1 .sec-disply {
  padding-top: 30px;
}

.boat-txt p {
  font-weight: 500;
  opacity: 100%;
  line-height: 26px;
}

.boatImg img {
  width: 100%;
  position: relative;
  transition: 0.9s;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 3px #4444441c;
  border-radius: 10px;
}

.boatImg img:hover {
  filter: brightness(0.7);
  transform: translate(0px, -2px);
}

section.boat-sec1 .row {
  align-items: center;
}

section.boat-sec1 .sec-disply .sec1-img.boatImg {
  padding-right: 30px;
}

section.boat-sec1 .sect-txt1.boat-txt p:first-child {
  margin-bottom: 30px;
}

section.boat-sec2.sec {
  background: #f6f3e7;
  padding: 80px 0 20px;
}

section.boat-sec2.sec .row {
  align-items: center;
}

section.boat-sec2.sec .sec2-img.boatImg {
  padding-right: 30px;
}

section.boat-sec2.sec .boat-txt.sect-txt2 {
  padding-left: 10px;
  padding-right: 70px;
}

section.boat-sec2.sec .boat-txt.sect-txt2 p {
  margin-bottom: 16px;
}

section.boat-sec2.sec .boat-txt.sect-txt2 p:last-child {
  margin: 0;
}

section.boat-sec2.sec .boat-txt.sect-txt2 h2 {
  padding-bottom: 10px;
}

section.boat-sec1 .sec1-heading p {
  font-weight: 500;
  opacity: 70%;
  line-height: 26px;
}

section.waterHome.servicesPage.boatspage {
  padding-bottom: 60px;
}

section.waterHome.servicesPage.boatspage .waterTxt p.blacktxt {
  opacity: 1;
  color: #000;
}

section.waterHome.servicesPage.boatspage .waterTxt:hover p.blacktxt {
  color: #fff;
}
section.waterHome.servicesPage.boatspage .waterTxt .listing-item p {
  margin: 0px 0px;
}

section.waterHome.servicesPage.boatspage .waterTxt .listing-item {
  margin-bottom: 20px;
}

section.boat-sec3.sec {
  background: #f6f3e7;
  padding: 20px 0 20px;
}

section.boat-sec3.sec .row {
  align-items: center;
}

section.boat-sec3.sec .boat-txt.sec2-txt {
  padding-right: 50px;
}

section.boat-sec3.sec .boat-txt.sec2-txt h2 {
  padding-bottom: 16px;
}

section.boat-sec3.sec .boat-txt.sec2-txt p {
  margin-bottom: 24px;
}

section.boat-sec3.sec .boat-txt.sec2-txt p:last-child {
  margin: 0;
}

section.waterHome.cabinsPage .heading.text-center {
  margin-bottom: 40px;
}

section.waterHome.cabinsPage .waterh-box {
  margin-bottom: 50px;
}

section.waterHome.cabinsPage {
  padding-bottom: 160px;
}
/* Boat page css end */

section.cabins-detail-sec.sec {
  margin-bottom: 60px;
}

.carousel-inner {
  height: 100vh;
}

section.main_slider.inner-banner .carousel-inner {
  height: auto !important;
}

section.main_slider.inner-banner .carousel-inner .carousel-caption {
  height: 100%;
}

section.waterHome .waterh-box .banner-card-ba {
  position: absolute;
  bottom: 0;
  width: 94%;
  left: 0;
  right: 0;
  margin: 0px auto;
  padding: 22px 10px;
}

.cabins-detail-list-card-img i.fa-solid.fa-house {
  color: #42603e;
}

.cabins-detail-bottom-txt .nightlist {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.cabins-detail-bottom-txt .nightlist .list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 12px 10px;
  border-radius: 5px;
  box-shadow: 0px 0px 20px 4px #cccccc61;
}

.cabins-detail-bottom-txt .nightlist .list-item h6 {
  margin: 0px;
  font-family: "Montserrat";
  text-transform: capitalize;
  color: #426249;
  font-size: 16px;
  font-weight: 600;
}

.cabins-detail-bottom-txt .nightlist .list-item .list-img i {
  font-size: 17px;
  color: #42603e;
}

.cabins-detail-bottom-txt .nightlist .list-item span {
  font-size: 13px;
  line-height: 17px;
  font-family: "Poppins";
  font-weight: 500;
}

.cabins-detail-bottom-txt .nightlist .list-item .list-txt {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 6px;
}

/* table css  */

table thead th {
  text-align: center;
  vertical-align: middle;
}

/* Increase font size for headings 1, 2, and 3 */
.heading-1,
.heading-2,
.heading-3 {
  font-size: 1.2rem;
  font-weight: bold;
}

/* Winter and Summer Category Headers */
.category-header {
  background-color: #f8f9fa;
  font-weight: bold;
}

/* Table Responsiveness */
.table-container {
  margin: 20px auto;
  overflow-x: auto;
}

section.cabins-detail-sec .cabins-pacakges th {
  background: #42603e;
  color: #fff;
}

section.cabins-detail-sec .cabins-pacakges tbody {
  background: #fff;
}

section.cabins-detail-sec .cabins-pacakges tbody td {
  font-weight: 500;
}

section.about-sec.inner-about-sec.sec {
  padding-bottom: 0px;
}
/* table css  */

/*Media Query Starts*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  section.main_slider .carousel-caption .container-fluid {
    margin-left: 120px;
  }

  /* .banner_slider .draggable {
    padding: 0 251px 0 0 !important;
  } */

  /*.banner_slider .draggable {*/
  /*  padding: 0 300px 0 0 !important;*/
  /*}*/

  section.main_slider .carousel-item {
    height: 80vh;
  }

  .banner_slider .slick-dots {
    bottom: -24%;
    right: 48%;
  }

  .banner-bottom-right::before {
    right: -195px;
  }

  .banner-bottom-mid::after {
    width: 22vw;
  }

  .banner-bottom-left::before {
    left: -280px;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 1401px) and (max-width: 1500px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  section.main_slider .carousel-caption .container-fluid {
    margin-left: 50px;
  }

  /*.banner_slider .draggable {*/
  /*  padding: 0 230px 0 0 !important;*/
  /*}*/

  section.main_slider .carousel-item {
    height: 80vh;
  }

  .banner_slider .slick-dots {
    bottom: -20%;
    right: 33%;
  }

  .banner-bottom-right::before {
    right: -195px;
  }

  .banner-bottom-mid::after {
    width: 22vw;
  }

  .banner-bottom-left::before {
    left: -260px;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 1301px) and (max-width: 1400px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  section.main_slider .carousel-caption .container-fluid {
    margin-left: 50px;
  }

  /*.banner_slider .draggable {*/
  /*  padding: 0 200px 0 0 !important;*/
  /*}*/

  section.main_slider .carousel-item {
    height: 80vh;
  }

  .banner_slider .slick-dots {
    bottom: -20%;
    right: 30%;
  }

  .banner-bottom-right::before {
    right: -195px;
  }

  .banner-bottom-mid::after {
    width: 22vw;
  }

  .banner-bottom-left::before {
    left: -230px;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
  /* Fonts css Starts */

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  section.main_slider .carousel-caption .container-fluid {
    margin-left: 50px;
  }

  /*.banner_slider .draggable {*/
  /*  padding: 0 180px 0 0 !important;*/
  /*}*/

  section.main_slider .carousel-item {
    height: 80vh;
  }

  .banner_slider .slick-dots {
    bottom: -16%;
    right: 23%;
  }

  .banner-bottom-right::before {
    right: -195px;
  }

  .banner-bottom-mid::after {
    width: 22vw;
  }

  .banner-bottom-left::before {
    left: -230px;
  }

  /* Home css Ends */
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Fonts css Starts */

  h1 {
    font-size: 65px;
    line-height: 70px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  .menuSec ul {
    gap: 5px;
  }
.inner-about-sec.sec .slick-prev {
    left: 81px;
    top: 47%;
}

.inner-about-sec.sec .slick-next {
    right: 85px;
    top: 47%;
}
   .menuSec ul li a {
     padding: 0 9px;
    font-size: 13px;
    }

  section.main_slider .carousel-caption .container-fluid {
    margin-left: 30px;
  }

  section.main_slider .carousel-item {
    height: 700px;
  }

  /*.banner_slider .draggable {*/
  /*  padding: 0 170px 0 0 !important;*/
  /*}*/

  .banner_text h1 {
        width: 100%;
        font-size: 50px;
        line-height: 62px;
    }

  .banner_text p {
    margin: 20px 0;
  }

  .banner_slider .slick-dots {
    bottom: -15%;
    right: 180px;
  }

  .banner-bottom-mid::after {
    width: 40vw;
  }

  .about-left .about-heading {
    flex-direction: column;
    width: 80%;
    justify-content: start;
    align-items: start;
  }

  .about-left .about-heading p {
    width: 80%;
  }

  .about-ab::before,
  .about-ab {
    display: none;
  }

  .about-heading-txt-main {
    margin: 0 0 0 20px;
  }

  .about-right .about-img {
    width: 450px;
  }

  .testi-left-right {
    padding: 20px;
    width: 562%;
  }

  img.img-fluid.quoteImg {
    height: 50px;
    width: 50px;
    margin: 10px 0;
  }

      .testi-left-content {
        width: 990px;
        height: 375px;
        padding: 10px;
    }
  .testi-left-content .testi-small-imag {
    position: relative;
    top: unset;
    right: unset;
    height: 50%;
    width: 100%;
  }

  img.ts-2 {
    height: 81%;
    width: 90%;
  }

  .testi-left-content h5 {
    margin: 0;
    font-size: 18px;
  }

  .testimonial-sec .slick-prev {
    left: -142px;
  }

      section.reserve .reserve-txt {
        top: -140px;
    }
  .testi-slider .slick-dots {
    bottom: -30px;
}
  section.mail-ft .mailWraper {
    width: 90%;
  }

  footer .foot-links {
    padding: 40px 0px 40px 30px;
  }

  footer {
    padding: 90px 20px 0px 20px;
  }

  /* Home css Ends */

  /* Inner Banner Css Starts */

  section.inner-banner .carousel-item {
    height: 500px;
  }

  section.inner-banner .main-banner-img {
    object-position: 0 0;
  }

  /* Inner Banner Css Ends */

  /* About Us Page Css Starts */

  section.inner-about-sec .about-img-bottom {
    margin: 30px 0 0 0;
  }

  /* About Us Page Css Ends */

  /* Services Detail Page Css Starts */

  section.service-detail-page .detail-img {
    padding-right: 0;
  }

  section.service-detail-page .detail-img img {
    height: 400px;
    object-fit: cover;
  }

  section.service-detail-page .bottom-para {
    margin-top: 0;
  }

  /* Services Detail Page Css Ends */

  /* Cabins Detail Page Css Starts */

  .cabins_detail_slider .slick-slide {
    margin: 0 0 70px 0;
  }

  .cabins-detail-card-txt {
    padding: 20px;
    width: 28%;
    bottom: -8%;
  }

  section.cabins-detail-sec .slick-next {
        left: unset;
        right: unset;
        top: 39%;
        right: -40px;
        width: 34px;
        height: 34px;
    }
section.cabins-detail-sec .slick-prev::before {
    top: 5%;
}
  section.cabins-detail-sec .slick-prev {
        left: -39px;
        z-index: 9;
        top: 41%;
        width: 34px;
        height: 34px;
    }
  .cabins-detail-txt {
    width: 100%;
  }

  .cabins-detail-bottom-txt {
    width: 100%;
  }

  .cabins-detail-txt h2 {
    font-size: 50px;
    line-height: 55px;
  }

  /* Cabins Detail Page Css Ends */

  /* Boat Page Css Ends */

  section.servicesPage .waterh-box {
    display: block !important;
    margin: 0px 12px 60px !important;
  }

  section.boat-sec2.sec .boat-txt.sect-txt2 {
    padding-left: 0;
    padding-right: 0;
  }

  /* Boat Page Css Ends */

  /* Rates Page Css Starts */

  section.ratesPage .waterh-box {
    padding: 20px;
    margin: 0 0 20px 0;
  }

  section.ratesPage .waterh-box h1 span.pecentabe {
    font-size: 12px;
    right: -80%;
  }

  /* Rates Page Css Ends */

  /* Book Page Css Starts */

  section.contact-us .heading {
    margin-bottom: 20px;
  }

  section.contact-us .formWraper {
    width: 100%;
  }

  /* Book Page Css Ends */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  section,
  .sec {
    padding: 60px 0 !important;
  }

  .heading {
    margin: 0 0 30px 0;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 49px;
    line-height: 55px;
  }

  h2 {
    font-size: 45px;
    line-height: 50px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  /* Buttons css Ends */

  /* Home css Starts */

  .menuSec ul {
    gap: 5px;
  }

      .menuSec ul li a {
        padding: 0 6px;
        font-size: 11px;
        line-height: 20px;
    }
    
header .container {
    max-width: 800px;
}

  .header-btn .theme1 {
    gap: 5px;
    padding:0 4px;
  }
  .goog-te-gadget-simple {
    padding: 12px 5px !important;
}
.header-btn {
    gap: 3px;
}
.header-btn .theme1 span.theme1-icon {
    padding: 0 5px;
  }

  .header-btn .theme1 span.theme1-txt {
        font-size: 9px;
        width: 90px;
   }

  section.main_slider {
    padding: 0 !important;
  }

  section.main_slider .carousel-caption .container-fluid {
    margin-left: 20px;
  }

  section.main_slider .carousel-item {
    height: 700px;
  }

  .banner_slider .slick-slide {
    margin: 10px;
  }

  .banner_text {
    width: 100%;
  }

  .banner_text h1 {
        width: 100%;
        font-size: 40px;
        line-height: 51px;
    }
  .banner_text p {
    margin: 0 0 20px 0;
  }

  .banner-btn-main {
    margin: 0 0 20px 0;
    gap: 5px;
  }

  .banner-bottom-main {
    width: 95%;
    gap: 13%;
  }

  .banner-bottom-mid::before {
    width: 9vw;
    right: 90px;
  }

  .banner-bottom-right::before {
    display: none;
  }

  .banner-bottom-mid::after {
    width: 60vw;
  }

  /*.banner_slider .draggable {*/
  /*  padding: 0 100px 0 0 !important;*/
  /*}*/

  .about-heading {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
    width: 60%;
  }

  .banner-btn .theme1 span.theme1-icon {
    padding: 0 5px;
  }

  .about-heading p {
    margin: 0;
    width: 80%;
  }

  .about-heading-txt-main {
    margin: 20px 0 0 0;
  }

  .about-heading-txt-main .about-txt {
    width: 80%;
    margin: 0;
  }

  .about-right .about-img {
    position: relative;
    bottom: unset;
    width: 100%;
    right: unset;
    margin: 40px 0 0 0;
  }

  section.about-bottom-sec {
    padding: 60px 0;
  }

  .about-txt-counter {
    margin: 0 auto 20px auto;
  }

  .about-counter-border .about-txt-counter::before,
  .about-counter-border .about-txt-counter::after {
    display: none !important;
  }

  .about-ab::before,
  .about-ab {
    display: none;
  }

  section.about-sec::before {
    width: 78%;
  }

  section.waterHome .waterh-box .listing {
    flex-direction: column;
  }

  section.waterHome .slick-next {
    right: -30px;
    width: 40px;
    height: 40px;
  }

  section.waterHome .slick-prev {
    left: -30px;
    width: 40px;
    height: 40px;
  }

  section.adventure {
    background-position: 60% 51% !important;
  }

  section.adventure .adventure-lists .adv-list {
    padding: 10px;
  }

  .adv-list .list-text h4 {
    font-size: 20px;
    line-height: 25px;
  }

  img.ts-2 {
    width: 101px;
    height: 100px;
  }

  .testi-left-content .testi-small-imag {
    width: 120px;
    height: 120px;
    padding: 7px;
    right: 10px;
  }

      .testi-left-right {
        padding: 10px 20px 20px 20px;
        height: 260px;
        overflow-x: scroll;
    }

  .testimonial-box {
    flex-direction: column;
  }

  img.img-fluid.quoteImg {
    height: 50px;
    width: 50px;
    margin: 0;
  }

  .testi-left-content {
    width: 100%;
    height: 100%;
    padding: 20px;
  }

  .testimonial-sec .slick-prev,
  .testimonial-sec .slick-next {
    top: 50%;
  }

  section.reserve .reserve-txt {
    left: unset;
    width: 80%;
    padding: 20px;
    top: unset;
    position: relative;
    margin: -20% auto 0 auto;
  }

  section.reserve .reserve-txt h2 {
    line-height: 50px;
  }

  section.mail-ft {
    margin: 0;
    padding: 30px 0 !important;
  }

      section.mail-ft .mailWraper {
        width: 101%;
    }

  section.mail-ft .connectLinks {
    padding: 10px 10px 10px 0;
    gap: 10px;
  }

  section.mail-ft .connectLinks .conneTxt a {
    font-size: 11px;
    line-height: 20px;
  }

  footer {
    padding: 50px 0 0 0;
  }

  footer p {
    width: 100%;
  }

  footer .padds {
    padding: 20px 0 40px 0px;
  }

  footer .foot-links:before {
    left: -7%;
    bottom: 0;
  }

  footer .foot-links:after {
    right: 24px;
    top: 0;
  }

  footer .foot-links ul {
    width: 100%;
  }

  footer ul li {
    margin: 20px 0px;
  }

  footer ul li a {
    font-size: 12px;
    line-height: 20px;
  }

  /* Home css Ends */

  /* Inner Banner Css Starts */

  section.inner-banner .carousel-item {
    height: 400px;
  }

  section.inner-banner .main-banner-img {
    object-position: 0 0;
  }

  .banner-list ul {
    justify-content: start;
  }

  /* Inner Banner Css Ends */

  /* About Us Page Css Starts */

  section.inner-about-sec .about-img .about-left {
    height: 400px;
  }

  section.inner-about-sec .about-txt p {
    margin: 20px 0;
  }

  section.inner-about-sec .about-img-bottom {
    margin: 10px 0 0 0;
  }

  /* About Us Page Css Ends */

  /* Services Page Css Starts */

  section.servicesPage .waterh-box {
    margin: 0;
    padding: 15px;
  }

  section.servicesPage .waterh-box {
    margin: 0 0 20px 0 !important;
  }

  section.waterHome .waterh-box .waterTxt {
    margin: 20px 0;
  }

  section.waterHome .waterh-box h4 {
    font-size: 20px;
  }

  section.waterHome .waterh-box .waterImg img {
    object-fit: cover;
  }

  /* Services Page Css Ends */

  /* Services Page Css Starts */

  section.servicesPage .heading.text-center {
    margin-bottom: 20px !important;
  }

  section.servicesPage .waterh-box {
    margin: 0px 12px 30px !important;
  }

  section.servicesPage .waterh-box h4 {
    font-size: 20px;
  }

  /* Services Page Css Ends */

  /* Services Detail Page Css Starts */

  section.service-detail-page .detail-img {
    padding-right: 0;
  }

  section.service-detail-page .detail-img img {
    height: 400px;
    object-fit: cover;
  }

  section.service-detail-page p {
    margin: 0 0 20px 0;
  }

  section.service-detail-page .bottom-para {
    margin-top: 0;
  }

  /* Services Detail Page Css Ends */

  /* Cabins Detail Page Css Starts */

  .cabins_detail_slider .slick-slide {
    margin: 0 0 0px 0;
  }

  .cabins-detail-card-txt {
    padding: 20px;
    width: 60%;
    bottom: -20%;
  }

  section.cabins-detail-sec .slick-next {
    left: 40px;
    right: unset;
    top: 88%;
  }

  section.cabins-detail-sec .slick-prev {
    left: -20px;
    z-index: 9;
    top: 88%;
  }

  .cabins-detail-txt {
    width: 100%;
  }

  .cabins-detail-txt-ex {
    height: 100%;
  }

  .cabins-detail-bottom-txt {
    width: 100%;
  }

  .cabins-detail-list {
    margin: 20px 0 0 0;
  }

  /* Cabins Detail Page Css Ends */

  /* Boat Page Css Ends */

  section.servicesPage .waterh-box {
    display: block !important;
    margin: 0px 12px 60px !important;
  }

  section.boat-sec2.sec .boat-txt.sect-txt2 {
    padding-left: 0;
    padding-right: 0;
  }

  section.boat-sec3.sec .boat-txt.sec2-txt p:last-child {
    margin: 0 0 20px 0;
  }

  /* Boat Page Css Ends */

  /* Rates Page Css Starts */

  section.ratesPage .waterh-box {
    padding: 20px;
    margin: 0 0 20px 0;
  }

  /* Rates Page Css Ends */

  /* Contact Page Css Starts */

  section.contact-us .get-in-touch.cntct-head {
    padding-right: 0;
  }

  .cntct-head h4 {
    font-size: 40px;
    line-height: 45px;
    margin: 0 0 20px 0;
  }

  .cntct-info {
    margin: 20px 0 0 0;
  }

  .contact-info-item {
    gap: 10px;
    padding: 20px 10px;
  }

  .contact-info {
        /* display: flex; */
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

  .contact-info-item-details h5 {
    font-size: 20px;
    line-height: 25px;
  }

  .contact-info-item-details a,
  .contact-info-item-details p {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
  }

  /* Contact Page Css Ends */

  /* Book Page Css Starts */

  section.contact-us .heading {
    margin-bottom: 30px;
  }

  section.contact-us .formWraper {
    width: 100%;
  }

  /* Book Page Css Ends */
  
  .col-xl-7.col-lg-7.col-md-7.d-none.d-md-block {
    display: none !important;
}

.slicknav_menu {display: block !important;}

.menuSec .row {
    justify-content: space-between;
}

.menuSec .col-xl-2.col-lg-2.col-md-2.col-sm-12.col-12 {
    width: 35%;
}

.menuSec .col-xl-3.col-lg-3.col-md-3.col-sm-12.col-12.text-right {
    width: 26%;
}

}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  section,
  .sec {
    padding: 40px 0 !important;
  }
  .banner_slider {
    display: none;
}

  .heading {
    margin: 0 0 20px 0;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 50px;
    line-height: 55px;
    margin: 0;
  }

  h2 {
    font-size: 45px;
    line-height: 50px;
  }

  /* Fonts css Ends */

  /* Home css Starts */

  header {
    padding: 10px 0;
  }

  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-btn {
    justify-content: center;
    margin: 20px 0 0 0;
  }

  section.main_slider {
    padding: 0 !important;
  }

  section.main_slider .carousel-item {
    height: 900px;
  }

  .banner_slider .draggable {
    padding: 0 !important;
  }

  section.main_slider .carousel-caption .container-fluid {
    margin-left: 0;
  }

  .banner_text h1 {
    width: 73%;
  }

  .banner_text p {
    margin: 20px 0;
  }

  .banner_slider .slick-slide {
    margin: 20px 5px 0 5px;
  }

  .banner-card-btn {
    margin: 0 0 10px 0;
  }

   .main-banner-img {
    object-position: 0 0;
    height: 100%;
    }

  .banner-bottom-main {
    width: 96%;
    gap: 10px;
    height: 45px;
    justify-content: space-between;
    margin: 0 0 20px auto;
  }

  .banner-bottom-mid::before,
  .banner-bottom-mid::after {
    display: none;
  }

  .banner-card {
    width: 60%;
    margin: 0 auto;
  }

  .about-heading {
    flex-direction: column;
    gap: 10px;
    align-items: start;
  }

  .about-ab {
        display: block;
        bottom: -8px;
        right: 107px;
    }

  .about-img .about-left {
        width: 100%;
        height: 380px;
        margin: 10px 0 20px 0;
    }

  .about-heading-txt-main {
    margin: 20px 0 0 0;
  }

  .about-heading-txt-main .about-txt {
    width: 100%;
  }

  section.about-sec h2.about-ex-txt {
    display: none;
  }

  .about-right .about-img {
    position: relative;
    bottom: unset;
    width: 100%;
    right: unset;
  }

  .about-img .about-right {
    height: 200px;
  }

  section.about-bottom-sec {
    margin: 0;
    padding: 20px 0;
  }

  section.about-sec::before {
    display: none;
  }

  .counter,
  .counter-txt h6 {
    font-size: 30px;
    line-height: 35px;
  }

  .counter-txt {
    justify-content: center;
  }

  .about-txt-counter {
    width: 100%;
    text-align: center;
    margin: 0 0 20px 0;
  }

  .about-txt-counter::before {
    right: -15px;
  }

  .about-txt-counter::after {
    right: -20px;
  }

  .about-txt-counter p {
    font-size: 11px;
  }

  .about-counter-border .about-txt-counter::before,
  .about-counter-border .about-txt-counter::after {
    display: none !important;
  }

  section.waterHome .heading p {
    line-height: 20px;
  }

  .waterhome-slider .slick-slide {
    margin: 0px 10px;
  }

   section.waterHome .waterh-box {
        padding: 10px;
        height: auto;
    }

  section.waterHome .waterh-box .waterImg img {
    height: 200px;
    object-fit: cover;
  }

  section.waterHome .waterh-box .waterTxt {
    margin: 20px 0 10px 0;
  }

  section.waterHome .waterh-box p {
    margin: 10px 0;
  }

  section.waterHome .waterh-box .listing .txt-icons h6 {
    font-size: 12px;
    line-height: 21px;
  }

  section.waterHome .waterh-box .loaction a {
    font-size: 13px;
    line-height: 24px;
  }

  section.waterHome .waterh-box .listing {
    margin: 10px 0;
    flex-direction: column;
  }

  section.waterHome .waterh-box .listing {
    margin: 10px 0;
  }

  section.adventure .adventure-lists .adv-list .list-img img {
    height: 300px;
    object-fit: cover;
  }

  section.adventure .adventure-txt {
    width: 100%;
    padding: 20px;
  }

  section.adventure .adventure-txt p {
    line-height: 20px;
    width: 100%;
    margin: 10px 0;
    font-size: 12px;
  }

  section.adventure .adventure-lists {
    margin-top: 20px;
  }

  section.adventure .adventure-lists .adv-list {
    width: 100%;
    padding: 20px;
    margin: 0 0 20px 0;
  }

  .find-img {
    margin: 0 0 11px 0;
  }

  .find-btn {
    margin: 10px 0 0 0;
  }

  .sec-head p {
    font-size: 12px;
    line-height: 20px;
  }

  .testi-left-right {
    padding: 20px;
  }

  .testimonial-box {
    display: block;
    margin: 0;
  }

  .testi-left-content {
    width: 100%;
    height: 100%;
    padding: 10px;
  }

  img.img-fluid.quoteImg {
    height: 50px;
    width: 50px;
    margin: 0;
  }

  .testi-left-content h5 {
    font-size: 15px;
    line-height: 20px;
  }

  .testi-left-content h6 {
    font-size: 12px;
    line-height: 20px;
  }

  img.ts-2 {
    position: relative;
    top: unset;
    margin: 0;
    left: unset;
    right: unset;
    height: 100%;
    width: 100%;
  }

  .testi-slider .slick-slide {
    margin: 0px 5px;
  }

  .testimonial-sec .testi-slider {
    left: unset;
  }

  .testi-left-content .testi-small-imag {
        right: 1%;
        height: 104px;
        width: 105px;
        padding: 3px;
    }

  .smal-imag-1 {
    display: none;
  }

  .testi-slider .slick-active {
    opacity: 1;
  }

  .testi-slider .slick-dots {
    bottom: -40px;
  }

  section.reserve .reserve-txt {
    position: relative;
    left: unset;
    width: 100%;
    padding: 20px;
    top: unset;
  }

  section.reserve .reserve-txt h2 {
    line-height: 40px;
  }

  section.reserve .reserve-txt p {
    line-height: 20px;
  }

  section.mail-ft .mailWraper {
    width: 100%;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    margin: 20px 0;
  }

  footer {
    padding: 0;
  }

  footer .padds {
    padding: 20px 0;
  }

  footer h5 {
    font-size: 20px;
    margin: 0 0 20px;
  }

  footer .foot-links:before {
    width: 100%;
    background-color: #0000;
    border-top: 1px solid #ffffff26;
    top: 0;
    height: 1px;
  }

  footer .foot-links:after {
    width: 100%;
    background-color: #0000;
    border-bottom: 1px solid #ffffff26;
    bottom: 0;
    right: 0;
    height: 1px;
  }

  .footer-btm {
    padding: 10px 0;
  }

  .footer-btm:before {
    width: 100%;
    left: unset;
  }

  .footer-btm p {
    font-size: 12px;
    line-height: 20p;
  }

  footer .newlatter form {
    width: 100%;
  }

  /* Home css Ends */

  /* Inner Banner Css Starts */

  section.inner-banner .carousel-item {
    height: 300px;
  }

  section.inner-banner .main-banner-img {
    object-position: 0 0;
  }

  .banner-list ul {
    justify-content: start;
    margin: 20px 0 0 0;
  }

  /* Inner Banner Css Ends */

  /* About Us Page Css Starts */

  section.inner-about-sec .about-img .about-left {
    height: 300px;
  }

  section.inner-about-sec .about-txt p {
    margin: 10px 0;
  }

  section.inner-about-sec .about-img-bottom {
    margin: 10px 0 0 0;
  }

  /* About Us Page Css Ends */

  /* Services Page Css Starts */

  section.servicesPage .heading.text-center {
    margin-bottom: 20px !important;
  }

  section.servicesPage .waterh-box {
    margin: 0px 12px 30px !important;
  }

  /* Services Page Css Ends */

  /* Services Page Css Starts */

  section.servicesPage .heading.text-center {
    margin-bottom: 20px !important;
  }

  section.servicesPage .waterh-box {
    margin: 0px 12px 30px !important;
  }

  section.servicesPage .waterh-box h4 {
    font-size: 20px;
  }

  /* Services Page Css Ends */

  /* Services Detail Page Css Starts */

  section.service-detail-page .detail-img {
    padding-right: 0;
  }

  section.service-detail-page .detail-img img {
    height: 300px;
    object-fit: cover;
  }

  section.service-detail-page p {
    margin: 0 0 10px 0;
    font-size: 12px;
    line-height: 20px;
  }

  section.service-detail-page .bottom-para {
    margin-top: 0;
  }

  /* Services Detail Page Css Ends */

  /* Cabins Detail Page Css Starts */

  .cabins_detail_slider .slick-slide {
    margin: 0 0 20px 0;
  }

  .cabins-detail-card-txt {
    position: relative;
    bottom: unset;
    right: unset;
    width: 100%;
    padding: 20px;
    margin: 10px 0 0 0;
  }

  .cabins-detail-card-img img {
    height: 400px;
  }

  .cabins-detail-txt {
    width: 100%;
  }

  .cabins-detail-txt-ex {
    gap: 10px;
    height: 100%;
  }

  .cabins-detail-txt p {
    margin: 10px 0;
  }

  .cabins-detail-list {
    gap: 40px;
  }

  .cabins-detail-list-card-main::before {
    right: -12%;
  }

  .cabins-detail-list-card::before,
  .cabins-detail-list-card::after {
    right: -20px;
  }

  .cabins-detail-bottom-txt {
    height: 100%;
  }

  .cabins-detail-bottom-img img {
    height: 300px;
  }

  section.cabins-detail-sec .slick-next {
    left: 40px;
    right: unset;
    top: 88%;
  }

  section.cabins-detail-sec .slick-prev {
    left: -20px;
    z-index: 9;
    top: 88%;
  }

  section.cabins-detail-sec.sec {
    margin-bottom: 20px;
  }

  /* Cabins Detail Page Css Ends */

  /* Boat Page Css Starts */

  section.boat-sec1 .sec1-heading p {
    font-weight: 400;
    line-height: 20px;
  }

  section.boat-sec1 .sec-disply {
    padding-top: 10px;
  }

  section.boat-sec1 .sec-disply .sec1-img.boatImg {
    padding-right: 0;
  }

  section.boat-sec1 .sect-txt1.boat-txt p:first-child {
    margin-bottom: 10px;
  }

  section.boat-sec2.sec .sec2-img.boatImg {
    padding-right: 0;
  }

  section.boat-sec2.sec .boat-txt.sect-txt2 {
    padding-left: 0;
    padding-right: 0;
  }

  section.boat-sec3.sec .boat-txt.sec2-txt {
    padding-right: 0;
  }

  section.mail-ft {
    margin-top: -30px;
  }

  section.boat-sec3.sec .boat-txt.sec2-txt p:last-child {
    margin: 0 0 10px 0;
  }

  section.waterHome.servicesPage .waterh-box {
    display: block !important;
    margin: 0 0 20px 0 !important;
  }

  /* Boat Page Css Ends */

  /* Rates Page Css Starts */

  section.ratesPage .waterh-box {
    padding: 20px;
    margin: 0 0 20px 0;
  }

  /* Rates Page Css Ends */

  /* Contact Page Css Starts */

  section.contact-us .get-in-touch.cntct-head {
    padding-right: 0;
  }

  .cntct-head h4 {
    font-size: 40px;
    line-height: 45px;
    margin: 0 0 20px 0;
  }

  .cntct-info {
    margin: 20px 0 0 0;
  }

  .contact-info-item {
    gap: 10px;
    padding: 20px 10px;
  }

  /* Contact Page Css Ends */

  /* Book Page Css Starts */

  section.contact-us .heading {
    margin-bottom: 20px;
  }

  section.contact-us .formWraper {
    width: 100%;
  }

  /* Book Page Css Ends */
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  p br {
    display: none;
  }
  .banner_slider {
    display: none;
}
.sec2-img.boatImg img {
    height: 280px !important;
}
  section,
  .sec {
    padding: 20px 0 !important;
  }

  .heading {
    margin: 0 0 20px 0;
  }

  /* Fonts css Starts */

  h1 {
    font-size: 38px;
    line-height: 45px;
    margin: 0;
  }

  h2 {
    font-size: 35px;
    line-height: 40px;
  }

  p {
    font-size: 12px;
    line-height: 20px;
  }

  /* Fonts css Ends */

  /* Buttons css Starts */

  .theme1 {
    gap: 5px;
    height: 40px;
  }

  .theme1 span.theme1-txt {
    font-size: 10px;
    line-height: 15px;
  }

  .theme1 span.theme1-icon {
    padding: 0 10px;
  }

  /* Buttons css Ends */

  /* Home css Starts */

  header {
    padding: 10px 0;
  }

  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-btn {
    justify-content: center;
    margin: 20px 0 0 0;
  }

  section.main_slider {
    padding: 0 !important;
  }

  section.main_slider .carousel-item {
    /*height: 900px;*/
  }

  .banner_slider .draggable {
    padding: 0 !important;
  }

  section.main_slider .carousel-caption .container-fluid {
    margin-left: 0;
  }

  .banner_text h1 {
    width: 100%;
    line-height: 45px;
    font-size: 35px;
    margin: 0px;
  }

  .banner_text p {
    margin: 14px 0 20px;
    width: 100%;
    line-height: 21px;
  }

  .banner-btn-main {
    gap: 5px;
  }

  .banner-btn .theme1 span.theme1-txt {
    font-size: 7px;
  }

  .banner_slider .slick-slide {
    margin: 20px 5px 0 5px;
  }

  .banner-card-txt p {
    line-height: 20px;
    margin: 10px 0;
  }

  .banner-card-btn {
    margin: 0 0 10px 0;
  }

  .main-banner-img {
    object-position: -250px 0px;
    height: 100%;
  }

  .banner-bottom-main {
    width: 96%;
    gap: 10px;
    height: 45px;
    justify-content: space-between;
    margin: 0 0 20px auto;
  }

  section.main_slider .banner_text {
    margin-top: -80px;
    margin-bottom: 30px;
  }

  .carousel-inner {
    height: auto;
  }

  .carousel-caption {
    height: 100%;
  }

  .banner-bottom-mid::before,
  .banner-bottom-mid::after {
    display: none;
  }

  .about-heading {
        flex-direction: column;
        gap: 10px;
        align-items: start;
        margin-bottom: 30px;
    }

 .about-ab {
        /* display: none; */
        bottom: -15px;
    }

  .about-img .about-left {
    width: 100%;
    height: 100%;
    margin: 10px 0 20px 0;
  }

  .about-heading-txt-main {
    margin: 20px 0 0 0;
  }

  .about-heading-txt-main .about-txt {
    width: 100% !important;
    padding-left: 0px;
    margin-bottom: 30px;
  }

      section.about-sec h2.about-ex-txt {
        /* display: none; */
        z-index: -1;
        font-size: 72px;
        right: -20px;
    }

  .about-right .about-img {
    position: relative;
    bottom: unset;
    width: 100%;
    right: unset;
  }

  .about-img .about-right {
    height: 200px;
  }

  section.about-bottom-sec {
    margin: 0;
    padding: 20px 0;
  }

  section.about-sec::before {
    display: none;
  }

  .counter,
  .counter-txt h6 {
    font-size: 30px;
    line-height: 35px;
  }

  .counter-txt {
    justify-content: center;
  }

  .about-txt-counter {
    width: 100%;
    text-align: center;
    margin: 0 0 20px 0;
  }

  .about-txt-counter::before {
    right: -15px;
  }

  .about-txt-counter::after {
    right: -20px;
  }

  .about-txt-counter p {
    font-size: 11px;
  }

  .about-counter-border .about-txt-counter::before,
  .about-counter-border .about-txt-counter::after {
    display: none !important;
  }

  section.waterHome .heading p {
    line-height: 20px;
  }

  .waterhome-slider .slick-slide {
    margin: 0px 10px;
  }

section.waterHome .waterh-box {
    padding: 10px;
    padding-bottom: 40px;
    height: 520px;
}

  section.waterHome .waterh-box .waterImg img {
    height: 200px;
    object-fit: cover;
  }

  section.waterHome .waterh-box .waterTxt {
    margin: 20px 0 10px 0;
  }

  section.waterHome .waterh-box p {
    margin: 10px 0;
  }

  section.waterHome .waterh-box .listing .txt-icons h6 {
    font-size: 9px;
    line-height: 16px;
  }

  section.waterHome .waterh-box .loaction a {
    font-size: 12px;
    line-height: 20px;
  }

    section.waterHome .waterh-box .listing {
        margin: 10px 0;
        gap: 0px;
        padding: unset;
    }
    section.waterHome .waterh-box .listing .count-i i {
    font-size: 15px;
}
section.main_slider.inner-banner .banner_text {
    margin-top: -10px;
}

section.waterHome .waterh-box .listing .txt-icons {
    gap: 5px;
}

  section.adventure .adventure-lists .adv-list .list-img img {
    height: 200px;
    object-fit: cover;
  }

      section.adventure .adventure-txt {
        width: 100%;
        padding: 20px;
        margin-top: 50px !important;
        width: 93%;
        margin: 0 auto;
    }

  section.adventure .adventure-txt p {
    line-height: 20px;
    width: 100%;
    margin: 10px 0;
    font-size: 12px;
  }

  section.adventure .adventure-lists {
    margin-top: 20px;
  }

  section.adventure .adventure-lists .adv-list {
    width: 100%;
    padding: 20px;
    margin: 0 0 20px 0;
  }

  .find-img {
    margin: 0 0 11px 0;
  }

  .find-btn {
    margin: 10px 0 0 0;
  }

  .sec-head p {
    font-size: 12px;
    line-height: 20px;
  }

      .testi-left-right {
        padding: 20px;
        height: 290px;
        overflow-y: scroll;
    }

  .testimonial-box {
    display: block;
    margin: 0;
  }

  .testi-left-content {
    width: 100%;
    height: 100%;
    padding: 10px;
  }

  img.img-fluid.quoteImg {
    height: 50px;
    width: 50px;
    margin: 0;
  }

  .testi-left-content h5 {
    font-size: 15px;
    line-height: 20px;
  }

  .testi-left-content h6 {
    font-size: 12px;
    line-height: 20px;
  }

  img.ts-2 {
    position: relative;
    top: unset;
    margin: 0;
    left: unset;
    right: unset;
    height: 100%;
    width: 100%;
  }

  .testi-slider .slick-slide {
    margin: 0px 5px;
  }

  .testimonial-sec .testi-slider {
    left: unset;
  }

.testi-left-content .testi-small-imag {
    right: 1%;
    height: 105px;
    width: 95px;
    padding: 3px;
}
  .smal-imag-1 {
    display: none;
  }

  .testi-slider .slick-active {
    opacity: 1;
  }
  section.reserve .reserve-txt {
    position: relative;
    left: unset;
    width: 100%;
    padding: 20px;
    top: unset;
  }

  section.reserve .reserve-txt h2 {
    line-height: 40px;
  }

  section.reserve .reserve-txt h6 {
    font-size: 12px;
    line-height: 20px;
  }

  section.reserve .reserve-txt p {
    line-height: 20px;
  }

  section.mail-ft .mailWraper {
    width: 100%;
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    margin: 20px 0;
  }

  footer {
    padding: 0;
  }

  footer .padds {
    padding: 20px 0;
  }

  footer h5 {
    font-size: 20px;
    margin: 0 0 20px;
  }

  footer .foot-links:before {
    width: 100%;
    background-color: unset;
    border-top: 1px solid #ffffff26;
    top: 0;
    height: 1px;
  }

  footer .foot-links:after {
    width: 100%;
    background-color: unset;
    border-bottom: 1px solid #ffffff26;
    bottom: 0;
    right: 0;
    height: unset;
  }

  .footer-btm {
    padding: 10px 0;
  }

  .footer-btm:before {
    width: 100%;
    left: unset;
  }

  .footer-btm p {
    font-size: 12px;
    line-height: 20p;
  }

  footer .newlatter form {
    width: 100%;
  }

  /* Home css Ends */

  /* Inner Banner Css Starts */

  section.inner-banner .carousel-item {
    height: 400px;
  }

  section.inner-banner .main-banner-img {
    object-position: 0 0;
  }

  .banner-list ul {
    justify-content: start;
    margin: 20px 0 0 0;
    gap: 10px;
  }

  .banner-list ul li h6,
  .banner-list ul li h6 a {
    font-size: 16px;
  }

  /* Inner Banner Css Ends */

  /* About Us Page Css Starts */

  section.inner-about-sec .about-img .about-left {
    height: 250px;
  }

  section.inner-about-sec .about-txt p {
    margin: 10px 0;
  }

  section.inner-about-sec .about-img-bottom {
    margin: 10px 0 0 0;
  }

  /* About Us Page Css Ends */

  /* Services Page Css Starts */

  section.servicesPage .heading.text-center {
    margin-bottom: 20px !important;
  }

  section.servicesPage .waterh-box {
    margin: 0px 12px 30px !important;
  }

  section.servicesPage .waterh-box h4 {
    font-size: 20px;
  }

  /* Services Page Css Ends */

  /* Services Detail Page Css Starts */

  section.service-detail-page .detail-img {
    padding-right: 0;
  }

  section.service-detail-page .detail-img img {
    height: 200px;
    object-fit: cover;
  }

  section.service-detail-page p {
    margin: 0 0 10px 0;
    font-size: 12px;
    line-height: 20px;
  }

  section.service-detail-page .bottom-para {
    margin-top: 0;
  }

  /* Services Detail Page Css Ends */

  /* Cabins Detail Page Css Starts */

  .cabins_detail_slider .slick-slide {
    margin: 0 0 20px 0;
  }

  .cabins-detail-card-txt {
    position: relative;
    bottom: unset;
    right: unset;
    width: 100%;
    padding: 20px;
    margin: 10px 0 0 0;
  }

  .cabins-detail-card-img img {
    height: 300px;
  }

  .cabins-detail-txt {
    width: 100%;
  }

  .cabins-detail-txt-ex {
    gap: 10px;
    height: 100%;
  }

  .cabins-detail-txt p {
    margin: 10px 0;
  }

  .cabins-detail-list {
    gap: 20px;
  }

  .cabins-detail-list-card-main::before {
    right: -14%;
  }

  .cabins-detail-list-card::before,
  .cabins-detail-list-card::after {
    right: -15px;
  }

  .cabins-detail-bottom-txt {
    height: 100%;
  }

  .cabins-detail-bottom-img img {
    height: 200px;
  }

  section.cabins-detail-sec.sec {
    margin-bottom: 20px;
  }

  /* Boat Page Css Starts */

  section.boat-sec1 .sec1-heading p {
    font-weight: 400;
    line-height: 20px;
  }

  section.boat-sec1 .sec-disply {
    padding-top: 10px;
  }

  section.boat-sec1 .sec-disply .sec1-img.boatImg {
    padding-right: 0;
  }

  section.boat-sec1 .sect-txt1.boat-txt p:first-child {
    margin-bottom: 10px;
  }

  section.boat-sec2.sec .sec2-img.boatImg {
    padding-right: 0;
  }

  section.boat-sec2.sec .boat-txt.sect-txt2 {
    padding-left: 0;
    padding-right: 0;
  }

  section.boat-sec3.sec .boat-txt.sec2-txt {
    padding-right: 0;
  }

  section.mail-ft {
    margin-top: -30px;
  }

  section.boat-sec3.sec .boat-txt.sec2-txt p:last-child {
    margin: 0 0 10px 0;
  }

  /* Boat Page Css Ends */

  /* Rates Page Css Starts */

  section.ratesPage .waterh-box {
    padding: 20px;
    margin: 0 0 20px 0;
  }

  section.ratesPage .waterh-box h1 span.pecentabe {
    right: -80%;
    font-size: 12px;
  }

  /* Rates Page Css Ends */

  /* Contact Page Css Starts */

  section.contact-us .get-in-touch.cntct-head {
    padding-right: 0;
  }

  .cntct-head h4 {
    font-size: 40px;
    line-height: 45px;
    margin: 0 0 20px 0;
  }

  .cntct-info {
    margin: 20px 0 0 0;
  }

  .contact-info-item {
    gap: 10px;
    padding: 20px 10px;
  }

  /* Contact Page Css Ends */

  /* Book Page Css Starts */

  section.contact-us .heading {
    margin-bottom: 20px;
  }

  section.contact-us .formWraper {
    width: 100%;
  }

  /* Book Page Css Ends */
}

/*Media Query End*/
.heading.text-center ul li {
  margin-top: 8px;
}
.heading.text-center ul {
  margin-bottom: 15px;
}
section.waterHome .waterh-box p b {
  color: #000;
  opacity: 100%;
}
p.featured-para {
  opacity: 100%;
}
.table-btm-text {
  text-align: center;
}

.table-btm-text .cabins-detail-card-btn {
  margin-top: 20px;
}
.cabins-detail-card-txt h5 {
  border: 1px solid #43613f;
  /* width: 32%; */
  padding: 6px 5px;
  border-radius: 20px;
  background: #43613f;
  color: #fff;
  font-size: 14px;
  font-family: "Montserrat";
  font-weight: 500;
  text-align: center;
}
.cabins-detail-card-txt h2{
  font-size: 50px !important ;
  font-family: "ntseawave-standart";
  line-height: 0px !important;
  color: #000;
  font-weight: 400;
  margin: 10px 0;
  margin-top: 30px;
  font-weight: 600;
}
.cabins-detail-card-btn .theme1{
  margin-top: -20px !important;
}
.loft-sec-mainpg .cabins-detail-list-card-main::before {
  right: -17%;
}
section.waterHome.servicesPage.boatspage p {
  height: 80px;
  margin-bottom: 10px;
}
section.waterHome.servicesPage.boatspage .waterh-box {
  height: 580px;
}
h3.cabin-no-tag {
  background: #42603e;
  width: 25%;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 20px;
  font-family: "Montserrat";
  font-weight: 400;
}
.top-tags {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-tags h3.cabin-no-tag {
  padding: 3px 14px;
  margin: unset;
}
p.extend-btm {
  padding: 15px 0px;
}
.rate-bottom-pkg-sec .cabins-pacakges th {
  background: #42603e;
  color: #fff;
}
.rate-bottom-pkg-sec .cabins-detail-bottom-txt .nightlist {
  justify-content: center;
  margin-top: 0px;
}
.rate-bottom-pkg-sec p.extend-btm {
  padding: 15px 0px;
  text-align: center;
}

/* Revision Number 4  */

section.about-bottom-sec .col-xl-3.col-lg-3.col-md-6.col-sm-6.col-6 {
  margin: 0px auto;
  display: table;
  text-align: center;
}

section.about-bottom-sec .counter-txt {
  justify-content: center;
  align-items: center;
}

section.about-bottom-sec .about-counter {
  position: relative;
}

section.about-bottom-sec .about-counter::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 4px;
  height: 52%;
  border-right: 1px solid #d6dacf;
  border-style: dashed;
  border-width: 1px;
}

section.about-bottom-sec .about-counter::after {
  content: "";
  position: absolute;
  background-image: url(../images/about-ab.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 15px;
  width: 12px;
  bottom: 0;
  left: 0px;
  filter: brightness(0) saturate(100%) invert(33%) sepia(24%) saturate(646%)
    hue-rotate(66deg) brightness(92%) contrast(88%);
}
section.boat-sec1 .botm-para {
  width: 60%;
  margin: 0px auto;
  display: table;
  padding-top: 40px;
}

section.boat-sec1 .botm-para p {
  line-height: 26px;
}

section.boat-sec3.sec .boat-txt.sec2-txt h4 {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 20px;
}

section.boat-sec3.sec .boat-txt.sec2-txt h4 a {
  text-decoration: underline;
}

section.reserve .reserve-label-text {
  position: absolute;
  display: inline-block;
  width: 60%;
  top: 40px;
  margin: 0px auto;
  right: 0;
}

section.reserve .reserve-label-text h1 {
  margin: 0px;
  display: inline-block;
  color: #000;
  font-weight: 700;
  text-shadow: 0px -1px 20px #262424de;
  font-size: 27px;
  padding: 10px 19px;
  background: #ffffffc4;
  line-height: 46px;
  font-family: "montserrat";
  text-transform: capitalize;
}

/* Revision Number 4  */
.aaminates-btm-list ul {
    column-count: 3;
}
.aaminates-btm-list ul li {
    font-size: 15px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: #000;
}

.img-canoe img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.text-canoe h2 {
    font-size: 53px;
}
.text-canoe h4 {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 20px;
}
.canoe-sec .row {
    display: flex;
    justify-content: center;
    align-items: center;
}
.canoe-sec {
    padding: 100px 0px 50px;
}

.img-2guided-sec img {
    box-shadow: 0px 0px 20px 3px #4444441c;
    border-radius: 10px;
    width: 70%;
    margin-top: -160px;
    height: 350px;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 3px solid #FFF;
}
.img-2guided-sec {
    text-align: end;
}
section.boat-sec3.sec.cabins-detail-sec {
    margin-bottom: unset;
}
.ft-logo a img {
    width: 70%;
    background: #fff;
}
.sec2-img.boatImg img {
    width: 100%;
    height: 490px;
    object-fit: cover;
}
.boat-txt.sec2-txt {
    padding-left: 60px;
}
.wapertop .row {
    justify-content: start;
}



/* CSS by Backend  */


.reserve-txt h6 p{
  font-family: "Montserrat";
  font-weight: 600 !important;
  color: #000 !important;
  font-size: 14px;
  line-height: 23px;
  margin: 10px 0px 21px;
}

.package-bottom-text p{
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.has-error.help-block{
  display: block;
}


.goog-te-gadget-simple {
  background-color: #43613f !important;
  border: none !important;
  font-size: 12px !important;
  display: inline-flex !important;
  align-items: center;
  padding: 12px 12px !important;
  border-radius: 5px;
  cursor: pointer !important;
  transition: background 0.3s ease-in-out;
}

.goog-te-gadget-simple:hover {
  background-color: #36512f !important;
}
.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span{
  display: none;
}

.goog-te-gadget-simple .VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  color: white !important;
  font-weight: bold;
}

.goog-te-gadget-simple img {
  display: none !important; 
}
.goog-te-gadget-simple:after {
  content: " \f1ab"; 
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  color: white !important;
  margin-left: 8px;
  font-size: 30px;
  margin-left: -5px;
}


@media only screen and (min-width: 0px) and (max-width: 1200px) {
/*    .banner_slider {*/
/*    display: none;*/
/*}*/
}

section.Special-wrap {
    padding: 50px 0px 150px 0px;
}
/* Container adjustment */
.menuSec ul li.special-nav-item {
  margin: 0 10px;
  position: relative;
}


/* Main Button Styles */
.menuSec ul li a.spc-nav {
  color: #fff;
  font-size: 16px !important;
  padding: 12px 25px;
  background: linear-gradient(135deg, #b24e11, #8a3c0d);
  overflow: visible;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(46, 79, 42, 0.4),
              inset 0 1px 1px rgba(255,255,255,0.2);
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1;
  border: 1px solid rgba(110, 146, 105, 0.3);
}

.menuSec ul li a.spc-nav .spc-text {
  position: relative;
  z-index: 5;
  display: inline-block;
  transform: translateZ(0);
}

/* Hover Effects */
.menuSec ul li a.spc-nav:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(46, 79, 42, 0.6),
              inset 0 1px 1px rgba(255,255,255,0.3);
   background: linear-gradient(135deg, #b24e11, #8a3c0d); 
  color: #f8f8f8;
}

/* Enhanced Star Field */
.star-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  pointer-events: none;
}

.star {
  position: absolute;
  background-color: #fff;
  clip-path: polygon(
      50% 0%, 61% 35%, 98% 35%, 
      68% 57%, 79% 91%, 50% 70%, 
      21% 91%, 32% 57%, 2% 35%, 
      39% 35%
  );
  animation: twinkle 3s infinite ease-in-out;
  z-index: 2;
  filter: drop-shadow(0 0 3px rgba(255, 255, 200, 0.8));
}

/* Star positions and variations */
.star1 {top: 15%; left: 20%; width: 7px; height: 7px; animation-delay: 0s;}
.star2 {top: 30%; right: 15%; width: 5px; height: 5px; animation-delay: 0.5s;}
.star3 {bottom: 20%; left: 30%; width: 6px; height: 6px; animation-delay: 1s;}
.star4 {bottom: 30%; right: 25%; width: 4px; height: 4px; animation-delay: 1.5s;}
.star5 {top: 25%; right: 35%; width: 3px; height: 3px; animation-delay: 0.8s;}
.star6 {bottom: 15%; left: 15%; width: 5px; height: 5px; animation-delay: 1.2s;}

@keyframes twinkle {
  0%, 100% { 
    opacity: 0.4; 
    transform: scale(0.8) rotate(0deg);
  }
  50% { 
    opacity: 1; 
    transform: scale(1.5) rotate(10deg);
    filter: drop-shadow(0 0 6px rgba(255, 255, 220, 1));
  }
}

/* Glow Effect */
.glow-effect {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle at center, 
              rgba(110, 180, 100, 0.4) 0%, 
              rgba(110, 180, 100, 0) 70%);
  border-radius: 15px;
  animation: glow-pulse 4s infinite;
  opacity: 0;
  z-index: 0;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0; transform: scale(0.95); }
  50% { opacity: 0.6; transform: scale(1); }
}

/* Particle Ring Effect */
.particle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  animation: particle-explode 3s infinite linear;
  z-index: 1;
  pointer-events: none;
}

@keyframes particle-explode {
  0% {
    box-shadow: 
      0 0 0 0 rgba(255,255,255,0),
      0 0 0 0 rgba(255,255,255,0),
      0 0 0 0 rgba(255,255,255,0);
    transform: translate(-50%, -50%) scale(1);
  }
  20% {
    box-shadow: 
      -15px 0 3px 1px rgba(255,255,255,0.8),
      10px -5px 3px 1px rgba(255,255,255,0.7),
      5px 15px 3px 1px rgba(255,255,255,0.6);
  }
  100% {
    box-shadow: 
      -30px -20px 0 -5px rgba(255,255,255,0),
      25px 10px 0 -5px rgba(255,255,255,0),
      10px 30px 0 -5px rgba(255,255,255,0);
    transform: translate(-50%, -50%) scale(0.5);
  }
}

/* Hover Enhancements */
.spc-nav:hover .star {
  animation: twinkle 1.5s infinite ease-in-out;
}

.spc-nav:hover .glow-effect {
  animation: glow-pulse 2s infinite;
}

.spc-nav:hover .particle-ring {
  animation: particle-explode 1.5s infinite linear;
}
.menuSec ul li.special-nav-item {
     margin: 0 0px !important; 
    position: relative;
    margin-right: -80px !important;
}
/* Fix for mobile clickability */
.menuSec ul {
  position: relative;
  z-index: 100; /* Ensure menu stays above other elements */
}

.special-nav-item {
  position: relative;
  z-index: 10; /* Lower than main menu but higher than glow */
}

.spc-nav {
  position: relative;
  z-index: 11; /* Higher than its container */
}

.glow-effect {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle at center, 
              rgba(110, 180, 100, 0.4) 0%, 
              rgba(110, 180, 100, 0) 70%);
  border-radius: 10px;
  animation: glow-pulse 4s infinite;
  opacity: 0;
  z-index: -1; /* Important: glow goes BEHIND the button */
  pointer-events: none; /* Allows clicks to pass through */
}

/* Star field adjustments for mobile */
.star-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Above button but below text */
  pointer-events: none; /* Allows clicks to pass through */
}

.star {
  /* ... keep your existing star styles ... */
  pointer-events: none; /* Allows clicks to pass through */
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .spc-nav {
    padding: 8px 15px; /* Slightly smaller for mobile */
  }
  
  .glow-effect {
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
  }
  
  .star {
    width: 4px;
    height: 4px;
  }
}


/* Mobile-First Beautiful Styles */
@media (max-width: 768px) {
  .special-nav-item {
    margin: 5px 0;
    width: 100%;
    text-align: center;
  }

  .spc-nav {
    padding: 12px 20px;
    font-size: 16px !important;
    background: linear-gradient(135deg, #b24e11, #8a3c0d);
    border-radius: 12px;
    box-shadow:0 5px 20px rgba(46, 79, 42, 0.4),
              inset 0 1px 1px rgba(255,255,255,0.2);
    display: inline-block;
    width: auto;
    min-width: 120px;
    position: relative;
    overflow: visible;
    z-index: 10;
    border: 1px solid rgba(140, 180, 135, 0.4);
  }

  .spc-text {
    position: relative;
    z-index: 15;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
  }

  /* Mobile-Specific Glow Effects */
  .mobile-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle at center, 
                rgba(100, 220, 120, 0.3) 0%, 
                rgba(100, 220, 120, 0) 70%);
    border-radius: 14px;
    animation: mobile-glow-pulse 3s infinite;
    z-index: -1;
    pointer-events: none;
  }

  @keyframes mobile-glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(0.98); }
    50% { opacity: 0.7; transform: scale(1.02); }
  }

  /* Optimized Star Field for Mobile */
  .star-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
  }

  .star {
    width: 5px;
    height: 5px;
    background-color: #fff;
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%, 
        68% 57%, 79% 91%, 50% 70%, 
        21% 91%, 32% 57%, 2% 35%, 
        39% 35%
    );
    animation: mobile-twinkle 2.5s infinite ease-in-out;
    filter: drop-shadow(0 0 2px rgba(255, 255, 220, 0.8));
  }

  @keyframes mobile-twinkle {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.3); }
  }

  /* Star Positions for Mobile */
  .star1 {top: 15%; left: 20%; animation-delay: 0s;}
  .star2 {top: 75%; right: 15%; animation-delay: 0.7s;}
  .star3 {bottom: 20%; left: 30%; animation-delay: 1.4s;}
  .star4 {top: 50%; right: 25%; animation-delay: 2.1s;}

  /* Hover/Active State */
  .spc-nav:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(46, 79, 42, 0.3),
                inset 0 1px 2px rgba(255,255,255,0.1);
  }

  /* Tap Feedback */
  .spc-nav:active .star {
    animation: mobile-twinkle 0.5s ease-in-out;
  }

  .spc-nav:active .mobile-glow {
    animation: mobile-glow-pulse 0.5s;
  }
}

/* Desktop Overrides */
@media (min-width: 769px) {
  .mobile-glow {
    display: none;
  }
}

.special-pkg-box h1 {
  font-size: 48px;
  font-weight: 900;
  color : black;
  font-family: "Times New Roman", Times, serif !important;
}

.special-pkg-box h3 {
    font-size: 28px;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif !important;
}

.special-pkg-box h2 {
    font-size: 36px;
    line-height: 33px;
    margin-bottom: unset !important;
    padding: 13px 0px;
    font-weight: 800;
    font-family: "Times New Roman", Times, serif !important;
}
.special-pkg-box h4 {
    padding: 10px 0px;
    font-size: 22px;
    font-weight: 600;
    font-family: "Times New Roman", Times, serif !important;
}

.special-pkg-box {
    padding: 28px 0px;
    /*width: 36%;*/
    margin: 0 auto;
    box-shadow: 2px 0px 13px #42603e;
    border-radius: 10px;
    position: relative;
}
.special-pkg-box p {
    font-size: 16px;
}
section.Special-wrap .heading.text-center h2 {
    margin-bottom: 40px;
}
.special-pkg-box .glow-effect {
    background: radial-gradient(circle at center, rgb(33 158 16 / 90%) 0%, rgb(32 198 9 / 0%) 90%);
}

/* Header Dropdown Css  */
ul#menu .dropdown {
  position: relative !important;
  display: inline-block !important;
}


ul#menu .dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: 100%  !important;
  left: 0 !important;
  background-color: black !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 160px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3) !important;
  z-index: 1000 !important;
}

ul#menu .dropdown-menu li a {
  display: block !important;
  padding: 10px 15px !important;
  color: white !important;
  text-decoration: none !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}
ul#menu .dropdown-menu li a:hover {
  background-color: white !important;
  color: black !important;
}
ul#menu .dropdown:hover .dropdown-menu {
  display: block !important;
}

@media (max-width: 767px) {
  .special-pkg-box h1 {
    font-size: 32px;
    font-weight: 700;
  }

  .special-pkg-box h2 {
    font-size: 28px;
    font-weight: 600;
  }

  .special-pkg-box h3 {
    font-size: 22px;
    font-weight: 500;
  }

  .special-pkg-box h4 {
    font-size: 18px;
    font-weight: 500;
  }
}