@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;
  background-color: #efefef;
}

section {
  padding: 2.111rem 0;
}

::selection {
  color: #da973c;

}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-thumb {
  background: #636363;
}

a {
  color: inherit;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);

}

.gold-head {
  color: #7a5e3f;
  font-family: var(--style-font);
}

h1 {
  font-size: 4.75rem;
  line-height: 4.25rem;
  font-weight: 700;
  color: white;
 
  font-family: var(--style-font);
}

@media (max-width: 767px) {
  h1 {
    font-size: 1.975rem;
    line-height: 2.5rem;
  }
}

.img-hover {
  transition: .2s ease-in;
}

.img-fluid {
  box-shadow: 8px 8px 4px  #867051;
}

.img-hover:hover {
  transform: scale(.8);
}

header .navbar {
  background: linear-gradient(90deg, #000000 0%, #434343 100%);
}

header .navbar .navbar-nav li .nav-link {
  display: block;
  width: fit-content;
  color: #E0E7E9;
  font-weight: 700;

  border: none;
}

header .navbar .navbar-nav li .nav-link:hover {
  color: #da973c;
  opacity: .8;
}

header .navbar ul li .nav-link.active {
  color: #E0E7E9;
}

.container .link-btn,
.link-btn {
  transition: ease-in all 0.5s;
  border-radius: 10px;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  border: 1px solid #895e72;
  padding: 0 30px;
  font-size: 16px;
  line-height: 48px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border-color: var(--gold) 1px;
  box-shadow: 0px 5px 16px 0px #7a5e3f;
}


.link-btn:hover {
  background-color: #3c3b3f;
  color: white;
  border-color: #decba4 1px;

}

.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;
}

.container .navbar .link-btn {
  padding: .4rem 1.3rem;
}

.section-subtitle {
  position: relative;
  color: var(--gold-crayola);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: var(--letterSpacing-2);
  margin-block-end: 12px;
}

.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.3), rgba(0, 0, 0, 0.5)), url('../images/Untitled design (4).gif') center/cover no-repeat;
background-attachment: fixed;
  min-height: 40vh;
}


.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.swiper-arrow {
  color: var(--light-gold);
  font-size: medium;
  padding: 2rem 1.8rem 2rem;
  transition: .1s;
}

.swiper-arrow:hover {
  background-color: rgba(255, 255, 255, .4);
}

.swiper-button-prev {
  transform: translateX(-10px);
}

.swiper-button-next {
  transform: translateX(10px);
  padding-left: 2rem;
}

.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;
  }

  

  .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.8), rgba(0, 0, 0, 0.8)), url('images/jpeg-optimizer_Photo (14).JPG') center/cover no-repeat fixed, #2E343D;

  padding: 5% 0 5% 0;
}

.footer_wrapper h5 {
  color: #A47D55;
  ;
  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;
}

#gallery {
  -webkit-column-count: 4;
  -moz-column-count: 4;
  column-count: 4;

  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

@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 {
    font-weight: 400;
    padding: 0 30px;
    font-size: 15px;
    line-height: 35px;
  }
  .titlepage h2 {
    font-size: 39px !important;
 }
 .choose_box .titlepage {
  text-align: left;
  padding-bottom: 5px !important;
}

.box1{
  display: none;
}
.none{
  display: none;
}}


.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;

}

.testimonials .testimonial-item {
  background-color: transparent;
  box-sizing: content-box;

}

.testimonials .testimonial-item .testimonial-img {
  width: 70px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;

  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item {
  padding: 20px 20px 20px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7a5e3f;
}


.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;
}

/*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;
  }
}

[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;
}

.choose_box {
  padding-top: 36px;
}

.choose_box .titlepage {
  text-align: left;
  padding-bottom: 35px;
}

.text_norlam {
  font-weight: normal;
}

.choose_box p {
  font-size: 15px;
  line-height: 36px;
  color: #313131;

}

.img_box {
  margin-bottom: 30px;
}

.img_box figure {
  margin: 0;
}

.img_box figure img {
  width: 100%;
}

.titlepage {
  text-align: center;

}

.titlepage h2 {
  font-size: 55px;
  color: #313131;
  line-height: 60px;
 
  padding: 0;
}

.services {
  background-color: #efefef;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.services .media-body h3 {
  font-size: 24px;
}

.flaticon-spa:before {
  content: "\f102";
}

.block-6 .media-body p {
  font-size: 16px;
}

.services .icon {
  line-height: 1.3;
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #ffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.services .icon span {
  font-size: 54px;
  color: #8d703b;
}

.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;
}