@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: #2A4023;
  --bg-color2: #2A4023af;
  --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 */

/* 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: 0px;
  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: 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;
}

/* 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, #00000046, #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: 44px;
  font-weight: 800;
  letter-spacing: 1px;
}
.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,
    #2A402300,
    #2A4023ae,
    #2A4023e4,
    #2A4023
  );
  width: fit-content;
  margin: 20px 0px;
  padding: 5px 0px;
}
.slider_content .p_price .content .sp {
  font-size: 28px;
  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: 34px;
}
@keyframes rotateIcon {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.slider_content .p_price .sp {
  font-size: 26px;
  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;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}
.slider_form {
  background-color: #ffffff22;
  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 #ffffff;
  border-radius: 0px;
}
.slider_form textarea{
     border: none;
     border-radius: 0px;
    background-color: transparent !important;
     border-bottom: 2px solid #ffffff;
}
.slider_form input::placeholder,
.slider_form textarea::placeholder{
    color: #ffffff;
}

.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;
}

.details_slider img {
  width: 100%;
}

/* 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: #2A40232b;
  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: 60px 0px;
}
.amenities .header_section h2 {
  color: var(--bg-color1);
  font-weight: 800;
}
.amenities .header_section h5 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 40px;
}
.amenities .am_slider {
  height: 650px;
  border-radius: 20px;
}
.amenities .card {
  border: 2px solid var(--bg-color1);
  background-color: var(--light);
  height: 150px;
  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);
}

/* 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);
}
.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(--bg-color1);
  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: 26px;
  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;
}
.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;
}

/* 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 textarea,
.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: 70px;
}
.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;
}