@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  background-color: var(--light);
  color: var(--text-color);
  font-family: var(--font1);
}
html,
body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}
img {
  object-fit: cover;
}
ul {
  list-style: none;
}
:root {
  --bg-color1: #004280;
  --bg-color2: #c29c60;
  --bg-color3: #d2c1b6;
  --bg-color4: #f9f3ef;
  --bg-color5: #f9f3ef7e;
  --light: #ffffff;
  --dark: #000000;
  --text-color: #535252;

  --radius10: 10px;
  --radius20: 20px;
  --radius30: 30px;
  --radius40: 40px;

  --font1: "Inter", sans-serif;
  --font2: "Quicksand", sans-serif;
}

.head_section .h_title {
  font-size: 34px;
  font-weight: 800;
  color: var(--bg-color1);
}
.head_section .h_subtitle {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

/* Button Area Start */

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: var(--bg-color2);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark);
  gap: 10px;
  font-weight: bold;
  border: 3px solid #0042804d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #ffffff49;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* From Uiverse.io by mrhyddenn */
.primary_btn {
  position: relative;
  margin: 0;
  padding: 0.5em 1em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: var(--bg-color2);
  border-radius: var(--radius30);
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.primary_btn:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

/* BLINK EFFECT */

.blink_text {
  animation: zoomInOut 1s infinite ease-in-out;
  font-weight: 700;
  color: #fff;
  display: inline-block;
}

@keyframes blinkAnim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
.primary_btn:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.primary_btn::before,
.primary_btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--light);
  opacity: 0;
  transition:
    transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.primary_btn:hover::before,
