@font-face {
  font-family: 'againstregular';
  src: url('../fonts/againstregular.eot');
  src: url('../fonts/againstregular.eot') format('embedded-opentype'),
        url('../fonts/againstregular.woff2') format('woff2'),
        url('../fonts/againstregular.woff') format('woff'),
        url('../fonts/againstregular.ttf') format('truetype'),
        url('../fonts/againstregular.svg#againstregular') format('svg');
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
}

a {
  color: #BD9234;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #BD9234;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #fff;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* flex: 1; */
  /* display: flex; */
  /* min-width: 115px; */
  /* width: 119px; */
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  /* height: auto; */
  min-width: 94px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  white-space: nowrap;
  transition: 0.3s;
  font: normal normal 500 12px/22px Montserrat;
  letter-spacing: 0.8px;
  color: #071027;
  text-transform: uppercase;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #A27A23;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 20px;
  border-radius: 50px;
  color: #fff;
  /* font-size: 14px; */
  /* border: 2px solid #071027; */
  /* font-weight: 600; */
  background: #A27A23;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #A27A23;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #A27A23;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #fff;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section-padding {
  padding: 120px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  position: relative;
  font: normal normal normal 60px/80px againstregular;
  letter-spacing: 0px;
  color: #A27A23;
  text-transform: uppercase;
}

.section-title p {
  margin-bottom: 0;
  font: normal normal normal 18px/28px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  /* text-transform: uppercase; */
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #000000;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  /* background: #fff; */
  border-bottom: 1px solid #fff;
}

#footer .footer-top h4 {
  /* font-size: 16px; */
  /* font-weight: bold; */
  /* color: #37517e; */
  position: relative;
  padding-bottom: 12px;
  font: normal normal bold 16px/16px Montserrat;
  letter-spacing: 0px;
  color: #A27A23;
  text-transform: uppercase;
  margin-bottom: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  /* word-wrap: break-word; */
  text-wrap: wrap;
  gap: 0px;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  width: 33.33%;
}

#footer .footer-top .footer-links ul li:first-child {
  /* padding-top: 0; */
}

#footer .footer-top .footer-links ul a {
  /* color: #777777; */
  transition: 0.3s;
  display: inline-block;
  /* line-height: 1; */
  font: normal normal normal 14px/14px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #A27A23;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  /* background: #47b2e4; */
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  /* width: 36px; */
  /* height: 36px; */
  transition: 0.3s;
}

/*#footer .footer-top .social-links a:hover {*/
/*  background: #209dd8;*/
/*  color: #fff;*/
/*  text-decoration: none;*/
/*}*/

#footer .footer-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  /* border-top: 1px solid; */
}

#footer .copyright {
  float: none;
  text-align: center;
  font: normal normal normal 11px/11px Montserrat;
  letter-spacing: 0.55px;
  color: #D1D3D4;
  text-transform: uppercase;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}
.why-antras .row .col-lg-3{
  display: flex;
  flex-direction: column;
}
.why-antras .row .col-lg-3:nth-child(even){
  flex-direction: column-reverse;
}
.why-detail-box {
  height: 300px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-img-box {
  height: 300px;
  width: 100%;
}

.why-img-box img {
  height: 300px;
  /* object-fit: cover; */
  width: 100%;
}
video.banner-video {
  width: 100%;
  height: 100v;
}
.main-banner {
  margin-top: 120px;
  background: #F5F2E3;
}
.banner-form-wrapper h2{
  text-align: center;
  font: normal normal normal 50px/69px againstregular;
  letter-spacing: 0px;
  color: #A27A23;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.banner-form-wrapper {
  padding: 50px;
}
.submit-btn {
  background: #A27A23 0% 0% no-repeat padding-box;
  border-radius: 28px;
  border: 0;
  padding: 10px 30px;
  font: normal normal bold 15px/22px Montserrat;
  letter-spacing: 1.8px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin: 0 auto;
  display: block;
  width: max-content;
}
.project-detail-box {
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding: 30px 0;
}

.project-detail-box p {
  margin-bottom: 0;
  font: normal normal 500 18px/18px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  text-transform: capitalize;
}

.project-detail-box p strong {
  font: normal normal bold 18px/18px Montserrat;
  letter-spacing: 0px;
  color: #A27A23;
  text-transform: uppercase;
}
.project-detail-box span{
  border: 1px solid #000000;
  height: 18px;
}
.form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #000;
  border-radius: 0;
}
.form-control::placeholder{
  font: normal normal normal 16px/16px Montserrat;
  letter-spacing: 0px;
  color: #000000;
}
.about-detail {
  background: #F5F2E3;
}
.about-detail .section-title{
  text-align: left;
}
.about-txt p {
  font: normal normal normal 16px/26px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  margin-bottom: 0;
}
.why-detail-box h3 {
    text-align: left;
    font: normal normal bold 18px/20px Montserrat;
    letter-spacing: 0px;
    color: #A27A23;
    text-transform: uppercase;
}

