@font-face {
  font-family: junge;
  src: url(../../fonts/Junge/Junge-Regular.ttf);
}

@font-face {
  font-family: avenir;
  src: url("../../fonts/avenir/AvenirLTStd-Light.otf");
}

:root {
  --primary-color: #1e4d7d;
  --white: #fff;
  --gray: #666;
  --black: #333;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: avenir;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 1rem;
  background-color: #a7bee0;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  border-radius: 50px;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white);
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

section {
  padding: 50px;
}

.overview {
  background: url(../images/background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  /* padding: unset; */
  background-attachment: fixed;
}

.sec_heading {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  /* color: var(--primary-color); */
  text-align: center;
  margin-bottom: 2rem;
  background-image: linear-gradient(252deg, #e7bb3a, #cf9346, #fbe5a7);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: junge !important;
  position: relative;
}

/* .sec_heading::after {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  display: block;
  height: 2px;
  background-color: var(--primary-color);
  margin: 0 auto;
} */

.sub_heading {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 500;
  padding: 1rem 0 2rem;
  background-image: linear-gradient(252deg, #e7bb3a, #cf9346, #fbe5a7);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: junge !important;
}

.para {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 2.5rem;
  /* width: 80%; */
  margin: 0 auto 5rem;
  font-style: normal;
}

.sub_header {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin: 2rem 0;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
}

/* header */
header {
  width: 100%;
  padding: 0.85rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #1e4d7d;
  box-shadow: 0 0.5rem 1rem rgba(0 0 0/20%);
  height: 75px;
}

.nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.nav_items {
  display: flex;
  gap: 3rem;
  padding: 0;
  margin: 0;
}

.nav_items li a {
  font-size: 2.2rem;
  font-weight: 500;
  text-transform: capitalize;
  /* color: #333; */
  background-image: linear-gradient(252deg, #e7bb3a, #cf9346, #fbe5a7);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  transition: 0.3s;
}

.nav_items li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #333;
  display: block;
  bottom: -0.2rem;
  left: 0;
  margin: 0 auto;
  transition: ease all 0.3s;
}

.nav_items li a:hover::after {
  width: 100%;
}

.left_logo {
  width: 150px;
  height: auto;
  object-fit: cover;
}

.right_logo {
  width: 200px;
  height: auto;
  object-fit: cover;
}

/* banner */
#carouselExampleControls {
  margin-top: 7rem;
}

.bann_icon i {
  font-size: 2.1rem;
  color: #666;
  margin-right: 1rem;
}

.bann_content {
  font-size: 1.35rem;
  color: #666;
}

.banner {
  padding: 2% 0;
}

/* overview */

.overview_img {
  width: 100%;
  /* object-fit: cover; */
  height: 400px;
}

.form_content input, .form_content select {
  width: 90%;
  outline: none;
  border: none;
  border: 1px solid #ccc;
  /*margin: 1rem auto;*/
  font-size: 1.5rem;
}

.form_content input.valid {
  /* margin-bottom: 3rem !important; */
}

.error-print-auto {
  color: red;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1.25rem;
}

.form_content input:active,
.form_content input:focus {
  box-shadow: unset;
}

.form_btn {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 1.5rem;
  outline: none;
  border: none;
  padding: 0.8rem 3rem;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  margin: 1rem 0;
}

.condition {
  font-size: 1.1rem;
  padding: 0 2.5rem 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  color: var(--primary-color);
}

/* highlights */
.highlights {
  background-color: #ddd;
}

.para_list {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gray);
  padding: 2rem 0;
}

/* configuration */
.configuration {
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
    url(../images/configuration.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.configuration .sec_heading {
  color: var(--white);
}

.configuration .sec_heading:after {
  background-color: var(--white);
}

.table_cust {
  margin: 3rem 0 !important;
}

.table_cust thead tr {
  background-color: var(--primary-color) !important;
  text-align: center;
  color: var(--white);
  font-size: 1.8rem;
}

.table_cust thead tr th {
  padding: 2rem;
}

.table_cust tbody tr {
  background-color: var(--white);
  text-align: center;
  font-size: 1.6rem;
}

.table_cust tbody tr td {
  padding: 1.5rem;
  
    text-align: center;
    /* font-size: 1.25rem; */
    color: #1E4D7D;
    /* font-weight: 400; */
    font-style: normal;
    line-height: normal;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 2rem 0;
    color: #1E4D7D;
}

/* amenities */
.ame_contain {
  display: flex;
  gap: 5rem 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6rem;
}

.ame_grp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.ame_icon {
  text-align: center;
  transition: ease all 0.5s;
}

.ame_icon:hover {
  transform: translateY(-10px);
  transition: ease all 0.5s;
}

.ame_icon .icons-wrap {
  height: 90px;
  width: 90px;
  margin: 0px auto;
  padding: 0.5rem;
  border: 2px solid transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: ease all 0.5s;
}

.ame_grp:hover .icons-wrap {
  border-radius: 0;
  border-color: #222;
  transition: ease all 0.5s;
}

.ame_grp:hover {
  transform: translateY(-5px);
  cursor: pointer;
}

.ame_icon img {
  display: block;
  width: 80px;
  height: 100%;
}

.ame_head {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 2rem 0;
  color: #1e4d7d;
}

.nav_link {
  color: var(--primary-color) !important;
  background-color: var(--white) !important;
  font-size: 1.55rem;
  font-weight: 500;
  border: 1px solid #fff !important;
  border-radius: unset !important;
  padding: 1rem 2rem !important;
  text-transform: uppercase;
  border-right: 1px solid var(--primary-color) !important;
  transition: 0.4s;
}

.nav_link.active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.tab_content {
  margin: 4rem 0;
}

/* amenities */
.amenities {
  /* background-color: #f1f1f1; */
}

/* location */

.location_adv {
  background-color: #fff;
}

.form_group {
  display: flex !important;
  flex-direction: column !important;
}

/* view */
.view {
  background-color: #ddd;
}

.timeline {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0px;
}

.li {
  transition: all 200ms ease-in;
}

.timestamp {
  margin-bottom: 0px;
  padding: 0px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
}

.li.complete .status {
  border-top: 2px solid #222;
}

.icon-img {
  display: block;
  width: 35px;
  margin: 0px auto;
  padding-top: 10px;
}

.status {
  padding: 0px 10px;
  justify-content: center;
  border-top: 2px solid #d6dce0;
  position: relative;
  transition: all 200ms ease-in;
}

.li.complete .status h4 {
  color: #222;
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 1px;
}

.status h4 {
  font-weight: 600;
}

.li.complete .status:before {
  background-color: #222;
  border: none;
  transition: all 200ms ease-in;
}

.status:before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: white;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: absolute;
  top: -15px;
  left: 46%;
  transition: all 200ms ease-in;
}

.locationBox1 .location-icon {
  color: #fff;
  font-size: 50px;
  width: 60px;
  height: 60px;
  line-height: 120px;
  margin: 0 auto 40px;
  display: block;
  position: relative;
}

.locationBox1 .location-icon:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 55px 50px 0px 50px;
  border-right: none;
  border-top: none;
  transform: rotate(45deg);
  background: #fff;
  position: absolute;
  box-shadow: 3px 3px 10px #222222;
  top: 0;
  left: 0;
  z-index: -3;
  transition: all 0.5s ease 0s;
}

.location-icon span {
  color: #1a430f;
  font-size: 36px;
  width: 36px;
  height: 36px;
  line-height: 52px;
  position: relative;
  z-index: 1;
  top: -33px;
}

.location_ad_img {
  width: 100%;
}

.acc_item {
  margin: 1rem;
}

.acc_btn {
  display: block;
  position: relative;
  padding: 1rem;
  color: var(--white) !important;
  font-size: 1.5rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center !important;
  background-color: var(--primary-color) !important;
}

.acc_btn::after {
  content: "-";
  position: absolute;
  top: 55%;
  background: unset !important;
  left: 20px;
  font-size: 2.2rem;
}

.acc_btn.collapsed::after {
  content: "+";
  background: unset;
  top: 10%;
}

.panel_body {
  padding: 2rem;
  font-size: 1.55rem;
  color: #fff !important;
  font-weight: 500;
  padding-bottom: 1rem;
}

#about .about_para {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  font-weight: 500;
  line-height: 1.9;
  padding: 1rem 0 2rem;
}

.about .about_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-right: 1px dashed var(--primary-color);
  margin-top: 2rem;
}

