@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.ttf");
}

@font-face {
  font-family: " optima";
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.ttf");
}

@font-face {
  font-family: "Montserrat_Semibold";
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.ttf");
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --yellow: #1383a5;
  --blueish: #104d5f;
  --bg-gray: #eeeeee;
  --text-gray: #555;
  --sec_head: #d7d7d7;
}

body {
  font-family: "Montserrat", sans-serif;
  border-collapse: collapse;
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

label {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;

}

p {
  color: #fff5f5;
  margin: 0;
  letter-spacing: 1px;
 font-size: 16px !important;
 font-family: 'Barlow', sans-serif;
 font-weight: 200 !important;


}

.form-control {
  border-radius: 0;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
}

.form-group {
  position: relative;
}

a {
  text-decoration: none !important;
  font-family: "Montserrat";
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

figure {
  margin: 0;
}

button,
.btn {
  border-radius: 0;
  position: relative;
  border: none !important;
  box-shadow: none !important;
  box-shadow: 4px 4px 10px rgb(0 0 0 / 10%) !important;
}

.btn_yellow {
  background-color: #885f2d;
  padding: 10px 25px;
  font-weight: 500;
  height: 50px;
  color: #fff !important;
}

.btn_dark {
  background-color: #333;
  padding: 10px 25px;
  font-weight: 500;
  height: 50px;
  color: #fff !important;
}

button:before,
.btn:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0 0 0 / 10%);
  transform: scale(0.2);
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  opacity: 0;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -ms-transition: 0.2s all;
}

button:hover:before,
.btn:hover:before {
  transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -ms-transition: 0.2s all;
  opacity: 1;
}

.section_heading {
  font-family: "Josefin Sans", sans-serif;
}

button .arrow {
  margin-left: 5px;
  max-width: 20px;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -ms-transition: 0.2s all;
}

button:hover .arrow {
  margin-left: 10px;
  transition: 0.2s all;
  -webkit-transition: 0.2s all;
  -ms-transition: 0.2s all;
}

button.arrow_btn {
  padding-right: 50px;
  font-family: " optima";
}

button.arrow_btn .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.my_15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.navbar {
  padding: 0;
}

.container {
  max-width: 95% !important;
}

.navbar-brand {
  padding: 0;
}

.mb_30 {
  margin-bottom: 30px !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.header {
  position: fixed;
  top: 10px;
  left: 10px;
  width: calc(100% - 20px);
  z-index: 9;
  padding: 8px 0;
  z-index: 99;
  transition: all 200ms ease-in-out;
  background-color: rgb(62 63 66 / 31%);
  border-radius: 10px;
}

.header.active {
  padding: 10px 0;
  background-image: linear-gradient(45deg, #986f39, #7d7a7a, #885d28);
  box-shadow: 0 2px 15px rgb(0 0 0 / 10%);
}

.header .container {
  position: relative;
  padding: 0 15px;
}

.header .navbar-collapse {
  justify-content: center;
  margin-left: 90px;
}

.header .navbar-brand {
  position: absolute;
  top: 0px;
  left: 15px;
  max-width: 120px;
}

.header .navbar-brand img {
  width: 100%;
  border-radius: 10px;
}

.header.active .navbar-brand img {
  border-radius: 5px;
}

.header .brochure {
  background-color: #fff;
  padding: 7px 25px;
  box-shadow: 4px 4px 10px rgb(0 0 0 / 10%) !important;
  color: #885f2d !important;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.header .nav-link {
  color: #fff;
  font-size: 16px;
    font-family: 'Barlow', sans-serif;
}

.header .navbar-collapse .nav-link {
  position: relative;
  padding: 0;
}

.header .navbar-collapse .nav-link:before {
  position: absolute;
  content: "";
  height: 1px;
  left: 0;
  width: 0;
  background-color: #6c6c6c;
  bottom: 0px;
  transition: all 400ms ease-in-out;
}

.header .navbar-collapse .nav-link:hover:before {
  width: 50%;
}

.header .navbar-collapse li.active .nav-link:before {
  width: 50%;
}

.header .navbar-collapse li.active .nav-link:after {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background-color: #000;
  display: block;
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0;
}

.header .navbar-nav .nav-item:not(:last-child) {
  margin-right: 12px;
}

.header.active .navbar-brand {
  max-width: 17%;
}

.header .navbar-toggler {
  margin-left: auto;
}

#banner_carousel {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

#banner_carousel div {
  height: 100%;
}

#banner_carousel img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

#banner_carousel .carousel_btns {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

#banner_carousel .carousel-control-prev,
#banner_carousel .carousel-control-next {
  position: relative;
  top: unset;
  margin-top: unset;
  right: unset;
  left: unset;
  flex: 1;
  background-color: rgb(169 139 105 / 37%);
  padding: 10px;
  height: 100px;
  width: 70px;
  opacity: 1;
  /* flex:0 0 50%; */
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
  font-size: 20px;
  border: 1px solid #58595d !important;
  color: #fff;
}

