* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    position: relative;
}

ul,
ol {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: #fff;
}

.clear {
    clear: left;
}

.hide {
    display: none;
}

.omit {
    display: none !important;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    .blur {
        backdrop-filter: blur(4px);
    }
}

.show {
    display: block !important;
}

.unavailable {
    background: rgb(189, 189, 189) !important;
}

.disabled {
    pointer-events: none;
}

.slideshow {
    z-index: -1;
}

@font-face {
    font-family: "Optima-Regular";
    src: url("fonts/Optima/Optima.TTF");
}

@font-face {
    font-family: "Optima-Bold";
    src: url("fonts/Optima/Optima\ Bold.TTF");
}

@font-face {
    font-family: "Optima-Medium";
    src: url("fonts/Optima/Optima\ Medium.ttf");
}

@font-face {
    font-family: "Optima-Italic";
    src: url("fonts/Optima/Optima\ Italic.ttf");
}

@font-face {
    font-family: "Brush Script";
    src: url("fonts/Brush\ Script\ MT/Brush\ Script\ MT.ttf");
}

@font-face {
    font-family: "Marcellus-Regular";
    src: url("fonts/Marcellus/Marcellus-Regular.ttf");
}

@font-face {
    font-family: "Lato-Regular";
    src: url("fonts/Lato/Lato-Regular.ttf");
}

@font-face {
    font-family: "Lato-Bold";
    src: url("fonts/Lato/Lato-Bold.ttf");
}

@font-face {
    font-family: "Lato-Light";
    src: url("fonts/Lato/Lato-Light.ttf");
}

@font-face {
    font-family: "Oswald-Regular";
    src: url("fonts/Oswald/Oswald-Regular.ttf");
}

@font-face {
    font-family: "Oswald-Bold";
    src: url("fonts/Oswald/Oswald-Bold.ttf");
}

@font-face {
    font-family: "Oswald-Light";
    src: url("fonts/Oswald/Oswald-Light.ttf");
}

@font-face {
    font-family: "DM-Serif-Regular";
    src: url("./fonts/DM\ Serif\ Display/DMSerifDisplay-Regular.ttf");
}

@font-face {
    font-family: "Prometo-Regular";
    src: url("fonts/Prometo/prometo-regular.ttf");
}

@font-face {
    font-family: "Prometo-Medium";
    src: url("fonts/Prometo/prometo-medium.ttf");
}

.center {
    text-align: center;
}

#banner {
    height: 100vh;
    overflow: hidden;
}

#banner .slideshow .img-container img {
    position: absolute;
}

#banner .banner-slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: -1;
}

#banner .banner-slider img {
    min-height: 100% !important;
    min-width: 100% !important;
}

#overlay {
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 998;
    backdrop-filter: blur(44px);
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

#overlay.hide {
    opacity: 0;
}

.loading {
    position: absolute !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35vw;
    height: 2px;
    z-index: 999;
    transition: opacity 0.2s ease-in-out;
}

.loading.finished {
    opacity: 0;
}

.loading svg {
    height: 100%;
}

.progressbar-text {
    top: -55px !important;
    color: #000;
    font-size: 50px;
    font-family: "Optima-Regular";
    font-weight: bolder;
}


/* MENU BAR */

.menu-bar {
    float: left;
    min-height: 100%;
    width: 100px;
    display: flex;
    flex-direction: column;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    position: fixed;
    z-index: 10;
    transition: border-right 0.5s ease-in-out, width 0.7s ease-in-out;
}

.menu-bar.hide {
    width: 0;
    overflow: hidden;
}

.menu-bar.accomodations,
.menu-bar.accomodation.show,
.menu-bar.reservation,
.menu-bar.transportation,
.menu-bar.tours {
    border-right: 2px solid rgba(63, 74, 36, 0.5);
}

.menu-bar.aboutus {
    border-right: 2px solid rgba(81, 70, 65, 0.5);
}

.menu-bar.reservation.open,
.menu-bar.transportation.open,
.menu-bar.accomodation.open,
.menu-bar.tours.open,
.menu-bar.aboutus.open {
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

.burger:hover,
.socials div {
    cursor: pointer;
}

.menu-bar .burger {
    position: absolute;
    top: 50vh;
    left: 50%;
    transform: translate(-50%);
    width: 40px;
    height: 15px;
}

.menu-bar .burger span {
    background: #fff;
    height: 2px;
    width: 100%;
    float: left;
    transition: all 0.5s ease-in-out;
    position: absolute;
}

.menu-bar.accomodations .burger span,
.menu-bar.reservation .burger span,
.menu-bar.accomodation.show .burger span,
.menu-bar.transportation .burger span,
.menu-bar.tours .burger span {
    background: #3f4a24;
}

.menu-bar.aboutus .burger span {
    background: #514641;
}

.menu-bar .burger span:nth-child(2) {
    top: 10px;
}

.menu-bar .burger.open span:nth-child(1) {
    transform: rotate(45deg);
}

.menu-bar .burger.open span:nth-child(2) {
    transform: rotate(-45deg);
    top: 1px;
}

.menu-bar.accomodations .burger.open span,
.menu-bar.reservation .burger.open span,
.menu-bar.accomodation.show .burger.open span,
.menu-bar.transportation.open .burger.open span,
.menu-bar.tours.open .burger.open span,
.menu-bar.aboutus.open .burger.open span {
    background: #fff;
}

.menu-bar .socials {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 50px;
}

.menu-bar .socials .socials-fb {
    margin-bottom: 16px;
    background: url('../images/fb-icon-white.png') no-repeat center;
}

.menu-bar .socials .socials-ig {
    background: url('../images/ig-icon-white.png') no-repeat center;
}

.menu-bar .socials a {
    width: 33px;
    height: 33px;
    display: block;
    transition: background 0.6s ease-in-out;
}

.menu-bar .socials .socials-fb.accomodations a,
.menu-bar.accomodation.show .socials .socials-fb a,
.menu-bar.reservation .socials .socials-fb a,
.menu-bar.transportation .socials .socials-fb a,
.menu-bar.tours .socials .socials-fb a {
    background: url("../images/fb-icon-green.svg") no-repeat center;
}

.menu-bar.open .socials .socials-fb.accomodations a,
.menu-bar.reservation.open .socials .socials-fb a,
.menu-bar.transportation.open .socials .socials-fb a,
.menu-bar.accomodation.open .socials .socials-fb a,
.menu-bar.tours.open .socials .socials-fb a,
.menu-bar.aboutus.open .socials .socials-fb a {
    background: url("../images/fb-icon-white.png");
}

.menu-bar.open .socials .socials-ig.accomodations a,
.menu-bar.reservation.open .socials .socials-ig a,
.menu-bar.transportation.open .socials .socials-ig a,
.menu-bar.accomodation.open .socials .socials-ig a,
.menu-bar.tours.open .socials .socials-ig a,
.menu-bar.aboutus.open .socials .socials-ig a {
    background: url("../images/ig-icon-white.png") !important;
}

.menu-bar .socials .socials-ig.accomodations a,
.menu-bar.accomodation.show .socials .socials-ig a,
.menu-bar.reservation .socials .socials-ig a,
.menu-bar.transportation .socials .socials-ig a,
.menu-bar.tours .socials .socials-ig a {
    background: url("../images/ig-icon-green.svg") no-repeat center;
}

.menu-bar.aboutus .socials .socials-fb a {
    background: url("../images/fb-brown-icon.svg") no-repeat center;
}

.menu-bar.aboutus .socials .socials-ig a {
    background: url("../images/ig-brown-icon.svg") no-repeat center;
}

.menu-bar.accomodations.open {
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}


/* END MENU BAR */

.banner-content {
    height: 100vh;
    width: 100%;
    position: relative;
    float: right;
}

.logo,
.banner-title,
.banner-content p {
    position: absolute;
}

.banner-title,
.banner-content p {
    color: #fff;
}

.logo.show,
.banner-title.show,
.banner-content p.show {
    opacity: 1;
}

.logo {
    left: 50%;
    top: 100px;
    transform: translate(-50%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-title {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-title h1 {
    text-transform: uppercase;
    font-size: 96px;
    text-align: center;
    font-family: "DM-Serif-Regular", "Arial";
    font-weight: lighter;
    letter-spacing: 4px;
}

.banner-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100% - 100px);
    height: 100%;
    margin-left: 100px;
}

.banner-content p {
    bottom: 50px;
    left: 50%;
    transform: translate(-50%);
    font-size: 18px;
    font-family: "Brush Script";
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.menu {
    width: 0;
    height: 100vh;
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    background: #3f4a24;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.menu.open {
    width: 100vw;
}

.menu-container {
    width: calc(100% - 100px);
    height: 100%;
    margin-left: 100px;
    overflow: hidden;
    position: relative;
    display: flex;
    gap: 20px;
}

.menu-links {
    float: left;
    width: 60%;
    margin-left: 80px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    align-self: flex-end;
    margin-bottom: 18px;
}

.menu-links.show,
.menu-info.show,
.mobile-menu.show {
    opacity: 1;
}

.menu-info {
    width: calc(40% - 100px);
    padding-left: 52px;
    margin-left: -52px;
    border-left: 1px solid #fff;
    align-self: flex-end;
    margin-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    margin-bottom: 40px;
}

.menu-links ul li {
    font-family: "Marcellus-Regular";
    color: #fff;
    font-size: 75px;
    font-weight: bold;
    margin-bottom: 19px;
    text-transform: uppercase;
}

.menu-links ul li a {
    transition: border-bottom 0.2s ease-in-out;
    border-bottom: 3px solid transparent;
}

.menu-links ul li:hover a:not(.disabled) {
    border-bottom: 3px solid #fff;
}

.langs,
.address,
.phone,
.email {
    font-family: "DM-Serif-Regular";
    font-size: 17px;
    color: #fff;
}

.address h2 span,
.phone h2 {
    font-family: "DM-Serif-Regular";
}

.address h2,
.phone h2,
.email h2 {
    font-weight: lighter;
}

.langs,
.address {
    margin-bottom: 40px;
}

.langs .active {
    font-size: 24px;
    font-weight: bold;
}

.langs span:hover {
    cursor: pointer;
}


/* SERVICES */

#services {
    background: #3f4a24;
    width: 100%;
}

#services #dash {
    width: 1px;
    height: 113px;
    background: #fff;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
}

#services .services-container {
    width: calc(100% - 100px);
    margin-left: 100px;
    height: 100%;
    position: relative;
    padding: 190px 100px;
}

