* {
  box-sizing: none;
}

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight: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');

body {
  font-family: 'Inter Tight', sans-serif !important;
  background-color: #fff;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

.sticky-top {
  position: sticky !important;
  top: 0;

  animation: fadeIn 0.4s ease-in;
}

.container {
  position: relative;
}

input[type='number']::-webkit-inner-spin-button {
  display: none;
}

.main-btn {
  padding: 10px 40px;
  display: inline-block;
  margin-top: 20px;
  background-color: #006641;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.main-btn:hover {
  background-color: #C5995A;
  color: #fff;
}

/* =-------------------------------------------------------------------------------------------------------- */

.main-hero-slider {
  position: relative;
  overflow: hidden;
}

.main-hero-slider .carousel-item {
  position: relative;
  height: 100%;
  padding-bottom: 250px;
  background: url(../img/slider/leisure-travel-luxury-outdoor-area-by-the-pool-.jpg) no-repeat center;
  background-size: cover;
  animation: bgZoomEffect 8s linear;
  box-shadow: 1px 2px 1px 14px #C5995A;
  margin-bottom: 30px;
  border-radius: 0 0 200px 200px;
}

@keyframes bgZoomEffect {
  0% {
    background-size: 110% 110%;
  }

  100% {
    background-size: 100% 100%;

  }
}

.main-hero-slider .carousel-item::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, #070707CC 0%, #0707071A 100%);
  border-radius: 0 0 200px 200px;
}

.main-hero-slider .carousel-item .carousel-inner-content {
  padding-top: 300px;
  text-align: center;
}

.main-hero-slider .carousel-item .carousel-inner-content h1.title {
  font-size: 90px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter Tight', sans-serif !important;
}