.banner_section {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  /* padding-top: 90px; */
}

.banner_section .banner_outer {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
}

.banner_section .banner_content {
  z-index: 9;
  padding: 20px 10px;
  position: relative;
  max-width: 90%;
  margin-bottom: 0px;
}

/* .banner_section .banner_content:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 35%;
  background-color: rgb(0 0 0 / 40%);
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
} */
/* .banner_section .container {
  max-width: 97.5% !important;
  padding-right: 0;
  margin-right: 0;
} */
.banner_section .left_col {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-right: 0;
}

.banner_slider,
.banner_slider div {
  height: 100%;
}

.banner_section .banner_slider {
  position: relative;
}

.banner_section .banner_slider .item {
  padding-left: 20px;
  padding-top: 20px;
  position: relative;
}

.banner_slider .item img {
  height: 100%;
  object-fit: cover;
  min-height: calc(95vh - 90px);
}

.banner_section .location {
  font-size: 20px;
  font-family: "optima";
  margin-bottom: 10px;
}

.banner_section .project_logo {
  font-size: 70px;
  font-family: "optima;";
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0 0 0 / 30%);
  color: #fff;
  white-space: nowrap;
}

.banner_section .price {
  font-size: 18px;
  font-family: "optima";
  margin-top: 5px;
}

.banner_section .price span {
  font-size: 19px;
}

.banner_section .amenity {
  font-size: 20px;
  font-family: "optima";
  margin-top: 5px;
}

.banner_section .call {
  margin: 35px 0 20px;
  display: inline-block;
}

.banner_section .call a {
  background-color: #fff;
  color: #333;
  padding: 10px 20px 10px 50px;
  display: inline-flex;
  align-items: center;
  font-size: 22px;
  position: relative;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  font-family: " optima";
}

.banner_section .call .fa {
  background-color: #885f2d;
  color: #fff;
  padding: 2px 4px;
  font-size: 26px;
  height: 35px;
  width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: calc(100% + 15px);
  left: 5px;
}

.banner_section .call img {
  max-width: 20px;
  filter: invert(1)
}

.banner_section .form {
  margin-top: 50px;
}

.banner_section .form .animated_form {
  background-color: #96703f9c;
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.banner_section .form .form-content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.banner_section .content,
.banner_section .form {
  max-width: 100%;
  flex: 0 0 100%;
  color: #fff;
  position: relative;
}

.banner_section .content {
  max-width: 100%;
  background-color: rgb(0 0 0 / 83%);
  border-top-right-radius: 50px;
  border-bottom-left-radius: 50px;
  padding: 6px 40px;

}

.banner_section .form_heading {
  margin-top: -50px;
  font-size: 18px;
  font-family: " optima";
  background-color: #fff;
  padding: 8px 25px;
  max-width: max-content;
  color: #333;
  box-shadow: 2px -3px 10px rgb(0 0 0 / 10%);
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.banner_section .animated_form .form-group,
.banner_section .animated_form input.btn {
  max-width: calc(20% - 10px);
  flex: 0 0 calc(20% - 10px);
  margin: 0;
  margin: 0 5px;
}

.banner_section .animated_form input.btn {
  max-width: calc(15% - 10px);
  flex: 0 0 calc(15% - 10px);
  background-color: #333;
  color: #fff;
  top: 40px;
}

.banner_section .animated_form .comment_group {
  max-width: calc(25% - 10px);
  flex: 0 0 calc(25% - 10px);
}

.banner_section .swiper-button-prev,
.banner_section .swiper-button-next {
  position: relative;
  top: unset;
  margin-top: unset;
  right: unset;
  left: unset;
  flex: 1;
  background-color: rgb(20 75 142 / 90%);
  padding: 10px;
  height: 100px;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 100;
  font-size: 20px;
  border: 1px solid #3174c5;
  color: #fff;
}

.banner_section .swiper-button-prev img,
.banner_section .swiper-button-next img {
  filter: invert(1);
  max-width: 20px;
  height: auto;
}

.banner_section .nav_buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
}

.gallery-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  align-items: flex-end;
  background-color: #333;
}