#services .services-content .services-title p {
    font-family: "Brush Script";
    font-size: 18px;
    color: #fff;
    text-align: center;
}

#services .services-content .services-presentation {
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: -50px;
}

#services .services-content .services-title h1 {
    font-family: "DM-Serif-Regular";
    font-size: 40px;
    color: #fff;
    text-align: center;
    width: 30%;
    margin: 0 auto;
}

#services .services-content .services-presentation .service-card:not(:nth-child(2)) {
    margin-top: -35px;
}

#services .services-content .services-presentation .service-card:nth-child(2) {
    margin-top: 100px;
}

#services .services-content .services-presentation .service-card .service-img {
    position: relative;
}

#services .services-content .services-presentation .service-card .service-img p {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 40px;
    color: #fff;
    font-family: "DM-Serif-Regular";
    text-align: center;
}

#services .services-content .services-presentation .service-card .service-img img {
    width: 100%;
}

#services .services-content .services-presentation .service-card .service-description {
    font-family: "Lato-Light";
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 50px;
}

#services .services-presentation .see-more .see-more-btn:hover {
    background: #fff;
    color: #3f4a24;
    cursor: pointer;
}

.leaf-icon {
    background: url("../images/leaf-icon.svg") center no-repeat;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

#about-us .leaf-icon {
    background: url("../images/leaf-icon-brown.svg") center no-repeat;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}


/* END SERVICES */


/* ACCOMODATIONS */

#accomodations,
#transportation .transportation-container,
#tours .tours-container {
    width: calc(100% - 100px);
    margin-left: 100px;
}

#accomodations .accomodations-container,
#transportation .transportation-container,
#tours .tours-container {
    padding: 233px 100px;
    overflow: auto;
}

#accomodations .accomodations-title {
    margin-bottom: 100px;
}

#accomodations .accomodations-title h2 {
    font-size: 88px;
    font-family: "Marcellus-Regular";
    color: #3f4a24;
    text-transform: uppercase;
}

#accomodations .rooms,
#accomodations .rooms .room,
#transportation .vehicles,
#transportation .vehicles .vehicle {
    width: 100%;
}

#accomodations .room,
#transportation .vehicle,
#tours .activity {
    float: left;
    display: flex;
}

#accomodations .room:not(:first-child),
#transportation .vehicle:not(:first-child),
#tours .activity:not(:first-child) {
    margin-top: 40px;
}

#accomodations .room:nth-child(even),
#transportation .vehicle:nth-child(even),
#tours .activity:nth-child(even) {
    flex-direction: row-reverse;
}

#accomodations .room:nth-child(even) .room-gallery,
#transportation .vehicle:nth-child(even) .vehicle-gallery,
#tours .activity:nth-child(even) .activity-gallery {
    margin-left: 100px;
    margin-right: 0;
}

#accomodations .room:nth-child(even) .room-photos,
#transportation .vehicle:nth-child(even) .vehicle-photos,
#tours .activity:nth-child(even) .activity-photos {
    display: flex;
    justify-content: flex-end;
    margin-left: 10px;
}

#accomodations .room:nth-child(even) .room-photos .room-photo,
#transportation .vehicle:nth-child(even) .vehicle-photos .vehicle-photo,
#tours .activity:nth-child(even) .activity-photos .activity-photo {
    float: right;
}

#accomodations .room:nth-child(even) .room-details,
#transportation .vehicle:nth-child(even) .vehicle-details,
#tours .activity:nth-child(even) .activity-details {
    text-align: right;
    align-items: flex-end;
}

#accomodations .room .room-gallery,
#transportation .vehicle .vehicle-gallery,
#tours .activity .activity-gallery {
    float: left;
    width: 34%;
    margin-right: 100px;
}

#accomodations .room .room-details,
#transportation .vehicle .vehicle-details,
#tours .activity .activity-details {
    float: left;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#accomodations .room .room-details .room-title h1,
#transportation .vehicle .vehicle-details .vehicle-title h1,
#tours .activity .activity-details .activity-title h1 {
    font-family: "Marcellus-Regular";
    font-size: 50px;
    color: #3f4a24;
}

#accomodations .room .room-details .room-title,
#transportation .vehicle .vehicle-details .vehicle-title,
#tours .activity .activity-details .activity-title {
    margin-bottom: 60px;
}

#accomodations .room .room-details p,
#transportation .vehicle .vehicle-details p,
#tours .activity .activity-details p {
    font-family: "Lato-Regular";
    font-size: 18px;
    color: #3f4a24;
    margin-bottom: 60px;
}

.see-more {
    float: left;
    width: 100%;
}

.see-more-btn,
#reservation-btn {
    display: inline-block;
    padding: 20px 70px;
    border: 1px solid #3f4a24;
    font-family: "Marcellus-Regular";
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    text-transform: uppercase;
    color: #3f4a24;
}

.tours-filter div {
    margin-bottom: 95px;
    margin-right: 25px;
    float: left;
    padding: 20px 25px;
    border: 1px solid #3f4a24;
    font-family: "Marcellus-Regular";
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    letter-spacing: 2px;
}

.see-more-btn.services-btn {
    border: 1px solid #fff;
    color: #fff;
}

#accomodations .room .room-gallery .highlight a,
#transportation .vehicle .vehicle-gallery .highlight a {
    width: 100% !important;
    z-index: -1 !important;
}

#accomodations .room .room-gallery .highlight {
    position: relative;
}