.main-hero-slider .carousel-item .carousel-inner-content p.tagline {
  font-size: 24px;
  font-family: 'Inter Tight', sans-serif !important;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.main-hero-slider .carousel-item .carousel-inner-content .button-grp a {
  display: inline-block;
  padding: 12px 80px;
  border: 2px solid #fff;
  color: #fff;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 600;
  border-radius: 4px;
  margin-right: 10px;
  transition: all 0.4s;
}

.main-hero-slider .carousel-item .carousel-inner-content .button-grp a:first-child {
  background-color: #006641;
  border-color: #006641;
}

.main-hero-slider .carousel-item .carousel-inner-content .button-grp a:hover {
  background-color: #C5995A;
  color: #fff;
  border-color: #C5995A;
}



@media (min-width:992px) and (max-width:1200px) {
  .main-hero-slider .carousel-item .carousel-inner-content h1.title {
    font-size: 80px;
  }
}

@media (min-width:768px) and (max-width:992px) {
  .main-hero-slider .carousel-item {
    border-radius: 0 0 80px 80px;
  }

  .main-hero-slider .carousel-item::before {
    border-radius: 0 0 80px 80px;
  }

  .main-hero-slider .carousel-item .carousel-inner-content {
    padding-top: 240px;
  }

  .main-hero-slider .carousel-item .carousel-inner-content h1.title {
    font-size: 70px;
  }

  .main-hero-slider .carousel-item .carousel-inner-content p.tagline {
    font-size: 22px;
  }
}

@media (max-width:768px) {
  .main-hero-slider .carousel-item {
    box-shadow: 0px 0px 1px 10px #C5995A;
    border-radius: 0 ;
    padding-bottom: 100px;
    margin-bottom: 10px;
  }

  .main-hero-slider .carousel-item::before {
    border-radius: 0 ;
  }

  .main-hero-slider .carousel-item .carousel-inner-content {
    padding-top: 100px;
  }

  .main-hero-slider .carousel-item .carousel-inner-content h1.title {
    font-size: 54px;
  }

  .main-hero-slider .carousel-item .carousel-inner-content p.tagline {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .main-hero-slider .carousel-item .carousel-inner-content .button-grp a {
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
  }
}


@media (max-width:568px) {
  .main-hero-slider .carousel-item{
    padding-bottom: 80px;
  }
  .main-hero-slider .carousel-item .carousel-inner-content {
    padding-top: 80px;
  }

  .main-hero-slider .carousel-item .carousel-inner-content h1.title {
    font-size: 28px;
    font-weight: 600;
  }

  .main-hero-slider .carousel-item .carousel-inner-content p.tagline {
    font-size: 16px;
    margin-bottom: 30px;
  }
}



.contact-form-box {
  margin-top: -140px;
  margin-bottom: 80px;
  position: relative;
  z-index: 4;
}


.contact-form-box .main-form-box {
  position: relative;
  background-color: #006641;
  padding: 50px 30px;
  border-radius: 15px;
  background-image: url(../img/background/bg_pattern.png);
  background-size: 50px auto;
  border-bottom: 6px solid #C5995A;

}

.contact-form-box .main-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: radial-gradient(at top center, #006641F2 0%, #006641 100%);
  border-radius: 15px;
}

@media (max-width:768px) {
  .contact-form-box {
    margin-top: 0px;
    margin-bottom: 80px;
  }

  .contact-form-box .container {
    min-width: 100%;
    height: 100%;
    padding: 0;
  }
  .contact-form-box .main-form-box {
   border-radius: 0;
  
  }
  .contact-form-box .main-form-box::before {
    border-radius: 0;
  }
}

.contact-form-box .main-form-box .select-booking-pannel {
  position: relative;
}

.contact-form-box .main-form-box .select-booking-pannel .checkbox-wrapper {
  display: inline-block;
  margin: 0 18px 30px 0;
}

.contact-form-box .main-form-box .select-booking-pannel .checkbox-wrapper label {
  position: relative;
  color: #fff;
  font-weight: 600;
  padding-left: 30px;
}

.contact-form-box .main-form-box .select-booking-pannel .checkbox-wrapper input[type='radio'] {
  display: none;
}

.contact-form-box .main-form-box .select-booking-pannel .checkbox-wrapper label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.3s ease-in-out;
}

.contact-form-box .main-form-box .select-booking-pannel .checkbox-wrapper input[type='radio']:checked+label::before {
  background-color: #fff;
  border-color: #C5995A;
}

.contact-form-box .main-form-box .form-content {
  position: relative;
}

.contact-form-box .main-form-box .form-content .field-wrapper {
  display: inline-block;
  margin-bottom: 20px;
  width: 100%;
}

.contact-form-box .main-form-box .form-content .field-wrapper label {
  display: block;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-form-box .main-form-box .form-content .field-wrapper input {
  width: 100%;
  color: #000;
  padding: 8px 10px;
  font-weight: 600;
  text-transform: capitalize;
}

.contact-form-box .main-form-box .form-content .field-wrapper input[type='date'] {
  text-transform: uppercase;
}

.contact-form-box .main-form-box .form-content .field-wrapper input::placeholder {
  color: #000;


}

.contact-form-box .main-form-box .form-content .field-wrapper select {
  width: 100%;
  color: #000;
  padding: 8px 10px;
  font-weight: 600;
  text-transform: capitalize;
}

.contact-form-box .main-form-box .form-content .field-wrapper input:focus,
.contact-form-box .main-form-box .form-content .field-wrapper select:focus {
  outline: none;
  box-shadow: none;
}

.contact-form-box .main-form-box .form-content .field-wrapper input[type='submit'] {
  background-color: #fff;
  border: none;
  transition: all 0.3s;
}

.contact-form-box .main-form-box .form-content .field-wrapper input[type='submit']:hover {
  background-color: #C5995A;
  color: #fff;
}


.about-main-section {
  padding: 60px 0 80px;
  position: relative;
}

.about-main-section .left-content {
  padding-right: 80px;
}

.about-main-section .left-content span.sub-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #C5995A;
  letter-spacing: 1px;
}

.about-main-section .left-content h2.title {
  font-size: 42px;
  font-weight: 600;
}

.about-main-section .left-content p.tagline {
  padding-left: 30px;
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  margin: 24px 0;
  border-left: 4px solid #C5995A;
}

.about-main-section .left-content p.info {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
}


.about-main-section .right-content {
  position: relative;
}

.about-main-section .right-content .img-box {
  text-align: end;
}

.about-main-section .right-content .img-box img {
  width: 500px;
  height: 640px;
  object-fit: cover;
  object-position: center center;
  border-radius: 50px 5px 50px 5px;
}


.about-main-section .right-content .overlay-content {
  width: 300px;
  background-color: #006641;
  border-radius: 50px 5px 50px 5px;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.about-main-section .right-content .overlay-content .service-box {
  padding: 40px 30px;
  background-color: #C5995A;
  border-bottom-right-radius: 50px;
  text-align: center;
}

.about-main-section .right-content .overlay-content .service-box.sec-box {
  background-color: transparent;
}

.about-main-section .right-content .overlay-content .service-box svg {
  width: 30px;
  height: 30px;
  padding: 14px;
  border-radius: 50%;
  background-color: #fff;
  color: #C5995A;
}

.about-main-section .right-content .overlay-content .service-box p.title {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
}


.about-main-section .right-content .overlay-content .service-box ul li {
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 1px;
}


@media (min-width:992px) and (max-width:1200px) {
  .about-main-section .right-content .overlay-content {
    left: -80px;
  }
}

@media (max-width:992px) {
  .about-main-section .left-content {
    margin-bottom: 40px;
    padding-right: 0;
  }
}

@media (max-width:768px) {

  .about-main-section {
    padding: 20px 0 0;
    position: relative;
  }

  .about-main-section .right-content .img-box img {
    width: 100%;
    height: 550px;
  }

  .about-main-section .right-content .overlay-content {
    width: 100%;
    position: relative;

  }

}



.main-service-section {
  padding: 80px 0;
  position: relative;
  background-color: #F0F0F0;
}

.main-service-section .section-title span.tagline {
  text-transform: uppercase;
  font-weight: 600;
  color: #C5995A;
  letter-spacing: 1px;
}

.main-service-section .section-title h2.title {
  font-size: 42px;
  font-weight: 600;
}

.main-service-section .resort-service-wrapper {
  margin-top: 40px;
}

.main-service-section .resort-service-wrapper .service-box {
  overflow: hidden;
  position: relative;
  height: 500px;
  border-radius: 10px;
  transition: all 0.3s;
}

.main-service-section .resort-service-wrapper .service-box .img-box {
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.main-service-section .resort-service-wrapper .service-box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.main-service-section .resort-service-wrapper .service-box:hover .img-box img {
  transform: scale(1.4);
}

.main-service-section .resort-service-wrapper .service-box .content-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75px;
  padding: 20px 20px 30px;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}

.main-service-section .resort-service-wrapper .service-box .content-box p.title {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s;
}

.main-service-section .resort-service-wrapper .service-box .content-box p.intro {
  color: #fff;
  letter-spacing: 1px;
}

.main-service-section .resort-service-wrapper .service-box:hover .content-box {
  height: 65%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 30px 20px 30px;
}


@media (min-width:992px) and (max-width:1200px) {
  .main-service-section .resort-service-wrapper .service-box:hover .content-box {
    height: 80%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px 20px 30px;
  }
}

@media (max-width:992px) {
  .main-service-section .resort-service-wrapper .service-box {
    margin-bottom: 30px;
  }

  .main-service-section .resort-service-wrapper .service-box:hover .content-box {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px 20px 30px;
  }
}
















.whyus-section {
  position: relative;
  background-color: transparent;
  background-image: radial-gradient(at top left, #006641 0%, #232323 100%);
  padding-bottom: 30px;
  overflow: hidden;
}

.whyus-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/background/bg_favicon.png) top right;
  width: 250px;
  height: 250px;
  background-size: cover;
}

.whyus-section .container {
  min-width: 100%;
  padding-left: 0;
}

.whyus-section .left-content img {
  width: 100%;
  height: 860px;
  object-fit: cover;
  object-position: center center;
  border-style: solid;
  border-width: 0px 25px 0px 0px;
  border-color: #C5995A;
  border-radius: 0px 0px 410px 0px;
}


.whyus-section .right-content {
  padding: 80px 0 0 60px;
}

.whyus-section .right-content .head-content {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);

}

