html,body{
    margin:0;
    padding:0;
    width:100%;
    overflow-x: clip; /*Utile a non avere scroll orizzontale mantenendo la navbar sticky*/
}
*{
    margin: 0;
    box-sizing: border-box;
    font-family:Lato, Helvetica, Arial, sans-serif;
}
img{
    cursor: pointer;
}
a{
    text-decoration: none;
    cursor:pointer;
}

.montserrat-h3 {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;

    font-size: 32px;

    color:black;

}

.main-news a h3:hover{
    color:rgb(247,148,30);
}
.montserrat-p{
    font-family: "Montserrat", sans-serif;
    font-size: 1.15rem;
    line-height: 1.15rem;
    font-weight: 700;

    color:black;
}
.news1 a p:hover , .news2 a p:hover{
    color:rgb(247,148,30);
}
.open-sans-p {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-variation-settings:"wdth" 100;
}
.img-info a{
    color:black;
}
.img-info a:hover{
    color:rgb(247,148,30);
}
#greyBox{
    border:1px solid #ccc9;
    padding:5px 20px;
    cursor:pointer;
}
#greyBox:hover{
    border-color: white;
    transition: 0.3s;
}
h3{

    margin-top:6px;
}
p{
    margin-top: 10px;
}

.title{
    background-color: rgb(247,148,30);
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;


}
.title a{

    color: white;
    font-weight: 400;
}
#support{
    height: auto;
    width: 130px;
    background-color: rgb(247,148,30);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px;
    cursor:pointer;

    transform-origin: bottom left;
    transform: rotate(-90deg);

    position: fixed;
    left: 100%;
    top: 50%;
    z-index: 20;

    transition: 0.5s;
}
#support-white{
    color: white;
    text-decoration: none;
}
#support:hover{
    background-color: black;
    text-decoration: none;
}

.fa-cog{
    color: white;
}

.logo-conteiner {
    width: 100%;
    max-width: 1020px;
    height: 110px;

   display: flex;


    justify-content: left;

    overflow: hidden;
}
.logo{
    margin: 5px 0 10px 0;
}
.sticky-header{
    width: 100%;

    position: sticky;
    top:-110px;
    z-index: 1000;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.nav-bar{
    width: 100%;
    max-width: 1020px;

    background-color: white;
}
.responsive-bar{
    width: 100%;

    display: flex;
    justify-content: flex-start;

}
ul#menu{
    padding-left:0;
    list-style-type: none;
    width: 100%;

    display: flex;
    justify-content: flex-start;
}
ul#menu li{
    display: inline-block;
    position: relative;

    margin-right: 15px;
    padding: 5px 1px 2px 1px;

}
ul#menu li a{
    font-family: 'Overpass',sans-serif;
    color:#000;
    text-transform: uppercase;
    font-weight: 700;

    font-size: 14px;
}

ul#menu li:hover{
    background-color: rgb(247,148,30);
}
ul#menu li:hover > a{
    color: white;
}
#newItem{
    background-color: rgb(247,148,30);
}

#newItem a {
    font-family: 'Open Sans Condensed', sans-serif;

    color:white!important;
    font-weight: 700;
    margin:0;
    padding: 0;

    line-height: 1.3;
    font-size: 13px;
}

#hrOrange{
    border: 0.5px solid rgb(247,148,30);
    width: 100%;
}
.rettOrange{
    background-color: rgb(247,148,30);

    margin-bottom: 0;
    padding: 2px 1px 2px 1px;
}
.rettOrange > a{
    color:white!important;
}
.icon{
    cursor:pointer;
    padding:4px 15px 4px 15px!important;
    margin-right:2px!important;
}

/*Getione dropdown menu*/
#search-hover{
    right: 0;
    left:unset;

}
.responsive-bar li ul{
    display: none;
    position: absolute; /* Posizione assoluta per il dropdown */
    top: 100%; /* Posiziona il dropdown sotto l'elemento genitore */
    left: 0;
    z-index: 20;
    width: 300px;
    padding: 0;
    margin: 0;
    background-color: white;
    border-radius: 4px; /* Bordi stondati per il contenitore del sottomenù */

}
.responsive-bar li:hover >ul{
    display: block;
}
.responsive-bar li li{
    width:300px;
    float:left;

    text-align: left;
    border-bottom:0.05rem solid black;
    margin-top:0;

}
.responsive-bar li ul li:last-child {
    border-bottom: none; /* Rimuove il bordo inferiore dall'ultimo elemento */
}