#accomodations .room .see-more .see-more-btn:hover,
#transportation .vehicle .see-more .see-more-btn:hover,
#tours .activity .see-more .see-more-btn:hover,
#tours .tours-filter div:hover {
    cursor: pointer;
    background: #3f4a24;
    color: #fff;
}

#accomodations .room .room-gallery .highlight img,
#transportation .vehicle .vehicle-gallery .highlight img,
#tours .activity .activity-gallery .highlight img {
    width: 100%;
    height: auto;
}

#accomodations .room .room-photos,
#transportation .vehicle .vehicle-photos,
#tours .activity .activity-photos {
    width: 100%;
    margin-left: 1px;
}

#accomodations .room .room-photos .room-photo,
#transportation .vehicle .vehicle-photos .vehicle-photo,
#tours .activity .activity-photos .activity-photo {
    float: left;
    width: 75px;
    height: 75px;
    margin-right: 10px;
    margin-top: 10px;
}

#accomodations .room .room-photos .room-photo:hover,
#transportation .vehicle .vehicle-photos .vehicle-photo:hover,
#tours .activity .activity-photos .activity-photo:hover {
    cursor: pointer;
}

#accomodations .room .room-photos .room-photo img,
#transportation .vehicle .vehicle-photos .vehicle-photo img,
#tours .activity .activity-photos .activity-photo img {
    width: 100%;
    height: 100%;
}


/* END ACCOMODATIONS */


/* ABOUT US */

#about-us {
    width: 100%;
    background: #eee5d7;
}

#about-us .about-us-container {
    width: calc(100% - 100px);
    margin-left: 100px;
    overflow: auto;
    padding: 150px 190px;
}

#about-us .about-us-title p {
    font-family: "Brush Script";
    font-size: 18px;
    color: #514641;
    text-align: center;
}

#about-us .about-us-title h1 {
    font-family: "DM-Serif-Regular";
    font-size: 40px;
    color: #514641;
    text-align: center;
}

#about-us .about-us-content {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

#about-us .about-us-content .about-us-card {
    padding: 105px 100px 70px 100px;
    background: #fff;
    width: 45%;
    max-width: 515px;
    text-align: center;
    margin-top: 150px;
    order: 1;
}

#about-us .about-us-content .about-us-card>p {
    font-family: "Lato-Regular";
    font-size: 18px;
    color: #272727;
}

#about-us .about-us-content .about-us-img {
    width: 55%;
    max-width: 630px;
    order: 2;
}

#about-us .about-us-content .about-us-img img {
    width: 100%;
}

#about-us .see-more-btn.services-btn {
    color: #272727;
    border: 1px solid #272727;
    margin-top: 50px;
}

#about-us .see-more-btn.services-btn:hover {
    background: #272727;
    border: 1px solid #272727;
    color: #fff;
    cursor: pointer;
}


/* END ABOUT US */


/* AZORES VIDEO */

#azores-video {
    width: 100%;
}

#azores-video video {
    width: 100%;
}


/* END AZORES VIDEO */


/* GALLERY */

#gallery {
    width: 100%;
    background: #3f4a24;
    margin-top: -5px;
}

#gallery .gallery-container {
    width: calc(100% - 100px);
    margin-left: 100px;
}

#gallery .gallery-title p {
    font-family: "Brush Script";
    font-size: 18px;
    color: #fff;
    margin-bottom: 18px;
}

#gallery .gallery-title h1 {
    font-family: "DM-Serif-Regular";
    font-size: 40px;
    color: #fff;
    margin-bottom: 16px;
}

#gallery .gallery-container {
    padding: 185px 200px 200px 100px;
}

#gallery .gallery-showcase {
    margin-top: 80px;
}

#gallery .gallery-showcase .gallery-pic {
    float: left;
    width: 25%;
}

#gallery .gallery-showcase .gallery-pic:nth-child(5),
#gallery .gallery-showcase .gallery-pic:nth-child(6),
#gallery .gallery-showcase .gallery-pic:nth-child(7),
#gallery .gallery-showcase .gallery-pic:nth-child(8) {
    margin-top: -4px;
}

#gallery .gallery-showcase .gallery-pic img {
    width: 100%;
}


/* GALLERY END */


/* TESTIMONIES */

#testimonies {
    width: 100%;
    background: #3f4a24 url("../images/mountain-bg.svg") no-repeat;
    height: 100vh;
    background-position-x: center;
    margin-top: -3px;
    min-height: 1080px;
}

#testimonies .testimonies-container {
    width: calc(100% - 100px);
    margin-left: 100px;
    padding: 355px 480px;
    height: 100%;
}

#testimonies .testimonies-title {
    margin-bottom: 100px;
}

#testimonies .testimonies-title p {
    font-family: "Lato-Bold";
    font-size: 18px;
    color: #232b0a;
    margin-bottom: 15px;
}

#testimonies .testimonies-title h1 {
    font-family: "DM-Serif-Regular";
    font-size: 40px;
    color: #232b0a;
}

#testimonies .testimony p {
    font-family: "Lato-Regular";
    font-size: 20px;
    color: #232b0a;
    text-align: center;
}

#testimonies .testimony-name h1 {
    font-family: "DM-Serif-Regular";
    font-size: 24px;
    color: #232b0a;
    text-align: center;
    margin-top: 150px;
}

#testimonies .glide .glide__arrow.glide__arrow--left {
    background: url("../images/left-arrow.svg") center no-repeat;
    background-size: cover;
    width: 48px;
    height: 48px;
    border: none;
    box-shadow: none;
    top: unset;
    bottom: -100px;
    left: 42%;
}

#testimonies .glide .glide__arrow.glide__arrow--right {
    background: url("../images/right-arrow.svg") center no-repeat;
    background-size: cover;
    width: 48px;
    height: 48px;
    border: none;
    box-shadow: none;
    top: unset;
    bottom: -100px;
    right: 42%;
}

#testimonies .glide .testimony {
    margin-top: 20px;
}

#testimonies .quotation-mark {
    font-size: 135px;
    font-family: "Oswald-Regular";
    color: #232b0a;
    position: absolute;
}

#testimonies .quotation-mark:nth-child(1) {
    top: -62px;
    left: -100px;
}

#testimonies .quotation-mark:nth-child(2) {
    top: -30px;
    right: -100px;
    transform: rotate(180deg);
}


/* END TESTIMONIES */


/* FOOTER */

#footer {
    background: #232b0a;
    width: 100%;
}

#footer .footer-container {
    width: calc(100% - 100px);
    margin-left: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 100px;
    position: relative;
    margin-top: -4px;
    padding-bottom: 200px;
}

#footer .footer-container .footer-info .footer-address,
#footer .footer-container .footer-info .footer-contacts {
    float: left;
}

#footer .footer-container .footer-info .footer-address span,
#footer .footer-container .footer-info .footer-contacts span {
    font-family: "DM-Serif-Regular";
}

#footer .footer-container .footer-info .footer-address {
    margin-right: 100px;
}

#footer .footer-container .footer-info p,
#footer .footer-container .footer-links a {
    font-family: "DM-Serif-Regular";
    font-size: 18px;
    color: #fff;
}

#footer .footer-container .footer-links a,
#footer .footer-container .footer-links .footer-links-group {
    float: left;
}

#footer .footer-container .footer-links a {
    width: 100%;
    margin-bottom: 10px;
}

#footer .footer-container .copyright {
    position: absolute;
    bottom: 65px;
    right: 120px;
}

#footer .footer-container .copyright h2 {
    font-family: "Lato-Regular";
    font-size: 14px;
    color: #fff;
    font-weight: lighter;
}

#footer .footer-container .copyright img {
    width: 45px;
    position: absolute;
    right: -56px;
    bottom: 0px;
}


/* END FOOTER */


/* Accomodation */




#room-banner {
    width: 100%;
    height: 100vh;
    max-height: 1431px;
    /* background: url("../images/room-temporary.png") no-repeat; */
}

#room-banner .room-slider {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#room-banner .room-slider img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
}

#room-banner .room-banner-container {
    width: calc(100% - 100px);
    height: 100%;
    margin-left: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 50px 90px;
}

