h1 {
    font-size: 2.8rem;
    line-height: 3.36rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 25px;
}

h2 {
    font-size: 1.73rem;
    line-height: 2.3rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 18px;
}

h3, .above-title {
    font-size: 1.06rem;
    line-height: 1.7rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 18px;
}

.above-title {
    color: #209db4;
    padding-left: 7px;
    border-left: 3px solid #209db4;
    display: block;
}

p {
    font-size: 1rem;
    line-height: 1.8rem;
    font-weight: 300;
    color: #000000;
    margin-bottom: 15px;
}

strong {
    font-weight: 600;
}

section.only-title {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    margin-bottom: -80px;
}

section.no-pt {
    padding-top: 0;
}

section.no-pb {
    padding-bottom: 0;
}



.btn {
    color: #ffffff;
    background: #534136;
    border: 1px solid #a8968b;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 15px 40px 15px 40px;
    text-decoration: none;
    margin: 12px 0;
    display: inline-block;
}

.btn:hover {
    background: #655145;
    text-decoration: none;
}
.rooms section.only-title {
    padding-top: 50px;
}

section {
    padding: 90px 20px;
}


section.cols2 {
    max-width: 1360px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 50px;
    margin: 0 auto;
}

.aboutus .imgs {
    text-align: center;

}
.floating {
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, 10px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

.aboutus img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    margin-top: 40px;
    height:auto;
}












/* EVENT CARDS  */

section.cards {
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    -webkit-justify-content: center;
    gap: 5%;
    flex-wrap: wrap;
}

.card--1 .card__img, .card--1 .card__img--hover {
    background-image: url('https://images.pexels.com/photos/45202/brownie-dessert-cake-sweet-45202.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260');
}

.card--2 .card__img, .card--2 .card__img--hover {
    background-image: url('https://images.pexels.com/photos/307008/pexels-photo-307008.jpeg?auto=compress&cs=tinysrgb&h=750&w=1260');
}


.card__time {
    font-size: 12px;
    color: #AD7D52;
    vertical-align: middle;
    margin-left: 5px;
}

.card__clock-info {
    float: right;
}

.card__img {
    visibility: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;

}

.card__info-hover {
    position: absolute;
    padding: 16px;
    width: 100%;
    opacity: 0;
    top: 0;
}

.card__img--hover {
    transition: 0.2s all ease-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    position: absolute;
    height: 235px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    top: 0;

}

.card {
    transition: all .4s cubic-bezier(0.175, 0.885, 0, 1);
    margin-bottom:20px;
    background-color: #fff;
    width: 20%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 13px 10px -7px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0px 30px 18px -8px rgba(0, 0, 0, 0.1);
    transform: scale(1.10, 1.10);
}
.event_title {
    background:#ffffff;
}
.card__info {
    z-index: 2;
    background-color: #fff;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 16px 24px 24px 24px;
}

.card__category {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
    color: #209db4;
    background:#ffffff;
}

.card:hover .card__img--hover {
    height: 100%;
    opacity: 0.5;
}

.card:hover .card__info {
    background-color: transparent;
    position: relative;
}

.card:hover .card__info-hover {
    opacity: 1;
}







































/* TESTIMONIALS */

.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slides-container {
    height: auto;
    width: 80%;
    margin: 0 0 0 10%;
    display: flex;
    overflow: scroll;
    scroll-behavior: smooth;
    list-style: none;
    padding: 0;
}

.slide-arrow {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 12rem;
    background-color: transparent;
    border: none;
    width: 2rem;
    font-size: 3rem;
    padding: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 100ms;
}

.slide-arrow:hover,
.slide-arrow:focus {
    opacity: 1;
}

#slide-arrow-prev {
    left: 0;
    padding-left: 0.25rem;
    border-radius: 0 2rem 2rem 0;
}

#slide-arrow-next {
    right: 0;
    padding-left: 0.75rem;
    border-radius: 2rem 0 0 2rem;
}

.slide {
    width: 100%;
    height: 100%;
    flex: 1 0 100%;
}

.slides-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.slides-container::-webkit-scrollbar {
    width: 0;
    height: 0;
}


.testimonials .imgs {
    text-align: center;
}

.testimonials img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 30px;
}




















section.cols4 {
    max-width: 1360px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 10px;
    margin: 0 auto;
}

section.cols4 div img {
    width: 100%;
}




























/* VIDEO MENU */

.video-bg {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 67px 15px;
    background-image:url('../../img/new-ocean.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;    
}

.video-bg video {
    min-width: 100%;
    min-height: 400px;
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -165px
}

.video-bg .container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    flex-direction: row;
    max-width: 1360px;
}

