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

h1, h2{
    font-size: 60px;
}
h3{
    font-size: 30px;
}
p, ul.std li{
    font-size: 18px;
    line-height: 26px;
}
.txt_left_desktop{
    text-align: left;
}
.std_gap{
    gap: 100px;
}

/********** HEADER **********/
#clear_header{
    width: 100%;
    height: 114px;
}
header .logo{
    width: 220px;
}
header .menu{
    font-weight: 500;
    display: flex;
    list-style-type: none;
    gap: 40px;
    color: var(--darkblue);
}
/********** END HEADER **********/

/********** SUBHEADER *********/
.sub_header{
    aspect-ratio: 5 / 1
}
.sub_header_video{
    height: 70svh;
}
/********** END SUBHEADER *********/


/******** SURROUNDINGS **********/
.grid.surroundings{
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.grid.surroundings .pad{
    padding: 0 20px;
}
/******** END SURROUNDINGS **********/

/****** LOCATION GRID **********/
.location_grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1, minmax(300px, 1fr));
}
.location_grid .cell {
    padding: 0 30px;
}
/****** END LOCATION GRID **********/

/****** CONTACT FORM *******/
.contact_form .row{
    grid-template-columns: 
        150px /* info */ 
        1fr /* valore */
    ;
}
.txt_right_desktop{
    text-align: right;
}
/****** END CONTACT FORM *******/

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

.cols_sistemazione{
    grid-template-columns: calc(60% - 15px) calc(40% - 15px);
    gap: 30px;
}

/*********** informational_popup ************/
.informational_popup .wrap_info{
    width: 60dvw;
    max-height: 70dvh;
    padding: 30px;
}
.informational_popup .wrap_info h2{
    font-size: 45px;
}
.informational_popup .wrap_info p{
    font-size: 23px;
    line-height: 35px;
}
.informational_popup .wrap_info .logo{
    width: 250px;
    margin-bottom: 20px;
}
/*********** END informational_popup ************/

.wrap_comuni{
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.wrap_comuni .wrap_img{
    aspect-ratio: 1 / 1;
}
.std_grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 10px;
}
.contacts_subtitle{
    font-size: 23px;
}
.cards_preview{
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}
.header_alloggio{
    top: 114px;
}
.cols_alloggio{
    grid-template-columns: calc(50% - 50px) calc(50% - 50px);
    gap: 100px;
}
#map{
    height: 400px;
}

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





