@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --style-font: 'Cormorant Garamond', serif;
}

* {
  margin: 0;
  padding: 0;
  font-family: 'Arial', serif;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 28px;
}

section {
  padding: 2.111rem 0;
}

::selection {
  color: #cda45e;

}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background: #222222;
}

a {
  color: inherit;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);

}

.flex {
  display: flex;
}

.lead {
  opacity: 0.8;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.5;
}
.bg-dark{
  color: #132742;
}
.gold-head {
  color: #A48154;
  font-family: var(--style-font);
}

.black-bg {
  background-color: var(--black);
  color: var(--bs-gray-400);
}

h1 {
  font-size: 3.75rem;
  line-height: 4.25rem;
  font-weight: 700;
  color: white;

  font-family: var(--style-font);
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.875rem;
    line-height: 2.5rem;
  }
}

.img-hover {
  transition: .2s ease-in;
}

.img-fluid {
  box-shadow: 8px 8px 4px #2b3d55;
}

.img-hover:hover {
  transform: scale(.8);
}

header .navbar {
  background: linear-gradient(90deg, #132742 0%, #132742 100%);
}

header .navbar .navbar-nav li .nav-link {
  display: block;
  width: fit-content;
  color: #E2CD8A;
  font-weight: 700;

  border: none;
}

header .navbar .navbar-nav li .nav-link:hover {
  color: #a08736;
  opacity: .8;
}

header .navbar ul li .nav-link.active {
  color: #E0E7E9;
}

header .navbar .link-btn {
  margin-left: auto;
  margin-right: auto;
}

.container .link-btn,
.link-btn {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #49535c;
  padding: 0 30px;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: all 0.4s ease-out 0s;
  background-color: #1e130c;
  box-shadow: 0px 5px 16px 0px #9a8478;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
}

.hover-underline {
  position: relative;
  max-width: max-content;

}
.hover-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5px;
  border-block: 1px solid white;
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);

}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.link-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: var(--gold) 1px;

}

.container .navbar .link-btn {
  padding: .4rem 1.3rem;
}

.banner_wrapper {
  height: 85vh;
}

.banner_wrapper .swiper {
  width: 100%;
  height: 100%;
}

.banner_wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;

}

.banner_wrapper .swiper-slide::before {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: .9375rem;
  height: .9375rem;
  background-color: #9a8478;
  border: .0625rem solid white;
}

.banner_wrapper .swiper .slide-caption {
  text-align: center !important;
  height: 100%;
  position: relative;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center !important;
}

.banner_wrapper .swiper .slide-caption p {

  text-align: center;
  max-width: 37.5rem;
  margin: 0 auto;
  color: white;
}

@media (max-width:991px) {

  section {
    padding: 1.875rem 0;
  }

  .banner_wrapper {
    height: 33.625rem;
  }
}

.jumbotron {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url('../images/bkg-img4.jpg') center/cover no-repeat fixed;

  background-attachment: fixed;
  min-height: 50vh;
}

.jumbotron h2 {
  color: #020101BA;

}
.im-img {
  width: 35%;
}

.contact section p {
  color: white;
  text-align: center;
}

.contact section a {
  text-decoration: none;
  color: inherit;
  transition: .1s;
  border-bottom: 1px solid transparent;
}

.contact section a:hover {
  border-color: var(--bs-secondary);
}

@media only screen and (min-width: 768px) {




  .hidden-mobile {
    display: block;
  }

  .show-mobile {
    display: none;
  }

  .contact section {
    width: 33%;
  }
}

@media only screen and (min-width: 992px) {

  header .navbar .link-btn {
    margin: 0;
    margin-left: auto;
  }

  .im-img {
    width: 28%;
  }
}


@media (max-width: 767px) {
  .section1 {
    text-align: center !important;
    align-items: center !important;

  }

  .imageroom {
    display: none;
  }
}

.footer_wrapper {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), #132742f1), url('images/footer-bg-1-1.jpg') center/cover no-repeat fixed, #132742;
  padding: 5% 0 5% 0;

    background-color: #132742;

}

.footer_wrapper h5 {
  color: #cda45e;
  margin-bottom: 1.25rem;
}

.footer_wrapper ul li {
  margin-bottom: .5rem;
  list-style: none;
}

.footer_wrapper .contact-info li a {
  color: white;
}

.footer_wrapper .link-widget li a,
.footer_wrapper p {
  color: white;
  font-size: 14px;
  padding-left: 1.5rem;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.footer_wrapper .link-widget li a::before {
  content: '\f105';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0.3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);

}

