:root{
    --red: #e81e0c;
}
h1,h2,h3,h4,h5,h6,b,strong{
    font-weight: normal;
}
b,strong{
    font-family: "Roboto-Bold";
}
h1{
    letter-spacing: 2px;
    font-family: "Montserrat-Bold";
}
h2.page_title{  
    text-align: center;
    font-family: "Montserrat-Bold";
    letter-spacing: 2px;
}
h2.bottom_line{
    position: relative;
}
h2.bottom_line::after{
    content: ' ';
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 8px;
    width: 100px;
    background-color: var(--red);
}
h3.page_subtitle{
    color: var(--red);
    text-align: center;
    font-family: "Montserrat-MediumItalic";
    letter-spacing: 2px;
}
p, ul.p_style{
    line-height: 28px;
}
ul.p_style{
    padding-left: 20px;
    list-style-image: url("../images/ico-spunta-piccola.png");
}
.ico_subtitle{
    width: 306px;
    max-width: 100%;
    margin-bottom: 20px;
}

body{
    font-family: "Roboto-Regular";
    background-color: black;
    color: white;
}
/***** HEADER *****/
header{
    background-color: black;
    color: white;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 40;
}
header .menu{
    list-style-type: none;
    display: flex;
    gap: 60px;
}
header .menu li{
    text-align: center;
    cursor: pointer;
}
header .menu li span:first-of-type{
    letter-spacing: 2px;
    font-family: "Roboto-Medium";
    display: block;
    margin-bottom: 2px;
}
header .menu li span:last-of-type{
    letter-spacing: 1px;
    font-family: "Montserrat-MediumItalic";
    color: var(--red);
}
header .ico{
    width: 30px;
}
/***** END HEADER *****/
.subheader{
    display: flex;
    flex-direction: column;
    position: relative;
}
.subheader .info{
    position: relative;
    z-index: 20;
    margin-top: auto;
    margin-bottom: 60px;
    color: white;
    text-align: center;
}
.subheader .info h2.custom{
    margin-top: 5px;
    font-family: "Montserrat-MediumItalic";
    letter-spacing: 2px;
}
.custom_upsize_menu{
    list-style-type: none;
    text-align: center;
}
.custom_upsize_menu li:not(:last-of-type){
    margin-bottom: 25px;
}
.custom_upsize_menu img{
    vertical-align: middle;
    width: 35px;
}
.gallery{
    display: grid;
    gap: 10px;
}
.gallery .item{
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.link{
    text-decoration: underline;
    text-decoration-color: var(--red);
    cursor: pointer;
}
/******* FOOTER ********/
footer .line{
    background-color: var(--red);
    height: 10px;
}
footer .grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
}
footer .logo{
    width: 200px;
}
footer p{
    font-size: 16px;
}
/******* END FOOTER ********/

