@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: #748194;

}

::-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;
}

.gold-head {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}

.black-bg {
  background-color: var(--black);
  color: var(--bs-gray-400);
}
.bg-light{

}
h1 {
  font-size: 80px;
  line-height: 4.25rem;
  font-weight: 700;
  color: white;
  text-transform: capitalize;
  font-family: var(--style-font);
}

@media (max-width: 767px) {
  h1 {
    font-size: 40px;
    line-height: 2.5rem;
  }
}

.img-hover {
  transition: .2s ease-in;
}

.img-fluid {
  box-shadow: 8px 8px 4px #9da9bb;
}

.img-hover:hover {
  transform: scale(.8);
}

header .navbar {
  background-color: rgba(0, 0, 0, 0.7);
}

header .navbar .navbar-nav li .nav-link {
  display: block;
  width: fit-content;
  color: white;
  font-weight: 700;

  border: none;
}

header .navbar .navbar-nav li .nav-link:hover {
  color: #9da9bb;
  opacity: .8;
}

header .navbar ul li .nav-link.active {
  color: #E0E7E9;
}

header .navbar .link-btn {
  margin-left: auto;
  margin-right: auto;
}

.fourth-button {
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  border: 3px #748194 solid;
  position: relative;
  color: #748194;
}

.fourth-button:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  position: absolute;
  top: -10px;
  left: -10px;
  border-left: 3px #748194 solid;
  border-top: 3px #748194 solid;
  transition: all 0.3s ease-in;
}

.fourth-button:after {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  position: absolute;
  bottom: -10px;
  right: -10px;
  border-right: 3px #9da9bb solid;
  border-bottom: 3px #748194 solid;
  transition: all 0.2s ease-in;
}

.fourth-button:hover::before {
  width: 50px;
  height: 50px;
  border-left: 3px #9da9bb solid;
  border-top: 3px #9da9bb solid;
}

.fourth-button:hover::after {
  width: 50px;
  height: 50px;
  border-right: 3px #9da9bb solid;
  border-bottom: 3px #9da9bb solid;
}

.fourth-button:hover {
  color: #9da9bb;
  box-shadow: 0px 5px 25px 1px #9da9bb;
  border-color: #748194;
}

.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 #9da9bb;
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);

}

.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}

.banner_wrapper {
  height: 80vh;
}

.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;
  background-color: rgba(0, 0, 0, 0.7);
}

.banner_wrapper .swiper-slide::before {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);

  z-index: 0;
}

.banner_wrapper .swiper-pagination-bullets .swiper-pagination-bullet {
  width: .9375rem;
  height: .9375rem;
  background-color: white;
  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;
}

.icon-box-icon.pe-3.pb-3 {
  border: 1px solid #4d5969;
  border-radius: 50%;
}

.icon-box .icon-box-icon svg {
  width: 50px;
  height: 50px;
  color: #4d5969;
}

.icon-box .icon-box-content {
  width: 60%;
}

.icon-box-content h3.card-title {
  font-size: 1.5em;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  position: relative;
  cursor: pointer;
  border-color: #4d5969;
  background-color: #748194;

}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px !important;
}

.swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active:after,
.swiper-pagination span.swiper-pagination-bullet:hover:after {
  transform: scale(2);
}

.product-store .swiper-horizontal>.swiper-pagination-bullets,
.product-store .swiper-pagination-bullets.swiper-pagination-horizontal,
.product-store .swiper-pagination-custom,
.product-store .swiper-pagination-fraction {
  position: relative !important;
}

@media (max-width:991px) {

  section {
    padding: 1.675rem 0;
  }

  .banner_wrapper {
    height: 33.625rem;
  }
}

.jumbotron {
  background-image:url('../images/jumbo.jpg');
  background-size: cover;
  background-position: center;
  
  min-height: 50vh;
}
.jumbotron h2 {
  color: #020101BA;
  letter-spacing: 10px;
}

.im-img {
  width: 35%;
}

.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;
}

.bg-images section {
  margin-top: 10vh;
}

.bg-images section h1 {
  font-weight: 600;
  font-family: var(--style-font);
  letter-spacing: 3px;
}

.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: 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;

  }
}

.footer_wrapper {

  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('images/305533347.jpg') center/cover no-repeat fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #b6b7b9;
  padding: 5% 0 5% 0;
}

.footer_wrapper h5 {
  color: #748194;
  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: white;
}

.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 white;
  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: #748194;
  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: #020202;
  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;
  }
}

@media (max-width:800px) {

  .container .link-btn,
  .link-btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0 25px;
    font-size: 12px;
    line-height: 35px;
  }

  .none {
    display: none;
  }

  .btnfooter {
    display: none;
  }
  .icon-box{
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}

/*ANIMATIONS*/
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.50deg);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}


[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}


.animations-disabled {

  &,
  [data-animation] {
    animation: none !important;
    opacity: 1 !important;
  }
}

.slideInUp {
  animation-name: slideInUp;
}

.slideInDown {
  animation-name: slideInDown;
}

.slideInLeft {
  animation-name: slideInleft;
}

.slideInRight {
  animation-name: slideInRight;
}


.fadeIn {
  animation-name: fadeIn;
}


.zoomIn {
  animation-name: zoomIn;
}

.zoomReverseIn {
  animation-name: zoomReverseIn;
}


.flipInY {
  animation-name: flipInY;
}

.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}


.home1 {
  padding: 0;
}

.home1 .slide {
  min-height: 40vh;
  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;
}


.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;
}

.about {
  position: relative;
  isolation: isolate;
}

.about::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 95%;
  width: 100%;
  background-image: url("images/ban.JPG");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}
.widget-features-grid .features-item,
.widget-rooms-carousel .rooms-item .item-inner {
  -webkit-box-shadow: 0 0 30px 0 rgba(33, 30, 25, .1);
  -moz-box-shadow: 0 0 30px 0 rgba(33, 30, 25, .1)
}

.widget-features-grid .features-item a {
  width: 100%;
  display: block;
  padding: 60px 30px 30px;
  color: #fff;
  background: -moz-linear-gradient(top,rgba(0,0,0,0) 0,rgb(22, 24, 27) 70%);
  background: -webkit-linear-gradient(top,rgba(0,0,0,0) 0,rgba(36,50,74,1) 70%);
  background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgb(39, 42, 46) 70%);
}
.widget-features-grid .features-item {
  position: relative;
 padding-top: 50%;
  margin-bottom: 30px;
  border: 20px solid #fff;
  box-shadow: 0 0 30px 0 rgba(33,30,25,.1);
}
.widget-features-grid, .widget-features-grid .features-item {
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}
.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;
  }
}