.why-detail-box p {
  text-align: left;
  font: normal normal normal 15px/23px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  margin-bottom: 0;
}
.why-antras{
  background: #F5F2E3;
}
.price{
  background-color: #F5F2E3;
}
table tr th {
  background-color: #A27A23 !important;
  font: normal normal bold 18px/18px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF !important;
  text-transform: uppercase;
  padding: 20px !important;
  text-align: center;
}
.table>tbody>tr:nth-of-type(odd)>*{
  background: #FFFFFF 0% 0% no-repeat padding-box !important;
}
.table>tbody>tr:nth-of-type(even)>*{
  background: #F5F5F5 0% 0% no-repeat padding-box !important;
}
.table>tbody>tr>td{
  text-align: center;
  padding: 20px;
  font: normal normal normal 16px/16px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  text-transform: uppercase;
}
.table>tbody>tr>td a{
    text-decoration: underline !important;
    text-underline-offset: 5px;
}
.floor-plans{
  background-color: #F5F2E3;
}

.floor-img {
  background: #ffffff;
  padding: 50px;
}
.floor-box h3 {
  font: normal normal bold 18px/17px Montserrat;
  letter-spacing: 0px;
  color: #A27A23;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
}

.contact .section-title{
  text-align: left;
}
.location .section-title{
  text-align: left;
}
.location-box p {
  text-align: left;
  font: normal normal bold 13px/13px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  margin-bottom: 0;
  padding-top: 10px;
}
.location-map img {
  width: 100%;
}
.location .section-title h4 {
  font: normal normal normal 18px/28px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  text-transform: capitalize;
  margin-bottom: 0;
}
.location-box {
  width: 35%;
  float: left;
  margin: 20px 0;
  min-height: 85px;
}

.location-detail {
  width: 100%;
}
.locate-us p {
  text-align: left;
  font: normal normal bold 17px/14px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 0;
}

.locate-us {
  margin-top: 20px;
}
.amenities-detail h4 {
  font: normal normal bold 18px/18px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  text-transform: uppercase;
}

.amenities-detail ul li {
  font: normal normal normal 16px/26px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  text-transform: capitalize;
}
.amenities-detail {
  margin: 20px 0;
}
.amenities-wrapper ul.nav-tabs {
  border: 1px solid #000000;
  border-radius: 48px;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 30px;
}
.amenities-wrapper .nav-link {
  border-radius: 48px;
  padding: 15px 50px;
  border: none;
  margin-bottom: 0;
  width: max-content;
  font: normal normal 600 18px/18px Montserrat;
  letter-spacing: 0px;
  color: #000000;
  text-transform: uppercase;
}
.amenities-wrapper .nav-link.active {
  background: #A27A23 0% 0% no-repeat padding-box;
  border: 1px solid #A27A23;
  color: #fff;
}

.amenities .section-title p{
  text-transform: none;
}
.rera-terms{
  background-color: #F5F2E3;
}
	/* Custom style */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(.7) !important;
  fill: #A27A23;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
.accordion-header {
  text-align: left;
  font: normal normal bold 24px/34px Montserrat;
  letter-spacing: 0px;
  color: #BD9234;
  text-transform: uppercase;
}

.accordion-button {
  text-align: left;
  font: normal normal bold 16px/32px Montserrat;
  letter-spacing: 0px;
  color: #BD9234 !important;
  text-transform: uppercase;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 0;
}

.accordion {
  background-color: transparent !important;
}

.accordion-item , .accordion-item:last-of-type{
  background: transparent;
  border: 0;
  border-bottom: 1px solid #bd923461;
  border-radius: 0;
  padding: 10px 0;
}
.accordion-item:last-of-type{
    border: none;
}
.card-body p b a{
  color: #000;
}
.qr-code {
  gap: 10px;
}
.footer-contact .social-links p{
  margin-bottom: 0;
  font: normal normal normal 13px/13px Montserrat;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  text-transform: uppercase;
}
.footer-contact p {
  font: normal normal normal 13px/13px Montserrat;
  letter-spacing: 0;
  color: #FFFFFF;
}

.footer-contact h3 {
  font: normal normal bold 16px/16px Montserrat;
  letter-spacing: 0px;
  color: #A27A23;
  text-transform: uppercase;
  padding-bottom: 12px;
}
.highlight-box {
  position: relative;
  /* z-index: 1; */
}

.highlight-txt {
  position: absolute;
  bottom: 125px;
  left: 50px;
  z-index: 1;
}
.highlight-slider-box {
  position: relative;
}

.highlight-thumb-slider-box {
  margin-top: -250px;
  overflow: hidden;
}