.footer_wrapper .link-widget li a:hover {
  margin-left: .625rem;
  color: hsl(38, 61%, 73%);
}

.footer_wrapper .social-network a {
  width: 2.1875rem;
  height: 2.1875rem;
  margin: .5rem;
  line-height: 2rem;
  font-size: .875rem;
  display: inline-block;
  border: .125rem solid hsl(38, 61%, 73%);
  color: var(--text-gray);
  text-align: center;
  border-radius: 100%;
  -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.footer_wrapper .social-network a:hover {
  background-color: white;
  border-color: var(--secondary-color);
  color: var(--text-white);
  box-shadow: 0 .625rem .9375rem 0 rgb(0 0 0 / 10%);
  transform: translateY(-0.1875rem);
}

.footer_wrapper .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--secondary-color);
}

.footer_wrapper .copyright-section {
  background-color: #222222;
  padding: 1.10rem 0 .3125rem;
  text-align: center;
}

.footer_wrapper .copyright-section a {
  color: white;
}

@media (max-width: 767px) {
  .footer_wrapper>div {
    padding: 0 1.875rem;
  }
}

.home1 {
  padding: 0;
}

.home1 .slide {
  min-height: 35vh;
  background-size: cover !important;
  background-position: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  background: transparent;
  color: white;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: transparent;
  color: white;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem;
}


.text-gold {
  color: #867051;
}


@media (max-width:1200px) {
  #gallery {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;

    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (max-width:800px) {

  .container .link-btn,
  .link-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid#1E323D;
    padding: 0 25px;
    font-size: 12px;
    line-height: 35px;


  }
  .none{
    display: none;
  }
}
.bg-images {
  background: rgba(0, 0, 0, 0.8);
  background-position: center;
  background-size: cover;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-about {
  padding-top: 103px;
  position: relative;
  z-index: 2;
}
.section-about .section-shape {

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 70px;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9;
}
.section-about .about-icon-wrap {
  margin-top: 120px;
  margin-bottom: -150px;
}
.section-about .about-content {
  margin: 40px 0;
}
@media screen and (min-width: 1200px) {
  .section-about .section-about-container .row {
    margin: 0 -30px;
  }
  .section-about .section-about-container .row [class*=col-] {
    padding: 0 30px;
  }
}
@media screen and (max-width: 575px) {
  .section-about {
    padding-top: 50px;
  }
  .section-about .about-icon-wrap {
    margin-top: 70px;
  }
}

.about-image img {
  width: 100%;
}
.about-image .about-contact {
  background-color: #ffffff;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  margin-top: -50px;
  margin-right: 50px;
  margin-left: 50px;
  position: relative;
}
.about-image .about-contact h3 {
  color: #E27B60;
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .about-image .about-contact {
    margin-right: 20px;
    margin-left: 20px;
  }
}

.about-video-banner {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 375px;
}

.about-content p {
  margin-bottom: 25px;
}
.about-content ul {
  padding: 0;
  margin: 0 0 30px;
}
.about-content li {
  list-style: none;
  margin-bottom: 5px;
  padding-left: 25px;
  position: relative;
}
.about-content li i {
  color: #E27B60;
  margin-right: 5px;
  font-size: 18px;
  position: absolute;
  top: 4px;
  left: 0;
}

.section-about-container {
  position: relative;
}
.section-about-container [class*=-background-pattern] {
  position: absolute;
  z-index: -1;
}
.section-about-container [class*=-background-pattern] img {
  opacity: 0.7;
}
.section-about-container .left-background-pattern {
  bottom: 0;
  left: 0;
}
.section-about-container .left-background-pattern img {
  width: 100%;
}
.section-about-container .right-background-pattern {
  z-index: 10;
  top: -0%;
  right: 0;
  text-align: right;
}
.section-about-container .right-background-pattern img {
  width: 50%;
  opacity: 0.5;
}
@media screen and (min-width: 1400px) {
  .section-about-container .right-background-pattern img {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .section-about-container [class*=-background-pattern] {
    display: none;
  }
}

.about-icon-box {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
  padding: 45px;
  position: relative;
  z-index: 1;
}
.about-icon-box .overlay {
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 575px) {
  .about-icon-box {
    padding: 30px 20px;
  }
}
.gallary img {
  width: 270px;
}
.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  height: 50px;
  position: absolute;
  width: 50px;
  cursor: pointer;
  top: 35%;
  background: white !important;
  transition: 0.5s;
}
.owl-carousel .owl-prev {
  left: 33px;
}
.owl-carousel .owl-next {
  right: 33px;
}
.owl-carousel .owl-next:hover,
.owl-carousel .owl-prev:hover {
  background: #C1B086 !important;
}
.flex1 {
  display: flex;
  justify-content: space-between;
}

.review-item blockquote {

  line-height: 1.8;
}

.review-content .swiper-arrow {
  top: 50%;
  bottom: 0;
  z-index: 2;
  border: 1px solid var(--bs-gray-400);
  color: var(--bs-gray-400);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: 0.4s ease-in-out;
}

.review-content .swiper-arrow:hover {
  border: 1px solid #4d5969;
  color: #4d5969;
}

.review-content .swiper-arrow.swiper-arrow-prev {
  left: -80px;
}

.review-content .swiper-arrow.swiper-arrow-next {
  right: -80px;
}

.review-content .quotation svg.quote {
  color: gray;
}

#testimonials .swiper-pagination {
  display: none;
}