.about .about_box.border_none {
  border: none;
}

.icon_box {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon_box i {
  font-size: 1.8rem;
  color: var(--white);
}

.abt_desc {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-top: 1rem;
  text-align: center;
}

#contact {
  background-image: url(../images/6.webp);
  background-size: cover;
  background-position: center;
  width: 50%;
    margin: auto;
}
#contact_mobile{
   background-image: url(../images/6.webp);
  background-size: cover;
  background-position: center;
  /* width: 50%; */
    margin: auto;
}

.contact-back {
  /* display: flex; */
  padding: 40px 80px;
  width: 100%;
  height: 100%;
  background-color: #1e4d7dbf;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form_title {
  color: var(--white);
  font-size: 3rem;
  text-align: center;
  margin-bottom: 2rem;
}

.form_cond {
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.grp_addon {
  width: 40px;
  height: 40px;
  background-color: #1e4d7d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.grp_addon i {
  font-size: 1.5rem;
  color: #fff;
}

.input_grp input,
.input_grp select {
  /*height: 40px;*/
  font-size: 1.4rem;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.site_add_loc {
  font-size: 2.2rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}

.rera_div .rera_no {
  font-weight: 600;
  color: #fff;
  font-size: 1.4rem;
}

.rera_details {
  margin-bottom: 3rem;
}

.disc {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.8px;
  width: 70%;
  line-height: 1.8;
  margin: 0 auto;
}

.footer_logo {
  /* margin-bottom: 3rem; */
}

.copy_text {
  color: #fff;
  font-size: 1.5rem;
}

.gallery_tab .nav_item .nav_link.border_none {
  border: none !important;
}

.fa {
  font-size: 3.5rem;
  color: #fff;
}

.high_right {
  position: absolute;
  top: 37%;
  right: -6rem;
}

.gallery_tab .nav_item .nav_link.border_none {
  border: none !important;
}

.high_left {
  position: absolute;
  top: 37%;
  left: -6rem;
}

.owl-theme .owl-nav {
  margin-top: 0;
}

.owl-carousel .owl-nav.disabled {
  display: block !important;
}

.owl-theme .owl-nav .owl-prev,
.owl-theme .owl-nav .owl-next {
  background: unset !important;
}

.menu_icon {
  display: none;
}

.btn_interest {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  outline: none;
  border: 2px solid var(--white);
  background-color: #1e4d7d;
  border-radius: 5px;
  color: var(--white);
  z-index: 999;
  font-size: 1.6rem;
  text-transform: capitalize;
  padding: 1rem 2rem !important;
}

.btn_brochure {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  outline: none;
  border: 2px solid var(--white);
  background-color: #1e4d7d;
  border-radius: 5px;
  color: var(--white);
  z-index: 999;
  font-size: 1.6rem;
  text-transform: capitalize;
  padding: 1rem 2rem !important;
}

/* modal */
.modal_head {
  background-color: var(--primary-color);
  color: var(--white);
}

.modal_title {
  font-size: 1.4rem;
  padding: 0.8rem 0.2rem;
}

.btn_close {
  background-color: #fff;
  margin-right: 1rem !important;
}

.model_body {
  background-color: #ddd;
  padding: 2rem 2rem;
}

.modal_cond {
  font-size: 1.35rem;
  color: #333;
  margin: 0 0 2rem;
}

.for_mobile_device {
  display: none;
}

.owl-stage-outer {
  padding-bottom: 2rem !important;
}

section.connectivity {
  padding: 0% 0 3%;
  overflow: hidden;
}

#more {
  display: none;
}

#readmore {
  display: none;
}

