/*@Media Query Mixin*/
/*@Media Query Mixin End*/
* {
  margin: 0;
  padding: 0;
  font-family: var(--montserrat-medium);
}

:root {
  --theme-black: #13100d;
  --theme-gold: #b99656;
  --theme-light-gold: #dcb89c;
  --montserrat-regular: "montserrat-regular";
  --montserrat-medium: "montserrat-medium";
  --playfair-display-regular: "playfair-display-regular";
  --playfair-display-bold: "playfair-display-bold";
}

@font-face {
  font-family: "montserrat-regular";
  src: url("../fonts/montserrat-regular.woff2") format("woff2"), url("../fonts/montserrat-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "montserrat-medium";
  src: url("../fonts/montserrat-medium.woff2") format("woff2"), url("../fonts/montserrat-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "playfair-display-regular";
  src: url("../fonts/playfair-display-regular.woff2") format("woff2"), url("../fonts/playfair-display-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "playfair-display-bold";
  src: url("../fonts/playfair-display-bold.woff2") format("woff2"), url("../fonts/playfair-display-bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
body {
  margin-top: 118px;
}
@media screen and (max-width: 1680px) {
  body {
    margin-top: 105px;
  }
}
@media screen and (max-width: 1600px) {
  body {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1440px) {
  body {
    margin-top: 98px;
  }
}
@media screen and (max-width: 1366px) {
  body {
    margin-top: 94px;
  }
}
@media screen and (max-width: 1280px) {
  body {
    margin-top: 90px;
  }
}
@media screen and (max-width: 1024px) {
  body {
    margin-top: 77px;
  }
}
@media screen and (max-width: 991px) {
  body {
    margin-top: 110px;
    font-size: 15px;
  }
}
@media screen and (max-width: 400px) {
  body {
    margin-top: 99px;
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  p {
    line-height: 27px;
  }
}

.container {
  max-width: 84%;
}
@media screen and (max-width: 1440px) {
  .container {
    max-width: 90%;
  }
}

.heading {
  font-size: 30px;
  font-family: var(--playfair-display-regular);
  text-transform: uppercase;
  margin-bottom: 0;
  letter-spacing: 1px;
}
@media screen and (max-width: 991px) {
  .heading {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .heading {
    font-size: 22px;
  }
}

.s-underline {
  position: relative;
  text-align: center;
  width: 200px;
  margin: auto;
  margin-top: 20px;
}
.s-underline:before {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: var(--theme-gold);
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.s-underline:after {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background-color: var(--theme-gold);
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.text-gold {
  color: var(--theme-light-gold);
}

.owl-nav {
  position: absolute;
  right: 100px;
}
@media screen and (max-width: 600px) {
  .owl-nav {
    right: 0;
  }
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  position: relative;
  border: 2px solid var(--theme-gold) !important;
  width: 50px;
  height: 50px;
  z-index: 1;
  margin: 0 5px;
}
@media screen and (max-width: 991px) {
  .owl-nav .owl-prev,
  .owl-nav .owl-next {
    width: 40px;
    height: 40px;
  }
}
.owl-nav .owl-prev:hover:before,
.owl-nav .owl-next:hover:before {
  width: 100%;
}
.owl-nav .owl-prev:hover i,
.owl-nav .owl-next:hover i {
  color: #fff;
}
.owl-nav .owl-prev:before,
.owl-nav .owl-next:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--theme-gold);
  top: 0;
  z-index: -1;
  transition: all 0.6s ease;
}
.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  transition: all 0.6s ease;
}
.owl-nav .owl-prev:before {
  right: 0;
}
.owl-nav .owl-next:before {
  left: 0;
}

.owl-dots {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  margin-top: 20px;
  width: 100%;
  text-align: center;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: var(--theme-gold) !important;
  margin: 5px;
  border-radius: 5px;
}
.owl-dots .owl-dot.active {
  width: 40px;
  transition: all 0.4s ease;
  background-color: #fff !important;
}

.body-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
}
.body-overlay.is-active {
  display: block;
}

.desc {
  position: absolute;
  left: 10px;
  bottom: 10px;
  margin-bottom: 0;
  font-size: 12px;
  z-index: 99;
}
@media screen and (max-width: 600px) {
  .desc {
    font-size: 8px;
    bottom: 5px;
  }
}

.theme-btn {
  border: none;
  border-radius: 50px;
  background-color: #bc9375;
  padding: 10px 20px;
  color: #fff;
  transition: all 0.6s ease;
}
.theme-btn:hover i {
  padding-left: 5px;
}
.theme-btn i {
  color: #fff;
  transition: all 0.6s ease;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background-color: var(--theme-black);
  border-bottom: 1px solid #6d5f52;
}
.navbar .container {
  align-items: end;
}
@media screen and (max-width: 991px) {
  .navbar .container {
    align-items: center;
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 1680px) {
  .navbar .navbar-brand {
    width: 10%;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-brand {
    width: 20%;
    padding-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .navbar .navbar-brand {
    width: 25%;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-brand {
    width: 40%;
  }
}
.navbar .navbar-toggler {
  border: none;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-toggler {
    padding-right: 5%;
  }
}
@media screen and (max-width: 600px) {
  .navbar .navbar-toggler {
    padding-right: 20px;
  }
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/icons/menu-bar.png);
}
.navbar .navbar-toggler .navbar-toggler-icon.on {
  background-image: url(../images/icons/menu-close.png);
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item:last-child .nav-link:before {
    content: unset;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  position: relative;
  color: #fff;
  text-transform: uppercase;
  padding: 0 5px;
  margin: 0 10px;
  transition: all 0.6s ease;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
}
@media screen and (max-width: 1280px) {
  .navbar .navbar-nav .nav-item .nav-link {
    margin: 0 5px;
  }
}
@media screen and (max-width: 1024px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 14px 15px;
    margin: unset;
    text-align: right;
    font-size: 14px;
  }
}
.navbar .navbar-nav .nav-item .nav-link.active, .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--theme-light-gold);
}
.navbar .navbar-nav .nav-item .nav-link.active:before, .navbar .navbar-nav .nav-item .nav-link:hover:before {
  width: 100%;
}
.navbar .navbar-nav .nav-item .nav-link.active:after, .navbar .navbar-nav .nav-item .nav-link:hover:after {
  opacity: 0.3;
  top: -20%;
}
.navbar .navbar-nav .nav-item .nav-link:before {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--theme-light-gold);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -2px;
  transition: all 0.6s ease;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link:before {
    width: 100%;
    bottom: 0;
  }
}
.navbar .navbar-nav .nav-item .nav-link:after {
  position: absolute;
  content: url(../images/nav-vecor.png);
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .navbar .navbar-nav .nav-item .nav-link:after {
    display: none;
  }
}
@media screen and (max-width: 1280px) {
  .navbar .main-site {
    width: 15%;
  }
}
@media screen and (max-width: 991px) {
  .navbar .main-site {
    display: none;
  }
}
.navbar .main-site img {
  width: 100%;
}

#mainSlider .carousel-item img {
  animation: zoom-out 10s;
}
@media screen and (max-width: 991px) {
  #mainSlider .carousel-item img {
    animation: unset;
  }
}
#mainSlider .carousel-control-prev,
#mainSlider .carousel-control-next {
  top: unset;
  bottom: 0;
  width: unset;
  opacity: 1;
  z-index: 1;
  background-color: var(--theme-gold);
  padding: 20px;
  border: 1px solid var(--theme-light-gold);
  z-index: 1;
}
@media screen and (max-width: 1680px) {
  #mainSlider .carousel-control-prev,
  #mainSlider .carousel-control-next {
    padding: 15px;
  }
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-control-prev,
  #mainSlider .carousel-control-next {
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  #mainSlider .carousel-control-prev,
  #mainSlider .carousel-control-next {
    padding: 5px;
  }
}
#mainSlider .carousel-control-prev:hover:before,
#mainSlider .carousel-control-next:hover:before {
  width: 100%;
}
#mainSlider .carousel-control-prev:before,
#mainSlider .carousel-control-next:before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  top: 0;
  z-index: -1;
  transition: all 0.6s ease;
}
#mainSlider .carousel-control-prev {
  left: unset;
  right: 75px;
}
@media screen and (max-width: 1680px) {
  #mainSlider .carousel-control-prev {
    right: 64px;
  }
}
@media screen and (max-width: 1440px) {
  #mainSlider .carousel-control-prev {
    right: 54px;
  }
}
@media screen and (max-width: 600px) {
  #mainSlider .carousel-control-prev {
    right: 44px;
  }
}
#mainSlider .carousel-control-prev:before {
  right: 0;
}
#mainSlider .carousel-control-next {
  right: 0;
}
#mainSlider .carousel-control-next:before {
  left: 0;
}

