@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --main-color-2:#c58903;
    --main-color: #578a3d;
    --main-dark-color: #193602;
    --main-lighter-color: #87bb6d;
}

body {
    font-family: "Poppins", sans-serif;
}

#main__hero {
    position: relative;
}

#main__hero .swiper, #main__hero .swiper-wrapper {
    height: 100vh;
}

#main__hero .text-subtitle {
    font-size: 1.05rem;
    color: rgb(235, 235, 235);
}

#main__hero a {
    text-decoration: none;
    color: rgb(235, 235, 235)
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.swiper-slide::before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, .55);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination {
    position: absolute;
    top: 60% !important;
    right: 15px !important;
    width: unset !important;
    left: unset !important;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#main__hero .main__hero--content {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: center;
    color: #fff;
    flex-direction: column;
}

.btn-main {
    background-color: var(--main-color-2)!important;
    border-color: var(--main-color-2)!important;
    color: #fff!important;
}

.btn-res {
    position: relative;
    overflow: hidden;
}

.btn-res::before {
    animation: lightReflection 3s ease-in-out infinite;
}

.btn-res::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease-in-out;
    z-index: 1;
}

@keyframes lightReflection {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.btn-res::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.text-main {
    color: var(--main-color);
}

.text-main-lighter {
    color: var(--main-lighter-color);
}

.text-heading {
    color: var(--main-dark-color);
}

.btn-text {
    font-size: .8rem;
}

.btn {
    border-radius: 4px;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: rgba(0, 0, 0, 0);
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: hsla(0, 0%, 100%, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

#main__about_standing .card {
    border: 0;
    height: 250px;
    overflow: hidden;
}

.dark-overlay {
    position: relative;
}

.dark-overlay::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    z-index: 0;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
}

#main__why_us {
    position: relative;
    overflow: hidden;
}

#main__why_us .whyus-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.whyus-background--overlay {
    position: relative;
    width: 100%;
    height: 100%;
}

.whyus-background--overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#main__why_us .whyus-background--overlay::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    z-index: 1;
    background: rgba(37, 54, 18, 0.9);
}

#main__why_us .whyus-background-2 .whyus-background--overlay::before {
    background: rgb(58 53 26 / 90%);
}

#main__why_us img {
    border-radius: 16px;
}

#main__why_us .image-anime:after {
    border-radius: 16px;
}

#main__why_us .image-anime {
    border-radius: 16px;
}

#footer__copyright {
    font-size: .75rem;
    background-color: #193602;
    color: #fff;
}

#footer__cta { 
    position: relative;
    overflow: hidden;
}

#footer__cta .footer-cta-background {
    position: absolute;
    z-index: -1;
}

#footer__cta .footer-cta-background--overlay {
    position: relative;
}

#footer__cta .footer-cta-background--overlay::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: '';
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
}

#main__stays .card {
    border: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#main__stays .card-img-top {
    height: 250px;
    overflow: hidden;
}

#main__stays .card-img-top img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

header {
    position: fixed;
    z-index: 40;
    width: 100%;
    transition: .1s ease-in-out;
}

header.scrolled {
    transition: .1s ease-in-out;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, .55);
}

header .nav-link {
    font-size: .925rem;
    color: #e6e6e6;
}

#main__faq {
    background-color: #193602;
}

.text-justify {
    text-align: justify;
}

#main__faq .accordion {
    background: transparent;
}


#main__faq .accordion-item {
    border: 0;
}

#main__faq .accordion-button {
    background-color: var(--main-color);
    color: #fff;
    box-shadow: none!important;
    font-size: .95rem;
    line-height: 2rem;
    letter-spacing: .8px;
}

#main__faq .accordion-button::after {
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e")
}

.accordion-button:not(.collapsed)::after {
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

#footer__main {
    background-color: #193602;
}

#main__atractions .card {
    height: 320px;
}

p {
    line-height: 2rem;
    letter-spacing: .8px;
    color: #474747;
}

li {
    line-height: 2rem;
    letter-spacing: .8px;
}

#footer__main {
    color: rgb(214, 214, 214);
    font-size: .95rem;
}

#footer__main ul {
    list-style-type: none;
    padding-left: 0;
}

#footer__main ul li:not(:last-child) {
    margin-bottom: 9px;
}

#footer__main ul li a {
    text-decoration: none;
    color: #d8d8d8;
    transition: .3s ease;
}

.floating-reviews {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 21;
}

.ti-widget {
    transform: scale(0.9);
}

.ti-disclaimer {
    display: none!important;
    opacity: 0!important;
}