* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

:root {
  --second-family: "Akkurat", sans-serif;
  --third-family: "Didot", sans-serif;
}

body {
  padding: 0px !important;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
.error{
    bottom: 0 !important;
    top: 100% !important; color: #ff0018!important; font-size: 12px;
}
.form-title-heading {
    top: 12px !important; color: #414042;
}
.form-control{color: #414042 !important}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6;
}
header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .navbar .navbar-brand {
  background: transparent;
}
header .navbar ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  margin: 0;
  padding: 0;
}
header .navbar ul li {
  display: block;
}
header .navbar ul li a {
  position: relative;
}
header .navbar ul li .btn {
  background-image: linear-gradient(to right, #D5B47F, #A07645);
  font-family: var(--third-family);
  border: 1px solid #A07645;
  font-weight: 400;
  font-size: 20px;
  border-radius: 100px;
  padding: 4px 24px;
  color: #fff;
  outline: none;
}
header .navbar ul li .btn:focus {
  outline: none;
}
header .navbar ul li .btn.down-btn {
  background: #fff;
  color: #A07645;
}
.header-inner {
  background-image: linear-gradient(to right, rgba(160, 118, 69, 0.9), rgba(213, 180, 127, 0.9));
}

.d-view {
  display: block;
}

.m-view {
  display: none;
}

@keyframes zoom-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.contact {
  background-color: #fff;
  background-image: url(../images/mark03.png);
  position: fixed;
  bottom: 0;
  z-index: 9;
  width: 100%;
  padding: 10px 0;
  background-repeat: no-repeat;
  height: 60px;
  display: none;
}
.contact ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact ul li {
  display: block;
}
.contact ul li a {
  display: flex;
  align-items: center;
  font-family: var(--font4);
  font-weight: 400;
  gap: 10px;
  font-size: 17px;
  text-decoration: none;
  color: #414042;
}
.contact ul li a span:first-child {
  display: flex;
  align-items: center;
}
.contact ul li a span:first-child svg {
  width: 44px;
  height: 44px;
}

.banner {
  overflow: hidden;
  position: relative;
}
.banner .banner-inner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}
.banner .banner-inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5490196078);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5607843137) 35%, transparent);
}
.banner .banner-inner .banner-img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.banner .banner-inner .banner-img img {
  width: 100%;
  animation: 16s linear 0s infinite normal none running zoom-out;
  transition: all 0s ease-in-out 0s;
  border-radius: 0px;
  height: calc(0px + 100vh);
  padding-bottom: 0px;
}
.banner .banner-inner h3 {
  font-family: var(--third-family);
  font-style: italic;
  font-size: 86px;
  color: #fff;
  z-index: 6;
  position: relative;
}
.banner .banner-inner h3 span {
  display: block;
}