.primary_btn:hover::after {
  opacity: 0.15;
  transition:
    transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.primary_btn:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.primary_btn:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

.primary_btn1 {
  position: relative;
  margin: 0;
  padding: 0.5em 1em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: var(--light);
  border-radius: var(--radius30);
  color: var(--bg-color1);
  font-weight: 500;
  font-size: 18px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.primary_btn1:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.primary_btn1:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.primary_btn1::before,
.primary_btn1::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--bg-color2);
  opacity: 0;
  transition:
    transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.primary_btn1:hover::before,
.primary_btn1:hover::after {
  opacity: 0.15;
  transition:
    transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.primary_btn1:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.primary_btn1:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

.am_btn {
  position: relative;
  margin: 0;
  padding: 0.5em 0.7em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: var(--bg-color2);
  border-radius: var(--radius30);
  color: var(--light);
  font-weight: 500;
  font-size: 18px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.am_btn:hover {
  animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.am_btn:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.am_btn::before,
.am_btn::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--light);
  opacity: 0;
  transition:
    transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.am_btn:hover::before,
.am_btn:hover::after {
  opacity: 0.15;
  transition:
    transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1),
    opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.am_btn:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.am_btn:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

/* Button Area End */

/* Header Section Start */

.top_head {
  background-color: var(--bg-color1);
  padding: 6px;
  font-size: 17px;
  text-align: center;
  color: var(--light);
}
header {
  top: 0px;
  position: fixed;
  width: 100%;
  z-index: 999;
}
header .navbar {
  padding: 5px;
  background-color: var(--light);
}
header .navbar .navbar-nav .nav-item .nav-link {
  font-weight: 600;
  color: var(--dark);
  padding: 0px 10px;
  margin: 0px 5px;
}
header .navbar .navbar-brand img {
  height: 55px;
}

/* Strip Section Start */

.strip_desktop img {
  height: 350px;
  width: 100%;
}
.strip_mobile {
  display: none;
}

/* Strip Section End */

/* Header Section End */

.highlight_key {
  width: fit-content;
}
.highlight_key ul {
  margin-top: 15px;
  margin-bottom: 0px;
  padding-left: 0px;
}
.highlight_key ul li {
  padding: 5px;
  color: var(--light);
  font-size: 22px;
  font-weight: 600;
}

.details_slider .ds_2 {
  display: none;
}
/* Slider Section Start */

.slider_section {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.slider_images,
#carouselExampleSlidesOnly,
.carousel-inner,
.carousel-item {
  height: 100%;
}
.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, #00000000, #0000006a, #000000);
  z-index: 1;
}
.slider_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  width: 80%;
  margin-top: 30px;
}
.slider_content .p_name {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--light);
}

.slider_content .p_location {
  font-size: 26px;
}
.slider_content .p_apartments {
  background-color: #f3efe4;
  width: fit-content;
  padding: 5px 20px;
  margin: 10px 0px;
  font-size: 24px;
  color: var(--bg-color1);
  font-weight: 600;
}
.slider_content .p_price {
  display: flex;
  align-items: center;
  justify-content: left;
  background: linear-gradient(
    to left,
    #c29c6000,
    #c29c60ae,
    #c29c60e4,
    #c29c60
  );
  width: fit-content;
  margin: 20px 0px;
  padding: 5px 0px;
}
.slider_content .p_price .content {
  /*animation: zoomInOut 0.8s infinite ease-in-out;*/
  /*padding-left: 20px;*/
}
.slider_content .p_price .content .sp {
  font-size: 32px;
  font-weight: 800;
}
.slider_content .p_price .icon {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;

  animation: rotateIcon 2s linear infinite;
}
.slider_content .p_price .icon i {
  font-size: 36px;
}
@keyframes rotateIcon {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.slider_content .p_price .sp {
  font-size: 34px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 20px;
}
.slider_content .p_price .sp .line {
  height: 2px;
  width: 80px;
  background-color: var(--light);
}
.slider_content .p_price .pp {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}
/* ZOOM IN OUT EFFECT */

.zoom_text {
  animation: zoomInOut 0.8s infinite ease-in-out;
  font-weight: 700;
  color: #fff;
  display: inline-block;

  margin-bottom: 0px;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.slider_form {
  background-color: #000000de;
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(3px);
}
.slider_form .subtitle {
  font-size: 30px;
  font-weight: 600;
  color: var(--light);
}
.slider_form input,
textarea {
  height: 50px;
  border: none;
  background-color: transparent;
  border-bottom: 2px solid var(--light);
  border-radius: 0px;
}
.slider_form textarea {
  border: none;
  border-radius: 0px;
  background-color: transparent !important;
  border-bottom: 2px solid var(--light);
}
.slider_form input::placeholder,
.slider_form textarea::placeholder {
  color: var(--light);
}

.details .container {
  background-color: var(--light);
  margin-top: 0px;
  z-index: 2;
  border-radius: 40px;
  position: relative;
}
.details .card {
  background-color: transparent;
  border: none;
  text-align: center;
  padding: 10px 0px;
}
.details .card .card-title {
  color: var(--bg-color1);
  margin-bottom: 0px;
}

.eoi {
  padding: 5px 30px !important;
  background: var(--light);
  color: var(--bg-color1) !important;
  animation: zoomInOut 0.8s infinite ease-in-out;
  padding-left: 10px;
}

.details_slider1 {
  display: none;
}
.details_slider1 .custom-indicators {
  bottom: -45px;
}
.details_slider1 .custom-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  background-color: #000 !important;
  opacity: 0.5;
  border: none;
}
.details_slider1 .custom-indicators .active {
  opacity: 1;
}

/* Slider Section End */

/* Overview Section Start */

.overview {
  padding: 80px 0px;
}
.overview .content {
  margin-top: 10px;
}
.overview .content i {
  color: var(--bg-color1);
}
.overview .content p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  text-align: justify;
}
.overview h2 {
  color: var(--bg-color1);
  font-weight: 800;
}
.overview h6 {
  color: var(--dark);
  font-weight: 600;
}
.overview .am_btn {
  margin: 30px auto 0px auto;
}
.overview .sora {
  padding: 10px;
  border-radius: 20px;
  border: 2px solid var(--bg-color1);
}
.overview .sora_img {
  height: 450px;
  width: 100%;
  border-radius: 20px;
}

/* Overview Section End */

/* highlights Section Strat */

.highlights {
  background-color: #0042802b;
  padding: 40px 0px;
}
.highlights .header_section {
  text-align: center;
  margin-bottom: 50px;
}
.highlights .header_section h3 {
  color: var(--bg-color1);
  font-weight: 800;
}
.highlights .header_section h4 {
  color: var(--dark);
  font-weight: 600;
}
.highlights .h_img {
  padding: 10px;
  border: 2px solid var(--bg-color1);
  border-radius: 20px;
}
.highlights .high_img {
  height: 400px;
  width: 100%;
  border-radius: 20px;
}
.highlights ul li {
  font-size: 17px;
  font-weight: 500;
  padding: 8px 0px;
  color: var(--dark);
  border-bottom: 1px solid var(--bg-color1);
}
/* highlights Section End */

/* PRICELIST Section Start */

.price .header_section {
  text-align: center;
}
.price .header_section h2 {
  font-weight: 700;
  color: var(--light);
}
.price .header_section h4 {
  font-weight: 700;
  color: var(--light);
  margin-bottom: 40px;
}
.price {
  background-image: url("../images/img1.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: auto;
  padding: 60px 0px;
  position: relative;
  z-index: 1;
}
.price::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 2;
  background-color: var(--dark);
  opacity: 0.8;
}
.price > * {
  position: relative;
  z-index: 3;
}
.price .am_btn {
  padding: 0.5em 0.7em;
  font-size: 15px;
  margin: 0px auto;
}
.price .card {
  text-align: center;
}
.price .card .card-title {
  font-size: 24px;
  background-color: var(--bg-color1);
  color: var(--light);
  padding: 5px;
  border-radius: 5px;
  font-weight: 400;
}
.price .card .card-text ul {
  padding-left: 0px;
  margin-bottom: 10px;
}
.price .card .card-text ul li .line {
  height: 1px;
  width: 100%;
  background-color: var(--bg-color1);
  margin: 5px 0px;
}
.price .card .card-text ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0px 0px 0px;
  font-size: 17px;
}
.price .card .card-text ul li b {
  color: var(--bg-color1);
}
.price .card .card-text ul li span {
  color: var(--dark);
  font-weight: 500;
}