#room-banner .site-path,
#reservation-room-banner .site-path {
    font-family: "Lato-Regular";
    font-size: 14px;
    color: #fff;
    margin-bottom: 54px;
}

#reservation-room-banner .site-path {
    margin-bottom: 35px;
}

#room-banner .room-name {
    font-family: "Marcellus-Regular";
    font-size: 70px;
    color: #fff;
    letter-spacing: 6px;
    width: 75%;
}


/* END ACCOMODATION */


/* start reservation  */


.form-container {
  background: white;
  width: 1200px;
  height: 450px;
  border: 1px solid black;
  position: relative;
  display: none;
  flex-direction: row;
  position: relative;
    top: 0px;
}

.calendar-container {
  display: flex;
  flex-direction: column;
  width: 440px;
  align-items: center;
  justify-content: center;
  margin-top: 280px;
}

.text-container {
  display: flex;
  flex-direction: column;
  width: 760px;
  justify-content: center;
  align-items: center;
}

.text-container input {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  margin-top: 17px;
  border: 2px solid #3f4a24;
  outline:none;
}

.text-container input::placeholder {
	color:#3f4a24;
	font-family:Lato-Regular;
	font-size:17px;
}

.text-container #contact_comment {
  padding: 10px 10px 100px 10px;
}

#contact_submit {
  width: 46%;
  height: 41px;
  margin-top: 18px;
  border: 2px solid #3f4a24;
  color: #3f4a24;
  background-color:white;
  font-family:Optima-Bold;
  font-size:18px;
  cursor:pointer;
  margin-bottom: 35px;
}

.availability-container{
	width: 254px;
    height: 61px;
	display:flex;
}

/* REMOVE SECOND CALENDAR */

/* Submit modal */

.ui-widget-header {
    border: 1px solid #aaaaaa;
    background: #3f4a24;
    color: white;
    font-weight: bold;
	font-family: Lato-Regular;
}

.okmsg-content{
	
	width:300px;
   background: white;
    padding: 23px;
	font-family:Marcellus-Regular;
	color:#3f4a24;
}

#okmsg{
	width:100%;
	   display:flex;
	 position:absolute;
	 
	 justify-content:center;
	 align-items:center;
	 top:40%;
}

/* Submit modal end */

.daterangepicker .drp-calendar.right {
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
}

.daterangepicker .drp-calendar.right tbody {
  display: none !important;
}

.daterangepicker .drp-calendar.right thead > tr:nth-child(2) {
  display: none !important;
}

.daterangepicker .drp-calendar.right th.month {
  display: none !important;
}

.daterangepicker .drp-calendar.right .calendar-table {
  background: transparent !important;
}

.daterangepicker .daterangepicker.ltr .ranges,
.daterangepicker.ltr .drp-calendar {
  float: none !important;
}

.daterangepicker .drp-calendar.right .daterangepicker_input {
  position: absolute !important;
}

/* REMOVE SECOND CALENDAR */

.daterangepicker {

  border: none !important;
  width: 380px !important;  
}


.datepicker-visible-important {
  display: block !important;
}


.daterangepicker .calendar {
  font-family:Optima-Bold; /* Change the font-family */
  font-size: 14px; /* Change the font size */
}

/* Change font and size for the calendar headers (month and year) */
.daterangepicker th {
  font-family:Optima-Bold; /* Change the font-family */
  font-size: 16px; /* Change the font size */
  color: #3f4a24;
}

/* Change font and size for the calendar days */
.daterangepicker td {
  font-family:Optima-Bold; /* Change the font-family */
  font-size: 14px; /* Change the font size */
}

/* Change font and size for the calendar buttons (Apply and Cancel) */
.daterangepicker .range_inputs button {
  font-family:Optima-Bold; /* Change the font-family */
  font-size: 16px; /* Change the font size */
}

/* Use custom images as background for the DateRangePicker arrows */
.daterangepicker .prev {
  background-image: url("../images/leftarrow.svg");
  background-size: contain; /* Adjust the size as needed */
  background-repeat: no-repeat;
  width: 20px; /* Set the width of the arrow container */
  height: 20px; /* Set the height of the arrow container */
}

.daterangepicker .next {
  background-image: url("../images/rightarrow.svg");
  background-size: contain; /* Adjust the size as needed */
  background-repeat: no-repeat;
  width: 20px; /* Set the width of the arrow container */
  height: 20px; /* Set the height of the arrow container */
}

.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
  color: #fff;
  border: none !important;
  border-width: 0 2px 2px 0!important;
  border-radius: 0!important;
  display: inline-block!important;
  padding: 3px!important;
}

.daterangepicker th.month {
    width: auto;
    font-size: 18px !important;
}

.daterangepicker .calendar-table th, .daterangepicker .calendar-table td {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
    min-width: 32px;
    width: 32px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
    border-radius: 4px;
    border: 1px solid black;
    white-space: nowrap;
    cursor: pointer;
}

.daterangepicker td {
  text-align: center  !important;
  border: 2px solid #000 !important; /* Add a border around each day cell */
  padding: 7px !important; /* Adjust padding as needed */
}

.daterangepicker .drp-calendar {
    display: none;
    max-width: unset !important;
}

#date_interval{
	  display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 17px;
    border: 2px solid #3f4a24;
	text-align: center;
	width: 57%;
}

@media (max-width:1800px){
	#room-info .room-availability {
    position: unset;
    display: flex;
    gap: 50px !important;
    flex-direction: column-reverse;
	    justify-content: center;
    align-items: center;
}
	
#room-info {
    width: 100%;
    background: #3f4a24;
	height:450px;
}	


.availability-container{
	width:100%;
    justify-content: center;
	display:flex;
}





}

@media (max-width: 1420px) {
  .form-container {
    background: white;
    width: 65%;
    height: unset !important;
    border: 1px solid black;
    margin-left: 0px;
    position: relative;
    top: -3px;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    }
	

  
  .availability-container{
	width:100%;
    justify-content: flex-start;
	display:flex;
	margin-top:-20px;
}
  
  #contact{
	   flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  #room-info {
    height: unset !important;
}
  .text-container {
    display: flex;
    flex-direction: column;
    width: 80%;
    justify-content: center;
    align-items: center;
  }

  .daterangepicker td {
    text-align: center;
    border: 1px solid #000; /* Add a border around each day cell */
    padding: 7px; /* Adjust padding as needed */
  }

  .calendar-container {
    display: flex;
    flex-direction: column;
    width: 440px;
    align-items: center;
    justify-content: center;
    margin-top: 310px;
	margin-bottom:20px;
  }
}

@media (max-width:999px){
	.form-container {
    top: 25px;
  }
}

@media (max-width: 700px) {
	
	.daterangepicker {
    
    border: none;
    width: 350px !important;
  }
  
  .calendar-container {
    display: flex;
    flex-direction: column;
    width: 300px;
    align-items: center;
    justify-content: center;
    margin-top: 310px;
  }
  
  .daterangepicker .drp-calendar.left {
    padding: 0px 0px 0px 0px !important;
}
  
  .form-container {
    background: white;
    width: 450px;
    height: unset !important;
    border: 1px solid black;
    margin-left: 0px;
    position: relative;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    
}

.text-container {
    width: 95%;  
}

.text-container input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 17px;
    border: 2px solid #3f4a24;
}

.text-container button {
    width: 100%;
    height: 45px;
    border: 2px solid #3f4a24;
    color: #3f4a24;
	margin-top: 30px;
    margin-bottom: 40px;
}
	
}