.whyus-section .right-content .head-content span.sub-title {
  text-transform: uppercase;
  font-weight: 600;
  color: #C5995A;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 30px;

}

.whyus-section .right-content .head-content h2.title {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
}

.whyus-section .right-content .head-content p.tagline {
  color: #fff;
  font-size: 18px;
  margin-bottom: 40px;
}


.whyus-section .right-content .bottom-feature-box {
  padding-top: 30px;
}

.whyus-section .right-content .bottom-feature-box .feature-box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.whyus-section .right-content .bottom-feature-box .feature-box svg {
  width: 40px;
  height: 40px;
  padding: 20px;
  color: #fff;
  background-color: #C5995A;
  border-radius: 50%;

}

.whyus-section .right-content .bottom-feature-box .feature-box p.title {
  color: #C5995A;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.whyus-section .right-content .bottom-feature-box .feature-box p.info {
  color: #fff;
}


@media (min-width:1400px) {
  .whyus-section .right-content {
    max-width: 650px;
  }
}

@media (min-width:1200px) {
  .whyus-section .right-content {
    max-width: 550px;
  }
}

@media (min-width:992px) {
  .whyus-section .right-content {
    max-width: 460px;
  }
}

@media (min-width:992px) and (max-width:1200px) {
  .whyus-section .right-content .head-content h2.title {
    font-size: 36px;
  }

}