@media only screen and (max-width: 901px) {
  #testimonials .swiper-pagination {
    display: block;
    bottom: 10px;
  }

  .review-content .swiper-arrow {
    display: none !important;
  }
}

.pattern_3 {
  background: #fff url(../images/bg-shape.png) bottom left no-repeat;
}



 .fadeinleft {
  opacity:0;
  transform: translateX(200px);
  transition: all 1.3s ease-out;
}
.fadeinright{
  opacity: 0;
  transform: translateX(-200px);
  transition: all 0.8s ease-out;
}
.fadeindown{
  opacity: 0;
  transform: translateY(-100px);
  transition: all 1.2s ease-out;
}
.fadeinup{
  opacity: 0;
  transform: translateY(100px);
  transition: all 1.2s ease-out;
}
.fade-in{
  opacity:0;
  transition: all 1.3s ease-in;
}
.active-left,.active,.active-right,.active-down,.active-up{
  opacity:1;
  transform: translateX(0);
  transform: translateY(0);
}
.fadein{
opacity: 0;
}
  
.margin_120_95 {
  padding-top: 100px;
  padding-bottom: 85px
}

@media (max-width: 767px) {
  .margin_120_95 {
      padding-top:45px;
      padding-bottom: 45px
  }
}
.parallax_wrapper {
  position: relative;
  margin-bottom: 25px;
}img.rounded-img {
  border-radius: 10px;
}.parallax_wrapper .img_over {
  left: -25%;
  bottom: 10%;
  position: absolute;
  z-index: 99;
}.parallax_wrapper .img_over img {
  border: 4px solid #fff;
  width: 50%;
  height: auto;
  -webkit-box-shadow: 10px 10px 26px 0px rgba(0,0,0,0.21);
  -moz-box-shadow: 10px 10px 26px 0px rgba(0,0,0,0.21);
  box-shadow: 10px 10px 26px 0px rgba(0,0,0,0.21);
}
.box_facilities {
  padding: 0 25px 25px 25px;
  border-width: 2px;
  text-align: center;
  border-style: solid;
  border-right: 0;
  border-image: linear-gradient(to bottom, #ededed, transparent) 1 60%
}

@media (max-width: 1199px) {
  .box_facilities {
      border-width:0
  }
}

.box_facilities h3 {
  font-size: 21px;
  font-size: 1.3125rem
}

@media (max-width: 767px) {
  .box_facilities h3 {
      font-size:18px;
      font-size: 1.125rem
  }
}

.box_facilities.no-border {
  border-width: 0
}

.box_facilities.white {
  border-image: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent) 1 60%
}

.box_facilities.white h3 {
  color: #fff
}


@media (max-width: 767px) {
  .box_facilities.white {
      padding:0;
      margin-bottom: 25px
  }
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 100px;
  overflow: hidden;
  font-size: 120px;
  font-weight: bold;
  margin-top: -60px
}

.marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 140s linear infinite
}

.marquee .content {
  opacity: 0.1;
  line-height: 1.2;
color: #ffffff;
}

@keyframes marquee {
  from {
      transform: translateX(0)
  }

  to {
      transform: translateX(-30%)
  }}
  .mad-mark {
    position: relative;
}
  .mad-mark:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -170px;
    width: 759px;
    height: 565px;
    background: url('./images/contact-2-shape-1.png') no-repeat center center;
    z-index: -1;
}