@media (max-width: 500px) {
  .daterangepicker td {
    text-align: center;
    border: 1px solid #000; /* Add a border around each day cell */
    padding: 1px; /* Adjust padding as needed */
  }

  .daterangepicker {
    border: none;
    width: 290px !important;
  }

  .calendar-container {
    display: flex;
    flex-direction: column;
    width: 300px;
    align-items: center;
    justify-content: center;
    margin-top: 310px;
	margin-bottom:15px;
  }
  
  .daterangepicker .drp-calendar.left {
    padding: 0px 0px 0px 0px !important;
}
  
  .form-container {
    background: white;
    width: 310px;
    height: unset !important;
    border: 1px solid black;
    margin-left: 0px;
    position: relative;
    top: -5px;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    
}

.text-container {
    width: 95%;  
}

.text-container input {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-top: 17px;
    border: 2px solid #3f4a24;
}

.text-container button {
    width: 100%;
    height: 45px;
    border: 2px solid #3f4a24;
    color: #3f4a24;
	margin-top: 30px;
    margin-bottom: 40px;
}

#room-info .room-info-container {
    padding: 50px 35px !important;

}

#room-info .availability-btn {
	font-size:14px !important;
}

.availability-container {
    margin-top: 40px;
}


  
}


/*End reservation*/

/* ROOM INFO */

#room-info {
    width: 100%;
    background: #3f4a24;
	height:450px;
}

#room-info .room-info-container {
    width: calc(100% - 100px);
    margin-left: 100px;
    padding: 100px 120px;
    position: relative;
}

#room-info p {
    font-family: "Lato-Regular";
    font-size: 18px;
    color: #fff;
}

#room-info .paragraph {
    float: left;
    width: 30%;
}

#room-info .paragraph:first-child {
    margin-right: 95px;
}

#room-info .room-availability {
    position: relative;
	display:flex;
	gap: 87px;
}

#room-info .room-availability .reservation {
    text-align: center;
}

#room-info .availability-btn {
    background: #fff;
    font-family: "Marcellus-Regular";
    font-size: 16px;
    color: #3f4a24;
    padding: 20px 65px 20px 30px;
    text-transform: uppercase;
    max-width: 323px;
    position: absolute;
	width:268px;
	    right: 0;
}

#room-info .availability-btn:hover {
    cursor: pointer;
}

#room-info .availability-btn span {
    transform: translateY(-50%) rotate(90deg);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 30px;
    font-size: 20px;
}

#room-info .room-availability .availability-calendar {
    padding: 35px 50px;
    display: none;
    position: absolute;
    right: 0;
    top: 70px;
}

#room-info .room-availability .availability-calendar .availability-caption .available-room {
    float: left;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-right: 25px;
}

#room-info .room-availability .availability-calendar .availability-caption .available-room div {
    width: 17px;
    height: 17px;
}

#room-info .room-availability .availability-calendar .availability-caption .available-room p {
    font-size: 10px;
    font-family: "Lato-Regular";
    color: #000;
    margin-left: 5px;
}

#room-info .room-availability .availability-calendar .availability-caption .available {
    background: #fff;
}

#room-info .room-availability .availability-calendar .availability-caption .not-available {
    background: #000;
}


/* END ROOM INFO */


/* COMMODITIES */

#commodities .commodities-container,
#about-us-page .about-us-page-container {
    width: calc(100% - 100px);
    margin-left: 100px;
    padding: 145px 100px;
}

#commodities .commodities-details,
#commodities .places-of-interest {
    float: left;
}

#commodities .commodities-details {
    width: 60%;
    margin-right: 150px;
}

#commodities .places-of-interest {
    width: calc(40% - 150px);
}

#commodities .commodities-title,
#commodities .places-of-interest-title {
    margin-bottom: 60px;
}

#commodities .commodities-title h1,
#commodities .places-of-interest-title h1 {
    font-family: "Marcellus-Regular";
    font-size: 26px;
    color: #3f4a24;
}

#commodities .commodities-details ul li {
    float: left;
    width: 33%;
    margin-bottom: 25px;
}

#commodities .commodities-details ul li:nth-child(3n+4) {
    clear: left;
}

#commodities ul li p,
#commodities ul li .poi-info>* {
    font-family: "Lato-Regular";
    font-size: 14px;
    color: #3f4a24;
    margin-bottom: 8px;
}

#commodities ul li p.highlight {
    font-family: "Lato-Bold";
    font-size: 16px;
}

#commodities ul li p.highlight::before {
    content: "\25CF";
    margin-left: -15px;
    margin-right: 5px;
}

#commodities ul li p span {
    font-family: "Lato-Regular";
    font-size: 14px;
}

#commodities .essential-information {
    margin-top: 150px;
}

#commodities .essential-information .essential-information-title h1 {
    font-family: "Marcellus-Regular";
    font-size: 26px;
    color: #3f4a24;
}

#commodities .essential-information .essential-information-details {
    margin-top: 65px;
}

#commodities .essential-information .essential-information-details ul li.checkin::before,
#commodities .essential-information .essential-information-details ul li.checkout::before {
    content: url("../images/calendar-icon.svg");
    float: left;
    margin-right: 10px;
}

#commodities .essential-information .essential-information-details ul li.info::before {
    content: url("../images/info-icon.svg");
    float: left;
    margin-right: 10px;
}

#commodities .essential-information .essential-information-details ul li.kids::before {
    content: url("../images/kid-icon.svg");
    float: left;
    margin-right: 10px;
}

#commodities .essential-information .essential-information-details ul li.smoking::before {
    content: url("../images/smoking-icon.svg");
    float: left;
    margin-right: 10px;
}

#commodities .essential-information .essential-information-details ul li.pets::before {
    content: url("../images/pet-icon.svg");
    float: left;
    margin-right: 10px;
}

#commodities .essential-information .essential-information-details ul li.checkin p {
    margin-left: 30px;
}

#commodities .essential-information .essential-information-details ul li.info h1,
#commodities .essential-information .essential-information-details ul li.kids h1,
#commodities .essential-information .essential-information-details ul li.smoking h1,
#commodities .essential-information .essential-information-details ul li.pets h1,
#commodities .essential-information .essential-information-details ul li.info p,
#commodities .essential-information .essential-information-details ul li.kids p,
#commodities .essential-information .essential-information-details ul li.smoking p,
#commodities .essential-information .essential-information-details ul li.pets p {
    float: left;
}

#commodities .essential-information .essential-information-details ul li {
    margin-bottom: 45px;
}

#commodities .essential-information .essential-information-details ul li h1 {
    font-family: "Lato-Regular";
    font-size: 16px;
    color: #3f4a24;
    margin-bottom: 25px;
    width: 10%;
}

#commodities .essential-information .essential-information-details ul li p {
    font-family: "Lato-Regular";
    font-size: 14px;
    color: #3f4a24;
}

#commodities .essential-information .essential-information-details ul li.checkin h1,
#commodities .essential-information .essential-information-details ul li.checkout h1 {
    width: 100%;
}


/* END COMMODITIES  */


/* FAQ */

#faq .faq-container {
    width: calc(100% - 100px);
    margin-left: 100px;
    padding: 0 100px 145px 100px;
}

#faq .faq-title h1 {
    font-family: "Marcellus-Regular";
    font-size: 26px;
    color: #3f4a24;
}

#faq .accordion {
    border: 1px solid #3f4a24;
    width: 60%;
    margin-top: 50px;
}

#faq .accordion .accordion-item {
    padding: 28px 140px 28px 40px;
}

#faq .accordion .accordion-item:hover {
    cursor: pointer;
}

#faq .accordion .accordion-item:not(:first-child) {
    border-top: 1px solid #3f4a24;
}

#faq .accordion .accordion-item .accordion-header {
    position: relative;
}

#faq .accordion .accordion-item .accordion-header h1,
#faq .accordion .accordion-item .accordion-content p {
    font-family: "Lato-Regular";
    font-size: 14px;
    color: #3f4a24;
}

#faq .accordion .accordion-item .accordion-content p {
    font-weight: lighter;
    margin-top: 20px;
}

#faq .accordion .accordion-item .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

#faq .accordion .accordion-item .accordion-header span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -70px;
    transition: transform 0.2s ease-in-out;
}

#faq .accordion .accordion-item .accordion-header span.open {
    transform: rotate(90deg) translateX(-50%);
}


/* END FAQ */


/* GUEST FEEDBACK */

