* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: 'gilroy-regular', serif !important;
  overflow-x: hidden;
}

/* variables */
:root {
  --blue: #1e90ff;
  --white: #ffffff;
  --main-color: #008080;
  --lightgrey: #f0f0f0;
}

/* fonts */
@font-face {
  font-family: 'gilroy-bold';
  src: url('../fonts/Gilroy-Bold.ttf');
}
@font-face {
  font-family: 'gilroy-regular';
  src: url('../fonts/Gilroy-Regular.ttf');
}
@font-face {
  font-family: 'Futura';
  src: url('../fonts/Futura/FuturaCyrillicMedium.ttf');
}
@font-face {
  font-family: 'heading';
  src: url('../fonts/veiran-font/veiran-regular.ttf');
}
/* common classes */
.section {
  padding: 3% 0;
}
.tagline {
  margin: 20px 0;
}
.tagline span {
  background-color: var(--main-color);
  color: var(--white);
  padding: 2px 10px 5px 10px;
  border-radius: 10px;
  font-family: 'gilroy-bold', serif;
}
.sub-heading {
  font-family: 'gilroy-regular', serif;
}
.heading {
  font-family: 'heading';
  margin-bottom: 25px;
  font-size: 40px;
  color: #373435;
}
.para {
  font-size: 18px;
}
.bg-main {
  background-color: var(--main-color);
}
.bg-lightgrey {
  background-color: var(--lightgrey);
}
.btn.btn-primary {
  color: #fff;
  background-color: var(--main-color);
  border-color: #ffffff;
}
.btn.btn-primary.focus,
.btn.btn-primary:focus {
  color: #fff;
  background-color: var(--main-color);
  border-color: var(--main-color);
  box-shadow: 0 0 0 0.2rem hsla(195, 100%, 57%, 0.5);
}
.btn.btn-primary:hover {
  color: #fff;
  background-color: var(--main-color);
  border-color: #fff;
}

/* navbar */
.navbar-dark.bg-dark {
  background-color: #212121 !important;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgb(255 255 255) !important;
  /* font-family: 'gilroy-bold', serif; */
  /* font-size: 18px; */
  padding-right: 20px !important;
  transition: 0.5s;
  text-transform: uppercase;
}
.navbar-dark.bg-change {
  background-color: rgb(0 0 0 / 60%) !important;
  backdrop-filter: blur(10px);
}
.navbar-dark.bg-change .navbar-nav.mx-auto {
  margin-right: unset !important;
  transition: 0.5s;
}
.navbar-brand:focus-visible {
  outline: none;
}
.logo {
  width: 300px;
  max-width: 100%;
}
/* banner */
.banner {
  position: relative;
}
.banner .banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  color: #fff;
  z-index: 2;
  transform: translate(-50%, -50%);
}
/* carousel */
#demo1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.proj-caption {
  height: 100%;
  background-color: var(--white);
  color: #020202;
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#demo .carousel-indicators li {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #f9b043;
}
#demo .carousel-caption {
  position: absolute;
  right: 5%;
  top: 15%;
  left: unset;
  color: #fff;
  text-align: center;
  background-color: rgb(255 255 255 / 40%);
  padding: 15px;
  border-radius: 5px;
  bottom: unset;
  width: 350px;
}
.proj-caption1 {
  position: absolute;
  top: 0px;
  z-index: 1;
  background: rgb(238 238 238 / 85%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  text-align: center;
  max-width: 400px;
}
.line-through {
  text-decoration-line: line-through;
  text-decoration-color: var(--main-color);
  font-size: 25px;
}
.price {
  width: 30%;
}

/* aminities */
.aminities-cards {
  padding: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 7px;
  min-height: 280px;
  margin: 30px 0 0 0;
  text-align: center;
}
.aminities-cards img {
  margin: 0 0 90px auto;
  display: block;
}
.aminities-cards h4 {
  font-family: 'futura';
}
.aminities-cards.bg-main {
  color: var(--white);
}

/* Location */
.collapsible-link {
  width: 100%;
  position: relative;
  padding: 0 !important;
}
.collapsible-link.btn-link:hover {
  color: #f1f3f3;
}
.collapsible-link::before {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  display: block;
  content: '\f107';
  font-family: 'Font Awesome 5 Free';
  font-size: 1.1rem;
  font-weight: 700;
}
.collapsible-link[aria-expanded='true']::before {
  content: '\f106';
}
.accordion .card,
.card .card-header {
  border: unset;
}
.card .card-header {
  padding: 5px 10px 10px 10px;
}
.card-header h2 {
  border-top: 1px solid var(--main-color);
}
.card button {
  text-align: left;
}
.card-body p {
  /* border: 1px solid #ccc; */
  /* padding: 10px; */
}
.card .collapsible-link {
  font-family: 'Futura';
  color: white;
}
.accordion .card {
  background-color: transparent;
  border: 1px solid #ccc !important;
}
.accordion .card-header {
  background-color: var(--main-color);
}
.neighbourhood {
  padding: 1% 0;
}

/* features */
.features {
  margin: 5% 0 0 0;
}
.living {
  border-radius: 50%;
  position: relative;
}
.content-features {
  background-color: var(--white);
  position: absolute;
  top: 11%;
  left: 12%;
  border-radius: 50%;
  width: 430px;
  height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
}

/* floor plan */
.floor-plan img {
  object-fit: cover;
  filter: blur(8px);
  transition: filter 0.3s ease-in-out;
}
.btn.cta-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  opacity: 0.9;
  text-align: center;
}
.floor-plan h4 {
  text-align: center;
  margin: 20px 0;
  font-family: 'heading';
}

