
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}


/* CHAT */

#toggleChatwidget img{
    width: 75px !important;
    height: 75px !important;
    border-radius: 0 !important;
}

/* CHAT */


/* SCROLL NAV */

#menu{
    transition: all 0.3s ease;
}

/* Clase que se activa al hacer scroll */
#menu.scrolled{
    z-index: 9;
    background:#000; /* o el color que quieras */
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

/* SCROLL NAV */

#menu{
    transition: all 0.3s ease;
}

.content_banner__header::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 155%;
    z-index: -1;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
}

/* Clase que se activa al hacer scroll */
#menu.scrolled{
    z-index: 9;
    background:#000; /* o el color que quieras */
    box-shadow:0 2px 10px rgba(0,0,0,0.2);
}

.content_banner__header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 19px 25px;
    border-bottom: 1px solid #BEBEBE;
    /* box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%); */
}

.mobile-top__header{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo__header{
    display: block;
    width: 170px;
}

.action__header{
    display: flex;
    align-items: center;
}

.idioma__advisor{
    width: 51px;
}

.idioma__advisor img{
    display: block;
    width: 100%;
}

.content_nav__header{
    position: fixed;
    width: 83%;
    left: 0;
    top: 0;
    z-index: 9;
    transform: translateX(-110%);
    padding: 25px 35px;
    height: 100vh;
    background-color: #D2A864;
    transition: 0.35s all cubic-bezier(0.65, 0.05, 0.36, 1);
}

.open {
    transform: translateX(0);
}

.content_nav__header a{
    color: #FFFFFF;
    display: block;
    font-size: 23px;
    padding: 25px 0 25px 15px;
    text-decoration: none;
    border-bottom: 1px solid #cfcfcf;
}

.idioma__header{
    display: none;
    color: #FFFFFF;
    border-radius: 55px;
    padding: 9px 21px;
    font-weight: 700;    
    text-decoration: none;
    border: 1px solid #FFFFFF;
}

/* BTN NAV */

.btn_nav__header {
    cursor: pointer;
    width: 35px;
    margin-left: 15px;
}

.line1,
.line2,
.line3 {
    z-index: 1;
    width: 35px;
    height: 3px;
    margin: 8px 0;
    transition: .6s;
    border-radius: 2px;
    background-color:#FFFFFF;
}

.change .line1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .line2 {
    opacity: 0;
}

.change .line3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}

/* .idioma__header img{
    display: block;
    width: 100%;
} */

@media screen and (min-width: 1024px){

    .bg_nav__header{
        position: fixed;
        width: 100%;
        left: 0;
        margin-top: 0;
    }

    .content_nav__header{
        position: initial;
        width: 79%;
        height: initial;
        padding: 0 25px;
        transform: initial;
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .content_nav__header a {
        font-weight: 500;
        border-bottom: 0;
        padding: 0;
        font-size: 14px;
    }

    .logo__header {
        width: 177px;
    }

    .idioma__header {
        width: 39px;
    }

    .content_banner__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .action__header{ display: none; }

    .tripadvisor{
        width: 47px;
    }

    .tripadvisor img{
        display: block;
        width: 100%;
    }

}


.footer{
background:#2f2f2f;
color:#cfcfcf;
padding:60px 0 20px;
}

.footer-container{
width:90%;
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:40px;
}

.footer-logo{
width:180px;
margin-bottom:15px;
}

.footer-text{
font-size:14px;
line-height:1.5;
margin-bottom:20px;
}

.footer-col h3{
color:#fff;
margin-bottom:15px;
font-size:18px;
}

.footer-col ul{
list-style:none;
padding:0;
margin:0;
}

.footer-col ul li{
margin-bottom:10px;
font-size:14px;
}

.footer-col ul li a{
text-decoration:none;
color:#cfcfcf;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#fff;
}

.social{
margin-top:10px;
}

.social a{
margin-right:10px;
font-size:18px;
color:#cfcfcf;
transition:0.3s;
}

.social a:hover{
color:#fff;
}

.footer-bottom{
border-top:1px solid #555;
margin-top:40px;
padding-top:20px;
text-align:center;
font-size:14px;
}

@media(max-width:900px){
.footer-container{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.footer-container{
grid-template-columns:1fr;
text-align:center;
}

.social a{
margin:0 8px;
}
}