#guests-feedback .guests-feedback-container {
    width: calc(100% - 100px);
    margin-left: 100px;
    padding: 0 100px 56px 100px;
}

#guests-feedback .guests-feedback-container .guest-feedback-title h1 {
    font-family: "Marcellus-Regular";
    font-size: 26px;
    color: #3f4a24;
    margin-bottom: 54px;
}

#guests-feedback .guests-feedback-container .guest-feedback-card {
    background: #3f4a24;
    padding: 35px 30px;
    width: 100%;
    float: left;
    min-height: 185px;
    margin-right: 20px;
    max-width: 396px;
}

#guests-feedback .guests-feedback-container .guest-feedback-card .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#guests-feedback .guests-feedback-container .guest-feedback-card .info span,
#guests-feedback .guests-feedback-container .guest-feedback-card .guest-feedback-card-content {
    font-family: "Lato-Regular";
    font-size: 14px;
    color: #fff;
}

#guests-feedback .guests-feedback-container .guest-feedback-card .guest-feedback-card-content p::before {
    content: "“";
}

#guests-feedback .guests-feedback-container .guest-feedback-card .guest-feedback-card-content p::after {
    content: "”";
}

#guests-feedback .guests-feedback-container .guest-feedback-card .info .guest-name>* {
    float: left;
}

#guests-feedback .guests-feedback-container .guest-feedback-card .info .guest-name h1 {
    font-family: "Marcellus-Regular";
    font-size: 16px;
    color: #fff;
    margin-right: 5px;
    margin-top: -3px;
}

#guests-feedback .guests-feedback-container .guest-feedback-card .info .date h1 {
    font-family: "Lato-Regular";
    font-size: 12px;
    color: #fff;
}


/* END GUEST FEEDBACK */


/* TRANSPORTATION */

#transportation .transportation-title {
    margin-bottom: 130px;
}

#transportation .transportation-title h2 {
    font-family: "Marcellus-Regular";
    font-size: 88px;
    color: #3f4a24;
    text-transform: uppercase;
}


/* END TRANSPORTATION */


/* TOURS & ACTIVITIES */

#tours .tours-title {
    margin-bottom: 50px;
}

#tours .tours-title h2 {
    font-family: "Marcellus-Regular";
    font-size: 88px;
    color: #3f4a24;
    text-transform: uppercase;
}


/* END TOURS & ACTIVITIES */


/* ABOUT US */

#about-us-page {
    width: 100%;
    background: url('../images/about-us-bg.svg') no-repeat #eee5d7;
    background-position: bottom right;
}

#about-us-page .about-us-page-container {
    width: calc(100% - 100px);
    margin-left: 100px;
}

#about-us-page .about-us-page-container .about-us-page-title {
    margin-bottom: 100px;
}

#about-us-page .about-us-page-container .about-us-page-title h1 {
    font-family: "Marcellus-Regular";
    font-size: 88px;
    color: #514641;
    text-transform: uppercase;
}

#about-us-page .about-us-page-container .about-us-page-content {
    margin-right: 75px;
    width: 39%;
}

#about-us-page .about-us-page-container .about-us-page-content,
#about-us-page .about-us-page-container .about-us-page-img {
    float: left;
}

#about-us-page .about-us-page-container .about-us-page-img {
    width: calc(61% - 75px);
    display: flex;
    justify-content: center;
}

#about-us-page .about-us-page-container .about-us-page-content p {
    font-family: "Lato-Regular";
    font-size: 16px;
    color: #514641;
}


/* END ABOUT US */


/* MOBILE MENU */

.mobile-menu-bar {
    padding: 15px 30px;
    position: fixed;
    z-index: 10;
    width: 100%;
    display: none;
}

.mobile-menu-bar .mobile-menu-logo {
    float: left;
}

.mobile-menu-bar .mobile-menu-burger {
    position: relative;
    width: 40px;
    height: 15px;
    float: left;
    margin-top: 57px;
    transform: translateY(-185%);
}

.mobile-menu-bar .mobile-menu-burger span {
    width: 100%;
    height: 2px;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    transition: all 0.5s ease-in-out;
}

.mobile-menu-bar .mobile-menu-burger span:nth-child(2) {
    top: 10px;
}

.mobile-menu-bar .mobile-menu-burger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 5px;
}

.mobile-menu-bar .mobile-menu-burger.open span:nth-child(2) {
    transform: rotate(-45deg);
    top: 5px;
}

.mobile-menu-bar.accomodations,
.mobile-menu-bar.transportation,
.mobile-menu-bar.tours {
    border-bottom: 1px solid rgba(63, 74, 36, 0.5);
}

.mobile-menu-bar.aboutus {
    border-bottom: 1px solid rgba(81, 70, 65, 0.5);
}

.mobile-menu-bar.accomodations .mobile-menu-burger span,
.mobile-menu-bar.transportation .mobile-menu-burger span,
.mobile-menu-bar.tours .mobile-menu-burger span {
    background: #3f4a24;
}

.mobile-menu-bar.accomodations .mobile-menu-burger.open span,
.mobile-menu-bar.transportation .mobile-menu-burger.open span,
.mobile-menu-bar.tours .mobile-menu-burger.open span,
.mobile-menu-bar.aboutus .mobile-menu-burger.open span {
    background: #fff;
}

.mobile-menu-bar.accomodation {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-menu-bar.aboutus .mobile-menu-burger span {
    background: #514641;
}

.mobile-menu-bar.open {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-menu-socials {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mobile-menu-socials.show {
    opacity: 1;
}

#commodities .see-more-btn {
    display: none;
    padding: 0;
    border: none;
}


/* END MOBILE MENU */

.poi-info {
    display: flex;
    justify-content: space-between;
}

#commodities .places-of-interest ul li {
    margin-bottom: 25px;
}

.see-more-feedback-btn,
.see-less-feedback-btn {
    margin-top: 10px;
    display: inline-block;
}

.see-more-feedback-btn:hover,
.see-less-feedback-btn:hover {
    cursor: pointer;
}

#room-banner .site-path,
#reservation-room-banner .site-path a {
    text-transform: uppercase;
}

.menu-logo {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: url('../images/azores4all-menu-logo.svg') no-repeat center;
    height: 80px;
    width: 80px;
}

.mobile-menu-bar .menu-logo {
    left: 120px;
    top: 50%;
    transform: translateY(-50%);
    background: url('../images/azores4all-logo.svg') no-repeat center;
    width: 173px;
    height: 59px;
}

.mobile-menu-bar .reservation-btn {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 15px 40px;
}

.mobile-menu-bar .reservation-btn h2 {
    font-family: 'Marcellus-Regular';
    font-size: 12pt;
    color: #3F4A24;
    text-transform: uppercase;
}

.mobile-menu-bar.accomodations .reservation-btn,
.mobile-menu-bar.transportation .reservation-btn {
    background: #3f4a24;
}

.mobile-menu-bar.accomodations .reservation-btn h2,
.mobile-menu-bar.transportation .reservation-btn h2 {
    color: #fff;
}

.sponsors {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

#commodities .see-more-btn p {
    font-size: 18px;
    font-family: 'Lato-Bold';
    text-transform: none;
    text-align: center;
    text-decoration: underline;
    letter-spacing: 0;
}

#reservation-btn {
    position: absolute;
    right: 20px;
    top: calc(100vh + 20px);
    text-transform: uppercase;
    font-size: 16px;
    background: #fff;
    z-index: 1;
}

#reservation-btn h2 {
    color: #3F4A24;
    font-family: 'Marcellus-Regular';
    font-size: 16px;
}

a #reservation-btn {
    transition: transform 0.2s ease-in-out;
    border: none;
}

#reservation-btn.fixed {
    position: fixed;
    bottom: 20px;
    top: unset;
}

#reservation-btn:hover {
    transform: scale(1.1);
}

@media screen and (min-width: 1750px) {
    #testimonies {
        width: 100%;
    }
}

@media screen and (max-width: 1669px) {
    #testimonies .testimonies-container {
        padding: 355px 210px;
    }
}