@media (min-width:768px) {
  .whyus-section .right-content {
    max-width: 700px;
  }
}

@media (max-width:992px) {
  .whyus-section .left-content img {
    width: 100%;
    height: auto;
    border-radius: 0px 0px 240px 0px;
  }

  .whyus-section::before {
    display: none;
  }


}

@media (max-width:768px) {
  .whyus-section .container {
    min-width: auto;
    padding-left: .75rem;
  }

  .whyus-section .right-content {
    padding: 80px 0 0 0;
  }

  .whyus-section .right-content .head-content h2.title {
    font-size: 32px;
  }

}



.main-feature-section {
  padding: 80px 0 120px;
  background-color: #F0F0F0;
}

.main-feature-section .box-head-content {
  margin-bottom: 40px;
}

.main-feature-section .box-head-content .left-content span {
  text-transform: uppercase;
  font-weight: 600;
  color: #C5995A;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 14px;

}

.main-feature-section .box-head-content .left-content h2 {
  font-size: 42px;
  font-weight: 600;

}



.main-feature-section .feature-box-wrapper .feature-box-col .content-wrapper {
  background-color: #fff;
  text-align: center;
  padding: 40px 20px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  border-radius: 5px;
}

.main-feature-section .feature-box-wrapper .feature-box-col:nth-child(2) .content-wrapper {
  background-color: #006641 !important;
  margin-top: 60px;
}

.main-feature-section .feature-box-wrapper .feature-box-col:last-child .content-wrapper {
  margin-top: 60px;
}

.main-feature-section .feature-box-wrapper .feature-box-col .content-wrapper svg {
  width: 36px;
  height: 36px;
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 10px;
  background-color: #006641;
  color: #fff;
}

.main-feature-section .feature-box-wrapper .feature-box-col:nth-child(2) .content-wrapper svg {
  background-color: #C5995A;
}

.main-feature-section .feature-box-wrapper .feature-box-col .content-wrapper p.title {
  font-weight: 500;
  font-size: 24px;
}

