.row{
    margin:0!important;
    padding:0!important;
    
}
body{
    background-color:#e3e5ee!important;
}
.header{
    background-color:dodgerblue;
    width:100vw;
    height:30px;
    position:absolute;
    z-index:2;
}
.header img{
    position:absolute;
    left:42vw;
    top:-30px;
}
.flag img{
    position:absolute;
    right:30px;
    top:23px;
    z-index:1;
}
.slideArea{
    background-image:url("assets/slide.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width:100vw;
    height:100vh;    
}
.description{
    position:absolute;
    margin:30vh 5vw;
    background-color:rgba(0,0,0,.8);
    width:40vw;
    color:white;
    font-size:32px;
    font-weight:bold;
    padding:5px 25px 5px 25px;
    border-left:8px solid red;
    
}
.card{
    position:relative;
    margin:-22vh auto 0 auto;
    background-color:white;
    width:80%;
    padding:15px;
    border-radius:10px;
    -webkit-box-shadow: 0 2px 10px 1px #2E2E2E;
    box-shadow: 0 2px 10px 1px #2E2E2E;
}
.card p{
    text-align: center;
    font-size:25px;
    font-weight: bold;
}

.arrowDown{
    position:relative;
    margin:0 auto 50px;
    width:30px;
    height:30px;
    background-image:url("assets/arrow.jpg");
    background-size:cover;
    background-repeat:no-repeat;
    animation: parpadeo 3s linear infinite;
}
.card-cont{/*contenedor de la mini foto del hotel*/   
    overflow:hidden;
    position:relative;
    margin-top:30px;
    margin-bottom:20px;
    text-align:center;
   
}
.card-cont img{
    width:100%;
    text-align:center;
    transition: all .3s ease-in-out;
    z-index:2;
}
.card-cont img:hover{    
    -webkit-box-shadow: 0 0 30px 1px #B8B8B8;
box-shadow: 0 0 30px 1px #B8B8B8;
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
-o-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.name{/*titulo de la minifoto*/
    background-color:dodgerblue;
    color:white;
    width:100%;
    font-size:16px;
    font-weight:bold;
    padding:5px;
    position:absolute;
    bottom:0;
    z-index:3;
    
}
.legend{
    text-align: center;
    font-size:30px;
    font-weight:bold;
    padding:30px 50px 30px 50px;
}

.sea{
    background-color:dodgerblue;
    width:100vw;
    color:white;
    font-size:32px;
    font-weight:bold;
    text-align:center;
    padding:5% 20% 5% 20%;
}

.single-wave-border {
    width: 100vw;
    height: 120px; /* Ajusta la altura según tus necesidades */
    position: relative;
    overflow: hidden;
}

.single-wave-border::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* Altura del pseudo-elemento para que solo ocupe la parte inferior */
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,40 C300,80 600,0 900,40 1200,80 1500,0 1800,40 V120 H0 Z" fill="dodgerblue"/></svg>');
    background-size: cover;
}


.footer{
    background-color:white;
    text-align:center;
    padding:50px;
}


/*animacion*/
@keyframes parpadeo{
0%{opacity:0.99;}
40%{opacity:0.1;}
60%{opacity:0.8;}
100%{opacity:0.1;}
}


@media(max-width:800px){

    .description{
        width:90vw;
        border-left:none;
        border-top:8px solid red;
        text-align:center;
        font-size:15px;
    }
    .header img{
        width:100px;
        left:5vw;
        top:-10px;
    }
    .flag img{
        width:80px;
    }
    .card{
        width:100%;
    }
    .legend{
        padding:0;
    }
    .sea{
        padding:10px;
    }
}