.sec01 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/highlights-bg.jpg);
  background-repeat: repeat;
}
@media screen and (max-width: 991px) {
  .sec01 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec01 {
    padding: 30px 0;
  }
}
.sec01 .txt {
  padding: 0 150px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .sec01 .txt {
    padding: 0 50px;
  }
}
@media screen and (max-width: 600px) {
  .sec01 .txt {
    padding: 0;
  }
}
.sec01 .content {
  position: relative;
  z-index: 1;
}
.sec01 .content:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 100%;
  background-color: var(--theme-gold);
  top: 0;
  right: 40px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .sec01 .content:before {
    display: none;
  }
}
.sec01 .content .left-vector {
  position: absolute;
  left: -21px;
  bottom: 0;
  border-bottom: 2px solid var(--theme-gold);
}
@media screen and (max-width: 1024px) {
  .sec01 .content .left-vector {
    display: none;
  }
}
.sec01 .content .right-vector {
  position: absolute;
  right: -18px;
  bottom: 0;
  border-bottom: 2px solid var(--theme-gold);
}
@media screen and (max-width: 991px) {
  .sec01 .content .right-vector {
    display: none;
  }
}
.sec01 .content ul {
  margin-bottom: 0;
}
@media screen and (max-width: 1280px) {
  .sec01 .content ul {
    padding-left: 10px;
  }
}
@media screen and (max-width: 991px) {
  .sec01 .content ul {
    padding-left: 40px;
    padding-top: 20px;
  }
}
.sec01 .content ul li {
  color: #fff;
  margin: 10px 0;
}
@media screen and (max-width: 991px) {
  .sec01 .content ul li {
    color: unset;
  }
}
.sec01 .content ul li::marker {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .sec01 .content ul li::marker {
    color: #000;
  }
}

