:root {
  --orange: #4490D3;
  --golden: #4490D3;
  --red: #b5072c;
  --green: #606c38;
  --dark_green: #283618;
  --light_golden: #4490d317;
  --light_green: #f8fff0;
  --light_black: #424242;
  --dark_brown: #4490D3;
  --oswald-font: "Oswald", sans-serif;
  --roboto-font: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--oswald-font);
}

body {
  /* font-family: 'Oswald', sans-serif; */
  font-family: var(--roboto-font);
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 26px;
}

a {
  font-family: var(--roboto-font);
}

.py_100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mx_-10 {
  margin-left: -10px;
  margin-right: -10px;
}
.mx_-30 {
  margin-left: -30px;
  margin-right: -30px;
}
.mx_-40 {
  margin-left: -40px;
  margin-right: -40px;
}
.px_10 {
  padding-left: 10px;
  padding-right: 10px;
}
.px_30 {
  padding-left: 30px;
  padding-right: 30px;
}
.px_40 {
  padding-left: 40px;
  padding-right: 40px;
}

p {
  font-size: 16px;
}
a {
  text-decoration: none !important;
}

.btn {
  border-radius: 0;
  height: 48px;
  box-shadow: none !important;
  outline: none !important;
}
.btn_outline {
  border: 1px solid #ddd;
  background: transparent;
  color: #222;
  padding: 8px 34px;
  letter-spacing: 1px;
  font-size: 14px;
  text-transform: uppercase;
}
.btn_dark {
  background: #e3a719;
  color: #000 !important;
  padding: 2px 35px;
  font-weight: 500;
}
.btn_light {
  background: #fff;
  color: #bca676 !important;
  padding: 2px 35px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 15px;
}
.form-control {
  border-radius: 0;
  min-height: 42px;
  box-shadow: none !important;
}
.form-control::placeholder {
  font-size: 13px;
  letter-spacing: 0.3px;
}

.section_heading {
  position: relative;
  margin: 0;
  padding-bottom: 25px;
  margin-bottom: 60px;
}
.section_heading .section_title {
  font-size: 40px;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #044a71;
}
.section_heading .section_title span {
  display: block;
}
.section_heading .sec_sub_heading {
  margin: 0;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #3a3a3a;
  font-size: 18px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.section_heading.white .section_title {
  color: #044a71;
}
.section_heading.white .sec_sub_heading {
  color: #000;
}
.section_heading:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 40px;
  left: 0;
  bottom: 0;
  background: #bca676;
  display: block;
}
.section_heading.center {
  display: table;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section_heading.center .section_title {
  text-align: center;
}
.section_heading.center:before {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.section_heading.white:before {
  background: #fff;
}

/* header */
.navbar {
  padding: 5px 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  height: 90px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
}
.navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0 0 0 / 7%);
}
.navbar .navbar-brand {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
/* .navbar .builder_logo{margin-right:30px;} */
/* .navbar .builder_logo img{max-width: 120px;} */
.navbar .project_logo {
  margin-left: 30px;
  position: relative;
}
.navbar .project_logo:before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  background: #d1d1d1;
  width: 1px;
  left: -15px;
}
.navbar .navbar-toggler {
  padding: 0;
}
.navbar .hamburger {
  width: 35px;
  outline: none;
  box-shadow: none;
}
.navbar .navbar-collapse {
  justify-content: flex-end;
}
.navbar .navbar-nav .nav-item {
  display: flex;
  align-items: center;
}
.navbar .navbar-nav .nav-item:not(:last-child) {
  margin-right: 20px;
}
.navbar .navbar-nav .nav-link {
  color: #000;
  padding: 2px 5px;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 400;
  font-family: var(--roboto-font);
}
.navbar .navbar-nav .nav-item:last-child .nav-link {
  border: 1px solid #ddd;
  padding: 5px 20px;
}
.navbar .navbar-nav .nav-item.active .nav-link {
  background: #bca676;
  color: #fff;
}

.navbar .hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #004085;
  display: block;
  margin: 6px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.navbar .hamburger:hover {
  cursor: pointer;
}
.navbar .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.is-active .line:first-child {
  -webkit-transform: translateY(7px) rotate(42deg);
  -ms-transform: translateY(7px) rotate(42deg);
  -o-transform: translateY(7px) rotate(42deg);
  transform: translateY(7px) rotate(42deg);
}
.navbar .hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-48deg);
  -ms-transform: translateY(-10px) rotate(-48deg);
  -o-transform: translateY(-10px) rotate(-48deg);
  transform: translateY(-10px) rotate(-48deg);
}

/* hero section */