@media screen and (max-width: 1569px) {
    #footer .footer-container .footer-info .footer-address {
        margin-right: 30px;
    }
}

@media screen and (max-width: 1504px) {
    #room-banner .room-name {
        width: 100%;
    }
}

@media screen and (max-width: 1497px) {
    #footer .footer-logo,
    #footer .footer-links .footer-links-group {
        margin-right: 50px;
    }
}

@media screen and (max-width: 1449px) {
    #about-us .about-us-content .about-us-card {
        padding: 65px;
    }
    #about-us-page .about-us-page-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #about-us-page .about-us-page-container .about-us-page-title {
        order: 1;
        align-self: flex-start;
    }
    #about-us-page .about-us-page-container .about-us-page-content {
        order: 3;
        width: 100%;
        margin: 40px 0;
    }
    #about-us-page .about-us-page-container .about-us-page-img {
        order: 2;
        width: 100%;
    }
    #about-us-page .about-us-page-container .about-us-page-img img {
        width: 100%;
    }
}

@media screen and (max-width: 1420px) {
    #room-info .room-info-container {
        display: flex;
        flex-direction: column;
    }
    #room-info .paragraph {
        width: 100%;
    }
    #room-info .paragraph:first-child {
        margin-right: 0;
    }
    #room-info .availability-btn {
        position: relative;
    }
   
}

@media screen and (max-width: 1349px) {
    .banner-title h1 {
        font-size: 60px;
    }
    .menu-links,
    .menu-info {
        width: 50%;
    }
    #accomodations .room .room-photos .room-photo,
    #transportation .vehicle .vehicle-photos .vehicle-photo,
    #tours .activity .activity-photos .activity-photo {
        width: 44px;
        height: 44px;
    }
}

@media screen and (max-width: 1299px) {
    #services .services-content .services-presentation .service-card:nth-child(2) {
        margin-bottom: 100px;
    }
    #services .services-content .services-presentation {
        flex-direction: column;
    }
    #services .services-content .services-presentation .service-card {
        max-width: 460px;
    }
    .leaf-icon {
        margin-bottom: 75px;
    }
    #services .services-content .services-presentation .service-card:not(:nth-child(2)) {
        margin-top: 0;
    }
    #about-us .about-us-content {
        display: block;
        text-align: center;
    }
    #about-us .about-us-content .about-us-img,
    #about-us .about-us-content .about-us-card {
        display: inline-block;
    }
    #about-us .about-us-content .about-us-img {
        width: 100%;
    }
    #about-us .about-us-content .about-us-card {
        margin-top: -3px;
        width: 100%;
        max-width: 630px;
    }
}

@media screen and (max-width: 1220px) {
    #footer .footer-container {
        padding: 25px;
        padding-bottom: 150px;
    }
}

@media screen and (max-width: 1169px) {
    #gallery .gallery-showcase .gallery-pic {
        width: 50%;
    }
    #gallery .gallery-showcase .gallery-pic:nth-child(3),
    #gallery .gallery-showcase .gallery-pic:nth-child(4) {
        margin-top: -4px;
    }
    #testimonies .glide .glide__arrow.glide__arrow--left {
        left: 39%;
    }
    #testimonies .glide .glide__arrow.glide__arrow--right {
        right: 39%;
    }
}

@media screen and (max-width: 1145px) {
    #guests-feedback .guests-feedback-container .guest-feedback-card {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 1119px) {
    .menu-links {
        margin-left: 25px;
    }
    .menu-links ul li {
        font-size: 55px;
    }
}

@media screen and (max-width: 1070px) {
    #footer .footer-links>div {
        width: calc(33% - 50px);
    }
    #footer .footer-container {
        padding: 55px 30px 150px;
    }
    .sponsors {
        left: 45%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 999px) {
    #commodities .commodities-details {
        margin-right: 0;
    }
    #reservation-btn {
        display: none;
    }
    #about-us-page {
        background-position: center bottom;
        background-size: contain;
    }
    .lb-nav a.lb-next,
    .lb-nav a.lb-prev {
        opacity: 1;
    }
    #guests-feedback .glide {
        display: flex;
    }
    #guests-feedback .desktop-cards {
        display: none;
    }
    #guests-feedback .glide .guest-feedback-card {
        width: 100%;
        min-height: 190px;
    }
    #room-banner .site-path {
        margin-top: 50px;
    }
    #testimonies .quotation-mark:nth-child(1) {
        left: 0;
    }
    #testimonies .quotation-mark:nth-child(2) {
        right: 0;
    }
    #footer .footer-container {
        padding: 55px 50px 100px;
    }
    .sponsors {
        position: unset;
        width: 100%;
        transform: translateX(0);
    }
    .sponsors img {
        width: 70%;
    }
    #footer .footer-container .copyright {
        left: 50px;
        bottom: 40px;
    }
    #footer .footer-container .copyright img {
        left: 60px;
        width: 40px;
    }
    #footer .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
    #footer .footer-container .footer-links>div {
        width: 100%;
    }
    #footer .footer-info>div,
    #footer .footer-links>div {
        width: 100%;
    }
    #footer .footer-logo,
    #footer .footer-info,
    #footer .footer-address {
        margin-bottom: 30px;
    }
    #faq .accordion {
        width: 100%;
    }
    #commodities .places-of-interest {
        margin-top: 50px;
    }
    #commodities .commodities-details,
    #commodities .places-of-interest {
        width: 100%;
    }
    #room-banner {
        height: auto;
        background-position: center;
    }
    #room-banner .room-name h1 {
        font-size: 70px;
    }
    .mobile-menu-socials {
        display: block;
    }
    .mobile-menu-socials div {
        float: left;
        margin-right: 25px;
    }
    .menu-container {
        flex-direction: column;
        padding: 120px 30px;
    }
    .menu-links,
    .menu-info {
        align-self: flex-start;
    }
    .menu-info {
        border-top: 1px solid #fff;
        padding-left: 0;
        margin-left: 0px;
        border-left: none;
        padding-top: 20px;
    }
    .menu-links ul li {
        font-size: 34px;
    }
    .menu-links {
        margin-left: 0;
        margin-top: 25px;
        margin-bottom: 0;
    }
    .menu-links,
    .menu-info {
        width: 100%;
    }
    #tours .tours-container .tours-filter {
        display: none;
    }
    .menu {
        width: 100%;
        height: 0;
        overflow: hidden;
    }
    .menu.open {
        height: 100%;
    }
    .menu-container {
        width: 100%;
        margin-left: 0;
    }
    .see-more-btn {
        padding: 20px 50px;
    }
    .mobile-menu-bar {
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }
    .menu-bar {
        display: none !important;
    }
    #banner .banner-content-container,
    #services .services-container,
    #about-us .about-us-container,
    #gallery .gallery-container,
    #testimonies .testimonies-container,
    #footer .footer-container,
    #accomodations,
    #transportation .transportation-container,
    #tours .tours-container,
    #room-banner .room-banner-container,
    #room-info .room-info-container,
    #commodities .commodities-container,
    #faq .faq-container,
    #guests-feedback .guests-feedback-container {
        width: 100%;
        margin-left: 0;
    }
    #accomodations .accomodations-title,
    #transportation .transportation-title,
    #tours .tours-title {
        margin-bottom: 40px;
        margin-top: 82px;
    }
    #about-us-page .about-us-page-container .about-us-page-title {
        margin-bottom: 40px;
        margin-top: 70px;
    }
    #accomodations .accomodations-container,
    #transportation .transportation-container,
    #tours .tours-container,
    #about-us-page .about-us-page-container,
    #room-banner .room-banner-container,
    #room-info .room-info-container {
        padding: 88px 30px;
    }
    #guests-feedback .guests-feedback-container {
        padding: 60px 30px;
    }
    #commodities .commodities-container {
        padding: 135px 30px 0 30px;
    }
    #faq .faq-container {
        padding: 0 30px;
    }
    #accomodations .room:not(:first-child),
    #transportation .vehicle:not(:first-child),
    #tours .activity:not(:first-child) {
        margin-top: 66px;
    }
    #accomodations .room,
    #transportation .vehicle,
    #tours .activity {
        flex-direction: column;
    }
    #accomodations .room .room-photos .room-photo,
    #transportation .vehicle .vehicle-photos .vehicle-photo,
    #tours .activity .activity-photos .activity-photo {
        width: 80px;
        height: 80px;
    }
    #accomodations .room .room-gallery,
    #transportation .vehicle .vehicle-gallery,
    #tours .activity .activity-gallery {
        width: 100%;
        margin-right: 0;
    }
    #accomodations .room .room-details,
    #transportation .vehicle .vehicle-details,
    #tours .activity .activity-details {
        margin-top: 18px;
        width: 100%;
    }
    #accomodations .room .room-details .room-title,
    #transportation .vehicle .vehicle-details .vehicle-title,
    #tours .activity .activity-details .activity-title {
        margin-bottom: 0;
    }
    #accomodations .room:nth-child(even),
    #transportation .vehicle:nth-child(even),
    #tours .activity:nth-child(even) {
        flex-direction: row;
    }
    #accomodations .room:nth-child(even) .room-gallery,
    #transportation .vehicle:nth-child(even) .vehicle-gallery,
    #tours .activity:nth-child(even) .activity-gallery {
        margin-left: 0;
    }
    #accomodations .room:nth-child(even),
    #transportation .vehicle:nth-child(even),
    #tours .activity:nth-child(even) {
        flex-direction: column;
    }
    #accomodations .room:nth-child(even) .room-photos,
    #transportation .vehicle:nth-child(even) .vehicle-photos,
    #tours .activity:nth-child(even) .activity-photos,
    #accomodations .room:nth-child(even) .room-details,
    #transportation .vehicle:nth-child(even) .vehicle-details,
    #tours .activity:nth-child(even) .activity-details {
        justify-content: flex-start;
        text-align: left;
        align-items: flex-start;
        margin-left: 0;
    }
    #services .services-container {
        padding: 134px 30px;
    }
    #about-us .about-us-container {
        padding: 80px 30px;
    }
    #gallery .gallery-container {
        padding: 120px 30px;
    }
    #testimonies .testimonies-container {
        padding: 355px 30px;
    }
    #testimonies .testimony p {
        font-size: 16px;
        width: 80%;
        margin: 0 auto;
    }
    #testimonies .testimony-name h1 {
        font-size: 20px;
        margin-top: 100px;
    }
    #testimonies .testimonies-title p {
        margin-bottom: 10px;
    }
    #testimonies .testimonies-title h1 {
        font-size: 30px;
    }
    #services .services-content .services-title h1 {
        width: 60%;
    }
    #services .services-content .services-title h1,
    #services .services-content .services-presentation .service-card .service-img p {
        font-size: 30px;
    }
    #banner .logo {
        display: none !important;
    }
    #about-us-page .about-us-page-container {
        width: 100%;
        margin-left: 0;
    }
    #accomodations .see-more-btn {
        transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
    }
    #room-banner .room-slider {
        max-height: 567px;
    }
}

