@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Quicksand:wght@300..700&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: #2F7474;
  --bg-color2: #2F7474af;
  --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: "Montserrat", sans-serif;
  --font2: "Quicksand", sans-serif;
}

/* Button Area Start */
.button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--bg-color1);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button:hover {
  background-color: #000;
}

.button:hover .button__icon-wrapper {
  color: #000;
}
.button i {
  color: var(--bg-color1);
}
.button:hover i {
  color: var(--dark);
}

.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

/* 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-color1);
  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-color1);
  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-color1);
  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 80px;
  background-color: var(--light);
}
header .navbar .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  color: var(--dark);
  padding: 0px 10px;
  margin: 0px 5px;
}
header .navbar .navbar-brand img {
  height: 50px;
}

/* 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: 17px;
  font-weight: 600;
}

.details_slider img {
  width: 100%;
  margin: 30px 0px;
}

.properties {
  background-color: #fffeee;
  padding: 80px 0px;
}
.properties .head_title {
  text-align: center;
}
.properties .h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--bg-color1);
}
.properties .h4 {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 40px;
}
.properties .card {
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  transition: 0.4s ease;
  border: none;
  box-shadow: 0px 0px 10px #00000066;
}
.properties .card .c_name {
  font-size: 20px;
  font-weight: 600;
  padding: 6px 20px;
  width: fit-content;
  margin: 20px auto;
  background-color: var(--bg-color1);
  color: var(--light);
  border-radius: 10px;
}
.properties .card .card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}
.properties .card .card-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0px;
}
.properties .card .button{
    padding: 10px 20px;
    font-size: 15px;
}
.properties .card .strip{
    background: linear-gradient(135deg, #ed1212ad, #a7290d);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 10px;
    width: fit-content;
    position: absolute;
    top: 15px;
    left: 0;
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    border-radius: 0 5px 5px 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.card{
    position: relative;
    overflow: hidden;
}
.properties .card .d-flex{
    justify-content: space-between;
    gap: 20px;
}
.properties .card img {
  height: 300px;
  border-radius: 10px;
}
.properties .card:hover {
  transition: 0.4s ease;
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}
.properties .card .card-body {
  padding: 0px 20px 20px 20px;
}
.properties .card .card-body .part1 {
  margin: 0px 0px 20px 0px;
  padding: 10px;
  border-bottom: 1px solid var(--bg-color1);
}
.properties .card .card-body .part2 {
  padding: 0px;
}
.properties .card .card-body .part2 .c_price {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--bg-color1);
  color: var(--bg-color1);
  width: fit-content;
  margin: 0px auto;
}
.properties .card .card-body .part2 ul {
  padding: 10px 0px;
  text-align: left;
}
.properties .card .card-body .part2 ul li {
  font-size: 0.95rem;
  color: #000000;
  font-weight: 500;
  margin-top: 6px;
}

/* Slider Section Start */

.slider_section {
  background-image: url("../images/main_banner1.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  padding: 0px 20px 0px 120px;
}
.slider_section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to left, #00000013, #000000e4);
  z-index: 1;
}
.slider_section > * {
  position: relative;
  z-index: 2;
}
.project_details {
  margin-top: 40px;
}
.project_details .p_name {
  font-size: 34px;
  font-weight: 600;
  color: var(--light);
}
.project_details .p_apartment {
  font-size: 24px;
  font-weight: 600;
  color: var(--light);
}
.project_details .p_price {
  background: var(--bg-color1);
  padding: 10px 20px;
  margin: 20px 0px 10px 0px;
  width: fit-content;
  color: var(--light);
  font-size: 20px;
  font-weight: 600;
}
.project_details .key ul {
  padding-left: 10px;
}
.project_details .key ul li {
  display: flex;
  align-items: center;
  margin: 15px 0px;
  background-color: var(--light);
  width: fit-content;
  padding: 5px;
  border-radius: 10px;
}
.project_details .key ul li .icon {
  background-color: var(--bg-color1);
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--light);
}
.project_details .key ul li span b {
  color: red;
  font-weight: 600;
}
.project_details .key ul li span {
  padding: 0px 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bg-color1);
}

.slider_section .project_form {
  width: 80%;
  background-color: var(--light);
  padding: 20px;
}
.slider_section .project_form .f_title {
  background-color: var(--bg-color1);
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: var(--light);
}
.slider_section .project_form .f_content {
  font-size: 16px;
  font-weight: 600;
  width: 90%;
  margin: 10px auto;
  line-height: 1.2;
  text-align: center;
  color: #000000e0;
  padding-bottom: 10px;
  border-bottom: 2px double var(--dark);
}

.slider_section .project_form form {
  padding: 0px 30px 10px 30px;
}
.slider_section .project_form form .form-control {
  height: 45px;
  border: 1px solid grey;
}
.project_form .mb-3 {
  position: relative;
}

.project_form .mb-3 i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bg-color1);
  font-size: 15px;
  z-index: 2;
}

.project_form .form-control {
  height: 50px;
  padding-left: 45px;
  border-radius: 8px;
  box-shadow: none;
}

.project_form select.form-control {
  padding-left: 15px;
}
/* Slider Section End */

/* Overview Section Start */

.overview {
  padding: 50px 0px;
  text-align: center;
}
.overview .content {
  margin-top: 30px;
}
.overview .content p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}
.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 Section End */

/* highlights Section Strat */

