@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #d4bc60;
  --white: #fff;
  --gray: #666;
  --black: #333;
  --grey: #484a4c;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  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: 4% 0 3%;
}

.sec_heading {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  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(--grey);
  text-align: center;
  font-weight: 500;
  padding: 1rem 0 2rem;
}

.para {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  width: 80%;
  margin: 0 auto 5rem;
}

.sub_header {
  font-size: 1.4rem;
  color: var(--grey);
  margin: 2rem 0;
  text-align: center;
  font-weight: 600;
}

/* header */
header {
  width: 100%;
  padding: 0 8%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: var(--white);
  box-shadow: 0 0.5rem 1rem rgba(0 0 0/20%);
}

.nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav_items {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.nav_items li a {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  color: #333;
  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: 140px;
  height: auto;
  object-fit: cover;
}

/* banner */
.bann_icon i {
  font-size: 2.1rem;
  color: #666;
  margin-right: 1rem;
}

.bann_content {
  font-size: 1.5rem;
  color: #666;
}

.banner {
  padding: 2% 0;
}

/* overview */

.bg_clr {
  background-color: #ecdec5;
}


.overview_img {
  width: 100%;
  object-fit: cover;
}

.form_content input {
  width: 90%;
  outline: none;
  border: none;
  border-bottom: 1px solid #ccc;
  margin: 1rem auto;
  font-size: 1.5rem;
}

.form_content input.valid {
  margin-bottom: 3rem !important;
}

.form_content input:active,
.form_content input:focus {
  box-shadow: unset;
}

.form_btn {
  /* width: 100%; */
  width: auto;
  background-color: var(--grey);
  color: var(--white);
  font-size: 1.5rem;
  outline: none;
  border: none;
  /* padding: 0.8rem 3rem; */
  padding: 0.9rem 2rem;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 4px;
  /* margin: 1rem 0; */
  margin: 1rem auto;
  display: inline-block;
}

.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/conf-bg.webp);
  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(--grey) !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.5rem;
}

.table_cust tbody tr td {
  padding: 1.5rem;
}

/* 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.25rem;
  font-weight: 500;
  padding: 2rem 0;
}

.nav_link {
  color: var(--grey) !important;
  background-color: var(--white) !important;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: unset !important;
  padding: 0.5rem 3rem !important;
  text-transform: uppercase;
  border-right: 1px solid var(--primary-color) !important;
  transition: 0.4s;
}

.nav_link.active {
  background-color: var(--grey) !important;
  color: var(--white) !important;
}

.tab_content {
  margin: 4rem 0;
}

/* amenities */
.amenities {
  background-color: #f1f1f1;
}

/* location */

.location_adv {
  background-color: #ddd;
}

.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(--grey) !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.35rem;
  color: #333;
  font-weight: 500;
  padding-bottom: 1rem;
}

#about .about_para {
  font-size: 1.5rem;
  color: var(--grey);
  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: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.icon_box i {
  font-size: 2rem;
  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/contact-bg.webp); */
  background-size: cover;
  background-position: center;
  /* background: #fff; */
}

.contact-back {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px 80px;
  width: 100%;
  height: 100%;
  background-color: #273a56d4;
  /* /* background: #1c447f9e;  */
}

.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: var(--grey);
  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 !important;
}

.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: 2rem;
  color: #555;
  text-align: center;
  margin-bottom: 2rem;
}

.rera_div .rera_no {
  font-weight: 600;
  color: #444;
  font-size: 1.4rem;
}

.rera_details {
  margin-bottom: 3rem;
}

.disc {
  color: var(--primary-color);
  font-size: 1.4rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.8px;
  width: 70%;
  line-height: 1.8;
  margin: 0 auto 5rem;
}

.disc1 p {
  color: var(--grey);
  font-size: 18px;
  text-align: center;
  cursor: pointer;
}

.footer_logo {
  width: 10%;
  margin-bottom: 3rem;
}

.copy_text {
  color: var(--black);
  font-size: 1.5rem;
}

.gallery .nav_item .nav_link.border_none {
  border: none !important;
}

.fa {
  font-size: 4.5rem;
  color: var(--primary-color);
}

.high_right {
  position: absolute;
  top: 40%;
  right: -6rem;
}

.high_left {
  position: absolute;
  top: 40%;
  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: var(--grey);
  border-radius: 5px;
  color: var(--white);
  z-index: 999;
  font-size: 1.6rem;
  text-transform: capitalize;
  padding: 0.5rem 2rem;
  animation: glowing 1500ms infinite;
}

.btn_brochure {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  outline: none;
  border: 2px solid var(--white);
  background-color: var(--grey) !important;
  border-radius: 5px;
  color: var(--white);
  z-index: 999;
  font-size: 1.6rem;
  text-transform: capitalize;
  padding: 0.5rem 2rem;
  animation: glowing 1500ms infinite;
}

.policy_div p,
.policy_div ul li {
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1.5;
}
.policy_div ul li {
  list-style: disc;
}

@keyframes glowing {
  0% {
    background-color: #1c447f;
    box-shadow: 0 0 3px #1c447f;
  }

  50% {
    background-color: #1c447f;
    box-shadow: 0 0 40px #1c447f;
  }

  100% {
    background-color: #1c447f;
    box-shadow: 0 0 3px #1c447f;
  }
}