.main-feature-section .feature-box-wrapper .feature-box-col:nth-child(2) .content-wrapper p.title {
  color: #fff;
}

.main-feature-section .feature-box-wrapper .feature-box-col .content-wrapper p.info {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
}

.main-feature-section .feature-box-wrapper .feature-box-col:nth-child(2) .content-wrapper p.info {
  color: rgba(255, 255, 255, 0.7);
}

.main-feature-section .feature-box-wrapper .feature-box-col .content-wrapper a {
  font-size: 14px;
  border-bottom: 1px solid #006641;
  color: #006641;
  font-weight: 500;
}

.main-feature-section .feature-box-wrapper .feature-box-col:nth-child(2) .content-wrapper a {
  color: #fff;
  border-bottom: 1px solid #C5995A;
}


@media (max-width:768px) {
  .main-feature-section .box-head-content .left-content h2 {
    font-size: 36px;
    font-weight: 600;

  }

  .main-feature-section .feature-box-wrapper .feature-box-col {
    margin-bottom: 30px;
  }

  .main-feature-section .feature-box-wrapper .feature-box-col:nth-child(2) .content-wrapper {
    background-color: #006641 !important;
    margin-top: 0;
  }

  .main-feature-section .feature-box-wrapper .feature-box-col:last-child .content-wrapper {
    margin-top: 0;
  }
}

/* ------------------------------------------------------------------------------------------------------------------- */


.main-testimonial-section {
  padding: 100px 0;
  position: relative;
}

.main-testimonial-section .left-content {
  padding-right: 120px;
  position: relative;
}

.main-testimonial-section .left-content img.main-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center center;
  border-radius: 6px;
  position: relative;
}

.main-testimonial-section .left-content .google-review-countbox {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  width: 200px;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  border-radius: 6px;
}

.main-testimonial-section .left-content .google-review-countbox img {
  width: 76px;
}

.main-testimonial-section .left-content .google-review-countbox p.text {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
}

.main-testimonial-section .left-content .google-review-countbox p.count {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 0;
}

.main-testimonial-section .left-content .google-review-countbox .rating svg {
  color: #f0ad4e;
}

.main-testimonial-section .left-content .google-review-countbox span {
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #af6600;
}

.main-testimonial-section .right-content {
  position: relative;
  height: 100%;
}

.main-testimonial-section .right-content .testimonial-head svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  opacity: .2;
}

.main-testimonial-section .right-content .testimonial-head span {
  text-transform: uppercase;
  font-weight: 600;
  color: #C5995A;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 14px;
}

.main-testimonial-section .right-content .testimonial-head h2 {
  font-size: 42px;
  font-weight: 600;

}

.main-testimonial-section .right-content .testimonial-box-wrapper {
  margin-top: 30px;
  margin-bottom: 20px;
}

.main-testimonial-section .right-content .testimonial-box-wrapper .testimonial-box p.message {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
}

.main-testimonial-section .right-content .testimonial-box-wrapper .testimonial-box p.name {
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  font-size: 18px;
  letter-spacing: 1px;
  font-style: italic;
}

.main-testimonial-section .right-content .testimonial-box-wrapper .testimonial-box span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
}

.main-testimonial-section .right-content .progress-bar-wrapper .box-content-wrapper {
  margin-bottom: 10px;


}

.main-testimonial-section .right-content .progress-bar-wrapper .box-content-wrapper span {
  font-size: 14px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 500;
}

.main-testimonial-section .right-content .progress-bar-wrapper .box-content-wrapper .progress-bar {
  background-color: #C5995A;
}

@media (max-width:992px) {
  .main-testimonial-section .right-content {
    margin-top: 40px;
  }
}

@media (max-width:568px) {
  .main-testimonial-section .left-content {
    padding-right: 0;
  }

  .main-testimonial-section .left-content img.main-img {
    width: 100%;
    height: auto;
  }

  .main-testimonial-section .left-content .google-review-countbox {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    width: 200px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px;
  }

  .main-testimonial-section .right-content .testimonial-head svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    opacity: .2;
  }

}