/* PRICELIST Section End */

.amenities {
  padding: 60px 0px;
}
.amenities .head_section {
  text-align: center;
  margin-bottom: 40px;
}
.amenities .head_section .subtitle {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
}
.amenities .head_section .title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bg-color1);
}
.amenities .am_slider {
  height: 100%;
  border-radius: 20px;
}
.amenities .card {
  background-color: var(--light);
  height: 100%;
  border-radius: 10px;
  text-align: center;
  padding: 10px;
  border: none;
  box-shadow: 0px 0px 10px #0000002a;
  margin-bottom: 36px;
}
.amenities .card .card-body {
  padding: 10px;
}
.amenities .card.card_down {
  margin-bottom: -300px;
}
.amenities .card img {
  height: 250px;
  border-radius: 10px;
}
.amenities .card .card-title {
  margin: 0px auto;
  margin-bottom: 0px;
  margin-top: -30px;
  background-color: var(--bg-color1);
  color: var(--light);
  width: fit-content;
  padding: 10px 30px;
  font-size: 16px;
  text-transform: uppercase;
}

/* Floorplan Section Start */

.floorplan {
  background-color: #eae7e2;
  padding: 60px 0px;
}
.header_section {
  text-align: center;
}
.header_section h2 {
  color: var(--bg-color1);
  font-weight: 800;
}
.header_section h5 {
  color: var(--bg-color1);
  font-weight: 600;
}
.header_section .content {
  font-weight: 500;
  color: var(--bg-color1);
  margin-bottom: 60px;
}
.floorplan_bottom {
  height: 250px;
  margin-top: -250px;
  background-color: var(--bg-color1);
}
.floorplan .card {
  position: relative;
  overflow: hidden;
}
.floorplan .card img {
  height: 300px;
  padding: 20px;
}

.floorplan .card-body {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}

.floorplan .card-title {
  color: #fff;
  margin-bottom: 15px;
}

.floorplan .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.floorplan .am_btn {
  position: relative;
  z-index: 2;
  padding: 10px 15px;
  font-size: 15px;
  margin: 0px auto;
}
.floorplan .card-title {
  padding: 10px 20px;
  font-size: 17px;
  margin: 0px auto;
  background-color: var(--light);
  color: var(--bg-color1);
  width: fit-content;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

/* Floorplan Section End */

.site_tour {
  background-color: #e9e7de;
}
.site_tour .st_content {
  height: 350px;
  display: flex;
  align-items: center;
}
.site_tour .content p {
  text-align: center !important;
}

/* Gallery Section Start */

.gallery {
  background-image: url("../images/bg_img1.webp");
  padding: 60px 0px;
  position: relative;
}
.gallery::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  position: absolute;
  z-index: 1;
  background-color: var(--light);
  opacity: 0.98;
}
.gallery > * {
  position: relative;
  z-index: 2;
}
.gallery .header_section {
  text-align: center;
}
.gallery .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color1);
  letter-spacing: 3px;
  padding-left: 2px;
}
.gallery .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: #16243e2a;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.gallery .header_section .subtitle {
  font-size: 34px;
  line-height: 0.2;
  font-family: var(--font2);
  font-weight: 600;
}
.gallery .header_section .subtitle span {
  font-size: 54px;
  font-family: var(--font3);
  color: var(--bg-color1);
}
.gallery .gallery_images {
  margin-top: 60px;
}
.gallery .cover_img {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
}
.gallery img {
  width: 100%;
  height: 300px;
  display: block;
  box-shadow: 0px 0px 10px #1e2f6e9d;
  border-radius: 10px;
  object-fit: cover;
}
.gallery .cover_img img {
  transition: 0.4s ease;
}
.gallery .cover_img:hover img {
  transform: scale(1.08);
}

