@charset "utf-8";
.only_desktop{
    display: none;
}

h2{
    font-size: 45px;
}
h3{
    font-size: 25px;
}
p, ul.std li{
    font-size: 16px;
    line-height: 24px;
}
.std_gap{
    gap: 30px;
}


/********** HEADER **********/
#clear_header{
    width: 100%;
    height: 63px;
}
header .logo{
    width: 160px;
}
header .page_menu{
    position: fixed;
    top: 63px;
    left: 100%;
    width: 100%;
    height: calc(100svh - 63px);
    background-color: white;
    transition: 400ms ease-out;
}
header .page_menu:before{
    content: ' ';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255, .7);
    z-index: 5;
}
header .page_menu .info{
    position: relative;
    z-index: 10;
}
header .wrap_langs{
    padding-top: 20px;
    font-size: 20px;
    color: var(--darkblue);
    justify-content: center;
    margin-bottom: 20px;
}
header .menu{
    font-weight: 500;
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 30px;
    color: var(--darkblue);
}
header .menu li{
    font-size: 25px;
}
.menu_opened header .page_menu{
    left: 0;
}
.menu_opened header #ico_menu:before {
    width: 100%;
}
.menu_opened header #ico_menu:after{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
}
/********** END HEADER **********/

/********** SUBHEADER *********/
.sub_header{
    aspect-ratio: 16 / 9;
}
.sub_header_video{
    height: 50svh;
}
/********** END SUBHEADER *********/

.home_shortcut{
    gap: 20px;
}
.home_shortcut p{
    font-size: 14px;
}

.map_legend{
    grid-template-columns: repeat(2,1fr);
}

.booking_box .w_def{
    display: grid !important;
    grid-template-rows: 1fr;
    gap: 5px !important;
}

/******** SURROUNDINGS **********/
.grid.surroundings{
    /*grid-template-columns: repeat(2,1fr);*/
    grid-template-columns: 1fr 1fr; /* Due colonne di uguale larghezza */
    gap: 10px;
}
.grid.surroundings .pad{
    padding: 0 10px;
}
.grid.surroundings h3{
    font-size: 22px;
}
.grid.surroundings p{
    font-size: 14px;
}
/******** END SURROUNDINGS **********/

/****** LOCATION GRID **********/
.location_grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, minmax(300px, 1fr));
}
.location_grid .cell:first-of-type{
    padding-bottom: 20px;
}
.location_grid .cell:last-of-type{
    padding-top: 20px;
}
/****** END LOCATION GRID **********/

/****** CONTACT FORM *******/
.contact_form .row{
    grid-template-columns: 1fr;
}
/****** END CONTACT FORM *******/

/****** FOOTER ******/
footer p.up{
    font-size: 20px;
    line-height: 29px;
    font-weight: 500;
}
/****** END FOOTER ******/

.cols_sistemazione{
    grid-template-columns: 100%;
    gap: 30px;
}


/*********** informational_popup ************/
.informational_popup .wrap_info{
    width: 90dvw;
    max-height: 90dvh;
    padding: 20px;
}
.informational_popup .wrap_info h2{
    font-size: 35px;
}
.informational_popup .wrap_info p{
    font-size: 20px;
    line-height: 29px;
}
.informational_popup .wrap_info .logo{
    width: 200px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/*********** END informational_popup ************/

.wrap_comuni{
    grid-template-columns: 1fr;
    gap: 30px;
}
.wrap_comuni .wrap_img{
    aspect-ratio: 16 / 9;
}
.std_grid{
    grid-template-columns: 1fr;
    gap: 30px;
}
.contacts_subtitle{
    font-size: 19px;
    line-height: 30px;
}
.cards_preview{
    grid-template-columns: 1fr;
    gap: 30px 20px;
}
.header_alloggio{
    top: 63px;
}
.cols_alloggio{
    grid-template-columns: 100%;
    gap: 30px;
}
.cols_alloggio > div:first-of-type{
    order: 2;
}
#map{
    height: 200px;
}

@media screen and (min-width: 700px){
    .wrap_comuni{
        grid-template-columns: repeat(2, 1fr);
    }
    .std_grid{
        grid-template-columns: repeat(2, 1fr);
    }
}