.swiper-container {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.gallery-top {
  height: 100%;
  width: 70%;
  margin: 0;
  margin-left: auto;
}

.gallery-thumbs {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.gallery-thumbs .swiper-slide {
  height: 30%;
}

.gallery-thumbs .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
  border: 2px solid #885f2d;
}

.gallery-top {
  float: right;
  width: 100%;
  position: relative;
}

.gallery-top:before {
  position: absolute;
  content: "";
  height: 500px;
  width: 500px;
  border: 80px solid rgb(0 0 0 / 22%);
  border-radius: 100%;
  z-index: 9;
  right: 0;
  bottom: -60px;
}

.gallery-thumbs {
  width: 10%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  background-color: rgb(0 0 0 / 80%);
  padding: 10px;
  padding-top: 100px;
}

.animated_form .form-head {
  max-width: 100%;
  flex: 0 0 100%;
}

.animated_form .form-group {
  max-width: calc(50% - 10px);
  flex: 0 0 calc(50% - 10px);
  margin-bottom: 20px;
}

.animated_form .form-label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  color: #999;
  background-color: #fff;
  z-index: 10;
  transition: transform 150ms ease-out, font-size 150ms ease-out;
}

.animated_form .focused .form-label {
  transform: translateY(-34px);
  font-size: 0.75em;
  background-color: #333;
  left: 5px;
  color: #fff;
  padding: 1px 5px;
}

.animated_form .form-input {
  position: relative;
  padding: 5px 10px;
  width: 100%;
  height: 50px;
  outline: 0;
  border: ;
  top: 37px;
  box-shadow: 0 1px 0 0 #e5e5e5;
  transition: box-shadow 150ms ease-out;
  border-radius: 5px;
  color: white;
}

.animated_form input.btn {
  background-color: #885f2d;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  background: linear-gradient(-45deg, #000000, #000000, #7e4211, #97744e, #121f23);
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite, rocking 3s ease infinite !important;
}

.about_section {
  padding: 0px 0;
  position: relative;
}

.about_section:before {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 500px;
  width: 500px;
  content: "";
  z-index: 1;
  border-radius: 100%;
  transform: translateX(-50%);
  border: 70px solid rgb(103 68 36 / 28%);
}

.about_section .left_col {
  position: absolute;
  left: 0;
  top: 20px;
  margin: 0;
  padding: 0;
  z-index: 1;
  border-top-right-radius: 40px;
  overflow: hidden;
  border-bottom-left-radius: 40px;
  flex: 0 0 40%;
  max-width: 40%;
  box-shadow: 5px 10px 50px rgb(0 0 0 / 15%);
  height: calc(80% + 50px);
}

.about_section .left_col figure {
  height: 100%;
}

.about_section .left_col img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about_section .right_col {
  margin-left: auto;
  position: relative;
  flex: 0 0 55%;
  max-width: 55%;
}