.sec02 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .sec02 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec02 {
    padding: 30px 0;
  }
}
.sec02 .comp-proj {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  padding: 50px 0;
  border: 1px solid var(--theme-light-gold);
}
.sec02 .comp-proj .head {
  color: var(--theme-gold);
}
.sec02 .comp-proj ul {
  margin-bottom: 0;
  padding-left: 0;
}
.sec02 .comp-proj ul li {
  list-style-type: none;
  margin: 10px 0;
}

.sec03 {
  position: relative;
}
.sec03 .bg-img {
  overflow: hidden;
}
.sec03 .bg-img img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .sec03 .bg-img img {
    width: 250%;
    filter: brightness(0.7);
  }
}
.sec03 .overlay {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 1280px) {
  .sec03 .overlay {
    top: 70%;
  }
}
.sec03 .overlay .head-sec .heading {
  font-size: 48px;
}
@media screen and (max-width: 1680px) {
  .sec03 .overlay .head-sec .heading {
    font-size: 35px;
  }
}
@media screen and (max-width: 991px) {
  .sec03 .overlay .head-sec .heading {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .sec03 .overlay .head-sec .heading {
    font-size: 23px;
  }
}

.sec04 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/03.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .sec04 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec04 {
    padding: 30px 0;
  }
}
.sec04 .img {
  position: relative;
  padding: 50px;
}
.sec04 .img .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  display: none;
}
@media screen and (max-width: 991px) {
  .sec04 .img .overlay {
    display: block;
  }
}
.sec04 .img .overlay .icon {
  position: absolute;
  background-color: var(--theme-gold);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  .sec04 .img .overlay .icon {
    width: 40px;
    height: 40px;
  }
}
.sec04 .img .overlay .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .sec04 .img .overlay .icon i {
    font-size: 16px;
  }
}

.sec05 {
  padding: 100px 0;
}
@media screen and (max-width: 991px) {
  .sec05 {
    padding: 50px 0 80px;
  }
}
@media screen and (max-width: 600px) {
  .sec05 {
    padding: 30px 0 80px;
  }
}
.sec05 h5 {
  color: var(--theme-gold);
  font-family: var(--playfair-display-bold);
}
.sec05 .item {
  position: relative;
  padding: 0 20px;
  height: 100%;
}
.sec05 .item:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 500px;
  background-color: var(--theme-gold);
  top: 0;
  left: -20px;
}
@media screen and (max-width: 991px) {
  .sec05 .item:before {
    left: -10px;
  }
}
@media screen and (max-width: 600px) {
  .sec05 .item:before {
    display: none;
  }
}
.sec05 .item ul {
  margin-bottom: 0;
  padding-left: 20px;
}
.sec05 .item ul li {
  margin: 5px 0;
}
.sec05 .item ul li::marker {
  color: var(--theme-gold);
}
.sec05 .owl-nav {
  margin-top: 20px;
}
@media screen and (max-width: 991px) {
  .sec05 .owl-nav {
    right: unset;
    left: 0;
  }
}

