/* Gestione generale dei componenti della HomePage */
* {
    margin: 0;
    padding: 0;
}

.body{
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    overflow-y: auto;
}

/*----- Navbar -----*/

.book_sconto{
    z-index: 3;
    position: fixed;
    height: 12vh;
    width: 100vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    font-size: 4vh;
    font-weight: bold;
    color: red;
    background-color: whitesmoke;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.navbar{
    width: 100vw;
    height: 7vh;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: rgb(17, 51, 102);
    color: white;
    z-index: 4;
}

.menu{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 25vw;
}

.tasto_menu_responsive{
    display: none;
}

.menu_responsive{
    display: none;
}

.menu a{
    text-decoration: none;
    color: white;
    font-size: 2vh;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-shadow:
        0px 0px 0px 1px #4a78dc inset,
        0px 4px 0px 0px #375ce1,
        0px 5px 0px 0px rgba(0,0,0,.15);
    background-color: rgb(31, 74, 138);
    border-radius: 25px;
    color: white;
    padding: 3px 10px;
}

.menu a:hover{
    transition: calc(0.3s);
    color: rgb(249, 162, 0);
    border-radius: 10px;
    background-color: transparent;
}

.menu a:not(:hover){
    transition: calc(0.3s);
}
.titolo{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3vh;
    width: 40vw;
}

.titolo span{
    font-size: 1.7vh;
}

.social{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20vw;
}

.social a img{
    height: 40px;
    width: 40px;
}

.social a img:hover{
    transition: calc(0.7s);
    opacity: calc(50%);
}

.social a img:not(:hover){
    transition: calc(0.7s);
}

/*----- Pagina informazione -----*/

.container_service{
    display: flex;
    height: 100vh;
    width: 100vw;
    background-color: whitesmoke;
    min-height: 100vh;
}

.main_service{
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 3vh;
}

.titolo_service{
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(17, 51, 102);
    font-size: 4vh;
    height: 10vh;
    width: 100%;
}

.service{
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-direction: column;
    height: 70vh;
    width: 35vw;
}

.linea_vr{
    width: 0.3vw;
    background-color: black;
}

.immagine_laterale{
    width: 50vw;
    background-image: url('/Source/img_varie/lampada.webp');
    background-repeat: no-repeat;
    background-size: cover;
}


/*------------------------*/
/*----- MAIN SERVICE -----*/
/*------------------------*/

.img_service{
    height: 50px;
    width: 50px;
    margin-right: 15px;
}

.text_service{
    display: flex;
    align-items: center;
}

.other{
    margin-top: 30px;
    color: blue;
    cursor: pointer;

}

.other:hover{
    transition: calc(0.5s);
    opacity: calc(50%);
}

.other:not(:hover){
    transition: calc(0.5s);

}

.other img{
    width: 60px;
}

.linea{
    width: 100vw;
    height: 0.5vh;
    background-color: black;
}

/*------------------------------*/
/*----- MEZZI DI TRASPORTO -----*/
/*------------------------------*/

.container_trasporti{
    display: flex;
    height: 70vh;
    width: 100vw;
    background-color: whitesmoke;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.secondi_servizi{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 70vh;
    width: 33vw;
}

.titolo_trasporti{
    font-size: 3vw;
}

.info_trasporti{
    font-size: 1.5vw;
}

.info_trasporti a{
    text-decoration: none;
    color: blue;
}

