@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: #137195;

}
::-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: 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;
text-transform: capitalize;
  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 var(--gold);
}
.img-hover:hover {
  transform: scale(.8);
}
header .navbar {
 background-color: rgba(255, 255, 255, .8);
}
header .navbar .navbar-nav li .nav-link {
  display: block;
  width: fit-content;
  color: rgb(15, 48, 58);
  font-weight: 700;

  border: none;
}
header .navbar .navbar-nav li .nav-link:hover {
  color: rgb(1, 68, 88);
  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 {
    text-align: center;
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #47839b;
    cursor: pointer;
    letter-spacing: 2px;
    position:relative;
    overflow:hidden;
    color: #ffffff;
    background-color: #137195;
}
.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  #137195;
  transform: scaleX(0.2);
  opacity: 0;
  transition: var(--transition-2);
  
}
.hover-underline:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  opacity: 1;
}
.link-btn::before {
    content: "";
    position: absolute;
    height: 150px;
    width: 50px;
    background : #fff;
    right: -60px;
    top: -60px;
    transform: rotate(37deg);
    transition: all .3s;
    opacity: 0.7;
}
.link-btn:hover:before{
    right: 105%;
}
.container .navbar .link-btn {
  padding: .4rem 1.3rem;
}
.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;
}

@media (max-width:991px) {

  section {
    padding: 1.675rem 0;
  }

  .banner_wrapper {
    height: 33.625rem;
  }
}
.jumbotron {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/IMG_4793.jpg') center/cover no-repeat fixed;
 
  background-attachment: fixed;
  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.7), rgba(0, 0, 0, 0.8)), url('images/IMG_4783.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: #b8411d;
  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: #b8411d;
  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;
  -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;


}
.room-thumbnail-absolute{
  display: none;
}
.btnfooter{
  display: none;
}
}
/*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;
  }
  
  
.banner-animation { animation: waveAnim 2s linear infinite alternate; }

@keyframes waveAnim {
  0% { transform: translate(0, 0) rotate(0); }
  100% { transform: translate(2px, 2px) rotate(1deg); }
}

.separator {
  background-size: cover;
  color: #ffffff;
  line-height: 0.5;
  text-align: center;
  margin: 30px 0 30px 0;
}

.separator span:after {
  left: 100%;
  margin-left: 15px;
}

.separator span:before,
.separator span:after {
  content: "";
  position: absolute;
  border-bottom: 1px solid  white;
  top: 5px;
  width: 100px;
}

.separator span {
  display: inline-block;
  position: relative;
}

.separator span:before {
  right: 100%;
  margin-right: 15px;
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.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;
}


.site-hero .site-hero-inner {
  min-height: 750px;
  height: 100vh;
}

.room {
  background: #fff;
  margin-bottom: 30px;
}

.room figure {
  position: relative;
  float: left;
  overflow: hidden;
}

.room figure:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: .5;
  content: "";
}

.room figure .overlap-text {
  z-index: 99;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}

.room .media-body {
  padding: 30px;
  border: 1px solid #e6e6e6;
  border-top: none;
}

.room .media-body .room-specs {
  margin: 0;
  padding: 0;
}

.room .media-body .room-specs li {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0 20px 20px 0;
}

.room .media-body .room-specs li span {
  font-size: 30px;
  position: relative;
  top: 4px;
  margin-right: 10px;
}

.room-thumbnail-absolute {
  position: relative;
}

.room-thumbnail-absolute .room {
  position: relative;
}

.room-thumbnail-absolute .room.bg {
  position: relative;
  height: 47.8%;
  width: 100%;
  background-size: cover;
}

.room-thumbnail-absolute .room.bg:last-child {
  margin-bottom: 0;
}

.room-thumbnail-absolute .room:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: .5;
  content: "";
}

.room-thumbnail-absolute .room .overlap-text {
  bottom: 20px;
  left: 20px;
  width: 100%;
  position: absolute;
  z-index: 10;
}

.room-thumbnail-absolute .room .overlap-text span {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
}
.service-box {
  padding: 25px 0 0;
  border: 1px solid #fff;
  margin-bottom: 30px;
  background: #fff;
}



.offer-banner {
  position: relative;
  margin-top: -70px;
}
.offer-banner .outer-box {
  position: relative;
  background-color: #222222;
  padding: 74px 103px 78px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .offer-banner .outer-box {
    padding: 44px 46px 50px;
  }
}
.offer-banner .outer-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 658px;
  height: 502px;
  background-image: url('./images/pattern3\ \(2\).png');
}
@media (max-width: 575.98px) {
  .offer-banner .outer-box .content-colum .inner-column .content-box .sub-title {
    margin-bottom: 20px;
    display: inline-block;
  }
}
.offer-banner .outer-box .content-colum .inner-column .content-box .title {
  font-size: 48px;
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .offer-banner .outer-box .content-colum .inner-column .content-box .title {
    font-size: 39px;
  }
}
@media (max-width: 575.98px) {
  .offer-banner .outer-box .content-colum .inner-column .content-box .title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 10px;
  }
}
.offer-banner .outer-box .btn-column .inner-column {
  text-align: right;
  margin-top: 21px;
}
@media (max-width: 991.98px) {
  .offer-banner .outer-box .btn-column .inner-column {
    text-align: center;
  }
}