.highlights {
  background-color: #2F74742b;
  padding: 50px 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 .high_img {
  height: 450px;
  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/banner3.webp");
  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(--bg-color1);
  opacity: 0.6;
}
.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: 80px 0px;
  background-color: #e0e0e0;
}
.amenities .head_title .h3 {
  color: var(--bg-color1);
  font-weight: 800;
}
.amenities .head_title .h4 {
  font-weight: 600;
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 40px;
}
.amenities .am_slider {
  height: 650px;
  border-radius: 20px;
}
.amenities .card {
  border: 2px solid var(--bg-color1);
  background-color: var(--light);
  margin-bottom: 26px;
  border-radius: 0px;
}
.amenities .card .icon {
  text-align: center;
  height: 90px;
  width: 90px;
  margin: 10px auto 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenities .card .icon img {
  height: 60px;
}
.amenities .card .text {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 5px;
  color: var(--bg-color1);
}
.amenities .am_left {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenities .slider {
  max-width: 1100px;
  display: flex;
}
.amenities .slider .card {
  flex: 1;
  margin: 0 10px;
  background: #fff;
  padding: 10px;
  border-radius: 20px;
}
.amenities .slider .card .img {
  height: 300px;
  width: 100%;
}
.amenities .slider .card .img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.amenities .slider .card .content {
  padding: 10px 20px;
}
.amenities .card .content .title {
  font-size: 20px;
  font-weight: 600;
  color: var(--bg-color1);
}
.amenities .card .content .sub-title {
  font-size: 20px;
  font-weight: 600;
  color: #e74c3c;
  line-height: 20px;
}
.amenities .card .content p {
  text-align: justify;
  margin: 10px 0;
}
.amenities .card .content .btn {
  display: block;
  text-align: left;
  margin: 10px 0;
}
.amenities .card .content .btn button {
  background: #e74c3c;
  color: #fff;
  border: none;
  outline: none;
  font-size: 17px;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}
.amenities .card .content .btn button:hover {
  transform: scale(0.9);
}

/* Floorplan Section Start */

.floorplan {
  background-color: #d5dce2;
  padding: 60px 0px;
}
.header_section {
  text-align: center;
}
.header_section h2 {
  color: var(--bg-color1);
  font-weight: 800;
}
.header_section h5 {
  color: var(--dark);
  font-weight: 600;
}
.header_section .content {
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 60px;
}
.floorplan_bottom {
  height: 250px;
  margin-top: -250px;
  background-color: var(--bg-color1);
}
.floorplan .card {
  position: relative;
  overflow: hidden;
}

.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 */

/* 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: 100%;
  display: block;
  box-shadow: 0px 0px 10px #1e2f6e9d;
  border-radius: 10px;
  object-fit: cover;
}
.gallery .img1 {
  height: 250px;
}
.gallery .img2 {
  height: 400px;
}
.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_.webp");
  height: auto;
  width: 100%;
  padding: 60px 0px;
}
.location .location_map img {
  height: 500px;
  border: 2px solid var(--bg-color1);
  filter: blur(6px);
}
.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/img18.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100%;
  position: relative;
}
.hero_section::after {
  content: "";
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
  position: absolute;
  z-index: 2;
  background-color: var(--dark);
  opacity: 0.6;
}
.hero_section > * {
  position: relative;
  z-index: 3;
}
.hero_section .header_section {
  width: 100%;
  text-align: center;
  padding: 80px 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;
  text-transform: uppercase;
  line-height: 0;
  font-family: var(--font2);
  color: var(--light);
  font-weight: 600;
  margin: 10px 0px 30px 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: 40px 0px;
}
.contactus .header_section {
  text-align: center;
}

.contactus .c_details {
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactus .c_details .about_d {
  font-size: 30px;
  font-weight: 800;
  color: var(--bg-color1);
  text-align: left;
}
.contactus .content_d {
  width: 80%;
  text-align: left;
  line-height: 1.3;
  font-size: 18px;
  padding: 20px 0px;
}
.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 {
  border-top: 20px solid var(--bg-color1);
  padding: 40px;
  box-shadow: 0px 0px 10px #00000094;
}
.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: 26px;
  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: 45px;
  border: 1px solid var(--bg-color1);
  margin: 15px 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;
}

/* Contact Us Section End */

/* Footer Section Start */

footer {
  text-align: center;
  background-color: var(--bg-color1);
  padding: 60px 0px 40px 0px;
}
footer p {
  font-size: 14px;
  color: #ffffff9f;
}
footer p b {
  font-size: 14px;
  color: #ffffff;
}

/* Footer Section End */

/* Modal Section Start */

.modal .modal-body .card {
  margin: 0px auto;
  width: 100%;
  text-align: center;
  border: none;
  background-color: #16243e14;
}
.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: var(--bg-color1);
  font-weight: 600;
  margin: 10px 0px 30px 0px;
}
.modal .modal-body select,
.modal .modal-body input {
  height: 45px;
  border: none;
  border-radius: 0px;
  border-bottom: 2px solid var(--bg-color1);
}
.modal .modal-body input::placeholder {
  color: var(--bg-color1);
}

/* 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 img {
  height: 60px;
}
.modal .modal-header {
  background-color: var(--bg-color1);
  border-bottom: 0px;
  border-radius: 0px;
}
.modal .modal-title {
  color: var(--light);
}
.modal .card_details .card .card-body {
  padding-left: 10px;
}