.responsive-bar li li a{padding:4px 2px 2px 10px;}

.responsive-bar li li:hover{
    background-color: rgb(247,148,30) !important;
}

.undercontent{
    display: flex;
    justify-content: center;

    width: 100%;
    min-height: 1100px;
    overflow: visible;

    height: 100%;

    position: relative;
    z-index: 0;

    margin-bottom: 40px;



}

.main-content{
    width: 100%;
    max-width: 980px;

    margin-top:40px;
    position: relative;

}

.left-content{
    width: calc(100%*2/3);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;

    padding-right: 10px;
}
.main-news{
    width:100%;
}
.double-news{
    margin-top:50px;
    position: relative;

    clear: both;
}
.news1{
    width:49%;

    position: absolute;
    left: 0;
    top: 0;

    overflow: hidden;
}
.news2{
    width:49%;

    position: absolute;
    right: 0;
    top: 0;

    overflow: hidden;
}

.right-content {
    width: calc(100%*1/3);
    max-width: 320px;
    height: 1160px;
    position: absolute;
    right: 0;
    top: 0;

    display: flex;
    justify-content: center;

    margin: 0;
}

.intestazione-right-content{ /*Successivamente è stato usato un altro metodo per creare le line
semplicemente con una div sopra e sotto e alcune regole css*/
    position: absolute;
    top:0;

    width: 100%;
    display: flex;
    align-items: center;
}

.intestazione-right-content h3{
    font-size: 23px;
    color: #F7941EFF;
    letter-spacing: 2px;

    position: relative;
    display: inline-block;

    margin:0 15px;
}
/*.intestazione-right-content h3:before{
    content:"";
    border: 1px solid #9a9a9a;
    position: absolute;
    width: 80%;
    top: 13.25px;
    left: -110px;
}
.intestazione-right-content h3:after{
    content: "";
    border: 1px solid #9a9a9a;
    position: absolute;
    width: 80%;
    top: 13.25px;
    right: -110px;
}*/

.news-research{
    position: absolute;
    top:30px
}
.img-info h4{
    margin-top:10px;
}
.img-info p{
    font-size: 15px;
}

#info-user{
    font-size: 13px;
}

.all-event{
    margin-top :20px;
    padding:0 30px 0 30px;

    width: 100%;

    display: flex;
    justify-content: center;
}
.all-event a {
    color: #9a9a9a;
}
.all-event a:hover{
    color:#F7941EFF ;
}
.span{
    display: inline-block;
}
.space-tween{
    margin:0 3px;
}
.space-tween a:hover{
    cursor: default;
    color:#9a9a9a;
}
#greyLine{
    border:0;
    border-top: thin solid #9a9a9a;
    margin-top:5px;


}

.event-type{
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;

    width: 100%;

    margin-top:8px;
    text-align: center;

}
.events{
    grid-column-start: 1;
    background-color:#F7941EFF;
    padding:5px 1px;

    box-sizing: border-box;

    position: relative;
}
.music{
    grid-column-start: 2;

    padding:5px;
}
.movies{
    grid-column-start: 3;

    padding:5px;
}
.dining{
    grid-column-start: 4;

    padding:5px;
}
.event-type div{
    color: #9a9a9a;
    font-weight: 700;
    font-size: 15px;
    font-family: "Montserrat", sans-serif;
}

.music a, .movies a, .dining a{
    color: #9a9a9a;
}

.music:hover > a, .movies:hover > a, .dining:hover > a{
    color:white;
    padding:5px;
    background-color:#F7941EFF;
    cursor: pointer;
}
.events a{

    color: white;

}
#triangle-down{
    width:0;
    height: 0;

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #F7941EFF;

    position: absolute;
    top:27px;
    left: 55px;
}
.date{
    margin-top:20px;
    position: relative;
   /* border: 0.15rem solid #ccc;
    border-radius: 0;
    box-shadow: none;*/
}
.event-specifies select {
    -webkit-appearance: none;

    width: 100%;
    height: 40px;
    border-radius: 0;


    border:thin solid #ccc;

    padding-left: 6px;

}