.sec06 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/amenities-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .sec06 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec06 {
    padding: 30px 0;
  }
}
.sec06 .nav-pills {
  position: relative;
  justify-content: center;
}
.sec06 .nav-pills:before {
  position: absolute;
  content: "";
  width: 60%;
  height: 1px;
  background-color: var(--theme-gold);
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 0;
}
@media screen and (max-width: 1440px) {
  .sec06 .nav-pills:before {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .sec06 .nav-pills:before {
    width: 100%;
  }
}
.sec06 .nav-pills .nav-link {
  position: relative;
  color: #000;
  padding: 10px 50px;
  z-index: 1;
  transition: all 0.6s ease;
  text-transform: uppercase;
}
@media screen and (max-width: 600px) {
  .sec06 .nav-pills .nav-link {
    padding: 10px;
    font-size: 12px;
  }
}
@media screen and (max-width: 400px) {
  .sec06 .nav-pills .nav-link {
    padding: 8px;
  }
}
.sec06 .nav-pills .nav-link.active {
  background-color: transparent;
  color: #fff;
}
.sec06 .nav-pills .nav-link.active:after {
  width: 100%;
}
.sec06 .nav-pills .nav-link:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  background-color: var(--theme-gold);
  bottom: 0;
  transition: all 0.6s ease;
  z-index: -1;
}
.sec06 .nav-pills .nav-link.first:before {
  display: none;
}
.sec06 .nav-pills .nav-link.first:after {
  right: 0;
}
.sec06 .nav-pills .nav-link.second:after {
  left: 0;
}
.sec06 .tab-content a {
  text-decoration: none;
  cursor: pointer;
}
.sec06 .tab-content .item {
  position: relative;
}
.sec06 .tab-content .item:hover .img:before {
  opacity: 1;
}
.sec06 .tab-content .item:hover .img .icon {
  background-color: var(--theme-gold);
  width: 60px;
  height: 60px;
  opacity: 1;
}
.sec06 .tab-content .item:hover .img .icon i {
  opacity: 1;
}
.sec06 .tab-content .item .img {
  position: relative;
}
.sec06 .tab-content .item .img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
  opacity: 0;
}
.sec06 .tab-content .item .img .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  width: 0;
  height: 0;
  border: 1px solid #a5a5a5;
  border-radius: 50%;
  transition: all 0.4s ease;
  opacity: 0;
}
@media screen and (max-width: 1440px) {
  .sec06 .tab-content .item .img .icon {
    width: 50px;
    height: 50px;
  }
}
.sec06 .tab-content .item .img .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--theme-lightgreen);
  font-size: 18px;
  transition: all 0.6s ease;
  color: #fff;
  opacity: 0;
}
@media screen and (max-width: 1440px) {
  .sec06 .tab-content .item .img .icon i {
    font-size: 16px;
  }
}
.sec06 .tab-content .title {
  background-color: var(--theme-gold);
  color: #fff;
  padding: 15px;
  text-align: center;
}
@media screen and (max-width: 1440px) {
  .sec06 .tab-content .title {
    padding: 10px;
  }
}
.sec06 .tab-content .title p {
  font-family: var(--jost-medium);
  text-transform: uppercase;
}
@media screen and (max-width: 1280px) {
  .sec06 .tab-content .title p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .sec06 .tab-content .title p {
    font-size: unset;
  }
}

.sec07 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/plan-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 991px) {
  .sec07 {
    padding: 50px 0 70px;
  }
}
@media screen and (max-width: 600px) {
  .sec07 {
    padding: 30px 0 60px;
  }
}
.sec07 .item {
  position: relative;
}
.sec07 .item .icon {
  position: absolute;
  right: 70px;
  bottom: 50px;
  background-color: var(--theme-gold);
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 600px) {
  .sec07 .item .icon {
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
  }
}
.sec07 .item .icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.sec08 {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .sec08 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec08 {
    padding: 30px 0;
  }
}
@media screen and (max-width: 991px) {
  .sec08 .now-logo {
    text-align: center;
  }
}
.sec08 .now-logo img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .sec08 .now-logo img {
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  .sec08 .now-logo img {
    width: 70%;
  }
}

