@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
    font-size: 62.5%;
}

/* banner start */

.banner {
    position: relative;
    overflow: hidden;
    background-image: url(../images/Senza\ titolo-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 50px 0;
}

/* title */
.banner .title {
    text-align: center;
}

.banner .title h1 {
    font-size: 11rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    mix-blend-mode: screen;
}

/* about */
.banner .about {
    text-align: center;
    margin-top: 90px;
}

.banner .about h4 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.banner .about p {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.8;
}

/* video */

.banner .video-block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 100px;
}

.banner .video-block .item {
    width: 32%;
    position: relative;
}

.banner .video-block .item video {
    width: 100%;
}

.banner .video-block .item a.btn {
    width: 100%;
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    padding: 5px 0;
    margin: 0 auto;
    border-radius: 0;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;

    background-color: rgba(0, 0, 0, .4);
}

.banner .video-block .item a.btn:hover {
    background-color: rgba(0, 0, 0, .8);
}

/* banner end */