.hero_section {
  position: relative;
  background: #b6d3904d;
  padding: 110px 0 0;
}
.hero_section .name_col {
}
.hero_section .top_row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero_section .top_row .right_col {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
}
/* .hero_section:before{position: absolute; content: ''; height: 100%; width: 100%; background: #e92650; top: 0; right: 0; clip-path: polygon(0 0, 50% 0, 20% 100%, 0 100%)} */
.hero_section .project_logo {
  margin-bottom: 15px;
}
.hero_section .project_logo img {
  max-width: 200px;
}
.hero_section .projectName {
  font-weight: 600;
  font-size: 42px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #000;
}
.hero_section .location {
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0;
  color: #2e2e2e;
  font-weight: 400;
}
.hero_section .location img {
  max-width: 22px;
}
.hero_section .typology {
  margin: 20px 0 0;
  font-family: var(--roboto-font);
  color: #bca676;
}
.hero_section .typology span.title {
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #ffffff;
  background: linear-gradient(139deg, #bca676 -20%, #bca676 35%, #bca676 150%);
  width: fit-content;
  padding: 7px 10px;
  line-height: initial;
  margin-bottom: 5px;
}
.hero_section .typology span.text {
  background: #6da721;
  display: block;
  color: #fff;
  padding: 10px 20px;
  font-size: 22px;
  letter-spacing: 1px;
}
/* .hero_section .container{max-width: 90%; margin-right:0;} */
/* .hero_section .logo_line{max-width: 60px; margin-top: 20px;} */
.hero_section .price {
  margin: 0;
  border: 1px solid rgb(217 217 217);
  width: fit-content;
  padding: 10px 10px;
  margin-top: 10px;
  position: relative;
  background: #bca676;
  color: #fff;
  font-size: 22px;
  letter-spacing: 1.5px;
  font-weight: 400;
  background: linear-gradient(139deg, #e3a719  -20%, #e3a719  35%, #e3a719  150%);
}
/* .hero_section .price:before {
  position: absolute;
  content: "";
  height: 80px;
  width: 2px;
  background: #cfbbac;
  bottom: calc(100% + 10px);
  left: 30px;
} */

.hero_section .price span {
  display: block;
  font-size: 27px;
  color: #000;
  font-weight: 700;
  line-height: 60px;
}
/* .hero_section .left_col{position:unset; max-width:35%; flex:0 0 35%; position:unset; padding: 30px 70px 30px 0; display: flex; align-items: center;}     */
.hero_section .carousel_left_col {
  max-width: 22%;
  flex: 0 0 22%;
  padding: 60px 25px 0 15px;
}
.hero_section .carousel_col {
  position: unset;
  max-width: calc(78% - 350px);
  flex: 0 0 calc(78% - 350px);
  color: #fff;
  padding: 0;
}
/* .hero_section .carousel_col .carousel_row{display:flex;} */
.hero_section #hero_carousel,
.hero_section #hero_carousel div {
  height: 100%;
}
.hero_section .carousel-indicators li {
  margin: 0 5px;
  height: 3px;
  background: transparent;
  border: 2px solid #fff;
  width: 20px;
  opacity: 0.4;
}
.hero_section .carousel-indicators li.active {
  opacity: 1;
  background: #e3a719;
  border-color: #e3a719;
}
.hero_section .form_col {
  max-width: 350px;
  flex: 0 0 350px;
  padding: 0 15px;
}
.hero_section .form_col .form {
  background: #044a71;
  color: #fff;
  padding: 40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero_section .form_col .title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 38px;
  margin-bottom: 30px;
}
.hero_section .form_col .title span {
  display: block;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: 300;
  line-height: initial;
  text-transform: uppercase;
}
.hero_section .form_col .form label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #f5f5f5;
  line-height: initial;
}
.hero_section .form_col .btn[type="submit"] {
  width: 100%;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
}
/* #hero_carousel{height:calc(100vh - 410px)} */
#hero_carousel div {
  height: 100%;
}
#hero_carousel .carousel-item img {
  height: 100%;
  object-fit: cover;
}