#myBtndisc,
#myBtn {
  font-size: 1.7rem;
  font-weight: 600;
  text-decoration: underline;
  background-image: linear-gradient(252deg, #e7bb3a, #cf9346, #fbe5a7);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: linear-gradient(252deg, #e7bb3a, #cf9346, #fbe5a7);
}

.error {
  color: red;
  font-size: 1.1rem;
  margin-left: 3rem;
  font-weight: 500;
}

.mobile_view {
  width: 80%;
  margin: auto;
  padding: 5rem;
  margin-bottom: 2rem;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: var(--white);
}

/* .ame_left{
  margin-top: 0;
} */

.message {
  color: #666;
  font-size: 1.5em;
}



@media only screen and (max-width: 1024px) {
  header {
    padding: 0 2%;
  }

  .left_logo {
    width: 100px;
  }

  .right_logo {
    width: 88px;
  }

  .nav_items li a {
    font-size: 1.4rem;
  }

  .nav_items {
    gap: 2rem;
  }
}

@media only screen and (max-device-width: 812px) and (orientation: landscape) {

  .phone,
  .message {
    display: block;
  }
}

@media screen and (max-width: 900px) {
  html {
    font-size: 55%;
  }

  .menu_icon {
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    margin-left: 1rem;
  }

  .menu_icon .bar {
    width: 100%;
    height: 3px;
    background-color: #ba804ef0;
    border-radius: 5px;
  }

  .nav_items {
    position: fixed;
    top: 8%;
    border-top: 1px solid #ddd;
    left: 0;
    background-color: #1e4d7d;
    padding: 4rem 1rem;
    flex-direction: column;
    width: 100%;
    align-items: center;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: 0.5s;
    box-shadow: 0 -1px 0 inset #333;
  }

  .nav_items.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .nav_items li a {
    font-size: 2.2rem;
    margin: 1rem 0;
  }

  .timeline {
    list-style-type: none;
    display: block;
    padding: 0 3rem;
  }

  .li {
    transition: all 200ms ease-in;
    display: flex;
    width: inherit;
  }

  .timestamp {
    width: 100px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 100;
    margin: 0 auto;
  }

  .li.complete .status {
    border-top: 2px solid var(--primary-color);
    width: 55%;
  }

  .locationBox1 {
    margin: -5px 15px -16px 0px;
    margin-top: 19px;
  }

  .li.complete .status:before {
    background-color: #222;
    border: none;
    transition: all 200ms ease-in;
    display: none;
  }
}