.sec09 {
  position: relative;
  padding: 100px 0;
  background-image: url(../images/04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .sec09 {
    padding: 50px 0;
  }
}
@media screen and (max-width: 600px) {
  .sec09 {
    padding: 30px 0;
  }
}
.sec09 .content {
  position: relative;
}
.sec09 .content:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--theme-gold);
  left: 50%;
  transform: translate(-50%, 0);
  top: 0;
}
@media screen and (max-width: 1600px) {
  .sec09 .content:before {
    left: 52%;
  }
}
@media screen and (max-width: 991px) {
  .sec09 .content:before {
    display: none;
  }
}
@media screen and (max-width: 1440px) {
  .sec09 .content h2 {
    font-size: 25px;
  }
}
@media screen and (max-width: 600px) {
  .sec09 .content h2 {
    font-size: 20px;
  }
}

.float-icons {
  position: fixed;
  top: 200px;
  right: 10px;
  z-index: 9999;
}
@media screen and (max-width: 991px) {
  .float-icons {
    z-index: 99;
  }
}
@media screen and (max-width: 600px) {
  .float-icons {
    top: unset;
    right: unset;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
  }
}
.float-icons ul {
  position: relative;
  padding-left: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .float-icons ul {
    display: flex;
  }
}
.float-icons ul li {
  background-color: #000;
  list-style-type: none;
  border: 1px solid #fff;
  border-radius: 50px;
  margin: 10px 0;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .float-icons ul li {
    border-radius: 0;
    margin: -1px;
    display: inline-block;
    width: 25.5%;
    text-align: center;
    padding: 5px;
  }
}
.float-icons ul li.home-tab {
  display: none;
}
@media screen and (max-width: 991px) {
  .float-icons ul li.home-tab {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .float-icons ul li.home-tab {
    background-color: var(--theme-gold);
  }
}
.float-icons ul li:hover {
  margin-left: -130px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover {
    margin-left: -1px;
  }
}
.float-icons ul li:hover p {
  opacity: 1;
  transition: all 0.2s ease;
  transition-delay: 0.2s;
  left: -80px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover p {
    opacity: unset;
    transition: unset;
    transition-delay: unset;
  }
}
.float-icons ul li:hover .img {
  transform: rotate(-360deg);
}
.float-icons ul li:hover .img:before {
  display: block;
}
@media screen and (max-width: 600px) {
  .float-icons ul li:hover .img:before {
    display: none;
  }
}
.float-icons ul li:first-child {
  margin-top: 0;
}
.float-icons ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a {
    display: unset;
    align-items: unset;
    padding: 0;
  }
}
.float-icons ul li a .img {
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a .img {
    transform: scale(0.8);
  }
}
.float-icons ul li a .img:before {
  position: absolute;
  content: "";
  height: 150%;
  width: 150%;
  background-color: var(--theme-gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
  display: none;
  transition: all 0.6s ease;
}
.float-icons ul li a p {
  position: absolute;
  color: #fff;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .float-icons ul li a p {
    position: unset;
    opacity: 1;
    font-size: 12px;
    line-height: 20px;
  }
}
@media screen and (max-width: 400px) {
  .float-icons ul li a p {
    font-size: 10px;
  }
}

.modal .modal-content {
  border-radius: 0;
}
.modal .modal-content .modal-header {
  background-color: var(--theme-gold);
  border-radius: 0;
  color: #fff;
  padding: 15px 30px;
}
.modal .modal-content .modal-header .theme-btn-close {
  position: absolute;
  border: none;
  background-color: transparent;
  right: 30px;
  top: 20px;
  color: #fff;
}
.modal .modal-content .modal-header .modal-title {
  font-size: 20px;
}
.modal .modal-content .modal-body {
  padding: 30px;
}
.modal .modal-content .modal-body input {
  border-radius: 0;
  padding: 10px;
  border: 1px solid #787878;
}
.modal .modal-content .modal-body input:focus {
  box-shadow: none;
}
.modal .modal-content .modal-body input::-moz-placeholder {
  font-size: 12px;
}
.modal .modal-content .modal-body input::placeholder {
  font-size: 12px;
}