/*Gestione della freccia per selezione del menù*/
.custom-arrow{
    position: absolute;
    top:0;
    right: 0;

    display: block;

    height: 100%;
    width: 2rem;

    border: thin solid #ccc;
    border-left: 0 transparent;

    pointer-events: none;
}

.custom-arrow::before,
.custom-arrow::after{
    --size: 0.30em;

    content: "";
    position: absolute;
    width: 0;
    height: 0;

    left:50%;

    transform: translate(-50%, -50%);
}

.custom-arrow::before{
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-bottom: var(--size) solid black;

    top: 40%;
}
.custom-arrow::after{
    border-left: var(--size) solid transparent;
    border-right: var(--size) solid transparent;
    border-top: var(--size) solid black;

    top:60%;
}

.categories{
    position: relative;
    margin-top: 10px;
}
.position{
    position: relative;
    margin-top: 10px;
}
.search{
    width: 100%;
    margin-top: 10px;

    position: relative;
}
.search-bar{

    align-items: center;
}
.search-bar input{
    width: 80%;
    height: 40px;

    border: thin solid #ccc;
    margin-right: 5px;

}
.button-go input {
    position: absolute;
    right: 0;
    top: 0;

    background: white;
    color: black;
    border: thin solid #ccc;

    font-family: Lato, Helvetica, Arial, sans-serif;

    font-size: 16px;
    font-weight: 700;
    width: 18%;
    height: 40px;
}
.button-go a input:hover{
    cursor: pointer;
    color: white;
    background-color:#F7941EFF ;
}
option{
    font-family: Lato, Helvetica, Arial, sans-serif;
    font-size: 16px;

    color:black;
}

.the-latest{
    width:100%;
    height: 700px;

    position: relative;
}
.media-latest-centered{
    width:100%;
    display: flex;
    justify-content: center;
}
.intestazione-latest {
    width: 100%;
    max-width: 980px;


    display: flex;
    align-items: center;
}
.intestazione-latest h3{
    font-size: 23px;
    color: #F7941EFF;
    letter-spacing: 2px;

    margin:0 15px;
}
.grid-latest{
    width: 100%;
    max-width: 989px;

    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    grid-template-rows: 50% 50%;

    position: absolute;
    top:40px;

    height:700px;

}
.latest-padding-img{
    padding-left: 6px;
}
.latest-1{
    grid-column-start: 1;
}
.latest-2{
    grid-column-start: 2;
}
.latest-3{
    grid-column-start: 3;
}