/* ----------------------------------------------------------------------------------------------- */

.innerpage-title {
  padding-top: 300px;
  position: relative;
  background: url(../img/background/innerpage-title-bg.jpg) no-repeat center center;
  background-size: cover;
  border-bottom-left-radius: 200px;
  border-bottom: 20px solid #C5995A;
  overflow: hidden;
}

.innerpage-title::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(180deg, #070707CC 0%, #0707071A 100%);

}


.innerpage-title .box-content-wrapper {
  width: 580px;
  padding: 80px 60px;
  border-top-left-radius: 40px;
  background-color: #006641;
  background-image: url(../img/background/bg_pattern.png);
  position: relative;
  overflow: hidden;
}


.innerpage-title .box-content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: radial-gradient(at top center, #006641F2 0%, #006641 100%);

}

.innerpage-title .box-content-wrapper h2.title {
  color: #fff;
  font-weight: 700;
  font-size: 42px;
  position: relative;
}

.innerpage-title .box-content-wrapper p.tagline {
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}


@media (min-width:992px) and (max-width:1200px) {
  .innerpage-title {
    padding-top: 240px;
    border-bottom-left-radius: 160px;
  }


  .innerpage-title .box-content-wrapper {
    width: 580px;
    padding: 50px 60px;
  }

}

@media (max-width:992px) {
  .innerpage-title {
    padding-top: 240px;
    border-bottom-left-radius: 160px;
  }

  .innerpage-title .box-content-wrapper {
    width: 460px;
    padding: 50px 30px;
  }

  .innerpage-title .box-content-wrapper h2.title {
    font-size: 38px;
  }

  .innerpage-title .box-content-wrapper p.tagline {
    font-size: 18px;
  }


}

@media (max-width:768px) {
  .innerpage-title {
    padding-top: 240px;
    border-bottom-left-radius: 0;
    border-radius: 0 0 40px 40px;
    padding: 240px 20px 0;
    border-width: 15px;
  }

  .innerpage-title .box-content-wrapper {
    width: 100%;
    padding: 20px 30px;
    border-radius: 10px 10px 0 0;
    text-align: center;
  }

  .innerpage-title .box-content-wrapper h2.title {
    font-size: 32px;
  }

  .innerpage-title .box-content-wrapper p.tagline {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
    margin-top: 0;
  }


}



/* ----------------------------------------------------------------------------------------- */

.innercontact-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.innercontact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  background: url(../img/background/map_img.png);

}


.innercontact-section .section-title span.tagline {
  text-transform: uppercase;
  font-weight: 600;
  color: #C5995A;
  letter-spacing: 1px;
}

.innercontact-section .section-title h2.title {
  font-size: 42px;
  font-weight: 600;
}

.innercontact-section .contact-box-wrapper {
  position: relative;
  margin-top: 50px;
}

.innercontact-section .contact-box-wrapper .contact-box {
  padding: 40px 30px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  height: 100%;
  text-align: center;
  border-radius: 10px;
}

.innercontact-section .contact-box-wrapper .contact-box.sec-box {
  background-color: #006641;

}

.innercontact-section .contact-box-wrapper .contact-box svg {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #C5995A;
}



.innercontact-section .contact-box-wrapper .contact-box p.title {
  font-size: 26px;
  font-weight: 500;
  color: #000;
}

.innercontact-section .contact-box-wrapper .contact-box.sec-box p.title {
  color: #fff;
}

.innercontact-section .contact-box-wrapper .contact-box a {
  display: block;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

.innercontact-section .contact-box-wrapper .contact-box.sec-box a {
  color: #fff;
}

.innercontact-section .map-location iframe {
  margin-top: 100px;
  width: 100%;
  height: 500px;
  filter: grayscale(100%);
  transition: all 0.4s;

}

.innercontact-section .map-location iframe:hover {
  filter: grayscale(0);
}


.innercontact-form {
  padding: 30px 0 120px;
  position: relative;

}

.innercontact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .3;
  background: url(../img/background/map_img.png);

}