.m-backtotop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--theme-gold);
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
  animation: shadow-pulse 1s infinite;
}
@media screen and (max-width: 1440px) {
  .m-backtotop {
    height: 40px;
    width: 40px;
  }
}
.m-backtotop.active {
  bottom: 15px;
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .m-backtotop.active {
    bottom: 60px;
  }
}
.m-backtotop > div {
  transition: all 0.3s ease-in-out;
}
.m-backtotop > div.arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
  color: #fff;
}
.m-backtotop > div.text {
  text-transform: uppercase;
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(50%) translateX(-50%);
  opacity: 0;
  margin-top: 1px;
  color: #fff;
}
.m-backtotop:hover {
  bottom: 20px;
  cursor: pointer;
  background-color: var(--theme-gold);
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
@media screen and (max-width: 1440px) {
  .m-backtotop:hover {
    bottom: 65px;
  }
}
.m-backtotop:hover > div.arrow {
  transform: translateY(-150%) translateX(-50%);
  opacity: 0;
}
.m-backtotop:hover > div.text {
  transform: translateY(-50%) translateX(-50%);
  opacity: 1;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}
@keyframes zoom-out {
  100% {
    transform: scale(1.1);
  }
}
#thank-you {
  background: #000;
  position: relative;
  background-size: cover;
  color: #fff;
  padding: 5rem 0;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

footer {
  background: #fff;
  box-shadow: 0 -5px 10px -5px black;
}
@media screen and (max-width: 600px) {
  footer {
    margin: 0 0 70px;
  }
}
footer .sc01 {
  padding: 15px 0;
}
footer p {
  font-size: 13px;
  color: #13100d;
  margin: 0;
}
footer p a {
  color: #13100d;
  text-decoration: none;
}
footer p a.fa-brands {
  padding: 8px;
  font-size: 15px !important;
  width: 32px;
  height: 32px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
  transition: all 0.6s ease;
}
footer p a.fa-brands:hover.fa-facebook-f {
  background: #3b5998;
  color: white;
  transition: all 0.6s ease;
}
footer p a.fa-brands:hover.fa-twitter {
  background: #55acee;
  color: white;
  transition: all 0.6s ease;
}
footer p a.fa-brands:hover.fa-linkedin-in {
  background: #007bb5;
  color: white;
  transition: all 0.6s ease;
}
footer p a.fa-brands:hover.fa-youtube {
  background: #f70000;
  color: white;
  transition: all 0.6s ease;
}
footer p a.fa-brands:hover.fa-pinterest {
  background: #e60023;
  color: white;
  transition: all 0.6s ease;
}
footer p a.fa-brands:hover.fa-instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  color: white;
  transition: all 0.6s ease;
}
footer p a.fa-brands:hover.fa-rss {
  background: #a2a2a2;
  color: white;
  transition: all 0.6s ease;
}
footer ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 600px) {
  footer ul {
    display: block;
  }
}
footer ul li {
  margin: 0 5px;
}
@media screen and (max-width: 600px) {
  footer ul li {
    margin: 0;
  }
}
footer ul li:first-child {
  margin-left: 0;
}
footer ul li a {
  font-size: 13px;
  color: #13100d;
  text-decoration: none;
  padding: 5px 4px 5px 0;
  position: relative;
  transition: all 0.6s ease;
}
footer ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  background: #13100d;
  height: 2px;
  bottom: 0;
  transition: all 0.6s ease;
}
footer ul li a:hover::before {
  width: 100%;
}

.rera {
  padding: 2.5rem 0;
  position: relative;
}
.rera h2 {
  text-align: center;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .rera h2 {
    font-size: 20px;
  }
  .rera h2 img {
    width: 25px;
    margin-right: 5px;
  }
}
@media screen and (max-width: 380px) {
  .rera h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 999px) {
  .rera h2 img {
    width: 40px;
    margin-right: 5px;
  }
}
.rera .img {
  width: 122px;
  margin-right: 9px;
}
@media screen and (max-width: 600px) {
  .rera .img {
    margin: 0 auto;
  }
}
.rera p {
  margin-top: 7px;
}
@media screen and (max-width: 600px) {
  .rera p {
    text-align: center;
    line-height: 22px;
  }
}
.rera p a {
  text-decoration: none;
  color: #000;
}

.btn {
  padding: 0.8rem 2.9rem;
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 0;
  border: 1px solid #fff;
  transition: all 0.6s ease;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 600px) {
  .btn {
    font-size: 15px;
    padding: 0.6rem 2.9rem;
  }
}
.btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #b99656;
  background-size: cover;
  z-index: -1;
  left: 0;
  right: 0;
  transition: all 0.6s ease;
  bottom: 0;
  transform: scaleX(0);
}
.btn:hover {
  transition: all 0.6s ease;
  color: #fff;
}
.btn:hover::before {
  transition: all 0.6s ease;
  height: 100%;
  transform: scaleX(1);
}/*# sourceMappingURL=style.css.map */