@media screen and (max-width: 767px) {

  #carouselExampleControls {
    margin-top: 60px;
  }

  section {
    padding: 3rem 2%;
  }

  .banner {
    padding: 4% 3%;
  }

  .nav_items {
    position: fixed;
    top: 6%;
  }

  .left_logo {
    width: 113px;
  }

  .right_logo {
    width: 161px;
  }

  .nav_link {
    padding: 0.7rem 2rem !important;
    margin-bottom: 2rem;
  }

  .overview_img {
    height: 400px;
  }

  .form_content {
    height: 300px;
  }

  .high_img {
    object-fit: cover;
    height: auto !important;
  }

  .btn_brochure {
    right: -8.5rem;
    bottom: 25rem;
    transform: rotate(270deg);
  }

  .btn_interest {
    display: none;
  }

  .btn_brochure {
    display: none;
  }

  .for_mobile_device {
    display: block;
    background-color: var(--primary-color);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
  }

  .for_mobile_device a {
    color: #fff;
    font-size: 1.8rem;
    justify-content: center;
  }

  .for_mobile_device .line {
    color: #fff;
    font-size: 3rem;
  }

  .icon {
    color: var(--white);
    font-size: 1.9rem;
  }

  .high_right {
    position: absolute;
    top: 39%;
    right: 0;
  }

  .high_left {
    position: absolute;
    top: 39%;
    left: 0;
  }

  .contact-back {
    padding: 40px 50px;
  }

  .about .about_box {
    border: unset;
  }

  .sec_heading {
    font-size: 3rem !important;
    /* margin-top: 2rem !important; */
    line-height: 32px;
  }

  .site_add_loc {
    font-size: 2rem !important;
  }
}

@media screen and (max-width: 500px) {
  html {
    font-size: 50%;
  }

  .para_list {
    font-size: 1.5rem;
  }
}