.innercontact-form .left-content {
  padding: 50px 30px;
  background-color: #fff;
  height: 100%;
}

.innercontact-form .left-content h2.title {
  font-size: 38px;
  font-weight: 700;

}

.innercontact-form .left-content p.tagline {
  text-transform: uppercase;
  font-weight: 600;
  color: #C5995A;
  letter-spacing: 1px;
}

.innercontact-form .left-content .instructions li {
  margin-bottom: 10px;
  letter-spacing: 1px;

}

.innercontact-form .left-content .instructions li svg {
  color: #C5995A;
}

.innercontact-form .right-content {
  padding: 50px 30px;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 8px;
}

.innercontact-form .right-content .form-group {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.innercontact-form .right-content .form-group input,
.innercontact-form .right-content .form-group textarea {
  width: 60%;
  border: 1px solid transparent;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 6px 10px;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s;
}

.innercontact-form .right-content .form-group input[type='text'] {
  text-transform: capitalize;
}

.innercontact-form .right-content .form-group input:focus,
.innercontact-form .right-content .form-group textarea:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #006641;
}

.innercontact-form .right-content .form-group input::placeholder,
.innercontact-form .right-content .form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
}

.innercontact-form .right-content .form-group label {
  font-weight: 600;
  letter-spacing: 1px;
}

.innercontact-form .right-content .form-group .main-btn {
  border: none !important;
  outline: none;
  text-transform: uppercase;
}

@media (min-width:768px) and (max-width:992px) {
  .innercontact-section .contact-box-wrapper .contact-box.sec-box {
    background-color: #006641;
    height: 240px;
  }
}

@media (max-width:992px) {
  .innercontact-section .contact-box-wrapper .contact-box {
    height: auto;
    margin-bottom: 30px;
  }

  .innercontact-form .left-content {
    padding: 30px;
    height: auto;
  }

}

@media (max-width:568px) {
  .innercontact-section .map-location iframe {
    height: 360px;

  }

  .innercontact-form .right-content {
    padding: 10px 30px 30px;
    border-radius: 0;

  }

  .innercontact-form .right-content .form-group {
    margin-bottom: 20px;
    display: block;
  }

  .innercontact-form .right-content .form-group label {
    display: block;
  }

  .innercontact-form .right-content .form-group input,
  .innercontact-form .right-content .form-group textarea {
    width: 100%;
    border: 2px solid #000;
    padding: 6px 10px;
    color: #000;
    font-weight: 500;
    letter-spacing: 1px;

  }

}


/* ---------------------------------------------------------------------------------------------------------------- */

.innerresort-content {
  padding: 80px 0;
  position: relative;
}

.innerresort-content .left-content {
  padding-right: 40px;
}

.innerresort-content .left-content h4.title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.innerresort-content .left-content p.tagline {
  text-transform: uppercase;
  font-weight: 600;
  color: #C5995A;
  letter-spacing: 1px;
}

.innerresort-content .left-content p.txt {
  letter-spacing: 1px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.7);
}

.innerresort-content .left-content ul.feature-list li {
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 14px;
  font-size: 16px;
}

.innerresort-content .left-content ul.feature-list li strong {
  color: #000;
}

.innerresort-content .left-content h6.sub-title {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 30px 0 20px;
}

.innerresort-content .left-content .contact-detail {
  margin-bottom: 50px;
}

.innerresort-content .left-content iframe {
  width: 100%;
  height: 360px;
  border-radius: 10px;
}

.innerresort-content .left-content .amenities-section ul li {
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  text-transform: capitalize;
  padding-bottom: 10px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);


}

.innerresort-content .left-content .amenities-section ul li:last-child {
  border-bottom: none;
}