.highlight-main-slider-box .highlight-box::after {
  content: "";
  position: absolute;
  background: transparent linear-gradient(181deg, #FFFFFF00 0%, #5D5D5D00 35%, #000000ED 100%) 0% 0% no-repeat padding-box;
  width: 100%;
  height: 300px;
  opacity: 1;
  bottom: 0;
  /* z-index: 2; */
}
  /* the slides */
.highlight-thumb-slider-box .slick-slide {
    margin: 0 15px;
}

  /* the parent */
.highlight-thumb-slider-box .slick-list {
  margin: 0 -15px;
}
.highlight-txt p {
  font: normal normal 300 18px/21px Montserrat;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 0;
}

.highlight-txt h2 {
  font: normal normal normal 40px/50px againstregular;
  letter-spacing: 0px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.highlight-txt h4 {
  font: normal normal bold 18px/18px Montserrat;
  letter-spacing: 0px;
  color: #BD9234;
  text-transform: uppercase;
  margin-bottom: 0;
}
.slider-for .slick-prev:before, .slider-for .slick-next:before{
  display: none;
}
.slider-for .slick-prev {
  position: absolute;
  bottom: 70px;
  z-index: 222;
  color: #000;
  top: auto;
  left: 5%;
}

.slider-for .slick-next {
  position: absolute;
  bottom: 70px;
  z-index: 222;
  color: #000;
  top: auto;
  left: 10%;
} 
.slider-for .slick-next i {
  font-size: 30px;
  font-weight: unset;
  background: #fff;
  padding: 15px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-for .slick-prev i {
  font-size: 30px;
  background: #fff;
  padding: 15px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-antras .section-title p{
  text-transform: none;
}
.qr-code img {
  width: 150px;
}
.location{
  padding: 0;
}
.location .location-wrapper{
  padding: 120px 0;
}
/*************************************** SIDEBAR FORM CSS ************************************/
.enquireNowSideFormBtn {
	position: fixed;
	top: 50%;
	right: -57px;
	transform: translateY(-50%) rotate(90deg);
	padding: 15px 20px;
	z-index: 2;
	cursor: pointer;
	background: #FFFFFF 0% 0% no-repeat padding-box;
	box-shadow: 0px 5px 20px #0000005E;
}

.enquireNowSideFormBtn p {
	font: normal normal bold 13px/13px Montserrat;
	letter-spacing: 1.6px;
	color: #111C37;
}

.enquireNowSideFormCloseBtn {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #000;
	font-size: 30px;
	cursor: pointer;
}

.sidebar-contact {
	position: fixed;
	top: 50%;
	right: -350px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 350px;
	height: auto;
	padding: 65px 30px;
	background: #fff;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: .5s;
	transition: .5s;
	z-index: 99
}

.sidebar-contact.active {
	right: 0;
	-webkit-box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
	box-shadow: 0 20px 50px rgb(0 0 0 / 50%);
}

.sidebar-contact input::placeholder {
	font: normal normal normal 14px/24px Montserrat;
  letter-spacing: 0px;
  color: #000000;
}

.sidebar-contact input.form-control:focus {
	background-color: transparent;
	box-shadow: none;
	border-color: #58595B;
	color: #58595B;
}

.sidebar-contact input,
.sidebar-contact textarea{
	width: 100%;
	height: 36px;
	padding: 0px;
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: 0;
	margin-bottom: 0px;
	border: 0;
	border-bottom: 1px solid #000000;
	color: #000000;
}

.sidebar-contact h2 {
	padding: 0;
	text-align: center;
	font: normal normal normal 23px/33px againstregular;
	letter-spacing: 0px;
	color: #A27A23;
	text-transform: uppercase;
}

.toggle.active {
	height: 35px;
	width: 35px;
	line-height: 35px;
	top: 0;
	left: -35px;
}

.toggle {
	background: #63401a;
}

.toggle {
	position: absolute;
	height: 35px;
	width: 160px;
	text-align: center;
	cursor: pointer;
	background: #C69651;
	top: 58px;
	left: -98px;
	line-height: 36px;
	-webkit-transition: all .2s;
	transition: all .2s;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
	box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
	color: #000;
}

.toggle.active:before {
	position: absolute;
	content: 'X';
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	left: 37%;
}

.toggle.active:before {
	content: 'X';
}

.toggle:before {
	content: 'Enquire Now';
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;
}

.toggle:hover {
	background-color: #000;
}


@media(max-width:320px) {
	.sidebar-contact {
		right: -300px;
		width: 300px;
		padding: 50px 30px;
	}
}

/*************************************** SIDEBAR FORM CSS ************************************/

.modal-body h1.modal-title {
  text-align: center;
  font: normal normal normal 23px/33px againstregular;
  letter-spacing: 0px;
  color: #A27A23;
  text-transform: capitalize;
}
button.btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #000;
  opacity: 1;
}
.error {
  color: red;
  font-size: 14px;
  padding-top: 5px;
}
.error_msg {
  display: none;
}
.download-brochure {
    padding: 8px 20px;
    margin-top: 20px;
    display: inline-block;
    color: #fff;
    /* font-size: 14px; */
    /* border: 2px solid #071027; */
    /* font-weight: 600; */
    background: #A27A23;
}
.walkthrough {
    background: #ebe9e95e;
}
/* Hide the copy button */
  .ytp-copylink-button {
    display: none !important;
  }
  
  /* Hide the YouTube icon */
  .ytp-watermark {
    display: none !important;
  }