.video-bg div {
    width: 50%;
    height: auto;
    margin: 5px;
    z-index: 9998;
    text-align: center;
}


.video-bg h1 {
    text-align: left;
    color: #fff;
    margin-bottom: 0;
}




























/* GALLERY (RHOMBOID) @ HOME */

.gallery {
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: .75em 100%, 100% 100%;
    background-attachment: fixed;
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 120px;
}

.gallery .wrapper {
    position: relative;
    flex-grow: 1;
    margin: auto;
    max-width: 1360px;
    max-height: 1200px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-gap: 2vmin;
    justify-items: center;
    align-items: center;
}

.gallery img {
    z-index: 1;
    cursor:pointer;
    width: auto !important;
    height: auto !important;
    grid-column: span 2;
    max-width: 100%;
    margin-bottom: -52%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: scale(1);
    transition: all .25s;

    &:nth-child(7n + 1) {
        grid-column: 2 / span 2;
    }

    &:hover {
        z-index: 2;
        transform: scale(1.2);
    }
}























/* FOOTER */


footer {
    background: rgb(101, 81, 69);
    background: linear-gradient(45deg, rgba(101, 81, 69, 1) 0%, rgba(0, 0, 0, 1) 100%);
    padding: 78px 15px 67px 15px;
    position: relative;
    z-index:999;
}

footer .container {
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(350px, 2fr) 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 30px;
    justify-items: stretch;
    width: 100%;
}

footer .one {
    display: grid;
    grid-template-columns: 90px minmax(200px, 50%);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 0px;
}

footer h3,
footer p {
    color: #f5f2f0 !important;
    font-weight: 200;
    letter-spacing: 0;
}

footer a:link {
    color: #ffffff;
    font-weight: 300;
}

footer .three a:link {
    font-weight: 200 !important;
}

footer a:visited,
footer a:hover,
footer a:active {
    color: #f5f2f0;
    text-decoration: underline;
}

footer li {
    margin-bottom: 8px !important;
}

footer .copyright {
    display: block;
    margin-top: 25px;
    margin-bottom:0;
    text-align: center;
}

.footer-icons {
    position: absolute;
    width: 110px;
    height: 46px;
    left: 50%;
    margin-left: -55px;
    margin-top: -100px;
    background: #ffffff;
    border: 2px solid #534136;
    border-radius: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icons:hover {
    background: #f5f2f0;
}

.footer-icons img.instagram {
    width: 30px;
    height: auto;
    margin-right: 12px;
}

.footer-icons img.facebook {
    width: 26px;
    height: auto;
}

.footer-icons a img {
    vertical-align: bottom;
}

.footer-icons a:hover {
    margin-top: -5px;
}






/* INTERIOR HEADER */
.interior .page-wrap {
    padding-top: 130px;
}

.interior-title {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 16px 15px;
    background-image:url('../../img/new-ocean.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}



.interior-title video {
    min-width: 100%;
    min-height: 400px;
    z-index: 1;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -165px
}

.interior-title .container {
    padding: 30px 15px;
    z-index: 9;
    position: relative;
}

.interior-title .container div {
    z-index: 9999;
}

.interior-title h1 {
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 1px 2px 2px rgba(0,0,0,0.6);
}


/* ROOMS PAGE */

.galeria-interior-3columnas {
    display: grid; 
    grid-template-columns: auto auto auto auto; 
    grid-template-rows: auto; 
    gap: 20px; 
    grid-template-areas: 
      ". . ."
      ". . ."; 
    justify-items: center; 
    width: 100%; 
    max-width:1360px;
    margin:0 auto;
}
.galeria-interior-3columnas img {
    width:100%;
    height: auto;
}









/* CONTACT PAGE */

.contact-3cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    max-width:1360px;
    margin:0 auto 75px auto;
}
.contact-3cols div {
    text-align:center;
    border-radius: 20px;
    box-shadow:0px 13px 10px -7px rgba(0, 0, 0, 0.1);  
    padding:30px 15px;
}
.contact-3cols img {
    width:60px;
    height:auto;
    margin:0 auto;
}

.contact-3cols a:link,
.contact-3cols a:visited {
    color: #534136;
}

.contact-3cols a:hover,
.contact-3cols a:active {
    color: #000000;
    text-decoration: underline;
}
.mapouter{
    position:relative;
    height:400px;
    width:100%;
    background:#fff;
}
.gmap_canvas{
    overflow:hidden;
    height:600px;
    width:100% !important;
}
.gmap_canvas iframe {
    position:relative;
    z-index:2
}


/* 404 ERROR */
.error-404 {   
    max-width:1360px;
    margin:0 auto;
    text-align:center;
}