.about {
  padding: 60px 0;
  position: relative;
  background-color: #F4E8D6;
  overflow: hidden;
  /* background-image: url(../images/mark.png); */
}
.about .justify-between {
  justify-content: space-between;
}
.about .logo_bx {
  text-align: center;
}
.about .about-wrapp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.about .about-wrapp .about-img {
  flex: 1;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.about .about-wrapp .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.about .about-wrapp .about-content h3 {
  font-family: var(--third-family);
  font-weight: bold;
  font-size: 40px;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0;
}
.about .about-wrapp .about-content p {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  margin-top: 20px;
}
.about .read-more-btn {
  display: block;
  width: 100%;
  font-family: var(--second-family);
  font-weight: 400;
  text-align: right;
  font-size: 20px;
  color: #000;
  margin: 20px auto 0;
  text-decoration: underline;
  cursor: pointer;
  border: 0;
  line-height: 22px;
  background: transparent;
  transition: background-color 0.3s ease;
}

.located {
  padding: 60px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  background-image: url(../images/mark.png);
}
.located .located-wrapp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.located .located-wrapp .place-content h3 {
  font-family: var(--third-family);
  font-weight: bold;
  font-size: 40px;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0;
}
.located .located-wrapp .place-content p {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  margin-top: 20px;
}
.located .located-wrapp .place-content h4 {
  font-family: var(--second-family);
  font-weight: bold;
  font-size: 20px;
  color: #414042;
}
.located .located-wrapp .place-content ul {
  padding: 0;
  margin: 0;
}
.located .located-wrapp .place-content ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.located .located-wrapp .place-content ul li p {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  margin: 0;
}
.located .located-wrapp .place-content ul li p span:first-child {
  margin-right: 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
}
.located .located-wrapp .map-place img {
  width: 100%;
}

.amenitie {
  padding: 60px 0;
  position: relative;
  background-color: #F4E8D6;
  overflow: hidden;
}
.amenitie .amenitie-wrapp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.amenitie .amenitie-wrapp .amenitie-content h3 {
  font-family: var(--third-family);
  font-weight: bold;
  font-size: 40px;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0;
}
.amenitie .amenitie-wrapp .amenitie-content p {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  margin-top: 20px;
}
.amenitie .amenitie-wrapp .img-ament img {
  width: 100%;
}
.amenitie ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 60px 0;
}
.amenitie ul li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.amenitie ul li .icon {
  background: #fff;
  width: 65px;
  height: 65px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenitie ul li p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  color: #414042;
  margin: 0;
}
.amenitie ul li p span {
  display: block;
}
.amenitie .amenitie-gallary .view-all, .direction-btn {
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  border: 1px solid rgb(162, 121, 72);
  border-radius: 100px;
  padding: 15px 20px;
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  width: max-content;
  color: #fff;
  display: flex;
  align-items: center;
  margin: 20px auto 0;
  justify-content: center;
}
.amenitie .amenitie-gallary ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
}
.amenitie .amenitie-gallary ul li a {
  display: flex;
  overflow: hidden;
}
.amenitie .amenitie-gallary ul li a img {
  width: 100%;
  transition: all 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.amenitie .amenitie-gallary ul li a:hover img {
  transition: all 3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(1.1);
}

.amenitie.iconic {
  background-color: #fff;
  background-image: url(../images/mark.png);

}
.amenitie.iconic ul li .icon {
  background: #F4E8D6;
}

.plan {
  padding: 60px 0 0;
  position: relative;
  background-color: #F4E8D6;
  overflow: hidden;
  /* background-image: url(../images/mark.png); */
}
.plan .plan-wrapp h3 {
  font-family: var(--third-family);
  font-weight: bold;
  font-size: 40px;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0;
}
.plan .plan-wrapp p {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  margin-top: 20px;
}
.plan .plan-wrapp .nav-tabs {
  display: flex;
  align-items: center;
  border-bottom: 3px solid #fff;
  margin-bottom: 30px;
}
.plan .plan-wrapp .nav-tabs .nav-item .nav-link {
  border: 0;
  padding: 5px 30px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  background: transparent;
  color: #bababa;
  position: relative;
}
.plan .plan-wrapp .nav-tabs .nav-item .nav-link.active {
  color: #414042;
}
.plan .plan-wrapp .nav-tabs .nav-item .nav-link.active::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: linear-gradient(270deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
}
.plan .plan-wrapp .tab-content .tab-pane .plan-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
}
.plan .plan-wrapp .tab-content .tab-pane .plan-list li {
  display: block;
}
footer {
  margin-top: 60px;
  padding: 60px 0 15px;
  background-image: linear-gradient(to right, rgba(158, 116, 67, 0.8), rgba(215, 182, 129, 0.8));
}
footer .footer-bottom {
  border-top: 2px solid #fff;
  padding-top: 15px;
  margin-top: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .footer-bottom p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  color: #fff;
}
footer .footer-bottom ul {
  display: flex;
  align-items: center;
}
footer .footer-bottom ul li {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  margin: 0;
  display: block;
  color: #fff;
  padding-left: 5px;
}
footer .footer-bottom ul li a {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  margin: 0;
  text-decoration: none;
  color: #fff;
}
footer .footer-wrapp {
  display: flex;
  justify-content: space-between;
}
footer .footer-wrapp .ft-lft ul {
  padding: 0;
}
footer .footer-wrapp .ft-lft ul li {
  display: block;
  margin-bottom: 10px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}