.hero_section .main_highlights {
  margin-top: 40px;
}
.hero_section .main_highlights .title {
  position: relative;
  margin: 0;
  z-index: 1;
  padding: 10px 0;
}
.hero_section .main_highlights .title:before {
  position: absolute;
  content: "";
  height: 100%;
  width: calc(100% + 500px);
  top: 0;
  right: 0;
  background: #e9e9e9;
  z-index: -1;
}
.hero_section .main_highlights ul {
  margin: 20px 0 30px;
  padding-left: 0px;
  list-style-type: none;
}
.hero_section .main_highlights li {
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.hero_section .main_highlights li .icon {
  height: 20px;
  width: 20px;
  background: #bca676;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.hero_section .main_highlights .icon img {
  width: 10px;
  height: 10px;
}
.hero_section .main_highlights .text {
  width: calc(100% - 20px);
  padding-left: 8px;
}

.hero_section .bottom_options {
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
}
.hero_section .bottom_options .contents {
  /*display: flex; align-items: center; height: 100px;*/
  width: 90%;
  margin: auto;
  justify-content: flex-end;
}
/* .hero_section .call_no{width: calc(20% - 0px); }   */
.hero_section .call_no a {
  color: #000;
  display: flex;
  align-items: center;
}
.hero_section .call_no a span {
  display: block;
}
.hero_section .call_no .left {
  border: 1px solid #ddd;
  border-radius: 50%;
  height: 64px;
  width: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -30px;
  background: #bca676;
  z-index: 0;
  border: 5px solid #fff7e8;
}
.hero_section .call_no .icon {
  width: 22px;
  height: 22px;
  filter: invert(1);
}
.hero_section .call_no .right {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  line-height: 22px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: #ffffff;
  padding: 8px 15px 8px 40px;
  background: linear-gradient(82deg, #9d6c29, #bf9c44, #9d6c29);
  background: var(--light_black);
}
.hero_section .call_no .right span {
  font-size: 22px;
  letter-spacing: 0.5px;
  margin: 0;
  display: block;
  text-transform: capitalize;
  line-height: 40px;
  color: #bca676;
  color: #ffffff;
  line-height: inherit;
  margin-top: 2px;
}
.hero_section .pr_status {
  font-size: 14px;
  width: 100%;
  margin-right: 20px;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 22px;
  margin-bottom: 0;
  border: 1px solid #d7d7d7;
  padding: 6px 20px;
  font-family: var(--roboto-font);
  text-align: center;
}
.hero_section .pr_status span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
  display: block;
  text-transform: capitalize;
  line-height: initial;
}
.hero_section .call_no {
  display: flex;
  align-items: flex-end;
}

/* overview_section  */

.overview_section {
  padding: 120px 0; /*background:var(--light_golden);*/
}
.overview_section .row {
  height: calc(50% - 15px);
}
.overview_section .section_heading {
  margin-bottom: 50px;
}
.overview_section .content_col .btn_dark {
  margin-top: 20px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
}
/* .overview_section .ov_row{display:flex;} */
.overview_section .top_row .other_col {
  max-width: 30%;
  flex: 0 0 30%;
}
.overview_section .top_row .other_col .pattern {
  width: 100%;
  height: 100%;
  background: url("../img/line-pattern.png");
  background-size: auto;
  background-repeat: repeat;
  filter: invert(1);
  opacity: 0.3;
}
.overview_section .top_row .image_col {
  max-width: 70%;
  flex: 0 0 70%;
}
.overview_section .bottom_row {
  margin-top: 30px;
}
.overview_section .bottom_row .image_col {
  max-width: 60%;
  flex: 0 0 60%;
}
.overview_section .bottom_row .other_col {
  max-width: 40%;
  flex: 0 0 40%;
}
.overview_section .bottom_row .other {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  border: 10px solid #bca676;
}
.overview_section .bottom_row h4 {
  margin: 0;
  background: #fff;
  margin-left: -10px;
  padding: 10px 0;
  font-size: 40px;
}
.overview_section .bottom_row h4 span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #686868;
  margin-top: 6px;
}
.overview_section .image_col img {
  height: 100%;
  object-fit: cover;
}
.overview_section p {
  text-align: justify;
  font-size: 16px;
  line-height: 24px;
}

/* highlight_section */

.amenities_section {
  padding: 120px 0;
  background: url("../images/a1.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
}
.amenities_section::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #b6d3904d;
}
.amenities_section .row {
  max-width: 70%;
  margin-left: -7px;
  margin-right: -7px;
}
.amenities_section .single_col {
  margin: 5px 0;
}
.amenities_section .single {
  padding: 25px;
  background: rgb(4 74 113 / 100%);
  color: #fff;
  height: 100%;
  margin: 0 5px;
}
.amenities_section .single .icon {
  height: 40px;
  width: 40px;
  object-fit: contain;
  filter: invert(1);
}
.amenities_section .single .title {
  margin: 20px 0 0;
  text-align: center;
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 1.5px; /*font-family: var(--roboto-fonts);*/
}
.amenities_section .single p {
  margin: 0;
  margin-top: 10px;
  line-height: 20px;
  font-size: 15px;
}
.amenities_section .single.light {
  background: #e9e9e9;
}
.amenities_section .single.dark {
  background: var(--dark_green);
  color: #fff;
}
.amenities_section .single.dark .icon {
  filter: invert(1);
}
.amenities_section .single.dark .title {
  color: var(--orange);
}

/* price_section */