@media screen and (max-width: 729px) {
    #accomodations .accomodations-title h2,
    #transportation .transportation-title h2,
    #tours .tours-title h2,
    #about-us-page .about-us-page-container .about-us-page-title h1 {
        font-size: 40px;
    }
    #commodities .essential-information .essential-information-details ul .checkin h1,
    #commodities .essential-information .essential-information-details ul .checkout h1 {
        width: 100% !important;
    }
    #commodities .essential-information .essential-information-details ul .info h1,
    #commodities .essential-information .essential-information-details ul .kids h1,
    #commodities .essential-information .essential-information-details ul .info p,
    #commodities .essential-information .essential-information-details ul .kids p {
        width: calc(50% - 15px);
    }
    #commodities .essential-information .essential-information-details ul .smoking h1,
    #commodities .essential-information .essential-information-details ul .pets h1,
    #commodities .essential-information .essential-information-details ul .smoking p,
    #commodities .essential-information .essential-information-details ul .pets p {
        width: calc(50% - 19px);
    }
    #faq .accordion .accordion-item {
        padding: 28px 100px 28px 40px;
    }
}

@media screen and (max-width: 669px) {
    #commodities .commodities-details {
        max-height: 655px;
        overflow: clip;
    }
    #commodities .commodities-details ul li {
        width: 100%;
    }
    #commodities .see-more-btn {
        display: block;
    }
}

@media screen and (max-width: 649px) {
    #accomodations .room .room-details .room-title h1,
    #transportation .vehicle .vehicle-details .vehicle-title h1,
    #tours .activity .activity-details .activity-title h1 {
        font-size: 30px;
    }
    #accomodations .room .room-details p,
    #transportation .vehicle .vehicle-details p,
    #tours .activity .activity-details p {
        font-size: 14px;
    }
}

@media screen and (max-width: 598px) {
    .langs,
    .address {
        margin-bottom: 25px;
    }
    .sponsors img {
        width: 100%;
    }
}

@media screen and (max-width: 555px) {
    #room-banner .room-slider {
        max-height: 655px;
    }
    .mobile-menu-bar .menu-logo {
        left: 85px;
    }
}

@media screen and (max-width: 499px) {
    #testimonies .glide .glide__arrow.glide__arrow--right {
        right: 35%;
    }
    #testimonies .glide .glide__arrow.glide__arrow--left {
        left: 35%;
    }
}

@media screen and (max-width: 496px) {
    #room-banner .room-slider {
        max-height: 743px;
    }
    .mobile-menu-bar .menu-logo {
        transform: scale(0.65) translateY(-75%);
        left: 35px;
    }
    .mobile-menu-bar .reservation-btn {
        right: 15px;
        padding: 12px 30px;
    }
    .mobile-menu-bar .reservation-btn h2 {
        font-size: 10pt;
    }
    .mobile-menu-bar {
        padding: 15px;
    }
}

@media screen and (max-width: 449px) {
    .langs,
    .address,
    .phone,
    .email {
        font-size: 15px;
    }
    .menu-links ul li {
        font-size: 28px;
    }
}

@media screen and (max-width: 423px) {
    #room-banner .room-slider {
        max-height: 760px;
    }
}

@media screen and (max-width: 419px) {
    #accomodations .room .room-photos .room-photo,
    #transportation .vehicle .vehicle-photos .vehicle-photo,
    #tours .activity .activity-photos .activity-photo {
        width: 50px;
        height: 50px;
    }
    .see-more-btn {
        font-size: 14px;
    }
}

@media screen and (max-width: 389px) {
    #testimonies .glide .glide__arrow.glide__arrow--right {
        right: 32%;
    }
    #testimonies .glide .glide__arrow.glide__arrow--left {
        left: 32%;
    }
    .langs,
    .address,
    .phone,
    .email {
        font-size: 12px;
    }
    .menu-links ul li {
        font-size: 27px;
        margin-bottom: 10px;
    }
    #about-us .about-us-content .about-us-card {
        padding: 45px;
    }
    #testimonies .quotation-mark {
        font-size: 80px;
    }
    #testimonies .quotation-mark:nth-child(1) {
        top: -30px;
    }
    #testimonies .quotation-mark:nth-child(2) {
        top: 10px;
    }
}

@media screen and (max-width: 366px) {
    #commodities .commodities-details {
        max-height: 685px;
    }
}

@media screen and (max-width: 348px) {
    #testimonies .glide .glide__arrow.glide__arrow--left {
        left: 25%;
    }
    #testimonies .glide .glide__arrow.glide__arrow--right {
        right: 25%;
    }
}

@media screen and (max-width: 324px) {
    #about-us .about-us-content .about-us-card {
        padding: 45px 20px;
    }
    #testimonies .quotation-mark:nth-child(2) {
        top: 30px;
    }
}

@media screen and (max-width: 257px) {
    #room-banner .room-slider {
        max-height: 777px;
    }
}

@media screen and (max-width: 215px) {
    #room-banner .room-slider {
        max-height: 794px;
    }
}