/* Gallery Section End */

/* Location Section Strat */

.location {
  background-image: url("../images/location.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  padding: 60px 0px;
  position: relative;
  z-index: 0;
}
.location::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  background-color: var(--light);
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.location > * {
  position: relative;
  z-index: 2;
}
.location .location_map {
  padding: 10px;
  border: 2px solid var(--bg-color1);
  border-radius: 20px;
}
.location .location_map img {
  height: 400px;
  width: 100%;
  border-radius: 20px;
}
.location .header_section {
  text-align: left;
}
.location .header_section h5 {
  margin-bottom: 40px;
}
.location ul {
  width: 90%;
}
.location ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 15px;
}
.location ul li i,
.location ul li b {
  color: var(--bg-color1);
}

/* Location Section End */

/* Hero Section Start */

.hero_section {
  background-color: var(--bg-color1);
  background-image: url("../images/g5.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  position: relative;
  padding: 40px 0px;
}
.hero_section::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 2;
  background-color: var(--dark);
  opacity: 0.9;
}
.hero_section > * {
  position: relative;
  z-index: 3;
}
.hero_section .header_section {
  width: 100%;
  text-align: center;
  padding: 50px 0px;
}

.hero_section .header_section .back_shadow {
  font-size: 60px;
  margin-top: -55px;
  color: var(--light);
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.hero_section .header_section .subtitle {
  font-size: 34px;
  line-height: 0;
  font-family: var(--font2);
  color: var(--light);
  font-weight: 600;
  margin: 10px 0px 20px 0px;
}
.hero_section .header_section .subtitle span {
  font-size: 40px;
  font-family: var(--font3);
  color: var(--light);
}
.hero_section .header_section .content {
  font-size: 16px;
  color: var(--light);
  margin: 10px 0px;
  font-weight: 600;
}
.hero_section .primary_btn1 {
  margin: 0px auto;
}

/* Hero Section End */

/* Contact Us Section Start */

.contactus {
  padding: 80px 0px;
}
.contactus .header_section {
  text-align: center;
}
.contactus .c_details {
  text-align: center;
}
.contactus .c_details .c_logo {
  margin-bottom: 20px;
}
.contactus .c_details .c_logo img {
  height: 50px;
}
.contactus .c_details .c_img {
  height: 500px;
  width: 80%;
  margin: 100px auto 20px auto;
  border: 2px solid var(--bg-color1);
  border-radius: 250px 250px 0px 0px;
}
.contactus .c_details .c_img img {
  height: 550px;
  width: 90%;
  margin-top: -85px;
  border-radius: 250px 250px 0px 0px;
}
.contactus .c_title {
  background-color: var(--bg-color1);
  margin: 15px 25px;
  padding: 6px;
  font-size: 20px;
  font-family: var(--font1);
  font-weight: 400;
  color: var(--light);
  letter-spacing: 4px;
}
.contactus .c_content {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.contactus .c_content .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color1);
  letter-spacing: 3px;
  padding-left: 2px;
}
.contactus .c_content .header_section .back_shadow {
  font-size: 60px;
  margin-top: -60px;
  color: #16243e35;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.contactus .c_content .header_section .subtitle {
  font-size: 36px;
  line-height: 0;
  font-family: var(--font2);
  color: var(--bg-color1);
  font-weight: 600;
  margin: 10px 0px 20px 0px;
}
.contactus .c_content .header_section .subtitle span {
  font-size: 50px;
  font-family: var(--font3);
  color: var(--bg-color1);
}
.contactus .c_content .header_section .content {
  font-size: 16px;
  color: var(--bg-color1);
  margin: 10px 0px;
  font-weight: 600;
}
.contactus .c_content .form-control {
  height: 55px;
  border: 1px solid var(--bg-color1);
  border-radius: 0px;
  margin: 25px 0px;
}
.contactus .c_content .secondary_btn {
  height: 55px;
  font-size: 18px;
}
.contactus .c_content .privacy {
  font-size: 14px;
  color: var(--text-color2);
  margin-top: 15px;
  text-align: center;
}
.contactus .godrej_image img {
  height: 400px;
  width: 100%;
  border-radius: 20px;
}
.contactus .g_title {
  font-size: 30px;
  font-weight: 800;
  color: var(--bg-color1);
  margin-bottom: 20px;
}
.contactus .godrej_about {
  text-align: center;
  font-size: 14px;
  margin-top: 40px;
}
.contactus.property_contact {
  background-image: url("../images/c_bg.jpg");
  background-color: var(--bg-color1);
}
.contactus.property_contact .c_img img {
  height: 450px;
  width: 90%;
  border-radius: 20px;
}
.contactus.about_godrej p {
  font-size: 16px;
}