/* legend */
.legend {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.9;
}

.legend img {
  filter: blur(7px);
  position: relative;
}
.btn.download-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 13px;
  transform: translate(-50%, -50%);
  z-index: 1;
}
/* .legend ul li{
    background-color: var(--main-color);
    color: white;
    list-style: none;
} */
/* key-development */
.key-development a {
  color: #1a1a1a;
}
.keydevelopment-cards {
  padding: 30px 20px;
  border-radius: 5px;
  /* color: white; */
  text-align: center;
  box-shadow: 1px 0px 10px #bfbcbc;
}
.keydevelopment-cards h4 {
  font-family: 'futura';
}

/* gallery */
.gallery .grid-item {
  margin-bottom: 9%;
}

/* contact-form */
.contact-container {
  margin-bottom: 2%;
}
.contact-form {
  background-color: #ebebeb;
  margin-top: -50%;
  position: relative;
  padding: 20px 45px 30px 45px;
}
.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #0000004d;
  background-color: transparent;
}
.contact-form h1 {
  font-family: 'heading';
  letter-spacing: 3px;
}
.form-contact button {
  width: 100%;
  text-transform: uppercase;
  font-family: 'heading';
  font-size: 25px;
  letter-spacing: 2px;
  background-color: var(--main-color);
  border: 1px solid #eee;
  box-shadow: 0px 0px 0px 5px var(--main-color);
  border-radius: 0;
}
.form-contact button:hover {
  background-color: var(--main-color);
}
.custom-control-input:checked ~ .custom-control-label::before {
  background-color: #007bff;
  border-color: #007bff;
}
.abt-form{
    padding: 20px 30px;
    border: 1px solid #cbcbcb;
}
/* footer */
footer {
  background-color: var(--main-color);
  color: var(--white);
}
footer h2 {
  margin-bottom: 7%;
  font-family: 'heading';
}
footer h5 {
  font-family: 'heading';
}
footer a {
  color: #ffffff;
  transition: 0.5s;
}
.social-media a {
  text-decoration: none;
  background-color: transparent;
  font-size: 35px;
  padding-right: 15px;
}
footer a:hover {
  color: #f79422;
}
footer p {
  /* margin-bottom: unset; */
}
.copyright {
  background-color: #033333;
  text-align: center;
  padding: 20px;
  color: #eee;
}
.enquire-sticky {
  position: fixed;
  right: -39px;
  top: 50%;
  z-index: 9;
  transform: rotate(90deg);
}
.rera {
  font-size: 12px;
}