.inter_impr {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
  padding: .5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.inter_desc {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rera_img {
  width: 84px;
  height: auto;
}

/*---- 2x connectivity---- */
.ame-slider {
  position: relative;
  margin-top: 6rem;
}

.testimoniall {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin: 0px;
  gap: 10px;
  width: 100%;
}

.img1,
.content1 {
  width: 50%;
}

.content1 h3 {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  line-height: 32px;
}

.content1 p {
  font-size: 12px;
  color: #000000;
  line-height: 27px;
}

@media screen and (max-width: 767px) {
  .testimoniall {
    flex-direction: column;
    margin: 0px;
  }

  .img1,
  .content1 {
    width: 100%;
  }

  .content1 {
    padding: 0 15px;
  }

  .overlay-sec .overlay {
    padding: 70px 0px;
    background: #000000b8;
    height: 100%;
  }

  .box_img img {
    height: auto;
  }

  .view-title {
    padding: 15px 25px;
  }

  .view-title1 {
    top: 27%;
    right: 7%;
    padding: 15px 25px;
  }

  .view-title h2,
  .view-title1 h2 {
    font-size: 15px;
  }
}



.banner-title-container {
  text-align: center;
  background: #ececec;
  padding: 5px;
  margin-top: 0px;
}

.ban-title {
  margin-bottom: 0px;
  font-weight: bold;
  font-size: 12px;
}

.img_box {
  overflow: hidden;
  transition: all 0.5s;
  border: 1px solid #fff;
  position: relative;
}

.img_box img {
  transition: all 0.5s;
  position: relative;
}


.img_box:hover img {
  transform: scale(1.19);
}


.ami-overlay {
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.7);
  position: absolute;
  top: 0;
  transform: translate(-101%, 0);
  transition: all 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img_box:hover .ami-overlay {
  transform: translate(0%, 0);
  transition: all 0.5s;
  cursor: url(../images/hovericon.png), auto !important;
}

#location {
  background: url(../images/eleviation.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: unset;
  background-attachment: fixed;

}

#location .overlay-location {
  background-color: #0000008a;
  padding: 4% 0 5%;
}

#location .sec_heading:after {
  background-color: var(--white);
}

#location .phone-location {
  text-align: center;
  font-size: 20px;
  color: #fff !important;
}

#location .phone-location a {
  color: #fff;
}

#location .phone-location i {
  color: #fff;
  font-size: 20px;
}


.video-container {
  position: relative;
}

.video-container .video-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
}

.ami-iconholder {
  /* background: #ffffff; */
  text-align: center;
  padding: 10px 10px;
  position: relative;
  height: 165px;
  margin-top: 30px;
  transition: ease all 0.5s;
  -webkit-box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 8px 0px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
  border: 1px solid #000;
  /* color: #fff; */
  font-weight: 600;
}


.ami-iconholder:hover {
  -webkit-box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 8px -6px rgba(0, 0, 0, 0.5);
  transform: translateY(-15px);
  transition: ease all 0.5s;
  color: #fff;
}

.bg-hover {
  position: relative;
}

.ami-iconholder img {
  margin-top: 20px;
  width: 70px !important;
  margin: auto;
  margin-top: 20px;
}

.ami-iconholder:hover img {
  filter: brightness(1) invert(1);

}


.ami-iconholder p {
  line-height: 19px;
  margin-top: 5px;
  font-size: 1.5rem;
  max-width: 10px 0;
  padding-top: 10px;
  /* height: 40px; */
  /* margin-bottom: 0; */
}

.bg-hover:after {
  content: "";
  position: absolute;
  left: 100%;
  bottom: 0px;
  top: 0px;
  height: 100%;
  width: 0px;
  z-index: -1;
  background-color: #0c3730;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  background: #1e4d7d;
}

.bg-hover:hover:after {
  width: 100%;
  left: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  z-index: -1;
}

.flr-cont .flr-img img {
  width: 70px;
}

.flr-cont .flr-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flr-cont .flr-content {
  text-align: center;
  padding-left: 12px;
  padding-right: 12px;
}

.flr-cont .flr-content h5 {
  margin-top: 20px;
  font-weight: bold;
  font-size: 15px;
  padding-left: 22px;
  padding-right: 22px;
}

.flr-cont .flr-content p {
  font-size: 13px;
}

/* ***************Banner Form css starts********** */
input.form-control {
  font-size: 1.5rem;
  font-weight: 600;
  border: 1px solid #1e4d7d;
  margin: unset !important;
}

input.form-control::placeholder {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  font-family: avenir;
}

.num-text {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.form-padd {
  padding: 4rem 0rem;
}

.form_header {
  color: var(--primary-color);
  /* background-color: var(--primary-color); */
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2rem;
}

.form_content {
  padding: 20px;
  /* height: 347px; */
  box-shadow: rgb(225 212 212 / 53%) 0px 3px 6px, rgb(229 221 221 / 26%) 0px 3px 6px;
  background: #fff;
  border-radius: 16px;
}

#footer {
  background: url(../images/background.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#gallery_tab {
  background-color: var(--primary-color) !important;
}

.price-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1e4d7d;
  text-align: center;
  border-radius: 5px;
  color: white;
}

