@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

/***** General CSS *****/

body {
  word-break: break-word;
  font-family: "Poppins", sans-serif;
  color: #393939;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  background-color: #f9f9f9;
  position: relative;
}

a {
  text-decoration: none;
  color: #fdb056;
  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;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

/***** Font Files *****/

@font-face {
  font-family: "big_noodle";
  src: url(../fonts/big_noodle_titling.ttf);
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #fdb056;
  border-color: #fdb056;
}

h1 {
  font-family: "big_noodle";
  font-size: 124px;
  line-height: 120px;
  font-weight: 500;
}

h2 {
  font-family: "big_noodle";
  font-size: 65px;
  line-height: 70px;
  font-weight: 500;
}

h3 {
  font-family: "big_noodle";
  font-size: 30px;
  line-height: 34px;
  font-weight: 600;
}

h4 {
  font-family: "big_noodle";
  font-size: 24px;
  line-height: 29px;
  font-weight: 500;
}

h5 {
  font-family: "big_noodle";
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
}

h6 {
  font-family: "Poppins", Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
}

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 */

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: end;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

header .row {
  align-items: center;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff;
  padding: 10px 16px;
  font-size: 16px;
  font-family: "Poppins";
  font-weight: 300;
}

.user a i {
  color: #fff;
  font-size: 15px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.menuSec ul li a:after {
  content: "";
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.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: #fdb056;
}

.menuSec li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.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;
}

.droopdwon li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding-top: 30px;
}

.header-ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  right: -50px;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner css start */

.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: 100%;
  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: rgba(0, 0, 0, 0.1);
}

.carousel-inner {
  overflow: unset;
}

.carousel-item {
  display: block;
}

.banner_text h1 span {
  display: block;
}

.banner_text p {
  font-size: 13px;
  color: #fff;
  width: 83%;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 24px;
}

.ban-img-slid {
  position: relative;
  overflow: hidden;
  border-radius: 17px;
}

.ban-img-slid img {
  width: 100%;
  height: 347px;
  object-fit: cover;
  border-radius: 20px;
}

.bann-slid .slick-slide {
  margin: 0px 10px;
  opacity: 1;
}

.banner_text h6 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

section.main_slider .counter {
  position: absolute;
  bottom: -180px;
  right: 0;
  width: 560px;
  text-align: right;
}

section.main_slider .counter h2.current-Count {
  position: relative;
}

section.main_slider .counter h2.current-Count:before {
  position: absolute;
  content: "";
  height: 1px;
  right: 0px;
  background: #fff;
  top: 37px;
}

section.main_slider .counter:before {
  position: absolute;
  content: "";
  width: 89%;
  left: 0;
  top: 37px;
  background: #fff;
  height: 2px;
  opacity: 40%;
}

.banner-main-box {
  display: flex;
  align-items: center;
  position: relative;
}

.banner-slider-box {
  height: 400px;
  max-width: 600px;
  padding-top: 150px;
}

.slick-active {
  opacity: 1;
}

.bann-slid {
  left: -100px;
  width: 52vw;
}

.ban-slide-txt {
  position: absolute;
  bottom: 10px;
  left: 16px;
}

.ban-slide-txt h6 {
  color: #fff;
  font-family: "Poppins";
  margin-bottom: 0px;
}

.ban-slide-txt h4 {
  font-size: 44px;
  line-height: 50px;
  color: #fff;
  margin-bottom: 6px;
}

a.btn-1 {
  font-size: 16px;
  color: #000000;
  background-color: #fdb056;
  padding: 12px 26px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: 0.4s;
}

/*banner css end*/

/*most-pop start*/

section.most-pop {
  padding: 40px 0px;
}

section.most-pop h3 {
  font-size: 50px;
  line-height: 60px;
  color: #000000;
  font-weight: 400;
}

.most-pop-img {
  position: relative;
}

.most-pop-txt {
  position: absolute;
  bottom: 0;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 87%;
}

.pop-hed h6 {
  font-size: 20px;
  color: #fff;
  font-family: "Poppins";
  line-height: 20px;
  margin-bottom: 10px;
}

.pop-hed h4 {
  font-size: 60px;
  color: #fff;
  line-height: 64px;
}

.ankar-pop a i {
  font-size: 17px;
  color: #fff;
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*experience start*/

section.experience {
  padding: 40px 0px;
  background-color: #f0f0f0;
}

.exp-txt h3 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
  color: #000000;
}

.exp-txt p {
  font-size: 16px;
  color: #000000;
  font-weight: 400;
}

.main-list ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.main-list ul li img {
  height: 35px;
  object-fit: contain;
  width: 35px;
  background-color: #fdb056;
  padding: 6px;
  border-radius: 6px;
}

.main-list ul li h5 {
  font-size: 30px;
  color: #000;
  font-weight: 500;
  margin-bottom: 0px;
}

.main-list p {
  font-size: 16px;
  color: #000;
  line-height: 27px;
}

.main-list {
  margin-bottom: 27px;
}

.aff-txt h4 {
  font-size: 50px;
  color: #000000;
  line-height: 50px;
}

.loogos ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.exp-txt a.btn-1 {
  padding: 10px 58px;
}

/*Limited start*/

section.limted-time {
  padding: 40px 0px;
}

.lim-txt-slid ul li img {
  width: 16px;
}

.lim-txt-slid img {
  width: 80px;
  margin-bottom: 10px;
}

.lim-slid-img img {
  width: 100%;
}

.lim-txt-slid ul li i {
  color: #000;
}