.innerresort-content .left-content .amenities-section ul li svg {
  color: #C5995A;
  margin-right: 10px;
}

.innerresort-content .right-content {
  height: 100%;
  position: relative;
}

.innerresort-content .right-content .resort-booking-form {
  position: sticky;
  top: 100px;
  padding: 30px 20px;
  background-color: #006641;
  background-image: url(../img/background/bg_pattern.png);
  border-radius: 10px;
  overflow: hidden;
  border-bottom: 8px solid #C5995A;
}


.innerresort-content .right-content .resort-booking-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-image: radial-gradient(at top center, #006641F2 0%, #006641 100%);

}

.innerresort-content .right-content .resort-booking-form p.pricewrapper {
  font-size: 44px;
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}

.innerresort-content .right-content .resort-booking-form form {
  position: relative;
}

.innerresort-content .right-content .resort-booking-form form .form-group,
.innerresort-content .right-content .resort-booking-form form .category-group {
  margin-bottom: 16px;
}

.innerresort-content .right-content .resort-booking-form form .category-group input {
  display: none;
}

.innerresort-content .right-content .resort-booking-form form .category-group label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding-left: 26px;
  margin-right: 20px;
  position: relative;
}

.innerresort-content .right-content .resort-booking-form form .category-group input:checked+label::before {
  background-color: #000;
}

.innerresort-content .right-content .resort-booking-form form .category-group label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: all 0.3s;
}

.innerresort-content .right-content .resort-booking-form form .form-group label {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.innerresort-content .right-content .resort-booking-form form .form-group input,
.innerresort-content .right-content .resort-booking-form form .form-group select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
}

.innerresort-content .right-content .resort-booking-form form .form-group input:focus,
.innerresort-content .right-content .resort-booking-form form .form-group select:focus {
  outline: none;
  box-shadow: none;
}

.innerresort-content .right-content .resort-booking-form form .form-group input::placeholder {
  color: #000;
}

.innerresort-content .right-content .resort-booking-form form .form-group input[type='date'] {
  text-transform: uppercase;
}

.innerresort-content .right-content .resort-booking-form form input[type='submit'] {
  width: 100%;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 10px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #000;
  transition: all 0.4s;
}

.innerresort-content .right-content .resort-booking-form form input[type='submit']:hover {
  background-color: #C5995A;
  border-color: #C5995A;
  color: #fff;
}

@media (min-width:992px) and (max-width:1200px) {
  .innerresort-content .left-content {
    padding-right: 10px;
  }

  .innerresort-content .right-content .resort-booking-form p.pricewrapper {
    font-size: 36px;
  }
}

@media (max-width:992px) {
  .innerresort-content .left-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
}

@media (max-width:768px) {

  .innerresort-content .right-content .resort-booking-form p.pricewrapper {
    font-size: 36px;
  }
}


/* ------------------------------------------------------------------------------------------------------------------------- */


.innergallery-section {
  padding: 80px 0;
  position: relative;
}

.innergallery-section .gallery-img-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.innergallery-section .gallery-img-wrapper span.tagline {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C5995A;
  font-weight: 600;
}

.innergallery-section .gallery-img-wrapper h4.heading {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 30px;
}

.innergallery-section .gallery-img-wrapper .img-box {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 6px;
  border-bottom: 5px solid #C5995A;
}

.innergallery-section .gallery-img-wrapper .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.innergallery-section .gallery-img-wrapper .img-box:hover img {
  transform: scale(1.2);
  filter: brightness(50%);
}

.innergallery-section .gallery-img-wrapper .img-box svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  color: #fff;
  transition: all 0.4s;
}

.innergallery-section .gallery-img-wrapper .img-box:hover svg {
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width:992px){
  .innergallery-section .gallery-img-wrapper .img-box {
    height: 360px;
  }
}
@media (max-width:568px){
  .innergallery-section .gallery-img-wrapper .img-box {
    height: 320px;
    border-radius: 0;
  }
}