.table_cust tbody td {
  vertical-align: middle;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
  background: #ba804ef0 !important;
}

.footer_logo {
  /* margin-bottom: 3rem; */
  width: 150px;
}

@media screen and (max-width: 767px) {
  .form_content {
    width: 85%;
    margin: auto;
    height:421px;
  }

  .form_header {
    padding: 2rem;
  }

  .cust-form {
    box-shadow: rgb(119 99 99 / 53%) 0px 3px 6px, rgb(105 85 85 / 26%) 0px 3px 6px !important;
  }

  .para {
    width: 100%;
  }

  .disc {
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.8px;
    width: 100%;
    line-height: 1.8;
    margin: unset !important;
  }

  .footer_logo {
    /* margin-bottom: 3rem; */
    width: 100px;
  }

  .copy_text {
    margin-bottom: 3rem;
  }

}

/* ***************Banner Form css starts********** */

/* **********************Amenities Section Starts*********** */
.amenities {
  padding: 3rem 0rem;
  background: #FDF5E8;
}

.amenities-starts {
  padding: 3rem 0rem;
}

.sec-title {
  position: relative;
  margin: auto;
  text-align: center;
  margin-bottom: 1rem;
}

.head-center {
  text-align: center;
}

.sec-head {
  font-size: 1.1875rem;
  font-weight: 600;
  margin: 0 70px;
  display: inline;
  color: #DBB464;
  position: relative;
  font-family: 'CeraPro';
}

.sec-head:before {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background: #848484;
  top: 40%;
  left: -400px;
  position: absolute;
}

.sec-head:after {
  content: "";
  display: block;
  width: 300px;
  height: 1px;
  background: #848484;
  right: -400px;
  top: 40%;
  position: absolute;
}

.amenities-img {
  display: flex;
  flex-direction: column;
  color: #fff;
  align-items: center;
}

.amenities-img img {
  /* width: 3.74875rem; */
  /* height: 3.22963rem; */
  object-fit: contain;
  transition: transform 0.3s ease-in-out;
}

.amenities-text {
  
    text-align: center;
    /* font-size: 1.25rem; */
    color: #1E4D7D;
    /* font-weight: 400; */
    font-style: normal;
    line-height: normal;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 2rem 0;
    color: #1E4D7D;
}

.custom-hr {
  color: #394C41;
}

/* **********************Amenities Section ends*********** */


.banner {
    box-shadow: inset 0 0 0 #000;
    position: relative;
    /* height: 100vh;  */
}
.banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_content {
    width: 80%;
    text-align: center;
}

@media screen and (min-width: 320px) and (max-width: 767px){
.banner_content h3 {
    font-size: 24px;
}
.banner_content p {
    font-size: 18px;
    letter-spacing: 3px;
    margin-top: 20px;
}
/* .banner.video {
    height: auto;
} */
.banner {
    height: 40vh;
}

.banner_content {
    text-align: center;
    width: 92%;
}
}


@media screen and (min-width: 768px) and (max-width: 1023px){
.banner {
    height: 50vh;
}
}




a.whatsapp {
    background-color: #2fb842;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    border-radius: 100%;
    text-align: center;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 20px;
    margin: 0;
    z-index: 990;
}
.call{
background-color: #be8758;
    display: flex
;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    border-radius: 100%;
    text-align: center;
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 20px;
    margin: 0;
    z-index: 990;
    top: 82%;
    -webkit-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
}







.thank_section {
    width: 100%;
    height: 100vh;
    position: relative;
    background:#fff;
}
.thankyou_row {
    width: 30%;
    position: absolute;
    left: 50%;
    transform: translate(-50%,-50%);
    top: 50%;
    box-shadow: 0 0 6px #ccc;
    border-radius: 4px;
    padding: 40px 10px;
    text-align: center;
        background: #1e4d7d;
}
.thankyou_row img {
    width: 52%;
}
.thankyou_row h3 {
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
    color:#000;
}
.thankyou_row h4 {
    margin-bottom: 10px;
    font-weight: 600;
    color:#000;
}
.thankyou_row a {
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: #fff;
}
@media only screen and (min-width: 320px) and (max-width: 767px){
    .thankyou_row {
        width: 90%;
        padding: 24px 10px;
    }
    .desktop {display: none;}
.mobile {display: block;}
}