/* Contact Us Section End */

/* Footer Section Start */

footer {
  text-align: center;
  background-color: var(--bg-color1);
  padding: 20px 0px 20px 0px;
}
footer p {
  font-size: 14px;
  color: #ffffff9f;
}
footer p b {
  font-size: 14px;
  color: #ffffff;
}
footer ul {
  padding-left: 0px;
}
footer ul li {
  color: #ffffff;
}
footer hr {
  color: #ffffff;
}

/* Footer Section End */

/* Modal Section Start */

.modal .modal_img img {
  width: 100%;
  height: 400px;
  border-radius: 20px;
}
.modal .modal_img1 img {
  display: none;
  border-radius: 20px;
}
.modal .modal-body .card {
  margin: 0px auto;
  width: 100%;
  text-align: center;
  border: none;
  background-color: #004280;
}
.modal .modal-body .card .card-body .card-title {
  font-size: 20px;
  color: var(--bg-color1);
}
.modal .modal-body .card .card-body {
  padding: 0px;
}
.modal .modal-body .card img {
  width: 100%;
  border-radius: 15px;
}
.modal .modal-body .header_section {
  text-align: left;
  padding: 20px 0px 0px 0px;
}
.modal .modal-body .header_section .title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bg-color1);
  letter-spacing: 3px;
  padding-left: 2px;
}
.modal .modal-body .header_section .back_shadow {
  font-size: 40px;
  margin-top: -45px;
  color: #16243e35;
  font-weight: bolder;
  font-family: "Saira Stencil One", sans-serif;
}
.modal .modal-body .header_section .subtitle span {
  color: red;
}
.modal .modal-body .header_section .subtitle {
  font-size: 18px;
  line-height: 0;
  font-family: var(--font2);
  color: #004280;
  font-weight: 600;
  margin: 10px 0px 30px 0px;
}
.modal .modal-body textarea,
.modal .modal-body input {
  height: 45px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid #004280;
}
.modal .modal-body input::placeholder {
  color: #004280;
}

/* Modal Section End */

/* ThankYou Page  Start*/

.thanks_bg {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("../images/thanks3.png");
}
.thanks_bg .t_title {
  font-weight: 800;
  color: var(--bg-color1);
  font-size: 100px;
  font-family: var(--font3);
  line-height: 1.2;
}
.thanks_bg .t_subtitle {
  color: var(--bg-color1);
  font-size: 30px;
  letter-spacing: 6px;
  text-transform: capitalize;
}
.thanks_bg .t_content {
  font-size: 20px;
}

/* ThankYou Page End */

/* Modal Design */
.modal .card_details {
  background-color: #f8f8f8;
  padding: 10px;
  margin-top: 20px;
  border-radius: 20px;
  width: 100%;
}
.modal .card_details .m_title {
  font-size: 20px;
  text-align: center;
  color: var(--bg-color1);
  font-weight: 600;
}
.modal .card_details .card {
  background-color: transparent;
  padding: 20px 0px;
}
.modal .card_details .card img {
  height: 40px;
  width: 40px;
  margin-right: 10px;
}
.modal .card_details .card .card-title {
  font-size: 15px !important;
  font-weight: 500;
  text-align: left;
}
.modal .modal_logo {
  text-align: center;
}
.modal .modal_logo img {
  height: 80px;
  background: var(--bg-color1);
}
.modal .modal-header {
  background-color: #004280;
  border-bottom: 0px;
  border-radius: 0px;
}
.modal .modal-title {
  color: var(--light);
}
.modal .card_details .card .card-body {
  padding-left: 10px;
}