footer .footer-wrapp .ft-lft ul li:first-child span:first-child {
  font-size: 22px;
}
footer .footer-wrapp .ft-lft ul li span {
  display: block;
}
footer .footer-wrapp .ft-lft ul li a {
  color: #fff;
  text-decoration: none;
}
footer .ft-rgt ul {
  padding: 0;
  margin: 0;
}
footer .ft-rgt ul li {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  display: block;
  margin-bottom: 15px;
}
footer .ft-rgt ul li a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer .ft-rgt ul li a span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .ft-rgt .media-icon {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
footer .ft-rgt .media-icon li {
  margin: 0;
}
.m-auto {
  margin: 0 auto;
}

.residence-plan {
  padding: 60px 0;
  padding-top: 120px;
  position: relative;
  background-color: #F4E8D6;
  overflow: hidden;
  background-image: url(../images/mark.png);
}
.residence-plan .plan-gallary {
  display: flex;
  padding: 0;
  margin: 50px 0 0;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.residence-plan .plan-gallary li {
  display: block;
}
.residence-plan .plan-gallary li img {
  width: 100%;
}
.residence-plan .plan-gallary .w-50 {
  width: 48% !important;
}
.residence-plan .plan-gallary .w-100 {
  width: 100%;
}
.residence-plan h3 {
  font-family: var(--third-family);
  font-weight: bold;
  font-size: 40px;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0;
}
.residence-plan p {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  margin-top: 20px;
}

.planDetails {
  padding: 60px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  background-image: url(../images/mark.png);
}
.planDetails img {
  border: 4px solid #E6E7E8;
  width: 100%;
}

.plan-brochure .brochure {
  text-align: center;
}
.plan-brochure .brochure img {
  width: 100%;
}
.plan-brochure .brochure .btn {
  background-image: linear-gradient(to right, #D5B47F, #A07645);
  font-family: var(--third-family);
  border: 1px solid #A07645;
  font-weight: 400;
  font-size: 20px;
  border-radius: 100px;
  padding: 4px 24px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
  outline: none;
}

.modal .btn-close {
  position: absolute;
  right: 0;
  top: 0;
  opacity: 1;
  color: #A07645;
  outline: none;
}
.modal .btn-close:focus {
  outline: none;
  border: 0;
  box-shadow: none;
}
.modal .modal-content {
  background: #fff;
  border-radius: 0;
  border: 1px solid #A07645;
  padding: 30px;
}
.modal .modal-header {
  position: relative;
  border: 0;
  display: block;
}
.modal .modal-title {
  text-align: center;
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 24px;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.modal .btn-grp {
  text-align: center;
  margin-top: 30px;
}
.modal .btn-grp .btn {
  background-image: linear-gradient(to right, #D5B47F, #A07645);
  font-family: var(--third-family);
  border: 1px solid #A07645;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 0px;
  padding: 4px 24px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
  min-width: 275px;
}
.form-group label {
  position: absolute;
  top: 50%;
  left: 0px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Zimmer", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #414042;
  pointer-events: none;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
}
.form-group .form-control {
  display: inline-block;
  font-family: "Zimmer", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  padding: 5px 0;
  margin: 10px 0 0 0;
  background: none;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #A07645;
  box-shadow: none;
  outline: none;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

.check-grp .form-control {
  display: none;
}
.check-grp label {
  padding-left: 30px;
  position: relative;
  font-family: "Zimmer", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #414042;
}
.check-grp label::after {
  width: 18px;
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  border: 1px solid #A07645;
  height: 18px;
}
.check-grp input:checked ~ span:before {
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  content: "";
  left: 4px;
  position: absolute;
  top: 6px;
}

input:focus + label,
input.has-value + label,
textarea:focus + label,
textarea.has-value + label,
select:focus + label,
select.has-value + label {
  top: 5px;
  font-size: 14px;
}

textarea:focus + label,
textarea.has-value + label {
  top: 5px;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

.tahaku-form {
  text-align: center;
}
.tahaku-form .head-title {
  margin: 50px 0;
}
.tahaku-form .head-title h3 {
  font-weight: 400;
  font-size: 34px;
  text-transform: uppercase;
  font-family: var(--third-family);
  font-weight: bold;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}
.tahaku-form .head-title h3 span {
  display: block;
}
.tahaku-form p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 20px;
  color: #414042;
}

.list-page ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.list-page ul li {
  padding: 0 5px;
  display: block;
}

.list-page ul li a {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  text-decoration: none;
  position: relative;
}

.list-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-brochure .brochure .btn {
  margin: 30px 0;
}

.list-page ul li + li a:after {
  position: absolute;
  content: "<";
  left: 0;
  top: -4px;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
}

.list-page ul li + li a {
  padding-left: 15px;
}

.term-page {
  padding: 60px 0;
  position: relative;
  background-color: #fff;
  overflow: hidden;
  padding-top: 120px;
  background-image: url(../images/mark.png);
}
.term-page h3 {
  font-family: var(--third-family);
  font-weight: bold;
  font-size: 40px;
  background: linear-gradient(90deg, rgb(212, 178, 126) 0%, rgb(185, 148, 97) 57%, rgb(162, 121, 72) 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  margin: 0;
}
.term-page p {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  margin-top: 10px;
}
.term-page ul li {
  font-family: var(--second-family);
  font-weight: normal;
  font-size: 20px;
  color: #414042;
  line-height: 32px;
  margin-top: 10px;
}

@media (min-width: 320px) and (max-width: 900.5px) {
  .sticky-container {
    display: none;
  }
  .contact {
    display: block;
  }
  .banner .banner-inner h3 {
    font-size: 60px;
    padding: 0 10%;
  }
  .banner .banner-inner .banner-img img {
    object-fit: cover;
    object-position: center;
  }
  .about .about-wrapp {
    grid-template-columns: auto;
    gap: 30px;
  }
  .about .read-more-btn {
    display: none;
  }
  .about .additional-content {
    display: block !important;
  }
  .located .located-wrapp {
    grid-template-columns: auto;
    gap: 30px;
  }
  .d-view {
    display: none;
  }
  .m-view {
    display: block;
  }
  .amenitie .amenitie-wrapp {
    grid-template-columns: auto;
    gap: 30px;
  }
  .amenitie ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .amenitie .amenitie-gallary ul {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
  }
  .amenitie .amenitie-gallary ul li {
    width: 100%;
  }
  .amenitie .amenitie-gallary ul li a {
    width: 100%;
  }
  .plan .plan-wrapp .tab-content .tab-pane .plan-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .plan .plan-wrapp .tab-content .tab-pane .plan-list li {
    width: 100%;
  }
  .plan .plan-wrapp .tab-content .tab-pane .plan-list li img {
    width: 100%;
  }
  footer .footer-wrapp {
    display: block;
    text-align: center;
  }
  footer {
    padding-bottom: 80px;
  }
  footer .ft-rgt ul {
    display: none;
  }
  footer .ft-rgt .media-icon {
    display: flex;
    justify-content: center;
  }
  .amenitie .amenitie-wrapp .amenitie-content h3,
  .about .about-wrapp .about-content h3,
  .residence-plan h3,
  .plan .plan-wrapp h3,
  .term-page h3,
  .located .located-wrapp .place-content h3 {
    font-size: 32px;
  }
  .amenitie .amenitie-wrapp .amenitie-content p,
  .about .about-wrapp .about-content p,
  .amenitie ul li p,
  .residence-plan p,
  .term-page p,
  .term-page ul li,
  .plan .plan-wrapp p,
  .located .located-wrapp .place-content ul li p,
  .located .located-wrapp .place-content p {
    font-size: 18px;
  }
  footer .footer-bottom {
    justify-content: center;
  }
  footer .footer-bottom p {
    order: 2;
    font-size: 14px;
  }
  header .navbar ul li .btn {
    font-size: 16px;
    padding: 4px 12px;
  }
  .residence-plan .plan-gallary .w-50 {
    width: 100% !important;
  }
  .amenitie .amenitie-wrapp {
    display: flex;
    flex-wrap: wrap;
  }
  .amenitie .amenitie-wrapp .img-ament {
    order: 0;
  }
  .amenitie .amenitie-wrapp .amenitie-content {
    order: 1;
  }
  .list-page {
    display: block;
    text-align: center;
    margin-top: 30px;
  }
  .list-page ul {
    justify-content: center;
  }
  .plan-brochure .brochure .btn {
    margin-top: 10px;
  }
}
@media (min-width: 320px) and (max-width: 460.5px) {
  .navbar-brand img {
    width: 100px;
  }
  header .navbar .navbar-brand {
    margin: 0;
  }
  header .navbar ul {
    gap: 5px;
  }
  header .navbar ul li .btn {
    font-size: 14px;
    padding: 4px 6px;
  }
  .amenitie ul {
    grid-template-columns: auto;
    gap: 30px;
  }
  .banner .banner-inner h3 {
    padding: 0 5%;
  }
  .banner .banner-inner h3 span {
    display: inline;
  }
  .plan .plan-wrapp .nav-tabs .nav-item .nav-link {
    font-size: 18px;
    padding: 5px 15px;
  }
  .amenitie.iconic ul {
    grid-template-columns: auto;
  }
}
.sticky-container {
  padding: 0px;
  margin: 0px;
  position: fixed;
  right: 0;
  top: 170px;
  z-index: 1100;
}

.sticky-social-icons li {
  list-style-type: none;
  background-image: linear-gradient(90deg, #d7b681 1.76%, #9e7443 84.45%);
  height: 43px;
  padding: 8px;
  margin: 0px 0px 8px 0px;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  cursor: pointer;
  border-radius: 12px 0 0 12px;
  display: flex;
  align-items: center;
  width: max-content;
  margin-left: auto;
  margin-right: -160px;
}

.sticky-social-icons li:hover {
  margin-right: 0;
}

.sticky-social-icons li img {
  float: left;
  margin-right: 10px;
}

.sticky-social-icons li p {
  margin: 0px;
  font-weight: 400;
  font-size: 20px;
  color: #fff;
  font-family: var(--second-family);
}

.sticky-social-icons li p a {
  text-decoration: none;
  color: #fff;
}

ul.sticky-social-icons {
  margin: 0;
  padding: 0;
}

.sticky-social-icons li:last-child {
  margin-right: -361px;
}

.sticky-social-icons li:last-child:hover {
  margin-right: 0;
}
.fwmedium{font-weight: bold!important;}
/*# sourceMappingURL=style.css.map */


.error-side,
.error-banner,
.error-modal {
    display: none;
    color: red;
    font-size: 13px;
    position: absolute;
    right: 20px;
    top: 18px;
}
.direction-btn:hover{
  color: #fff;
}
.form-control:disabled{
  color: #414042  !important;
  padding-left: 5px;
}
.btn:disabled{
  pointer-events: auto !important;
  cursor: not-allowed !important;
}