:root {
    --blue: #283583;
}
:focus {
    outline: none;
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	font: 2.4rem 'Geologica', sans-serif;
	color: var(--blue);
}
a {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	color: var(--blue);
}
a:hover {
	color: var(--blue);
}
h1, .h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
h2, .h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}
h3, .h3 {
	font-size: 2rem;
	font-weight: 700;
}
h4, .h4 {
	font-size: 1.8rem;
	font-weight: 700;
}
p {
	margin-bottom: 1.5rem;
}
iframe, embed, object, video {
	max-width: 100%;
}
header {
	
}
section {
	position: relative;
}
/* FOOTER */
footer {
	font-size: 1.3rem;
    color: #000;
}

.biblio {
    padding-top: 3rem;
    padding-bottom: 20rem;
	font-size: 12px;
}

nav {
    display: none;
}

.text {
    padding-left: 2rem;
    padding-right: 2rem;
}
.intro {
    background-color: #283583;
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    padding-bottom: 16rem !important;
}
.py-10 {
    padding-top: 7rem;
    padding-bottom: 7rem;
}
.pb-10 {
    padding-bottom: 7rem;
}
.intro-description {
    background: #D4D7E6 url(../images/bg-intro-description.svg) no-repeat center bottom/3000px;
    color: var(--blue);
    font-size: 2.4rem;
    font-weight: normal;
    position: relative;
}
.blocco-2 {
    font-size: 3.6rem;
    font-weight: 700;
}
.clip-p {
    padding-bottom: 15rem !important;
}
.clip {
    clip-path: ellipse(220rem 140rem at 50% 140rem);
    margin-top: -15rem;
}
.clip-gold {
    background: #C09100;
    clip-path: ellipse(220rem 140rem at 50% 140rem);
    padding-top: 16rem;
    margin-top: -16rem;
}
.clip-inverse-gold {
    background: #C09100;
    clip-path: ellipse(90rem 11rem at top);
    height: 11rem;
}
.clip-inverse {
    background: #D4D7E6;
    clip-path: ellipse(90rem 11rem at top);
    height: 10rem;
}
.video-box {
    position: relative;
}
.video-box a {
    display: block;
    margin-bottom: 2rem;
    position: relative;
}
.video-box a::before {
    content: '';
    background: rgba(255, 255, 255, .6);
    width: 7.3rem;
    height: 7.3rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.video-box a::after {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 15px 0 15px 26px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.video-box a:hover::before {
    background: rgba(255, 255, 255, 1);
}
.video-box a:hover::after {
    border-color: transparent transparent transparent var(--blue);
}
.video-box img {
    border-radius: 5rem;
    border: 1.2rem solid var(--blue);
}
.video-box .description {
    font-size: 2.4rem;
    font-weight: 500;
}
#paziente-inconsapevole { background-color: #7E86B5; }
#paziente-rassegnato { background-color: #F5C545; color: var(--blue); }
#paziente-rassegnato .video-box img { border-color: #7B6323; }
#paziente-eroico { background-color: #04A19B; color: #fff; }
#paziente-eroico .video-box img { border-color: #037974; }

div#privacy-policy {
    max-width: 70rem;
    font-size: 1.8rem;
}

.bg-w { background-color: #fff; }
.bg-b { background-color: var(--blue); }
.w { color: #fff; }
.y { color: #E8CD37; }
.b { color: var(--blue); }

@media (min-width: 576px) {
	
} /* end min-width: 576px */

@media (min-width: 768px) {
    nav {
        display: flex;
        justify-content: flex-end;
    }
    nav ul {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    nav ul li a {
        text-decoration: none;
        font-weight: 700;
        padding-left: 7rem;
        margin-left: 2rem;
        display: inline-block;
        position: relative;
    }
    nav ul li a::before {
        content: '';
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 3rem;
        transform: translateY(-50%);
    }
    nav ul li.item-1 a::before { background: #7E86B5; }
    nav ul li.item-2 a::before { background: #F5C545; }
    nav ul li.item-3 a::before { background: #04A19B; }
    nav ul li.item-1 a:hover { color: #7E86B5; }
    nav ul li.item-2 a:hover { color: #F5C545; }
    nav ul li.item-3 a:hover { color: #04A19B; }
    .intro {
        font-size: 4.8rem;
    }
    .text {
        padding: 0;
    }
} /* end min-width: 768px */

@media (min-width: 992px) {
	h1, .h1 {
        font-size: 4.8rem;
    }
} /* end min-width: 992px */

@media (min-width: 1200px) {
    .intro-description::before {
        background-size: 120%;
    }
    .intro-description::after {
        background-size: 120%;
    }
    .clip {
        overflow-y: hidden;
    }
    #paziente-inconsapevole::after {
        content: url("../images/ellipse-01.svg");
        position: absolute;
        bottom: -50rem;
        z-index: -1;
        pointer-events: none;
    }
    #paziente-rassegnato::after {
        content: url("../images/ellipse-02.svg");
        position: absolute;
        bottom: -55rem;
        right: 0;
        z-index: -1;
        pointer-events: none;
    }
    #paziente-eroico::after {
        content: url("../images/ellipse-03.svg");
        position: absolute;
        bottom: -15rem;
        z-index: -1;
        pointer-events: none;
    }
} /* end min-width: 1200px */

@media (min-width: 1400px) {
	
} /* end min-width: 1200px */