.about_section .right_col .content {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.about_section .heading {
  font-size: 29px;
  color: #885f2d;
  font-family: "Montserrat_Semibold";
  text-shadow: 4px 4px 8px rgb(0 0 0 / 15%);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about_section .section_heading {
  position: absolute;
  content: "";
  left: -70px;
  writing-mode: tb;
  transform: rotate(180deg) translateY(50%);
  top: 50%;
  font-size: 80px;
  color: var(--sec_head);
  text-shadow: 3px 0px 10px rgb(0 0 0 / 6%);
}

.about_section .location {
  font-size: 18px;
  color: #fff5f5;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: " optima";
}

.about_section .right_col .content button {
  margin-top: 30px;
  background: linear-gradient(-45deg, #104d5f, #104d5f, #7e4211, #97744e, #292725);
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite, rocking 3s ease infinite !important;
}

.highlights_section {
  padding: 100px 0px;
  position: relative;
}

.highlights_section .section_heading {
  position: absolute;
  content: "";
  right: 0px;
  writing-mode: tb;
  transform: rotate(180deg) translateY(50%);
  top: 50%;
  font-size: 80px;
  color: var(--sec_head);
  text-shadow: 3px 0px 10px rgb(0 0 0 / 15%);
  z-index: 9;
  white-space: nowrap;
}

.highlights_section .left_col {
  display: flex;
  align-items: center;
}

.highlights_section .left_col .content {
  width: 100%;
}

.highlights_section .container {
  z-index: 1;
  position: relative;
}

.highlights_section .left_col li {
  position: relative;
  margin-bottom: 8px;
  letter-spacing: 1px;
  

}
.marg li{
margin-right: 0px !important;

}

.highlights_section .left_col li span {
  height: 30px;
  width: 30px;
  border-radius: 14px;
  background-color: #060709;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.highlights_section .right_col {
  position: relative;
}

.highlights_section .right_col:before {
  position: absolute;
  content: "";
  height: calc(100% + 100px);
  width: 40%;
  background-color: #885f2d;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.highlights_section .left_col ul {
  margin-top: 50px;
}

.highlights_section .right_col .content {
  position: relative;
  width: 100%;
  height: 100%;
}

.highlights_section .right_col figure {
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  overflow: hidden;
  box-shadow: -5px 10px 50px rgb(0 0 0 / 15%);
  height: 100%;
}

.highlights_section .right_col img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  cursor: zoom-in;
}

.amenities_section {
  background-color: #885f2d;
  padding: 60px 0;
  position: relative;
}

.amenities_section:before {
  position: absolute;
  content: "";
  height: 800px;
  width: 800px;
  z-index: 1;
  border-radius: 100%;
  border: 100px solid rgb(255 255 255 / 10%);
}

.amenities_section .heading {
  z-index: 9;
  color: #fff;
}

.amenities_section .amenities_content {
  overflow: hidden;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.amenities_section .box {
  height: 400px;
  position: relative;
  margin: 15px 0;
}

.amenities_section .box figure {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 80%;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.amenities_section .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.amenities_section .box .bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  align-content: space-between;
}

.amenities_section .box .count {
  font-size: 50px;
  color: #cfcfcf;
}

.amenities_section .box .title {
  color: #333;
  font-size: 18px;
  margin: 0px 10px 10px 0;
  font-weight: 600;
  line-height: 26px;
  background-color: rgb(255 255 255 / 67%);
  padding: 10px 15px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.price_section {
  padding: 60px 0;
  position: relative;
  background: #e6ecf2;
}

.price_section .container {
  position: relative;
  z-index: 9;
}

.price_section .section_heading {
  text-align: left;
  margin-bottom: 40px;
}

.price_section .box {
  background-color: rgb(135 96 48 / 55%);
  box-shadow: 2px 2px 35px rgb(0 0 0 / 12%);
  text-align: left;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.price_section .box:before {
  position: absolute;
  content: "";
  top: -80px;
  right: -70px;
  height: 300px;
  width: 300px;
  border: 50px solid rgba(255 255 255 / 15%);
  display: block;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.price_section .box:hover:before {
  right: -90px;
  top: -50px;
  border: 50px solid rgba(255 255 255 / 30%);
}

.price_section .box .content {
  position: relative;
}

.price_section .box .title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
}

.price_section .box span {
  display: block;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: #a29797;
  font-weight: 700;
}

.price_section .box .size,
.price_section .box .price {
  margin-bottom: 20px;
  font-size: 22px;
}

.price_section .box button {
  width: 100%;
  text-transform: uppercase;
  margin-top: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: linear-gradient(-45deg, #104d5f, #000000, #7e4211, #5f4d3a, #252222);
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite, rocking 3s ease infinite !important;
}

.floor_plan_section {
  position: relative;
  padding: 60px 0;
  background-color: var(--bg-gray);
}

.floor_plan_section:before {
  position: absolute;
  content: "";
  height: 800px;
  width: 800px;
  border: 100px solid rgb(135 96 47 / 19%);
  border-radius: 100%;
  top: -10%;
  left: -10%;
}

.floor_plan_section:after {
  position: absolute;
  content: "";
  height: 500px;
  width: 500px;
  border: 100px solid rgb(135 95 46 / 19%);
  border-radius: 100%;
  bottom: -10%;
  right: -10%;
}

.floor_plan_section .section_heading {
  position: relative;
  z-index: 1;
  color: #885f2d;
}

.floor_plan_section .floor_content {
  margin-top: 40px;
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.floor_plan_section .floor_content .box {
  box-shadow: 5px 5px 30px rgb(0 0 0 / 6%);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.floor_plan_section .floor_content .box img {
  width: 100%;
  cursor: zoom-in;
}

.gallery_section {
  background-color: #fff;
  padding-bottom: 120px;
}

.gallery_section .floor_content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.gallery_section .floor_content .item {
  position: relative;
  transition: all 300ms ease-in-out;
  border: 2px solid #fff;
  max-width: 25%;
  flex: 0 0 25%;
  overflow: hidden;
}

.gallery_section .floor_content .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
  cursor: zoom-in;
}

.gallery_section .floor_content .item:hover img {
  transform: scale(1.1);
}

.query_section {
  background: #885f2d;
}

.query_section .container {
  max-width: 60% !important;
  padding: 20px;
}

.query_section .animated_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.query_section .row {
  position: relative;
}

.query_section .left_col {
  padding: 40px;
  max-width: 70%;
  flex: 0 0 70%;
  /* background-color: #fff;*/
  position: absolute;
  left: 0;
  bottom: 0;
  height: calc(100% + 100px);
  box-shadow: 0 -5px 40px rgb(0 0 0 / 10%);
}

.query_section .left_col .form_heading {
  margin-bottom: 20px;
  font-size: 20px;
  font-family: " optima";
}

.query_section .right_col {
  background-color: #945f1d;
  padding: 40px;
  display: flex;
  border-radius: 50px 0px 98px 0px;
  align-items: center;
  max-width: 30%;
  flex: 0 0 30%;
  margin-left: auto;
}

.query_section .right_col .mobile {
  font-size: 24px;
  color:#fcfcfc !important;
  font-weight: 600;
  margin-top: 30px;
  display: flow-root;
}

footer {
  background-color: #0f121c;
  padding: 20px 0;
}

footer p {
  text-align: center;
  font-size: 13px;
  color: #fff;
}

footer p:not(:last-child) {
  margin-bottom: 5px;
}

footer p a {
  color: #fff !important;
}

.modal .modal-body {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.modal .left_col {
  background-color: #030405;
  display: flex;
  align-items: center;
}

.modal .left_col,
.modal .right_col {
  max-width: 50%;
  flex: 0 0 50%;
  padding: 30px;
}

.modal .left_col .content {
  width: 100%;
  text-align: center;
}

.modal .left_col img {
  margin-bottom: 15px;
}

.modal .left_col .typo {
  font-size: 18px;
  margin-bottom: 10px;
}

.modal .left_col .price {
  font-size: 20px;
  background-color: var(--yellow);
  padding: 7px 15px;
  width: 100%;
  display: inline-block;
  font-weight: 600;
  color: #333;
}

.modal .right_col .form_heading {
  font-size: 20px;
  margin-bottom: 15px;
}

.modal .right_col .form-group {
  max-width: 100%;
  flex: 0 0 100%;
}

.modal .right_col .form-input {
  height: 46px;
}

.mobile-section {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  display: none;
  box-shadow: 0 -3px 15px rgb(0 0 0 / 10%);
}

.mobile-section .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mobile-section .btn:not(:last-child):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 25px;
  background-color: #333;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  left: unset;
}

.custom_heading {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-size: 40px;
  color: #885f2d;
  font-family: " optima";
}

.custom_heading .bottom {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.custom_heading .bottom i {
  height: 13px;
  width: 13px;
  background-color: #939393;
  display: block;
  border-radius: 100%;
  border: 3px solid #fff;
}

.custom_heading:before {
  position: absolute;
  bottom: -4px;
  height: 1px;
  width: 60%;
  background-color: rgb(179 179 179);
  content: "";
  left: 50%;
  transform: translateX(-50%);
}

.modal .close {
  position: absolute;
  color: #fff;
  opacity: 1;
  text-shadow: none;
  font-size: 40px;
  top: 10px;
  right: 20px;
  z-index: 9;
}

.banner-point {
  margin-top: 15px;

}

.banner-point li {
  font-size: 16px;
  line-height: 28px;

}

.readyto {}

.bg-img {
  /* background-image: url(../images/12bg.jpg) !important;*/
  background-size: 100% 100%;
  background: #060709;
}

.from-input1 {
  position: relative;
  padding: 5px 10px;
  width: 100%;
  height: 50px;
  outline: 0;
  /* border: 0; */
  box-shadow: 0 1px 0 0 #e5e5e5;
  transition: box-shadow 150ms ease-out;
  border-radius: 5px;
  background: #15131314;
  color: white;
  font-family: 'Montserrat' !important;

}


.form-input1:hover {
  background: #91714c;
  color: white;
}

.header1 {

  /* top: -22px; */
  left: 10px;
  /* width: calc(100% - 20px); */
  z-index: 9;
  padding: 5px;
  z-index: 99;
  color: #ffffff;
  /*  background-color: rgb(99 82 60 / 39%);*/
  border-radius: 3px;
  margin: 4px;
}

.new-head {
  position: absolute;
  top: 310px;
  left: 599px;
  z-index: 99;
  text-shadow: 3px 1px #6f6363;
  color: white;
  color: #fff;
  font-size: 56px;
  font-weight: 100;
  letter-spacing: 1px;
  margin-top: 17px;
  font-family: Freight;
  font-weight: 400;
}

.content1 {
  color: black;
    font-size: 15px;
    background: #b06c084d;

    border-radius: 50px 0px;
    padding: 20px;
    height: 90px;
    margin-bottom: 10px;

}
.content1:hover {
  color: black;
    font-size: 15px;
    background: #543c1f;

    border-radius: 50pX 0px;
    padding: 20px;
    height: 90px;
    margin-bottom: 10px;

}

/*@media(max-width:575px) {
.content1{
    width: 33.33%;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding-left: 0.5em;
    padding-right: 0.5em;
}
}*/


.contact h3 {
  font-size: 24px;
  color: #222;
}

input[type="password"],
input[type="email"],
input[type="text"],
input[type="file"],
textarea {
  max-width: 100%;
  margin-bottom: 15px;
  padding: 10px 0;
  height: 38px;
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-width: 0 0 1px;
  border-style: solid;
  display: block;
  width: 100%;
  line-height: 1.5em;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #eae3e3;
  background-image: none;
  border-bottom: 1px solid #ececec;
  border-color: ease-in-out .15s, box-shadow ease-in-out .15s;
}

.input[type="submit"],
input[type="reset"],
input[type="button"],
button {
  text-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  line-height: 1.75em;
  -webkit-transition: background-color .15s ease-out;
  transition: background-color .15s ease-out;
  background: transparent;
  border: 0px solid transparent;
}

.butn-dark a {
  font-weight: 400;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  background: #966f3d;
  color: #fff;
  padding: 13px 22px;
  margin: 0;
  position: relative;
  font-size: 15px;
  letter-spacing: 3px;
}

::placeholder {
  color: white !important;
  opacity: 1;
  /* Firefox */
}

.icon3 {
  width: 48px;

  padding: 8px;
  position: absolute !important;
  right: 187px;
  top: -8px;
  display: block;
}

.icon4 {
  position: relative;

}

.size1 {

  background: -webkit-linear-gradient(#f48804, #c0c0c0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
 
}
.highlights-container li {
  padding-top: 6px !important;
  padding-right: 10px !important;
  padding-bottom: 5px !important;
  padding-left: 8px !important;
  color: #fff;
  background-color:#80592a!important;
  margin-bottom: 10px;
  border-radius: 40px;
  width: fit-content;
  margin-right: 8px;
  display: flex;
  align-items: center;
}
.highlights-container ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
 .highlights_section1  li span {
  height: 30px;
  width: 30px;
  border-radius: 14px;
  background: -webkit-linear-gradient(#8f5610, #282323) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-weight: 500;
  font-size: 13px;
  color: #fff;
}
.highlights_section1 .left_col li {
  position: relative;
  margin-bottom: 8px;
  
  float: left;

}
.highlights_section2 li span {
  height: 30px;
    width: 30px;
    border-radius: 5px;
    background-color: #885f2d !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
}
.highlights_section2 .left_col ul {
  margin-top: 50px;
}
.highlights_section2 .left_col li {
  position: relative;
  margin-bottom: 8px;
 
}
.home-about-left blockquote {
  border-left: 5px solid #990000;
  color: #000;
  font-family: 'Fira Sans', sans-serif;
  margin: 10px 0;
}
/* blockquote {
  padding: 1px 8px;
    margin: 0px 0 0px;
    font-size: 17.5px;
    border-left: 5px solid #ffe9cc;
    height: 82px;} */