.sub_btn {
  font-size: 15px;
  color: #fff;
  background-color: #a77323 !important;
  border: 1px solid #a77323;
  width: fit-content;
  padding: 10px 40px;
}

/* modal */
.modal_head {
  background-color: var(--grey);
  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.25rem;
  color: #333;
  margin: 0 0 2rem;
  font-weight: 600;
}

.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;
  color: var(--primary-color);
}

.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: 10px 2%;
  }

  .left_logo {
    width: 100px;
  }

  .right_logo {
    width: 88px;
  }

  .nav_items li a {
    font-size: 1.2rem;
  }

  .nav_items {
    gap: 1.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: #333;
    border-radius: 5px;
  }

  .nav_items {
    position: fixed;
    top: 8%;
    border-top: 1px solid #ddd;
    left: 0;
    background-color: #fff;
    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) {
  section {
    padding: 5rem 0rem;
  }

  .footer_logo {
    width: 35%;
  }

  .banner {
    padding: 4% 3%;
  }

  .nav_items {
    position: fixed;
    top: 5%;
  }

  .left_logo {
    width: 90px;
  }

  .right_logo {
    width: 120px;
  }

  .nav_link {
    padding: 0.5rem 1rem !important;
    margin-bottom: 2rem;
  }

  .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;
  }

  .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;
  }

  .for_mobile_device .line {
    color: #fff;
    font-size: 3rem;
  }

  .icon {
    color: var(--white);
    font-size: 1.9rem;
  }

  .high_right {
    position: absolute;
    top: 31%;
    right: 0;
  }

  .high_left {
    position: absolute;
    top: 31%;
    left: 0;
  }

  .contact-back {
    padding: 40px 50px;
  }

  .about .about_box {
    border: unset;
  }
}

@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: 83px;
  height: auto;
}

.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;
  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.webp), auto !important;
}

#location {
  background: url(../images/loc-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: unset;
  background-attachment: fixed;

}

#location .overlay-location {
  background-color: #00000069;
  padding: 4rem 0rem;
}

#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;
}

#location .sec_heading:after {
  background-color: var(--white);
}

.video-container {
  position: relative;
}

.video-container .video-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  cursor: pointer;
}

.price-btn {
  /* padding: 10px 20px; */
  background-color: var(--grey);
  color: #fff;
}

.price-btn:hover {
  color: #fff;
}

.title-wrapper .title {
  text-align: center;
  color: #1c447f;
}

#why-purva .icons img {
  width: 100px;
}

#why-purva .icon-info {
  font-size: 16px;
  padding: 20px 30px;
  background-color: #484a4c;
  color: #fff;
}

/* shake button */



.shake-button {
  animation: horizontal-shaking 0.5s ease-in-out infinite;
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(5px)
  }

  50% {
    transform: translateX(-5px)
  }

  75% {
    transform: translateX(5px)
  }

  100% {
    transform: translateX(0)
  }
}



/* media query for button configuration */


.price-btn {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  /* font-size: 16px; */
  /* margin: 10px 0;  */
  border-radius: 5px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  */

  color: white;
  /* border: none;  */
  /* text-decoration: none;  */
}

.price-btn:hover {
  text-decoration: none;

}

/* For smaller screens */
@media (max-width: 768px) {
  .price-btn {
    display: block;
    width: 100%;
    font-size: 14px;
  }
}

/* mobile nav bottom veritcal changes*/


.table_cust tbody td {

  vertical-align: middle;
  /* Center-align text vertically */
}


/* ***************Banner Form css starts********** */
input.form-control {
  font-size: 1.5rem;
  font-weight: 600;
  border: 1px solid var(--grey);
  margin: unset !important;
}

input.form-control::placeholder {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.num-text {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}

.form-padd {
  padding: 3rem 0rem;
}

.form_header {
  color: var(--grey);
  /* 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(17 17 26 / 0%) 0px 1px 0px, rgb(17 17 26 / 44%) 0px 8px 24px, rgb(17 17 26 / 38%) 0px 16px 48px;
  background: #fff;
  border-radius: 16px;
}

.thank_wrap {
  background-color: #3e3e3e17;
  backdrop-filter: blur(10px);
  padding: 20px;
  margin: 10% 0;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
  border: 1px solid #dadada;
}

.check_sign {
  background: #fff;
  padding: 20px;
  height: 100px;
  width: 100px;
  border: 3px solid #fff;
  border-radius: 50%;
  margin: 0 auto;
}

.check_sign i {
  font-size: 55px;
  color: #003e36;
}

.section-title h2 {
  font-family: "NeutraText-Book";
  font-weight: 500;
  font-size: 25px;
  color: #003e36;
}

.section-title h2 span {
  font-family: "NeutraText-Book";
  color: #003e36;
}

.oops-greet,
.oops-subtitle {
  font-family: "NeutraText-Book";
  font-size: 22px;
  color: #003e36;
}

.go_txt {
  font-family: "NeutraText-Book";
  font-size: 15px;
  color: #003e36;
  background-color: transparent !important;
  border-radius: 15px;
  border: 1px solid #003e36;
  width: fit-content;
  padding: 10px 20px;
  margin: 15px auto 0;
}

.go_txt i {
  font-size: 18px;
}


@media screen and (max-width: 767px) {
  .form_content {
    width: 95%;
    margin: auto;
  }
}

/* ***************Banner Form css ends********** */