.lim-txt-slid {
  padding: 20px;
  background-color: #fff;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.lim-txt-slid ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

.lim-txt-slid ul li p {
  font-size: 11px;
  color: #000000;
  margin-bottom: 0;
}

.lim-txt-slid h4 {
  font-size: 32px;
  color: #000;
}

.lim-slid .slick-slide {
  margin: 0px 10px;
}

.main-lim-txt-img {
  margin: 20px 0px;
  box-shadow: 0px 3px 10px 1px #0000004d;
  border-radius: 20px;
  position: relative;
}

.main-lim-txt-img a.btn-1 {
  display: block;
  margin: 0 auto;
  width: 76%;
  text-align: center;
  margin-top: -20px;
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
}

.limted-time-txt h3 {
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 10px;
}

.limted-time-txt h5 {
  font-size: 30px;
  color: #fdb056;
  line-height: 40px;
  margin-bottom: 20px;
}

.limted-time-txt p {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  width: 57%;
}

.lim-slid .slick-prev::before {
  position: absolute;
  left: -20px;
  content: "\f053";
  font-size: 15px;
  color: #000;
  font-family: "FontAwesome";
  font-weight: 600;
  opacity: 1;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lim-slid .slick-next::before {
  position: absolute;
  left: 0px;
  content: "\f054";
  font-size: 15px;
  color: #000;
  font-family: "FontAwesome";
  font-weight: 600;
  opacity: 1;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*limited start*/

.lat-img img {
  width: 100%;
}

.lat-sm-txt-2 h4 {
  font-size: 27px;
  color: #f9f9f9;
  margin-bottom: 6px;
  line-height: 35px;
}

.lat-sm-txt-2 h4 span {
  display: block;
}

.lat-txt h3 {
  font-size: 50px;
  line-height: 60px;
  color: #000000;
  font-weight: 400;
}

.lat-fea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.lat-fea h6 {
  font-size: 15px;
  color: #fdb056;
  margin-bottom: 10px;
}

.lat-fea p {
  font-size: 15px;
  color: #fdb056 !important;
  margin-bottom: 10px;
  width: unset !important;
}

.lat-bt-txt h4 {
  font-size: 32px;
  color: #f9f9f9;
  margin: 10px 0 16px;
}

.lat-bt-txt p {
  color: #f9f9f9;
  font-weight: 300;
}

.lat-sm-txt-2 h6 {
  font-size: 15px;
  color: #fdb056;
  line-height: 20px;
  margin-bottom: 6px;
  font-weight: 300;
  letter-spacing: 1px;
}

.lat-sm-txt-2 ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.lat-sm-txt-2 ul li p {
  font-size: 11px;
  margin-bottom: 0;
  color: #000;
}

.lat-sm-txt-2 p {
  font-size: 13px;
  color: #f9f9f9;
  line-height: 24px;
  font-weight: 300;
}

section.latest-travel {
  position: relative;
  padding: 80px 0 80px;
  background-image: url(../images/news-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/*contact start*/

section.we-loved {
  padding: 40px 0px;
  background-color: #f0f0f0;
  margin-bottom: 71px;
}

.we-loved-txt form input {
  width: 100%;
  padding: 12px 15px;
  border-radius: 100px;
  margin-bottom: 25px;
  border: unset;
  background-color: #fff;
  outline: none;
}

.we-loved-txt form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: unset;
  background-color: #fff;
  outline: none;
  height: 200px;
}

.we-loved-txt h3 {
  font-size: 50px;
  line-height: 60px;
  color: #000;
  font-weight: 400;
  margin-bottom: 10px;
}

.we-loved-txt button {
  width: 100%;
  padding: 10px 12px;
  border-radius: 100px;
  background-color: #fdb056;
  border: unset;
  outline: none;
}

.cont-img img {
  height: 580px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/*news sect*/

.news-head p {
  width: 80%;
  margin: 0 auto;
}

.blog-img {
}

.blog-detail {
}

.blog-detail .icons {
}

.blog-detail p {
}

.blog-detail h5 {
  font-size: 20px;
  color: #000;
  font-family: "Montserrat";
  text-transform: uppercase;
  line-height: 20px;
}

.icons p {
}

span.date {
  margin-left: 42px;
  color: #202020;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 600;
}

/* ==================== */
/* ==================== */
/* ==================== */

.bann-slid .slick-next {
  left: 10px;
  top: auto;
  bottom: -50px;
}

.bann-slid .slick-prev,
.bann-slid.slick-next {
  position: absolute;
  top: unset;
  bottom: -50px;
}

.bann-slid .slick-prev.slick-disabled:before,
.bann-slid .slick-next.slick-disabled:before {
  opacity: 1;
}

.bann-slid .slick-prev::before {
  position: absolute;
  left: 35px;
  content: "\f053";
  font-size: 11px;
  color: #fff;
  font-family: "FontAwesome";
  font-weight: 600;
  opacity: 1;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.bann-slid .slick-next::before {
  position: absolute;
  left: 70px;
  content: "\f054";
  font-size: 11px;
  color: #fff;
  font-family: "FontAwesome";
  font-weight: 600;
  opacity: 1;
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.bann-form {
  background-color: #fff;
  padding: 18px;
  border-radius: 10px;
  width: 100%;
  display: flex;
  align-items: center;
}

.bann-form input {
  width: 50%;
  border: unset;
  outline: unset;
  padding: 10px;
  color: #101010;
  border-right: 1px solid #cbcbcb;
}

.bann-form input::placeholder {
  color: #101010;
}

.bann-form select {
  width: 28%;
  border: unset;
  border-left: 1px solid #cbcbcb;
  border-right: 1px solid #cbcbcb;
  outline: unset;
  padding: 10px 10px;
  -webkit-appearance: auto;
  color: #101010;
  margin-right: 30px;
}

.bann-form select::placeholder {
  color: #101010;
}

.bann-form button {
  padding: 10px 30px;
  background-color: #fdb056;
  border: unset;
  color: #000;
  border-radius: 5px;
  margin: 0 0 0 auto;
  width: 25%;
}

section.find-hotels {
  padding: 40px 0px;
  background-color: #f0f0f0;
}
.find-hotel-txt h3 {
  font-size: 50px;
  line-height: 60px;
  font-weight: 400;
}

.find-hotel-txt ul {
  display: flex;
  align-items: center;
  gap: 22px;
}

.find-hotel-txt ul li img {
  width: 50px;
  height: 50px;
  background-color: #fff;
  padding: 5px;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0 0 3px #00000087;
  margin-bottom: 10px;
}

.find-hotel-txt ul li h6 {
  font-size: 15px;
  color: #000;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  background-color: unset;
  border: unset;
}

.find-hotel-txt ul li img:hover {
  background-color: #fdb056;
}

a.btn-1:hover {
  background-color: unset;
  color: #fff;
  border: 1px solid #fff;
  transition: 1s;
}

.user a i:hover {
  color: #000;
  background-color: #fdb056;
  transform: scale(1.1);
}

.ankar-pop a i:hover {
  background-color: #fdb056;
  border: unset;
}

.main-lim-txt-img a.btn-1:hover {
  border: 1px solid #000;
  color: #000;
}

.btn-shine {
  background: linear-gradient(to right, #fff 0, #fdb056, #fdb056 33%, #fff 4%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 10s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  text-decoration: none;
}

@keyframes shine {
  0%,
  100% {
    background-position: 0;
  }
  10% {
    background-position: 50px;
  }
  20% {
    background-position: 100px;
  }
  30% {
    background-position: 150px;
  }
  40% {
    background-position: 200px;
  }
  50% {
    background-position: 250px;
  }
  60% {
    background-position: 300px;
  }
  70% {
    background-position: 350px;
  }
  80% {
    background-position: 400px;
  }
  90% {
    background-position: -450px;
  }
}

.ban-img-slid:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-image: url(../images/banerSliderShape.png);
  background-size: 100% 100%;
  transform: scale(1.1);
  border-radius: 30px;
}

/* header .user {
  float: right;
} */

img.img-fluid.bannerBg-img {
  width: 100%;
  height: 880px;
  object-fit: cover;
}

.bann-slid .slick-prev:hover::before {
  background: #fdb056;
  filter: drop-shadow(0px 0px 76px #eee);
}

.bann-slid .slick-next:hover::before {
  background: #fdb056;
  filter: drop-shadow(0px 0px 76px #eee);
}

section.main_slider {
  position: relative;
  overflow: hidden;
}

.lat-txt {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

.lat-txt h2 {
  margin-bottom: 12px;
  font-size: 65px;
  line-height: 70px;
  color: #f9f9f9;
}

.lat-txt p {
  font-weight: 300;
  font-size: 19px;
  line-height: 28px;
}

.lat-sm-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.lat-sm-img img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: 0.5s;
}

.lat-sm-img img:hover {
  transform: scale(1.2);
}

/* =================================== */

/* ================ About Start ======================  */
section.home-about {
  position: relative;
  padding: 100px 0;
}

.home-abt-img {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.home-abt-img img {
  border-radius: 50px;
  height: 540px;
  width: 100%;
  transition: 0.9s;
  object-fit: cover;
  box-shadow: 0px 0px 15px 12px #484141;
}

.home-abt-img img:hover {
  transform: scale(1.1);
  filter: brightness(0.7);
}

section.home-about .abt-txt {
  padding-left: 24px;
}

section.home-about .abt-txt h2 {
  margin-bottom: 12px;
  color: #000;
}

section.home-about .abt-txt p {
  font-size: 20px;
  line-height: 44px;
  color: #666666;
}

section.home-about .abt-txt .sitebtn {
  display: inline-block;
  margin-top: 12px;
}

section.home-about .abt-txt .sitebtn a {
  display: inline-block;
}

section.home-about .abt-txt .sitebtn a:hover {
  background: #000;
  color: #fdb056;
  transform: scale(1.1);
}

/* ======================  About End ================= */
/* ======================  Gallery Start  ================= */

section.home-gal {
  position: relative;
  padding: 100px 0;
}

.heading.text-center {
  margin-bottom: 50px;
}

.heading h2 {
  color: #000;
}

.heading p {
  font-size: 19px;
}

.home-gal-sm {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.home-gal-sm a {
  display: inline-block;
  width: 100%;
  position: relative;
}

.home-gal-sm a img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  display: inline-block;
  border-radius: 30px;
  transition: 0.4s;
}

.home-gal-sm a img:hover {
  filter: brightness(0.7);
  transform: scale(1.2);
}

.home-gal-lg a img:hover {
  filter: brightness(0.7);
  transform: scale(1.2);
}

.gal-wrap-top .home-gal-sm {
  margin-bottom: 24px;
}

.home-gal-lg {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.home-gal-lg a {
  position: relative;
  width: 100%;
  display: inline-block;
}

.home-gal-lg a img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  display: inline-block;
  border-radius: 30px;
  transition: 0.4s;
}

.gal-wrap-center .home-gal-lg {
  margin-bottom: 24px;
}

.gal-wrap-bottom .home-gal-sm {
  margin-bottom: 24px;
}

/* ======================  Gallery End ================= */

/* ======================  Reviews Start ================= */

section.feedback {
  position: relative;
  background-image: url(../images/reviews-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
}

section.feedback .heading h2 {
  color: #f9f9f9;
}

section.feedback .heading p {
  color: #f9f9f9;
}

.rev-box {
  position: relative;
  background: #fff;
  text-align: center;
  padding: 32px 24px 24px;
  border-radius: 24px;
  transition: 0.5s;
}

.rev-box .rev-img img {
  width: auto;
  display: table;
  margin: 0px auto;
  margin-top: 10px;
  transition: 0.4s;
}

.rev-box .rev-img {
  margin-bottom: 24px;
}

.rev-box .descp p {
  font-size: 15px;
  line-height: 23px;
  color: #000;
  transition: 0.4s;
}

.rev-box:hover {
  background: #fdb056;
}

.rev-box:hover .descp p {
  color: #fff;
}

.rev-box:hover .rev-img img {
  filter: brightness(0) invert(1);
}

.slick-slide.slick-active.slick-current .rev-box {
  background: #fdb056;
}

.slick-slide.slick-active.slick-current .rev-box * {
  color: #fff;
}

.slick-slide.slick-active.slick-current .rev-box .rev-img img {
  filter: brightness(0) invert(1);
}

section.feedback ul.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

section.feedback .reviewsSlider {
  padding-bottom: 40px;
}

section.feedback ul.slick-dots li button:before {
  display: none;
}

section.feedback .slick-dots li {
  width: 10px;
  height: 10px;
  background: #fdb056;
  opacity: 1;
  border-radius: 45px;
  transition: 0.4s;
}

section.feedback .slick-dots li:hover {
  transform: scale(1.5);
  filter: drop-shadow(2px 1px 6px #fdb056);
}

section.feedback .slick-dots li.slick-active {
  background: #fff;
  filter: drop-shadow(2px 1px 6px #fdb056);
}

/* ======================  Reviews End ================= */

/* ------------------------------ News Start  -----------------------*/

section.blog {
  padding: 80px 0px 80px;
}

.blog-txt {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.blog-txt h2 {
  margin-bottom: 10px;
  color: #111111;
}

.blog-txt p {
  font-size: 14px;
  margin: 0 auto;
  width: 65%;
}

.blog-img {
  position: relative;
  margin: 25px 8px;
  border-radius: 5px;
  padding-bottom: 90px;
}

.blog-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: 0.5s;
  position: relative;
}

.blog-detail {
  padding: 32px 38px 24px 40px;
  background: #fff;
  position: absolute;
  box-shadow: 0 0 20px 1px #80808042;
  width: 82%;
  height: auto;
  border-radius: 20px;
  transition: transform 0.5s ease;
  right: 0;
  bottom: 0px;
}

.blog-detail h5 {
  font-family: "Montserrat";
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin: 0 0 10px;
  width: 100%;
  text-transform: capitalize;
  line-height: 22px;
}

.blog-detail p {
  line-height: 22px;
  color: #202020;
  opacity: 55%;
  font-size: 13px;
  margin: 0;
}

.blog-detail h5 {
  font-family: "Montserrat";
  font-size: 14px;
  line-height: normal;
  color: #000;
  font-weight: 500;
  margin: 0 0 20px;
  width: 100%;
  text-transform: capitalize;
}

.blog-detail h5 span {
  display: block;
}

.alignlist {
  display: flex;
  gap: 10px;
  justify-content: end;
  text-align: end;
  margin-left: 0;
}

.blog-detail .icons i {
  border: solid 1px #bdbdbd96;
  border-radius: 3px;
  color: #fdb056;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: 0.5s;
}

.blog-detail .icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #0000001c;
  justify-content: space-between;
}

x .blog-detail .icons .author img {
  width: auto;
  height: auto;
}

img.blog-image-butter-big {
  width: auto;
  position: absolute;
  top: -30px;
  right: -70px;
}

img.blog-image-butter {
  margin: 0 0 0 40px;
  width: auto;
}

.blog-txt h2 {
  color: #222222;
  font-weight: 600;
}

section.blog .heading p {
  margin: 0;
}

.blog-detail h4 {
  color: #000;
}

.blog-detail .icons .author p {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  opacity: 1;
}

.alignlist button {
  border: 0;
  background: transparent;
  padding: 0px;
}

.blog-detail .icons i:hover {
  background: #000;
  color: #fff;
  transform: scale(1.2);
}

section.blog .heading {
  margin-bottom: 24px;
}

.blog-detail .icons .author img {
  width: auto;
  height: auto;
}

/* ------------------------------ News End  ----------------------- */

/* ============================ */
/* Footer start   */
/* ============================ */

footer.footerSec {
  padding: 90px 0px 50px;
  overflow: hidden;
  color: #fff;
  z-index: 1;
  position: relative;
  background-repeat: no-repeat;
  background-image: url(../images/footer-bg-img.png);
  background-size: 100% 120%;
}

footer .footerLogo {
  padding-bottom: 40px;
}

footer .footerLogo img {
  transition: 0.9s;
}

footer .footerLogo img:hover {
  transform: translate(0px, 3px);
}

.footer-about p {
  font-size: 16px;
  line-height: 27px;
  font-weight: 300;
  text-align: center;
  margin-bottom: 18px;
}

.footer-about img {
  margin-top: 31px;
}

footer h4 {
  position: relative;
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 10px;
}

.foot-useful-link ul {
  margin: 0px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.foot-useful-link ul li a {
  font-size: 16px;
  line-height: 25px;
  color: #ffffffd1;
  transition: 0.9s;
  display: inline-block;
}

.foot-useful-link ul li a:hover {
  filter: brightness(0.7);
  transform: translate(0px, 4px);
  text-decoration: underline;
}

footer .foot-useful-link {
  padding-left: 58px;
  position: relative;
  height: 100%;
  padding-bottom: 20px;
}

footer .foot-quick-links {
  padding-left: 20px;
  height: 100%;
  position: relative;
}

.foot-quick-links ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.foot-quick-links ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  transition: 0.9s;
  line-height: 32px;
}

.foot-quick-links ul li a:hover {
  transform: translate(3px, 0px);
}

footer .news-letter {
  position: relative;
  padding-left: 20px;
}

footer .news-letter p {
  font-family: "Roboto";
  font-weight: 300;
  font-size: 16px;
  line-height: 29px;
}

footer .news-letter form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: baseline;
  margin-top: 20px;
}

footer .news-letter input {
  width: 100%;
  color: #0a0000;
  height: 54px;
  border: 0px;
  padding: 20px;
  transition: 0.9s;
  border-radius: 65px;
  padding-left: 60px;
  font-size: 18px;
  background: url(../images/newslatteremail.png) no-repeat;
  background-color: #fff;
  background-position: 10% 50%;
  font-weight: 400;
}

footer .news-letter input::placeholder {
  color: #777777;
}

footer .news-letter input:hover {
  transform: translate(7px, 0px);
}
footer .news-letter input::placeholder {
  color: #000;
}

footer .news-letter button {
  font-size: 21px;
  border: 0px;
  padding: 14px 24px;
  transition: 0.9s;
  position: relative;
  width: 100%;
  border-radius: 35px;
  background: #fdb056;
  color: #fff;
}

footer .news-letter button:hover {
  background: #fff;
  cursor: pointer;
  transform: translate(0px, -3px);
  color: #fdb056;
}

.footer-btm {
  text-align: center;
}

footer.copyright {
  padding: 20px 0px;
  position: relative;
  border-top: 1px solid #ffffff38;
  background-color: #000000;
}

footer.copyright p {
  margin: 0px;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding-top: 5px;
  text-transform: capitalize;
}

footer.copyright p a {
  position: relative;
  color: #fff;
}

footer.copyright p a:hover {
  text-decoration: underline;
  color: #fdb056;
}
/* Footer end   */

ul.social {
  display: flex;
  align-items: center;
  margin: 0px;
  gap: 10px;
  justify-self: center;
}

ul.social li a i {
  width: 45px;
  height: 45px;
  border: 2px solid transparent;
  font-size: 20px;
  line-height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: 0.9s;
  background-color: #ffffff;
  color: #000;
}

ul.social li a i:hover {
  transform: rotate(360deg);
  border: 2px solid transparent;
  background-color: #fdb056;
  color: #fff;
}

footer .foot-useful-link:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  opacity: 30%;
}

footer .foot-useful-link:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  right: 0;
  top: 0;
  background: #fff;
  opacity: 30%;
}

footer .foot-quick-links:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  right: 0;
  top: 0;
  background: #fff;
  opacity: 30%;
}

.footer-about ul.social {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-left: 30px;
}

/* ================================ Inner Page start ======================= */

section.innerBanner {
  position: relative;
  overflow: hidden;
}

img.img-fluid.innerBanner-img {
  height: 609px;
  width: 100%;
  object-fit: cover;
}

section.innerBanner .innerBaner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.inner-page-text {
  margin-top: 44px;
}

.inner-page-text h1 {
  margin: 0;
}

/* ================================ Inner Page End  ======================= */

/* Blogs page  */

section.blogs-page .blog-img {
  margin: 32px 8px;
}

/* Gallery Page  */

.gallery-page .instructor {
  margin-top: 60px;
}

.gallery-page .instructor p {
  margin: 0;
  font-size: 26px;
  line-height: 36px;
  opacity: 90%;
}

/* ======================================= Lake Side Page Start ========================== */

section.lake-side-living {
  padding: 100px 0;
  text-align: center;
}

.lake-side-living-text {
  margin-bottom: 60px;
}

.lake-side-living-text h2 {
  color: #000;
  padding-bottom: 10px;
}

.lake-side-living-text p {
  font-size: 24px;
  line-height: 40px;
  color: #666666;
  margin-bottom: 32px;
}

.lake-side-living-img {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.lake-side-living-img img {
  height: 620px;
  width: 100%;
  border-radius: 30px;
  transition: 0.8s;
}

.lake-side-living-img img:hover {
  filter: brightness(0.7);
  transform: scale(1.2);
}

/* ======================================= Lake Side Page End ========================== */

/* ======================================= News Detail Start  ========================== */

section.blog-detail-page {
  padding: 100px 0;
}

.blog-detail-text {
  position: relative;
}

.blog-detail-text h2 {
  color: #000;
}

section.blog-detail-page ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

section.blog-detail-page ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

section.blog-detail-page ul li i {
  color: #fdb056;
  font-size: 10px;
  display: inline-block;
  margin-top: 6px;
}

section.blog-detail-page ul li span {
  color: #202020;
  opacity: 55%;
  font-size: 14px;
  line-height: 24px;
}

section.blog-detail-page ul li .list-header {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

section.blog-detail-page ul li .list-header ul li span {
  position: relative;
  padding-left: 20px;
}

section.blog-detail-page ul li .list-header ul {
  margin-left: 20px;
}

section.blog-detail-page ul li .list-header ul li span:before {
  position: absolute;
  content: "";
  left: 2px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  outline: 2px solid #fdb25a;
}

.blog-detail-img {
  margin-right: 14px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.blog-detail-img img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: 0.8s;
}

.blog-detail-text p {
  color: #202020;
  opacity: 55%;
  font-size: 14px;
  line-height: 24px;
}

.blog-btm-dt {
  position: relative;
  margin-top: 24px;
}

.blog-btm-dt h5 {
  font-family: "Poppins";
  font-size: 20px;
  color: #202020;
  opacity: 55%;
  margin-bottom: 10px;
}

.blog-detail-img img:hover {
  transform: scale(1.2);
  filter: brightness(0.7);
}

/* ======================================= News Detail End ========================== */

/* ======================================= Documents End ========================== */

section.document {
  padding: 60px 0;
}

section.document h2 {
  font-size: 55px;
  line-height: 60px;
  color: #000;
  padding-bottom: 18px;
}

section.document ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

section.document .document-txt ul li a {
  display: inline-block;
  position: relative;
  color: #202020;
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  opacity: 55%;
  border-bottom: 1px solid #9b9b9b;
  transition: 0.7s;
}

section.document .document-txt {
  position: relative;
  margin: 40px 0 50px;
}

section.document .document-txt ul li a:hover {
  color: #fdb056;
  opacity: 1;
  border-bottom: 1px solid #fdb056;
  transform: translate(4px, 0px);
}

.document-txt .meting {
  align-items: center;
  gap: 3px;
  margin-bottom: 20px;
}

.document-txt .meting i {
  font-size: 10px;
  color: #fdb056;
}

section.document .document-txt.list-built ul {
  margin-left: 20px;
}

section.document .document-txt.list-built ul li {
  padding-left: 20px;
  position: relative;
}

section.document .document-txt.list-built ul li:before {
  position: absolute;
  content: "";
  left: 2px;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  outline: 2px solid #fdb25a;
}

/* ======================================= LeaderShip Start ========================== */

.leadWrap {
  width: 90%;
  margin: 0 auto;
}

section.leadership {
  padding: 100px 0 80px;
}

.lead-header {
  margin-bottom: 50px;
}

.lead-header h2 {
  color: #000;
}

.leadBox {
  position: relative;
  margin: 0px 5px;
  transition: 0.7s;
}

.leadBox .lead-img {
  position: relative;
}

.leadBox .lead-img img {
  height: 363px;
  border-radius: 18px;
  position: relative;
  transition: 0.4s;
  width: 100%;
  filter: drop-shadow(2px 4px 6px #666);
}

.leadBox .lead-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  color: #fff;
}

.leadBox .lead-txt h3 {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
}

.leadBox .lead-txt h6 {
  margin: 0;
  font-weight: 400;
}

.leadBox:hover .lead-img img {
  transform: scale(1.04);
  filter: brightness(0.9);
}

section.leadershipSec1 .lead-dt {
  margin-top: 20px;
}

section.leadershipSec1 {
  padding-bottom: 80px;
}

.lead-dt h2 {
  color: #000;
  margin-bottom: 32px;
  font-size: 75px;
  line-height: 80px;
}

.lead-dt ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 80%;
}

.lead-dt ul li {
  color: #333333;
  display: flex;
  grid-template-columns: 4fr 3fr;

  justify-content: space-between;
}

.lead-dt ul ~ p {
  margin: 40px 0 30px;
  line-height: 34px;
  font-size: 18px;
}

.lead-dt ul li span {
  font-size: 20px;
}

/* ======================================= LeaderShip Start ========================== */

/* ======================================= Event page Start ========================== */

section.event-page {
  padding: 60px 0px;
}

.event-img {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.event-img img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  border-radius: 30px;
  position: relative;
  transition: 0.3s;
}

.event-img img:hover {
  filter: brightness(0.7);
  transform: scale(1.2);
}

.event-txt {
  position: relative;
}

.event-txt ul li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.event-txt ul {
  border-bottom: 1px solid #99999985;
  padding-bottom: 14px;
  justify-content: space-between;
  width: 82%;
}

.event-txt ul li img {
  width: 22px;
}

.event-txt ul li span {
  color: #7c7c7c;
  font-size: 20px;
  line-height: 30px;
}

.event-txt ul li:first-child img {
  margin-top: -4px;
}

.event-txt h3 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: #000;
  padding-bottom: 5px;
}

.event-txt h6 {
  color: #000000;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.event-txt .sitebtn {
  display: inline-block;
  margin-top: 20px;
}

.event-txt .sitebtn a.btn-1 {
  border: 0px;
  transition: 0.2s;
  display: inline-block;
}

.event-txt .sitebtn a.btn-1:hover {
  border: 0px;
  background: #000;
  color: #fff;
  transform: scale(0.97);
}

.event-txt p {
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 3px;
  color: #666666;
}

section.event-page .event-item {
  padding: 40px 0px;
}

.event-txt ul.fullWidth {
  width: 100%;
}

/* ======================================= Event page End ========================== */

/* ======================================= Event Detail page Start ========================== */
section.event-detail-pg {
  position: relative;
  padding: 100px 0;
}

.col-left {
  position: relative;
  padding-right: 18px;
}

.event-detail-img {
  position: relative;
  margin-bottom: 40px;
}

.event-detail-img img {
  width: 100%;
  height: 480px;
  border-radius: 50px;
  position: relative;
  object-fit: cover;
  box-shadow: 0px 0px 12px 0px #44444440;
}

section.event-detail-pg .event-txt p {
  margin-bottom: 30px;
}

section.event-detail-pg .event-txt ul {
  width: 55%;
}

section.event-detail-pg h2 {
  color: #000;
  margin-bottom: 22px;
}

section.event-detail-pg .event-txt p:last-of-type {
  margin: 0;
}

.time-table {
  position: relative;
  background: #fdb056;
  padding: 30px 12px 40px 30px;
  border-radius: 30px;
  border: 1px solid #9999996e;
  margin-bottom: 50px;
}

.time-table h3 {
  font-size: 40px;
  line-height: 48px;
  color: #fff;
  font-weight: 500;
}

.time-table ul {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 20px 0px 0px;
}

.time-table ul li {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.time-table ul li span {
  font-size: 20px;
  line-height: 27px;
  color: #fff;
}

section.event-detail-pg .col-lg-3.col-md-3.col-12 {
  padding-right: 0px;
}

.link-map {
  position: relative;
  overflow: hidden;
}

.link-map a {
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 30px;
}

.link-map a img {
  transition: 0.4s;
  width: 100%;
}

.link-map a img:hover {
  filter: brightness(0.7);
  transform: scale(1.2);
}

/* ======================================= Event Detail page End ========================== */

/* ======================================= Account  page Start ========================== */

.login-txt form input {
  width: 100%;
  margin-bottom: 18px;
  outline: none;
  padding: 14px 40px 14px 20px;
  color: #000;
  border: 1px solid #ddddda;
  border-radius: 5px;
}

.login-txt form input:focus {
  box-shadow: none;
  border: 1px solid #0000002b;
}

.login-txt h2 {
  margin: 0 0 30px 0;
  font-size: 49px;
  line-height: 51px;
  color: #000;
}

.password-box {
  position: relative;
}

.password-box-input input {
  padding: 10px 40px 10px 20px;
}

.password-icon {
  position: absolute;
  top: 20%;
  right: 3%;
}

.password-icon span {
  color: #000;
  cursor: pointer;
  opacity: 30%;
}

.login-txt {
  padding: 36px 40px 32px;
  background-color: #fbfbfb;
  border: 2px solid #eaeae9;
  border-radius: 30px;
}

.login-txt ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 22px 0;
}

li.head {
  color: #000;
  font-size: 17px;
  font-weight: 600;
}

.login-txt ul li {
  display: flex;
  gap: 7px;
  font-weight: 400;
  font-size: 16px;
  color: #a7a7a7;
}

.login-txt form button {
  width: 100%;
  color: #fff;
  padding: 14px 0px;
  outline: none;
  border: none;
  margin-bottom: 10px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 66px;
  transition: 0.2s;
  background: #fdb056;
}

.head-ex {
  text-decoration: underline;
}

span.head.head-ex {
  color: #00adba;
}

section.login {
  padding: 100px 0;
}

.login-txt form button:hover {
  filter: drop-shadow(0px 15px 8px #00000045);
  transform: scale(0.97);
}

.login-txt form input::placeholder {
  color: #a7a7a7;
}

/* ======================================= Account  page End ========================== */

.blog-img:hover img {
  filter: brightness(0.7);
  transform: translate(0px, -10px);
}

/* Customizer css  */

.event-txt ul li {
  display: none;
}

.event-txt ul {
  border-bottom: 0px solid #99999985;
}

.event-txt .sitebtn {
  display: inline-block;
  margin-top: 20px;
  display: none;
}

/* Contact Form Styling */
.contact-1 {
  border-radius: 8px;
}

.contact-1 h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.contact-1 input[type="text"],
.contact-1 input[type="email"],
.contact-1 input[type="tel"],
.contact-1 textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.contact-1 input:focus,
.contact-1 textarea:focus {
  border-color: #f6a84d; /* Button ka same color */
  box-shadow: 0 0 5px rgba(246, 168, 77, 0.5);
}

.contact-1 textarea {
  height: 180px;
  resize: none;
}

/* Submit Button */
.contact-1 input[type="submit"] {
  background-color: #f6a84d;
  color: #fff;
  border: none;
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-1 input[type="submit"]:hover {
  background-color: #e2953c;
}

.contact-2 {
  padding-top: 150px;
}

header .user {
  display: none;
}

.ban-slide-txt {
  display: none;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #fdb056 !important;
  background: #fdb056 !important;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #fdb056 !important;
  background: #fdb056 !important;
}

.contact-1 input {
  width: 100%;
  padding: 10px;
}
.contact-1 textarea {
  width: 100%;
}
.contact-1 .wpcf7-submit {
  padding: 10px;
  border-radius: 20px;
  background: #fdb056;
  color: #fff;
}

.contact-2 ul li {
  margin-bottom: 20px;
}
.contact-2 ul li a {
  font-size: 20px;
}

.map iframe {
  width: 100%;
}

section.feedback {
  position: relative;
  background-image: url(../images/reviews-bg-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
  display: none;
}

.blog-detail-extra {
  margin-bottom: 60px;
}

.contact-1 input[type="submit"] {
  margin-top: 40px;
}

/* ================================= */
/* ================================= */
/* ================================= */
/* ================================= */

@media (max-width: 1399px) {
  header {
    padding-top: 16px;
  }

  h1 {
    font-size: 95px;
    line-height: 100px;
  }

  .banner-slider-box {
    padding-top: 100px;
    max-width: 540px;
  }

  .ban-img-slid img {
    height: 300px;
  }

  img.img-fluid.bannerBg-img {
    height: 780px;
  }

  .bann-slid .slick-next {
    left: 50px;
    bottom: -70px;
  }

  .bann-slid .slick-prev {
    left: 10px;
  }

  .bann-slid .slick-prev,
  .bann-slid.slick-next {
    bottom: -70px;
  }

  section.main_slider .counter {
    width: 460px;
    bottom: -110px;
  }

  .home-abt-img img {
    height: 480px;
  }

  section.home-about .abt-txt p {
    font-size: 19px;
    line-height: 38px;
  }

  .home-gal-lg a img {
    height: 450px;
  }

  .home-gal-sm a img {
    height: 300px;
  }

  footer h4 {
    margin-bottom: 20px;
  }

  footer .foot-useful-link {
    padding-left: 30px;
  }

  footer .foot-quick-links {
    padding-left: 0px;
  }

  footer .news-letter {
    padding: 0;
  }

  footer.footerSec {
    padding: 80px 0px 20px;
  }

  /* Lake side  */

  section.lake-side-living {
    padding-top: 0px;
  }

  section.lake-side-living > .container > .row > .col-12 p:first-of-type {
    display: none;
  }

  /* ===== */

  /* Lake side  */

  .lead-dt ul {
    width: auto;
  }

  .leadBox .lead-txt h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .leadBox .lead-txt h6 {
    font-size: 15px;
    line-height: 20px;
  }

  .leadBox .lead-img img {
    height: 310px;
  }

  .blog-img img {
    height: 360px;
  }

  .blog-detail {
    padding: 20px 20px 14px 20px;
  }
}

@media (max-width: 1280px) {
  .header-ul {
    right: 0;
  }

  .menuSec ul li a {
    padding: 10px 11px;
    font-size: 15px;
  }

  .banner-slider-box {
    padding-top: 60px;
    max-width: 520px;
  }

  img.img-fluid.bannerBg-img {
    height: 650px;
  }

  .lat-sm-img img {
    height: 180px;
  }

  .ban-img-slid img {
    height: 260px;
  }

  section.main_slider .counter {
    width: 420px;
    bottom: -32px;
  }

  /* Lake side  */

  .lake-side-living-img img {
    height: 520px;
  }

  /* Lake side  */
}

@media (max-width: 1024px) {
  .menuSec ul li a {
    font-size: 14px;
    padding: 6px 7px;
  }

  header {
    padding-top: 5px;
  }

  h1 {
    font-size: 70px;
    line-height: 70px;
  }

  .banner_text h6 {
    font-size: 15px;
    line-height: 20px;
  }

  a.btn-1 {
    font-size: 13px;
    padding: 10px 20px;
  }

  .banner_text p {
    width: 90%;
  }

  .banner-slider-box {
    padding-top: 130px;
    max-width: 460px;
    height: 350px;
  }

  .ban-img-slid img {
    height: 180px;
  }

  .bann-slid {
    left: -20px;
    width: 100%;
  }

  .bann-slid .slick-prev::before {
    width: 40px;
    height: 40px;
  }

  .bann-slid .slick-next::before {
    width: 40px;
    height: 40px;
  }

  h2 {
    font-size: 45px;
    line-height: 50px;
  }

  .bann-slid .slick-prev,
  .bann-slid.slick-next {
    bottom: -52px;
  }

  .bann-slid .slick-next {
    left: 35px;
    bottom: -53px;
  }

  section.main_slider .counter {
    width: 329px;
  }

  .lat-sm-img img {
    height: 160px;
  }

  .lat-sm-txt-2 p {
    line-height: 20px;
  }

  .lat-sm-txt-2 h4 {
    font-size: 19px;
    line-height: 24px;
  }

  .lat-sm-txt-2 h6 {
    font-size: 11px;
    line-height: 20px;
  }

  .home-gal-lg a img {
    height: 380px;
  }

  .home-gal-sm a img {
    height: 260px;
  }

  footer .footerLogo img {
    width: 70%;
    margin: 30px auto 0;
    display: table;
  }

  ul.social li a i {
    width: 40px;
    height: 40px;
  }

  .foot-quick-links ul li a {
    gap: 10px;
    font-size: 12px;
    line-height: 17px;
  }

  .foot-useful-link ul li a {
    font-size: 13px;
    line-height: 15px;
  }

  footer h4 {
    font-size: 20px;
    line-height: 30px;
  }

  footer .news-letter input {
    font-size: 13px;
    padding: 12px;
    padding-left: 50px;
    height: 48px;
  }

  footer .news-letter button {
    font-size: 16px;
    line-height: 20px;
  }

  footer.copyright p {
    padding: 0px;
    font-size: 12px;
  }

  /* Lake side  */

  .lake-side-living-img img {
    height: 460px;
  }

  img.img-fluid.innerBanner-img {
    height: 400px;
  }

  section.home-about {
    padding: 80px 0;
  }

  section.home-about .abt-txt p {
    font-size: 16px;
    line-height: 28px;
  }

  .lake-side-living-text p {
    font-size: 18px;
    line-height: 30px;
  }

  /* Lake side  */

  .event-img img {
    height: 300px;
  }

  .lead-header {
    margin-bottom: 20px;
  }

  section.leadership {
    padding: 60px 0 60px;
  }

  .leadBox .lead-txt {
    padding: 12px 10px;
  }

  .leadBox .lead-img img {
    height: 270px;
  }

  section.leadershipSec1 .lead-dt {
    margin-top: 10px;
  }

  .lead-dt h2 {
    font-size: 40px;
    line-height: 45px;
  }

  .lead-dt ul {
    gap: 12px;
  }

  .lead-dt ul li span {
    font-size: 16px;
    line-height: 20px;
  }

  .lead-dt ul ~ p {
    margin: 30px 0 20px;
    line-height: 27px;
    font-size: 16px;
  }

  section.leadershipSec1 {
    padding-bottom: 60px;
  }

  .blog-detail {
    width: 92%;
  }

  .blog-detail-img img {
    height: auto;
  }
}

@media (max-width: 820px) {
  .menuSec ul li a {
    font-size: 11px;
    padding: 4px 3px;
  }

  h1 {
    font-size: 64px;
    line-height: 64px;
  }

  .banner_text h6 {
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 5px;
  }

  .banner_text p {
    line-height: 20px;
  }

  .banner-slider-box {
    padding-top: 90px;
    max-width: 340px;
    height: 350px;
  }

  img.img-fluid.bannerBg-img {
    height: 520px;
  }

  section.home-about {
    padding: 60px 0;
  }

  section.home-about .abt-txt {
    padding: 0px;
  }

  h2 {
    font-size: 35px;
    line-height: 40px;
  }

  section.home-about .abt-txt p {
    font-size: 17px;
    line-height: 28px;
  }

  .home-abt-img img {
    height: 360px;
  }

  section.latest-travel {
    padding: 60px 0;
  }

  .lat-txt h2 {
    font-size: 45px;
    line-height: 50px;
  }

  .lat-txt p {
    font-size: 15px;
    line-height: 24px;
  }

  p {
    font-size: 13px;
    line-height: 22px;
  }

  .lat-sm-txt-2 p {
    font-size: 11px;
    line-height: 14px;
    margin: 0px;
  }

  .lat-sm-txt-2 h6 {
    letter-spacing: 0px;
    font-size: 9px;
    line-height: 12px;
    margin-bottom: 4px;
  }

  .lat-sm-img img {
    height: 120px;
  }

  section.home-gal {
    padding: 60px 0;
  }

  .heading p {
    font-size: 14px;
  }

  .home-gal-lg a img {
    height: 290px;
  }

  .home-gal-sm a img {
    height: 210px;
  }

  footer .footerLogo img {
    margin: 0px;
  }

  footer .foot-useful-link:before {
    display: none;
  }

  footer .foot-useful-link {
    padding: 0px;
    margin-bottom: 40px;
  }

  footer h4 {
    font-size: 26px;
    padding: 0;
  }

  .foot-useful-link ul li a {
    font-size: 16px;
    line-height: 22px;
    margin: 4px 0px;
  }

  footer .foot-useful-link:after {
    display: none;
  }

  .foot-quick-links ul li a {
    font-size: 15px;
    line-height: 26px;
  }

  footer .foot-quick-links:before {
    display: none;
  }

  section.main_slider .counter:before {
    top: 27px;
  }

  section.main_slider .counter {
    width: 208px;
  }

  .ban-img-slid img {
    height: 220px;
  }

  /* lake side  */

  .lake-side-living-img img {
    height: 370px;
  }

  /* lake side  */
  .leadBox .lead-img img {
    height: 380px;
  }

  .leadBox .lead-img {
    margin-bottom: 32px;
  }

  .leadBox .lead-txt {
    padding: 30px;
  }

  section.leadership {
    padding-bottom: 20px;
  }

  section.document .document-txt {
    margin: 20px 0 30px;
  }

  section.document {
    padding: 40px 0 50px;
  }

  section.document h2 {
    font-size: 35px;
    line-height: 40px;
  }

  section.document ul {
    gap: 12px;
  }

  section.document .document-txt ul li a {
    line-height: 24px;
    font-size: 15px;
  }
  .contact-1 input[type="text"],
  .contact-1 input[type="email"],
  .contact-1 input[type="tel"],
  .contact-1 textarea {
    margin: 0;
  }

  .contact-2 ul li a {
    font-size: 14px;
  }
  footer .news-letter input {
  padding-left: 70px;
}
}

@media (max-width: 480px) {
  header {
    padding: 18px 24px;
    z-index: 12;
    position: relative;
  }

  section.main_slider {
    margin-top: -56px;
  }

  .bann-slid {
    position: unset;
    margin-top: 20px;
  }

  .banner-slider-box {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding-top: 20px;
  }

  .banner-main-box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .banner_text p {
    width: auto;
    line-height: 24px;
  }

  img.img-fluid.bannerBg-img {
    height: 950px;
    object-fit: cover;
  }

  h1 {
    font-size: 50px;
    line-height: 54px;
  }

  section.main_slider .counter {
    width: 233px;
    bottom: -76px;
    right: 20px;
  }

  .ban-img-slid img {
    height: 350px;
  }

  .ban-img-slid {
    width: 70%;
    margin: 0px auto;
  }

  header .menuSec a img {
    width: 50%;
    margin: 0px auto;
    display: table;
  }

  header .menuSec a {
    width: 100%;
  }

  .home-abt-img img {
    height: auto;
  }

  section.home-about .abt-txt {
    text-align: center;
    padding-top: 24px;
  }

  .lat-sm-img img {
    width: 230px;
    height: 210px;
  }

  .lat-sm-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
  }

  .lat-sm-txt-2 {
    text-align: center;
  }

  .lat-sm-txt-2 h6 {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 10px;
  }

  .lat-sm-txt-2 h4 {
    font-size: 26px;
    line-height: 35px;
  }

  .lat-sm-txt-2 p {
    font-size: 13px;
    line-height: 25px;
  }

  .home-gal-sm a img {
    height: auto;
  }

  .home-gal-lg a img {
    height: auto;
  }

  .home-gal-sm {
    margin-bottom: 24px;
  }

  .home-gal-lg {
    margin-top: 24px;
  }

  footer.footerSec {
    background-size: cover;
  }

  footer .footerLogo img {
    width: 40%;
  }

  .footer-about ul.social {
    margin-left: 10px;
  }

  footer .footerLogo {
    padding-bottom: 20px;
  }

  footer .footer-about {
    margin-bottom: 40px;
  }

  footer .foot-quick-links {
    margin-bottom: 40px;
  }

  footer .news-letter input {
    padding-left: 80px;
  }

  .lat-bt-txt {
    text-align: center;
  }

  .lat-bt-txt .lat-fea {
    justify-content: center;
  }

  /* lake side  */

  .lake-side-living-img img {
    height: 300px;
    object-fit: cover;
  }

  img.img-fluid.innerBanner-img {
    height: 250px;
  }

  .inner-page-text {
    margin-top: 30px;
  }

  .inner-page-text h1 {
    font-size: 40px;
    line-height: 50px;
  }

  .lake-side-living-text p {
    font-size: 16px;
    line-height: 26px;
  }

  section.lake-side-living {
    padding-bottom: 60px;
  }

  /* lake side  */
  .event-img img {
    height: 300px;
  }

  section.event-page {
    padding: 30px 0 30px;
  }

  .event-txt ul.fullWidth {
    display: none !important;
  }

  section.event-page .event-item {
    text-align: center;
    padding: 20px 0px;
  }

  .event-img img {
    object-fit: cover;
    height: 280px;
  }

  .event-img {
    margin: 20px 0px;
  }

  .event-txt h3 {
    font-size: 30px;
    line-height: 40px;
    padding-bottom: 0;
  }

  .event-txt p {
    font-size: 16px;
    line-height: 28px;
  }

  .leadBox .lead-img img {
    height: 430px;
  }

  .lead-dt ul li span {
    font-size: 12px;
    line-height: 20px;
  }

  .lead-dt ul ~ p br {
    display: none;
  }

  .lead-dt ul ~ p {
    font-size: 13px;
    line-height: 27px;
  }

  .lead-dt h2 {
    font-size: 28px;
    line-height: 33px;
  }

  .lead-dt ul li br {
    display: none;
  }

  .lead-dt ul li span br {
    display: none;
  }
  .gallery-page .instructor p {
    font-size: 18px;
    line-height: 30px;
  }

  section.blog {
    padding: 50px 0px 60px;
  }

  section.document h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .contact-2 {
    padding-top: 0px;
  }

  section.innerBanner {
    margin-top: -56px;
  }
  .lead-dt ul li {
    grid-template-columns: 2fr 3fr;
    display: grid;
}
}

@media (max-width: 414px) {
  section.main_slider .counter {
    width: 183px;
  }

  .ban-img-slid {
    width: 80%;
  }
}

/* =========================================== */