.price_section {
  padding: 120px 0;
}
.price_section .table {
  text-align: center;
  font-family: "Oswald", sans-serif;
}
.price_section .table thead {
  background: #044a71;
  color: #fff;
}
.price_section .table th {
  line-height: 100px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.price_section .table th,
.price_section .table td {
  border: 3px solid #fff;
  vertical-align: middle;
}
.price_section .table td {
  background: #e9f2dd;
  letter-spacing: 0.5px;
  font-family: var(--roboto-font);
  font-size: 16px;
}
.price_section .table .btn {
  font-weight: 400;
  letter-spacing: 1.2px;
  font-size: 15px;
}

/* highlights_section */

.highlights_section {
  background: #b6d3904d;
  position: relative;
}
.highlights_section .left_col {
  padding: 100px 50px 100px 0;
}
.highlights_section .points {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.highlights_section .points li {
  max-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
  line-height: 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.highlights_section .points .icon {
  height: 26px;
  width: 26px;
  background: #044a71;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.highlights_section .points .icon img {
  height: 14px;
  width: 14px;
}
.highlights_section .points .text {
  width: calc(100% - 30px);
  padding-left: 10px;
}
.highlights_section .right_col {
  position: unset;
  padding: 0;
}
.highlights_section .right_col .thumbnail {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  object-fit: cover;
}

.play_btn {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}
.play_btn .waves-block {
  position: relative;
  width: 150px;
  height: 150px;
}
.play_btn .icon {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  background: url("../img/play-white.png") no-repeat center center;
  background-color: #bca676;
  background-size: 16px;
  border-radius: 50%;
}

.highlights_section .waves {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(200 144 44 / 30%);
  opacity: 0;
  border-radius: 100%;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
.highlights_section .wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.highlights_section .wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.highlights_section .wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
  }
  50% {
    opacity: 0.9;
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
  }
}

/* floor plan section */

.floor_plan_section {
  padding: 100px 0;
}
.floor_plan_section .full_container {
  max-width: 100%;
}
.floor_plan_section .title {
  text-transform: uppercase;
  color: #bca676;
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 400;
}
.floor_plan_section .sale-area {
  font-weight: 400;
  font-size: 16px;
  font-family: var(--roboto-font);
}
.floor_plan_section .table_heading {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 15px;
}
.floor_plan_section table {
  font-family: var(--roboto-font);
}
.floor_plan_section table td {
  line-height: 20px;
  font-size: 13px;
  padding: 5px;
}
.floor_plan_section table td:last-child {
  text-align: right;
}
.floor_plan_section .right_col .bg {
  background: #efefef;
  height: 100%;
  width: 100%;
  padding: 5px;
  outline: 1px solid rgba(0 0 0 / 6%);
  outline-offset: 10px;
  cursor: zoom-in;
}
.floor_plan_section .plan_image {
  height: 100%;
  width: 100%;
  position: relative;
}
.floor_plan_section .plan_image a {
  cursor: zoom-in;
}
/* .floor_plan_section .plan_image img{position:absolute; left:0; top:0; height:100%; width:100%; object-fit: contain;} */
.floor_plan_section .nav-tabs {
  display: flex;
  margin-bottom: 60px;
  background: #f8f8f8;
  border: none;
  margin-bottom: 60px;
}
.floor_plan_section .nav-tabs .nav-item {
  flex-grow: 1;
}
.floor_plan_section .nav-tabs .nav-link {
  border: none;
  width: 100%;
  margin: 0;
  text-align: left;
  height: 65px;
  text-transform: uppercase;
  font-family: var(--oswald-font);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.5px;
  padding: 5px 20px;
  border-right: 2px solid #fff;
  border-radius: 0;
  color: #555;
  text-align: center;
  position: relative;
}
.floor_plan_section .nav-tabs .nav-link:before {
  position: absolute;
  content: "";
  height: 8px;
  width: 16px;
  background: transparent;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.floor_plan_section .nav-tabs .nav-link .count {
  opacity: 0.2;
  margin-right: 10px;
  font-size: 30px;
}
.floor_plan_section .nav-tabs .nav-link.active {
  background: #bca676;
  color: #fff;
}
.floor_plan_section .nav-tabs .nav-link.active:before {
  background: #bca676;
}

/* location advantage */

.location_advantage_section {
  background: #b6d3904d;
  position: relative;
}
.location_advantage_section .section_heading {
  margin-bottom: 30px;
}
.location_advantage_section .left_col {
  position: unset;
  padding: 0;
}
.location_advantage_section .left_col .thumbnail {
  position: absolute;
  content: "";
  left: 0;
  height: 100%;
  width: 50%;
  cursor: zoom-in;
}
.location_advantage_section .thumbnail img {
  height: 100%;
  object-fit: cover;
}
.location_advantage_section .points {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.location_advantage_section .points li {
  max-width: 100%;
  flex: 0 0 100%;
  line-height: 20px;
  font-size: 15px;
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.location_advantage_section .points .icon {
  height: 26px;
  width: 26px;
  background: #044a71;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.location_advantage_section .points .icon img {
  height: 14px;
  width: 14px;
}
.location_advantage_section .points .text {
  width: calc(100% - 30px);
  padding-left: 10px;
}
.location_advantage_section .right_col {
  padding: 80px 0px 80px 80px;
}

.location_advantage_section .other_points {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 30px;
}
.location_advantage_section .other_points li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0 0 0 / 10%);
}
.location_advantage_section .other_points .icon {
  margin-right: 20px;
}
.location_advantage_section .other_points .icon img {
  height: 35px;
  width: 35px;
  object-fit: contain;
}
.location_advantage_section .other_points .count {
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
}

/* gallery section */

.gallery_section {
  padding: 100px 0;
}
.gallery_section .full_container {
  max-width: 100%;
}
.gallery_section .single_col {
  margin: 10px 0;
}
.hover_effect .single_col {
  overflow: hidden;
}
/* .hover_effect .single_col .single:after, */
/* .hover_effect .single_col .single:before{position: absolute; content: ''; opacity: 0; -webkit-transition: opacity .35s, -webkit-transform .35s; transition: opacity .35s, transform .35s; z-index: 1;} */
/* .hover_effect .single_col .single:after{top: 30px; right: 50px; bottom: 30px; left: 50px; border-right: 1px solid #fff; border-left: 1px solid #fff; -webkit-transform: scale(1, 0); transform: scale(1, 0); -webkit-transform-origin: 100% 0; transform-origin: 100% 0;} */
.hover_effect .single_col img {
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
}
.hover_effect .single_col:hover img {
  opacity: 0.7;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0) scale(1.1, 1.1);
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.hover_effect .single_col .single a {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.hover_effect .single_col .single a:before {
  position: absolute;
  content: "";
  background: #4490D3 url("../img/zoom-light.png") no-repeat
    center;
  height: 40px;
  width: 40px;
  background-size: contain;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-size: 20px;
  opacity: 0;
  transition: all 0.3s;
}
.hover_effect .single_col:hover a:before {
  opacity: 1;
  transition: all 0.2s;
}
.hover_effect .single_col .name {
  margin: 0px 0 10px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
/*.hover_effect .single_col:hover .single:before{opacity: 1; -webkit-transform: scale(1); transform: scale(1);}
.hover_effect .single_col:hover .single:after{-webkit-transition-delay: .15s; transition-delay: .15s} */

/* appointment_section */

.appointment_section {
  padding: 100px 0;
  background: #bca676;
  position: relative;
}
.appointment_section:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-image: url(../img/call_bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.1;
  content: "";
}
.appointment_section .section_heading {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.appointment_section .section_heading:before {
  display: none;
}
.appointment_section .call_no {
  color: #fff;
  font-size: 50px;
  display: table;
  margin: auto;
  font-weight: 400;
  line-height: initial;
  font-family: var(--roboto-font);
  letter-spacing: 1px;
  position: relative;
}
.appointment_section .call_no:before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  bottom: 5px;
}

/* footer */

footer {
  padding: 10px 0 50px;
  background: #fff;
  color: #044a71;
}
footer p {
  font-size: 15px;
  line-height: 24px;
  text-align: justify;
}
footer .title {
  color: #044a71;
  margin-bottom: 30px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
footer .other_details {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-top: 30px;
}
footer .other_details li {
  display: flex;
  margin: 5px 0;
}
footer .other_details label,
footer .other_details p {
  margin: 0;
}
footer .other_details label {
  color: #b5b5b5;
  font-size: 14px;
  text-transform: uppercase;
  width: 125px;
  flex: 0 0 125px;
}
footer .other_details a {
  color: #fff;
}
footer .form-control::placeholder {
  color: #b5b5b5;
  font-size: 13px;
  letter-spacing: 1px;
}
footer .form-control {
  background: transparent !important;
  border-color: #4490D3 !important;
  border-width: 2px;
  color: #fff !important;
  min-height: 46px;
}
footer button[type="submit"] {
  width: 100%;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: 10px;
}
/* footer .copyright{text-align: center;} */
footer .copyright {
  margin-top: 60px;
}
footer .copyright b{
  color: white;
  font-size: 12px;
}
footer .copyright p {
  margin: 0;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #cdcdcd;
}
footer .copyright p span {
  color: var(--orange);
}
footer .copyright a {
  color: #fff;
  letter-spacing: 1px;
}

@media (max-width:500px){
  footer .copyright p {
    font-size: 10px;
  }
}
.mobile-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: #044a71;
  box-shadow: 0 -1px 15px rgb(0 0 0 / 7%);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
.mobile-section.show {
  opacity: 1;
  visibility: visible;
}
.mobile-section .btn {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
  font-weight: 500;
  flex-grow: 1;
  padding: 0;
  height: auto;
  color: #fff;
}
.mobile-section .btn .icon_bg {
  height: 35px;
  width: 35px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e3a719;
  border-radius: 50%;
  margin-top: -10px;
  margin-bottom: 2px;
  -webkit-box-shadow: 0 -1px 15px rgb(0 0 0 / 7%);
  -moz-box-shadow: 0 -1px 15px rgb(0 0 0 / 7%);
  box-shadow: 0 -1px 15px rgb(0 0 0 / 7%);
}
.mobile-section .icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.modal .modal-body {
  padding: 45px;
  position: relative;
}
.modal .projectName {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}
.modal .projectName img {
  max-width:100%;
}
.modal .location {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-family: var(--roboto-font);
  margin: 15px 0 0;
}
.modal .form_price {
  margin: 20px auto 25px;
  text-align: center;
  width: max-content;
  background: #bca676;
  color: #fff;
  padding: 12px 30px;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  width: 100%;
}
.modal .modal-body .close {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  height: 45px;
  width: 45px;
  background: #000;
  color: #fff;
  text-shadow: none;
  opacity: 0.8;
}
.modal label {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
}
.modal .form-control {
  height: 46px;
}
.modal .form-group {
  margin-bottom: 10px;
}
.modal .btn[type="submit"] {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 12px;
  font-size: 14px;
  min-height: 44px;
  margin: 10px auto 0;
  width: 100%;
}

.video_modal .modal-body {
  padding: 0 !important;
}
.video_modal .modal-body iframe {
  width: 100%;
  display: block;
  height: 420px;
  object-fit: contain;
}

/* start responsive */

/* @media(min-width: 1200px){
} */

@media (min-width: 1501px) and (max-width: 1920px) {
  .navbar .container {
    max-width: 95%;
    margin: auto;
  }
  .hero_section .container {
    max-width: 95%;
  }
  .other_container {
    max-width: 80%;
  }
}

@media (min-width: 1200px) and (max-width: 1500px) {
  .navbar .container,
  .hero_section .container {
    max-width: 95%;
    margin: auto;
  }
  .other_container {
    max-width: 90%;
  }
}

@media (max-width: 1700px) {
  .navbar {
    height: 75px;
  }
  .hero_section {
    padding: 90px 0 0;
  }
  .navbar .navbar-brand img {
    max-width: 105px;
    max-height: 95px;
  }
  .hero_section .projectName {
    font-size: 54px;
    margin-bottom: 5px;
  }
  .hero_section .location {
    font-size: 16px;
  }
  .hero_section .location img {
    max-width: 18px;
  }
  .hero_section .top_row {
    margin-bottom: 10px;
  }
  .hero_section .typology {
    margin: 10px 0 0;
  }
  .hero_section .typology span.title {
    font-size: 14px;
  }
  .hero_section .typology span.text {
    font-size: 20px;
  }
  .hero_section .price {
    margin-top: 20px;
    padding: 8px 20px;
    font-size: 18px;
  }
  .hero_section .price span {
    font-size: 36px;
    line-height: 50px;
  }
  .hero_section .price:before {
    display: none;
  }
  .hero_section .main_highlights {
    margin-top: 30px;
  }
  .hero_section .main_highlights .title {
    font-size: 20px;
  }
  .hero_section .form_col .form {
    padding: 25px;
  }
  .hero_section .form_col .title {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .hero_section .form-group {
    margin-bottom: 5px;
  }
  .hero_section .form_col .form-control {
    min-height: 40px;
  }
  .hero_section .form_col .form label {
    margin-bottom: 5px;
    font-size: 13px;
  }
  .hero_section .call_no .right span {
    font-size: 20px;
  }
  .hero_section .pr_status {
    line-height: 18px;
  }
  .hero_section .call_no .right {
    line-height: 20px;
    padding: 6px 15px 6px 40px;
  }
}

@media (max-width: 1400px) {
  .navbar .navbar-brand img {
    max-width: 105px;
    max-height: 85px;
  }
  .hero_section .location {
    font-size: 14px;
  }
  .overview_section,
  .amenities_section,
  .price_section {
    padding: 80px 0;
  }
  .highlights_section .left_col {
    padding: 80px 50px 80px 0;
  }

  /* hero section */
  .hero_section .projectName {
    font-size: 46px;
  }
  .hero_section .typology span.text {
    font-size: 18px;
    padding: 8px 10px;
  }
  .hero_section .price span {
    font-size: 32px;
    line-height: 40px;
  }
  .hero_section .form_col .form {
    padding: 20px 25px;
  }
  .hero_section .main_highlights li {
    margin: 3px 0;
  }
  .hero_section .pr_status {
    font-size: 13px;
    margin-right: 20px;
    line-height: 16px;
  }
  .hero_section .pr_status span,
  .hero_section .call_no .right span {
    font-size: 12px;
  }
  .hero_section .call_no .right {
    font-size: 11px;
    line-height: 18px;
  }
  .hero_section .call_no .left {
    height: 52px;
    width: 52px;
  }
  .hero_section .call_no .icon {
    width: 18px;
    height: 18px;
  }
  .hero_section .form_col .title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  .hero_section .form_col .title span {
    display: none;
  }

  .modal .modal-body {
    padding: 30px;
  }
}

@media (max-width: 1300px) {
  .section_heading .section_title {
    font-size: 40px;
    line-height: 50px;
  }
  .navbar .navbar-brand img {
    max-width: 100px;
  }
  .navbar .navbar-nav .nav-item:not(:last-child) {
    margin-right: 15px;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 14px;
  }

  /* amenities */
  .amenities_section .row {
    max-width: 100%;
    margin: 0;
  }

  /* location advantage */
  .location_advantage_section .right_col {
    padding: 80px 0px 80px 50px;
  }
}

@media (max-width: 1199px) {
  .navbar .project_logo {
    margin-left: 20px;
  }
  .navbar .project_logo:before {
    left: -10px;
  }
  .navbar .navbar-brand img {
    max-width: 95px;
  }
  .navbar .navbar-nav .nav-item:not(:last-child) {
    margin-right: 3px;
  }

  /* highlight section */
  .highlights_section .section_title span {
    display: inline-block;
  }

  /* appointment_section */
  .appointment_section .call_no {
    font-size: 40px;
  }
  .hero_section .carousel_left_col {
    max-width: 50%;
    flex: 0 0 50%;
  }
  .hero_section .carousel_col {
    max-width: 50%;
    flex: 0 0 50%;
    padding-right: 15px;
  }
  .hero_section .top_row {
    margin-bottom: 20px;
  }
  .hero_section .form_col {
    max-width: 100%;
    flex: 0 0 100%;
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .d_md_block {
    display: block !important;
  }
  .navbar {
    height: auto;
    padding: 10px 0;
  }
  .navbar .navbar-brand img {
    max-width: 205px;
  }
  .navbar .navbar-collapse {
    background: #fff;
    padding: 0px;
    margin-top: 15px;
  }
  .navbar .navbar-nav {
    padding: 15px 25px;
    box-shadow: 0 0 30px rgba(0 0 0 / 3%);
  }
  .navbar .navbar-nav .nav-link {
    font-size: 14px;
    padding: 8px 0;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid #f3f3f3;
    width: 100%;
  }
  .navbar .navbar-nav .nav-item:last-child .nav-link {
    padding: 10px 20px;
    margin-top: 10px;
  }

  /* hero section */

  .hero_section {
    padding: 80px 0 30px;
  }
  .hero_section .carousel_col {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .hero_section .top_row {
    margin-top: 20px;
  }
  .hero_section .top_row .right_col {
    margin-left: 0;
    margin-top: 20px;
  }
  .hero_section .name_col {
    padding: 0;
  }
  .hero_section .carousel_left_col {
    padding: 0;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .hero_section .typology span.text {
    width: fit-content;
  }

  /* overview section */

  .overview_section .images_col {
    margin-top: 50px;
  }
  .overview_section .row {
    height: auto;
  }

  /* price section */

  .price_section .table {
    display: block;
  }
  .price_section .table thead {
    display: none;
  }
  .price_section .table tbody,
  .price_section .table tr,
  .price_section .table td {
    display: block;
  }
  .price_section .table tbody {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .price_section .table tbody tr {
    max-width: calc(50% - 15px);
    flex: 0 0 calc(50% - 15px);
  }
  .price_section .table tbody tr td:first-child {
    background: #044a71;
    color: #fff;
    font-size: 18px;
    font-family: var(--oswald-font);
    letter-spacing: 1px;
    padding: 15px 0;
  }
  .price_section .table td {
    border: none;
    font-size: 18px;
  }
  .price_section .table td strong {
    color: #044a71;
    text-transform: uppercase;
    font-size: 13px;
  }
  .price_section .table .btn {
    font-weight: 500;
    font-size: 13px;
    height: 42px;
    padding: 2px 26px;
    text-transform: uppercase;
  }

  /* highlight section */
  .highlights_section {
    padding: 80px 0;
  }
  .highlights_section .left_col {
    padding: 0;
    padding-top: 80px;
  }
  .highlights_section .right_col {
    position: relative;
  }
  .highlights_section .right_col .thumbnail {
    position: relative;
    height: auto;
    width: 100%;
    object-fit: unset;
  }

  /* location advantage */
  .location_advantage_section,
  .gallery_section {
    padding: 80px 0;
  }
  .location_advantage_section .left_col {
    position: relative;
  }
  .location_advantage_section .left_col .thumbnail {
    position: relative;
    height: auto;
    width: 100%;
    object-fit: unset;
  }
  .location_advantage_section .right_col {
    padding: 0;
    padding-top: 80px;
  }

  /* appointment section */
  .appointment_section {
    padding: 80px 0;
  }

  /* floor plan */
  .floor_plan_section {
    padding: 80px 0;
  }
  .floor_plan_section .nav-tabs .nav-link {
    padding: 3px 10px;
    font-size: 13px;
    font-weight: 400;
    height: 50px;
  }

  /* footer */

  footer {
    padding: 3px 0 20px;
  }
  footer .right_col {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .d_sm_flex {
    display: flex !important;
  }
  .d_sm_none {
    display: none !important;
  }
  .d_sm_block {
    display: block !important;
  }
  .mobile-section .btn {
    padding-bottom: 2px;
  }
  .section_heading {
    margin-bottom: 40px;
  }
  .section_heading .section_title {
    font-size: 38px;
    line-height: 46px;
  }
  .overview_section .section_heading {
    margin-bottom: 40px;
  }
  .overview_section p {
    font-size: 14px;
    line-height: 20px;
  }

  /* hero section */

  .hero_section {
    padding: 75px 0 30px;
  }
  .hero_section .carousel_col {
    padding-right: 0;
  }
  .hero_section .projectName {
    font-size: 36px;
  }
  .hero_section .location {
    font-size: 14px;
  }
  .hero_section .location img {
    max-width: 16px;
  }
  .hero_section .pr_status {
    margin-right: 10px;
  }
  .hero_section .typology {
    margin: 0;
  }
  .hero_section .price {
    width: 100%;
    font-size: 24px;
    line-height: initial;
    font-weight: 500;
    margin-top: 15px;
  }
  .hero_section .price span {
    font-size: unset;
    line-height: unset;
    font-weight: 500;
    display: inline-block;
  }
  .hero_section .bottom_options .contents {
    width: 100%;
    margin-top: 15px;
  }
  .hero_section .bottom_options .right_col {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  /* amenities */
  .amenities_section .single {
    padding: 18px;
  }
  .amenities_section .single .icon {
    height: 35px;
    width: 35px;
  }
  .amenities_section .single .title {
    margin: 10px 0 0;
    font-size: 14px;
    text-align: center;
  }

  /* price section */

  .price_section .table tbody tr td:first-child {
    padding: 11px 0;
  }
  .price_section .table td {
    font-size: 16px;
  }
  .price_section .table td:not(:last-child) {
    border-bottom: 1px solid rgba(0 0 0 / 25%);
  }

  /* highlight section */
  .highlights_section .points li {
    max-width: 100%;
    flex: 0 0 100%;
  }

  /* location advantage */
  .location_advantage_section .other_points .icon img {
    height: 30px;
    width: 30px;
    object-fit: unset;
  }

  /* appointment section */
  .appointment_section {
    padding: 60px 0;
  }
  .appointment_section .call_no {
    font-size: 30px;
  }
  .appointment_section .call_no:before {
    bottom: 0px;
  }

  /* floor pan */

  .floor_plan_section .left_col {
    display: none;
  }
  .floor_plan_section .plan_image img {
    position: relative;
    height: auto;
    left: unset;
    top: unset;
    object-fit: unset;
  }
  .floor_plan_section .nav-tabs .nav-link {
    letter-spacing: 0.5px;
  }
  .floor_plan_section .nav-tabs .nav-link .count {
    display: none;
  }
  .floor_plan_section .nav-tabs .nav-item {
    width: 33.33%;
  }
  .floor_plan_section .nav-tabs .nav-link:before {
    display: none;
  }

  /* footer section */
  footer {
    padding-bottom: 80px;
  }
  footer .copyright p {
    line-height: 18px;
    margin: 4px 0;
    font-size: 10px !important;
  }
  footer .other_details li {
    margin: 7px 0;
  }

  .hover_effect .single_col .single a:before {
    height: 35px;
    width: 35px;
  }

  .mobile-section .icon {
    width: 14px;
    height: 14px;
  }

  .modal .modal-body {
    padding: 25px;
  }
  .modal .form_price {
    font-size: 18px;
  }
  .modal .form-control {
    height: 42px;
  }

  .video_modal .modal-body iframe {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .mx_sm_-15 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .px_sm_15 {
    padding-left: 15px;
    padding-right: 15px;
  }
  .navbar {
    padding: 10px 15px;
  }
  .navbar .navbar-brand img {
    max-width: 100px;
  }
  .navbar .navbar-nav {
    padding: 10px 20px;
  }
  .navbar.fixed .navbar-nav {
    padding: 0;
    box-shadow: none;
  }
  .navbar .navbar-nav .nav-link {
    font-size: 13px;
  }

  .overview_section .section_heading {
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  .section_heading .sec_sub_heading {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .section_heading .section_title {
    font-size: 30px;
    line-height: 36px;
    font-weight: 500;
  }

  /* hero section */
  .hero_section {
    padding: 60px 0 20px;
  }
  .hero_section .projectName {
    font-size: 28px;
    margin-bottom: 10px;
    margin-top: 15px;
  }
  .hero_section .top_row {
    padding: 0 15px;
  }
  .hero_section .location {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    line-height: 18px;
    padding-bottom: 5px;
  }
  .hero_section .location img {
    margin-right: 5px;
    max-width: 14px;
  }
  .hero_section .top_row .right_col {
    flex-wrap: wrap;
  }
  .hero_section .pr_status {
    width: 100%;
    margin-right: 0;
    /* padding: 6px 15px;
    margin: 5px 0;
    max-width: calc(50% - 7px);
    flex: 0 0 calc(50% - 7px); */
    text-align: center;
    margin-top: 10px;
  }
  .hero_section .call_no {
    margin-top: 10px;
    width: 100%;
  }
  .hero_section .call_no a,
  .hero_section .call_no .right {
    width: 100%;
    padding: 0;
  }
  .hero_section .call_no .left {
    margin: 0;
    border: none;
    height: 40px;
    width: 40px;
  }
  .hero_section .call_no a {
    background: var(--light_black);
    padding: 10px 15px;
  }
  .hero_section .call_no .right {
    width: calc(100% - 50px);
    margin-left: auto;
  }
  .hero_section .content {
    padding: 0 15px;
  }
  .hero_section .form_col {
    margin-top: 0px;
  }
  .hero_section .form_col .title {
    margin-bottom: 12px;
  }
  .hero_section .carousel-indicators li {
    height: 4px;
    border-width: 2px;
    width: 18px;
  }
  .hero_section .typology span.text {
    font-size: 20px;
  }

  .overview_section,
  .amenities_section,
  .price_section,
  .highlights_section,
  .location_advantage_section,
  .gallery_section,
  .floor_plan_section {
    padding: 60px 0;
  }
  .overview_section .images_col {
    margin-top: 30px;
  }
  .overview_section .content_col .btn_dark {
    height: 42px;
    padding: 2px 20px;
  }
  .overview_section .bottom_row {
    display: none;
  }
  .overview_section .top_row .other_col {
    display: none;
  }
  .overview_section .top_row .image_col {
    max-width: 100%;
    flex: 0 0 100%;
  }

  /* price secction */

  .price_section .table tbody tr {
    max-width: 100%;
    flex: 0 0 100%;
    margin: 10px 0;
  }
  .play_btn .icon {
    width: 45px;
    height: 45px;
    background-size: 12px;
  }

  .highlights_section .left_col {
    padding-top: 40px;
  }
  .highlights_section .points li {
    margin: 5px 0;
  }

  /* location map */
  .location_advantage_section .right_col {
    padding-top: 40px;
  }
  .location_advantage_section .points li {
    font-size: 14px;
  }
  .location_advantage_section .other_points .icon {
    margin-right: 15px;
  }
  .location_advantage_section .other_points .icon img {
    height: 26px;
    width: 26px;
  }
  .location_advantage_section .other_points li {
    font-size: 14px;
  }
  .location_advantage_section .other_points .count {
    font-size: 15px;
  }

  /* floor plan section */

  .floor_plan_section .nav-tabs .nav-link {
    height: 45px;
    font-size: 14px;
    text-transform: capitalize;
    padding: 3px 8px;
  }
  /* .floor_plan_section .nav-tabs .nav-link.active{font-size:13px; height: 55px;} */

  .appointment_section {
    padding: 40px 0;
  }
  .appointment_section .call_no {
    font-size: 24px;
  }

  /* gallery section */

  .hover_effect .single_col .name {
    font-size: 12px;
    line-height: initial;
  }

  footer .other_details label,
  footer .other_details p {
    font-size: 13px;
    line-height: 18px;
    text-align: left;
  }

  .video_modal .modal-body iframe {
    height: 250px;
  }
  .modal .projectName img {
    max-width: 160px;
  }
}