.latest-4{
    grid-column-start: 4;

}
.latest-5{
    grid-column-start: 1;
    grid-row-start:2;
}
.latest-6{
    grid-column-start: 2;
    grid-row-start:2;
}
.latest-7{
    grid-column-start: 3;
    grid-row-start:2;
}
.latest-8{
    grid-column-start: 4;
    grid-row-start:2;
}
.paragrafo-latest{
    font-size: 1.15rem;
    line-height: 1.15rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;

    padding-right: 1px;
}
.testo-latest-1 a,.testo-latest-2 a, .testo-latest-3 a, .testo-latest-4 a{
    text-decoration: none;
    cursor: pointer;
    color:black;
}
.autore-small{
    font-size: 14px;
    font-family: Lato, Helvetica, Arial, sans-serif;
    font-weight: 400;
    padding-right: 1px;
}
.latest-1:hover a, .latest-2:hover a, .latest-3:hover a, .latest-4:hover a,
.latest-5:hover a, .latest-6:hover a ,.latest-7:hover a, .latest-8:hover a{

    color:#F7941EFF;
}
.grid-conteiner{
    width: 100%;

    display: flex;
    justify-content: center;
}
.grid-3-layout{
    width: 100%;
    max-width: 980px;
    display: grid;
    grid-template-columns: 33% 33% 33%;
    grid-template-rows: 50% 50%;
}
.grid-item1{
    grid-column-start: 1;
    grid-row-start: 1;
    display: grid;
    height: auto;
}
.grid-item2{
    grid-column-start: 3;
    grid-row-start: 1;
    display: grid;
    height: auto;
}
.grid-item3{
    margin-top:20px;
    grid-column-start: 1;
    grid-row-start: 2;
}
.grid-item4{
    margin-top:20px;
    grid-column-start: 3;
    grid-row-start: 2;
}
.block-grid{
    position: relative;
    margin-top:10px;
}
.block-grid p{
    display: inline-block;
    position: absolute;
    top:0;
    margin-top:0;

    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
.grid-3-layout img{
    margin-right: 5px;
}
.intestazione-grid {
     display: flex;
     align-items: center;
     width: 100%;
 }

.intestazione-grid h3 {
    font-size: 23px;
    color: #F7941EFF;
    letter-spacing: 2px;
    margin: 0 15px;
    position: relative;
    white-space: nowrap;
}

.line {

    flex: 1;
    height: 2px;
    background: #9a9a9a;
}
.section-teaser{
    width:100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 20px;
    margin-top:10px;
}
.section-teaser a{
    color:white;
    padding:5px;
}
.white-hover{
    background-color:#F7941EFF ;
    padding:5px;
    border:1px solid #F7941EFF
}
.white-hover:hover{
    background-color: white;
    transition: 0.5s;
}
.white-hover:hover > a{
    color:#F7941EFF;
}
.section-link{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-link a{
    color:black;
    position: relative;
    margin-left: 10px;
    font-weight: 700;
    font-size: 12px;
    font-style: inherit;
}
.section-link a:hover{
    color: #f7941eff;
    transition: 0.2s;
}
.section-link a:last-child:before{/*prima dell'ultimo figlio*/
    content: "";
    position: absolute;
    left: -5px; /* Regola questa proprietà per posizionare la linea correttamente */
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px; /* Altezza della linea */
    background-color: #9a9a9a; /* Colore della linea */
}
footer{
    margin-top: 60px;
    width:100%;
    display: flex;
    flex-direction: column;

    align-items: center;

    height: auto;
}
.footer-grid{
    width:100%;
    max-width: 998px;

    display: grid;
    grid-template-columns: 20% 20% 20% 20% 20%;
}
.footer-column1{
    grid-column-start: 1;
}
.footer-column1 a,
.footer-column2 a,
.footer-column3 a,
.footer-column4 a,
.footer-column5 a{
    display: block;
    font-size: 14px;
    color: #9a9a9a;

    margin:5px;
}
.footer-grid a:hover{
    color:#f7941eff !important;
}
.footer-subtitle{
    margin-top: 10px;

    color:black !important;
    font-size:16px !important;
    font-weight: 700;
}
.footer-column2{
    grid-column-start: 2;
}
.footer-column3{
    grid-column-start: 3;
}
.footer-column4{
    grid-column-start: 4;
}
.footer-column5{
    grid-column-start: 5;
}
.credits{
    width: 100%;
    max-width: 998px;
    display: block;
    text-align: center;

}
.credits hr{
    margin:20px 0 20px 0;
    border-top: 1px solid #9a9a9a;
}

.text-center-footer h3, .text-center-footer p {
    margin: 0;
    color:black;
    line-height: 1.4;
    font-weight: 400;
}
.text-center-footer h3{
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.text-center-footer p{
    font-size: 16px;
    margin-bottom: 10px;
}
.grid-4-logo{
    margin:10px 0 10px 0;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
}
.origin{
    margin-top:10px;
    width:100%;
    max-width:980px;
}
.left-text-footer{
    width: 20%;
    flex-wrap: nowrap;

}
.left-text-footer i{
    font-size: 28px;
    margin:5px 5px 5px 0;
}
.left-text-footer p{
    margin-top:5px;
}
#autore-footer{
    font-size: 12px;
}

.footer-logo1{
    grid-column-start: 1;
}
.footer-logo2{
    grid-column-start: 2;
}
.footer-logo3{
    grid-column-start: 3;
}
.footer-logo4{
    grid-column-start: 4;
}
