﻿:root {
    --timeline-first: rgb(102,204,153);
    --timeline-second: rgb(51,204,255);
    --timeline-third: rgb(51,204,204);
    --timeline-fourth: rgb(51,153,204);
}

.bg-gray-transparent {
    background-color: #eeeceeda
}
.bg-footer {
    background: linear-gradient(-65deg, #6868ad, #cccccc, #46ad41);
    background-size: 400% 400%;
    -webkit-animation: bg-footer-animation 15s ease infinite;
    -moz-animation: bg-footer-animation 15s ease infinite;
    animation: bg-footer-animation 15s ease infinite;
}
.cursor-pointer {
    cursor: pointer;
}

@-webkit-keyframes bg-footer-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@-moz-keyframes bg-footer-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes bg-footer-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.rounded-pill-start {
    border-bottom-left-radius: 50rem;
    border-top-left-radius: 50rem;
}

.rounded-pill-end {
    border-bottom-right-radius: 50rem;
    border-top-right-radius: 50rem;
}

.bg-gradient-white-gray {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 50%, rgba(228,229,229,1) 100%);
    /*background: url('/images/home/news_arrow.png') no-repeat center top, linear-gradient(90deg, rgba(255,255,255,1) 50%, rgba(228,229,229,1) 100%);*/
}

.bg-news-envelope {
    background-image: url('/images/home/news_arrow.png');
    background-position: top center;
    background-repeat: no-repeat;
}

.reveal {
    position: relative;
    transform: translateY(150px);
    opacity: 0;
    transition: 2s all ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

.bg-newsgroup {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
}

.news-container {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 50%, rgba(228,229,229,1) 100%);
    clip-path: polygon(40% 15%, 60% 15%, 80% 0, 100% 0, 100% 100%, 0 100%, 0 0, 20% 0);
    margin-top: 50%;
}

.rounded-pill-top {
    border-top-left-radius: 10rem;
    border-top-right-radius: 10rem;
}

.bg-transparent-violet {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(115,101,170,1) 5%, rgba(115,101,170,1) 70%, rgba(255,255,255,0.5) 100%);
}
.bg-transparent-violet-left {
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0.5) 5%, rgba(115,101,170,1) 30%, rgba(115,101,170,1) 100%);
}
@media (max-width: 575.98px) {
    .bg-transparent-violet {
        background: rgba(115,101,170,.5);
        top: 5%;
    }
}
.rc-anchor-light {
    background: #000 !important;
    color: #000 !important;
}

@keyframes pop-top {
    0% {
        opacity: 0;
        transform: scale(.6);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.animate-on-scroll {
    opacity: 0;
}
.animate-on-scroll.active {
    opacity: 1;
}
.active.animate-pop-top {
    animation: pop-top .8s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
}
.animate-h1 {
    animation-delay: 0.2s;
}

.active.animate-h2 {
    animation-delay: 0.6s;
}

@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-left {
    -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 0.8s;
}

.slide-in-right {
    -webkit-animation: slide-in-right 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
    animation: slide-in-right 0.5s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
    animation-delay: 0.8s;
}
@-webkit-keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
    }
}

.active.slide-right {
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 0.8s;
}
img.sectionImg {
    width: 100%;
    transition: transform 0.4s ease;
    transform-origin: 50% 50%;
}

    img.sectionImg:hover {
        transform: scale(1.2);
        width: 100%;
    }

.section-home-div {
    width: 96%;
    height: auto;
    overflow: hidden;
}

.news-home-text-position {
    z-index: 10;
    right: 60%;
    top: 25%;
}

.circle-news-home {
    width: 2.5rem;
    height: 2.5rem;
}
.circle-wg-card {
    width: 1.5rem;
    height: 1.5rem;
}
@media (max-width: 991.98px) {
    .news-home-text-position {
        z-index: 10;
        right: 60%;
        top: 5%;
    }
    .circle-news-home {
        width: 1rem;
        height: 1rem;
    }
}
.read-more {
    position: relative;
    text-decoration: none !important;
}
    .read-more::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        border-radius: 4px;
        background-color: #7367ab;
        bottom: 0;
        left: 0;
        transform-origin: right;
        transform: scaleX(0);
        transition: transform .3s ease-in-out;
    }
    .read-more:hover::before {
        transform-origin: left;
        transform: scaleX(1);
    }
    .read-more::after {
        content: " >";
        transition: all 0.5s;
        margin-left: 0px;
    }
    .read-more:hover::after {
        margin-left: 8px;
    }

.fade-in-fwd {
    -webkit-animation: fade-in-fwd 0.8s ease-out both;
    animation: fade-in-fwd 0.8s ease-out both;
}
@-webkit-keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0.1;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}
.tracking-in-expand {
    -webkit-animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
    animation: tracking-in-expand 0.7s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}
@-webkit-keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

.kit-phase-1-color {
    color: #5dbcae;
}
.kit-phase-2-color {
    color: #70b753;
}
.kit-phase-3-color {
    color: #4f61aa;
}
.active.tilt-in-bottom-1 {
    -webkit-animation: tilt-in-bottom-1 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: tilt-in-bottom-1 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
@-webkit-keyframes tilt-in-bottom-1 {
    0% {
        -webkit-transform: rotateY(30deg) translateY(300px) skewY(-30deg);
        transform: rotateY(30deg) translateY(300px) skewY(-30deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
        transform: rotateY(0deg) translateY(0) skewY(0deg);
        opacity: 1;
    }
}

@keyframes tilt-in-bottom-1 {
    0% {
        -webkit-transform: rotateY(30deg) translateY(300px) skewY(-30deg);
        transform: rotateY(30deg) translateY(300px) skewY(-30deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: rotateY(0deg) translateY(0) skewY(0deg);
        transform: rotateY(0deg) translateY(0) skewY(0deg);
        opacity: 1;
    }
}
.tooltip-container {
    position:absolute;
    z-index: 100;
    display: none;
    opacity: 0;
}
.fade-in {
    display: block;
    animation: fade 0.2s linear forwards;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.active.fade-in-fwd {
    -webkit-animation: fade-in-fwd 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
    animation: fade-in-fwd 1s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

@-webkit-keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

@keyframes fade-in-fwd {
    0% {
        -webkit-transform: translateZ(-80px);
        transform: translateZ(-80px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1;
    }
}

.wg-circles {
    z-index: 10;
    margin-top: -2 rem;
}

.active.slide-in-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slide-in-bottom {
    0% {
        -webkit-transform: translateY(1000px);
        transform: translateY(1000px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}
.wg-card:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.crop-right {
    margin-right: -5%;
}
.timeline-activity{
    cursor: pointer;
}

.timeline {
    position: relative;
    max-width: 90%;
    margin: 0 auto;
}

    .timeline::after {
        content: '';
        position: absolute;
        width: 8px;
        background-color: #d9d9d9;
        top: 0;
        bottom: 0;
        left: 30%;
        margin-left: -3px;
        z-index: -5;
    }

.timeline-container {
    padding: 10px 20px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

    .timeline-container::after {
        content: '';
        position: absolute;
        width: 35px;
        height: 35px;
        right: -17.5px;
        /*background-color: rgba(115,101,170,1);*/
        border: 4px solid white;
        top: 20px;
        border-radius: 50%;
        z-index: 1;
    }
.left {
    left: 0;
}
.right {
    left: 50%;
}
.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

/* Add arrows to the right container (pointing left) */
.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}
/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
        left: 31px;
    }

    /* Full-width containers */
    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

        /* Make sure that all arrows are pointing leftwards */
        .timeline-container::before {
            left: 60px;
            border: medium solid white;
            border-width: 10px 10px 10px 0;
            border-color: transparent white transparent transparent;
        }

    /* Make sure all circles are at the same spot */
    .left::after, .right::after {
        left: 15px;
    }

    /* Make all right containers behave like the left ones */
    .right {
        left: 0%;
    }
}

.timeline-circle-right-position {
    right: -6.5% !important
}

@media (max-width: 575.98px) {
    .timeline-circle-right-position {
        right: -14.5% !important
    }
}
@media (min-width: 575.99px) and (max-width: 991.98px) {
    .timeline-circle-right-position {
        right: -7.5% !important
    }
}


.dropdown-toggle.dropdown-chevron-right::after {
    content: "\003E";
    vertical-align: 0;
    margin: 0;
    border: none;
}

.footer-buttons {
    background-color: #949599 !important;
}
.banner-shadow {
    box-shadow: 0 .5rem 1rem -0.5rem rgba(0,0,0,.15) !important;
    position: relative;
    z-index: 10;
}
.map-eu27 {
    fill: #9cc578;
    cursor: pointer;
}
    .map-eu27:hover {
        fill: #708c57;
    }
    .map-eu27.active {
        fill: #708c57;
    }
.eu.europe {
    fill: #9cc578 !important;
    cursor: pointer;
}

    .eu.europe:hover {
        fill: #708c57 !important;
    }

    .eu.europe.active {
        fill: #708c57 !important;
    }
.associated.europe {
    fill: #8dcff1 !important;
    cursor: pointer;
}
    .associated.europe:hover {
        fill: #6595ad !important;
    }
    .associated.europe.active {
        fill: #6595ad !important;
    }
.third.europe {
    fill: #f2b575 !important;
    cursor: pointer;
}

    .third.europe:hover {
        fill: #bf8f5c !important;
    }

    .third.europe.active {
        fill: #bf8f5c !important;
    }
.no-istitutes {
    fill: #d6d6d6 !important;
}
.centres-modal {
    background-color: transparent !important;
}

@media (min-width: 990px) and (max-width:1440px){
    .bg-transparent-violet.w-lg-50 {
        width: 75% !important;
    }
}

.footer-social-icon {
    width: 52px;
    height: 52px;
}

.footer-social-icon.twitter {
    background-color: #1DA1F2 !important;
}

.footer-social-icon.linkedin {
    background-color: #0077B5 !important;
}

.quote-icon {
    width: 72px;
    height: 72px;
    margin-top: -50px;
    margin-left: -10px;
}

.bg-timeline-first {
    background: var(--timeline-first) !important;
}
.bg-timeline-second {
    background-color: var(--timeline-second);
}
.bg-timeline-third {
    background-color: var(--timeline-third);
}
.bg-timeline-fourth {
    background-color: var(--timeline-fourth);
}
.gradient {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, 0)) !important;
}

.legenda-countries {
    z-index: 10;
    margin-bottom: -20px;
    margin-right: 15%;
}

.legenda-countries-square {
    width: 1.5rem;
    height: 1.5rem;
}
    .legenda-countries-square.eu {
        background-color: #9cc578;
    }
    .legenda-countries-square.associated {
        background-color: #8dcff1;
    }
    .legenda-countries-square.third {
        background-color: #f2b575;
    }

/* organization chart */

.advisory-rect {
    fill: rgb(159, 154, 178);
}    

.other-org-rect {
    fill: #46ad3f;
}
.org-rect {
    fill-opacity: 1;
    stroke-width: 0.6;
    stroke-linecap: round
}
    .org-rect:hover {
        filter: brightness(110%);
    }
.org-text {
    font-style:normal;
    font-variant:normal;
    font-weight:bold;
    font-stretch:normal;
    font-size:7.76111px;
    font-family:Roboto;
    font-variant-ligatures:normal;
    font-variant-caps:normal;
    font-variant-numeric:normal;
    font-variant-east-asian:normal;
    fill-opacity:1;
    stroke-width:0.5;
}
.advisory-text {
    fill: #708c57;
}
.other-org-text {
    fill: #ffffff;
}

/* end organization chart */

.img-logo-banner {
    width: 100px;
}

@media (min-width: 576px) {
    .img-logo-banner {
        width: 100px;
    }
}

@media (min-width: 768px) {
    .img-logo-banner {
        width: 150px;
    }
}

@media (min-width: 992px) {
    .img-logo-banner {
        width: 200px;
    }
}

.temp-placeholder {
    position: relative;
}

    .temp-placeholder::before, .temp-placeholder::after {
        content: "";
        display: block;
        left: 0;
        top: 0;
        width: 100%;
        text-align: center;
    }

    .temp-placeholder::before {
       /* background: #ccc none repeat scroll 0 0;*/
        border-radius: 3px;
        height: 100%;
    }

    .temp-placeholder::after {
        font-size: 49px;
        opacity: 0.25;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        font-family: "FontAwesome";
    }

.bg-blue-gradient {
    background: rgb(62,150,199);
    background: linear-gradient(156deg, rgba(62,150,199,1) 45%, rgba(56,94,161,1) 100%);
}

.bg-blue-gradient-margin {
    background: linear-gradient(156deg, rgba(62,150,199,1) 45%, rgba(56,94,161,1) 100%);
    background-repeat: no-repeat;
    background-size: 100%;
}

.bg-blue-gradient-from-dark {
    background: rgb(56,94,161);
    background: linear-gradient(156deg, rgba(56,94,161,1) 5%, rgba(62,150,199,1) 100%);
}

.bg-blue-gradient-from-dark-margin {
    background: linear-gradient(156deg, rgba(56,94,161,1) 5%, rgba(62,150,199,1) 100%);
    background-repeat: no-repeat;
    background-size: 100%;
}

@media (min-width: 992px)
{
    .bg-blue-gradient-margin {
        background: linear-gradient(156deg, rgba(62,150,199,1) 45%, rgba(56,94,161,1) 100%), linear-gradient(white, white);
        background-repeat: no-repeat;
        background-size: 100% 90%, auto;
    }
    .bg-blue-gradient-from-dark-margin {
        background: linear-gradient(156deg, rgba(56,94,161,1) 5%, rgba(62,150,199,1) 100%), linear-gradient(white, white);
        background-repeat: no-repeat;
        background-size: 100% 87%, auto;
    }
}

.z-index-10 {
    z-index: 10 !important;
}
@media (min-width: 992px) {
    .dropdown-menu:before {
        /*right: 15px;*/
        top: -16px;
        border: 8px solid #0000;
        border-bottom: 8px solid #dee2e6;
    }

    .dropdown-menu:after {
        /*right: 16px;*/
        top: -14px;
        border: 8px solid #0000;
        border-bottom: 7px solid rgba(255,255,255, 1);
    }

    .dropdown-menu.about:before,
    .dropdown-menu.about:after {
        content: "";
        left: 45%;
        display: inline-block;
        position: absolute;
    }

    .dropdown-menu.who-we-are:before,
    .dropdown-menu.who-we-are:after {
        content: "";
        left: 42%;
        display: inline-block;
        position: absolute;
    }

    .dropdown-menu.methodology:before,
    .dropdown-menu.methodology:after {
        content: "";
        left: 45%;
        display: inline-block;
        position: absolute;
    }

    .dropdown-menu.solutions:before,
    .dropdown-menu.solutions:after {
        content: "";
        left: 35%;
        display: inline-block;
        position: absolute;
    }

    .dropdown-menu:before,
    .dropdown-menu:after {
        content: "";
        /*left: 45%;*/
        display: inline-block;
        position: absolute;
    }

    .dropdown-menu {
        min-width: 350px !important;
        margin-left: 50% !important;
    }

    .dropdown-toggle:hover, .nav-link:hover {
        color: var(--bs-darkAccent) !important;
    }
}

.triangle-down {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #3d8cc0;
    margin-left: 125px;
}
.carousel-custom-nav {
    position: absolute;
    top: 50%
    /*
  height: 20px;
  width: 20px;
  */
}

#prevButton {
    left: 5px;
    /**
   * margin-top: -10px;
   * negative margin-top half the height so its centered.
   */
}

#nextButton {
    right: 5px;
    /**
   * margin-top: -10px;
   * negative margin-top half the height so its centered.
   */
}

.z-index-1000 {
    z-index: 1000;
}

.carousel-custom-nav-control {
    width: 50px;
    height: 50px;
}

    .carousel-custom-nav-control.prev {
        margin-left: -50px;
    }

    .carousel-custom-nav-control.next {
        margin-right: -30px;
    }

@media (max-width: 575.98px) {
    .carousel-custom-nav-control.prev {
        margin-left: -5px;
    }

    .carousel-custom-nav-control.next {
        margin-right: 20px;
    }
}

.news-card-label {
    top: -3%;
    /*left: 27%;*/
}

/*@media (min-width: 991.98px) and (max-width: 1195px) {
    .news-card-label {
        top: -5%;
        left: 22%;
    }
}*/

.bg-home {
    background-image: url('/images/home/CCI4EU_Website_Home_Bandiera.png');
    background-repeat: no-repeat;
    background-position: top center;
}
.project-background-blue-square {
    margin-top: -10%;
    margin-left: 15% !important;
}

@media (min-width: 991.98px){
    .project-background-blue-square {
        margin-top: -10%;
        margin-left: 5% !important;
    }
}

.bg-methodology-blue {
    background-color: rgba(53,121,223, .1);
}

.rounded-start-5 {
    border-bottom-left-radius: var(--bs-border-radius-2xl) !important;
    border-top-left-radius: var(--bs-border-radius-2xl) !important;
}

.rounded-end-5 {
    border-bottom-right-radius: var(--bs-border-radius-2xl) !important;
    border-top-right-radius: var(--bs-border-radius-2xl) !important;
}

.bg-methodology-start {
    background-image: url('/images/methodology/METHODOLOGY_CCI_rettangolo.png');
    background-repeat: no-repeat;
    background-position: left;
    background-size: auto;
    min-height: 1400px;
}
.bg-methodology-end {
    background-image: url('/images/methodology/METHODOLOGY_CNN_background.png');
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto;
    min-height: 1100px;
}
@media (max-width: 767.98px) {

    .bg-methodology-start {
        border-top: 2px dashed #295aa3 !important;
        border-bottom: 2px dashed #295aa3 !important;
        background-image: none;
    }
    .bg-methodology-end {
        background-color: #dce6f9;
        background-image: none;
    }
}

.bg-levels-end {
    border-top: 2px dashed #295aa3 !important;
    border-bottom: 2px dashed #295aa3 !important;
    background-image: none;
}

.bg-levels-left-end {
    background-color: rgba(53,121,223, .1);
}

.bg-levels-start {
    border-top: 2px dashed #295aa3 !important;
    border-bottom: 2px dashed #295aa3 !important;
    background-image: none;
}

.bg-levels-right-start {
    background-color: rgba(53,121,223, .1);
}
.bg-research-innovation {
    background-color: transparent;
}

@media (min-width: 768px) {
    .bg-levels-end {
        background-image: url('/images/methodology/METHODOLOGY_levels_rect_start_1920.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto;
        min-height: 270px;
        background-color: transparent !important;
        border: none !important;
    }

    .bg-levels-left-end {
        background-image: url('/images/methodology/METHODOLOGY_Level_of_Capacity_Building_rettangolo_5_1920.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto;
        min-height: 270px;
        background-color: transparent !important;
        border: none !important;
    }

    .bg-levels-start {
        background-image: url('/images/methodology/METHODOLOGY_Level_of_Capacity_Building_rettangolo_1_1920.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto;
        min-height: 270px;
        background-color: transparent !important;
        border: none !important;
    }

    .bg-levels-right-start {
        background-image: url('/images/methodology/METHODOLOGY_Level_of_Capacity_Building_rettangolo_4_1920.png');
        background-repeat: no-repeat;
        background-position: center;
        background-size: auto;
        min-height: 270px;
        background-color: transparent !important;
        border: none !important;
    }
    .bg-research-innovation {
        background-image: url('/images/methodology/METHODOLOGY_Integrating_Research_1.png');
        background-repeat: no-repeat;
        background-position: right;
        background-size: auto;
        min-height: 1096px;
    }
}



.bg-solutions {
    background-image: url('/images/solutions/SOLUTIONS_Deep_Dives.png');
    background-repeat: no-repeat;
    background-position: top left;
}
.bg-project-rect {
    background-image: url('/images/our-project/ABOUT_CCI4EU_Our Ambitions.png');
    background-repeat: no-repeat;
    background-position: left bottom;
}
.bg-solutions-rect {
    background-image: url('/images/solutions/SOLUTIONS_Methodology_of_interventions.png');
    background-repeat: no-repeat;
    background-position: center top;
}

.consortium-buttons {
    width: 200px;
    height:200px;
}
.consortium-buttons:hover {
    filter: brightness(90%);
}

@media (min-width: 768px) {
    .bg-consortium {
        background-image: url('/images/who-we-are/WHO_WE ARE_The Consortium_mappa.png');
        background-repeat: no-repeat;
        background-position: center top;
        min-height: 960px;
    }
}

@media (max-width: 650px) {
    .consortium-buttons {
        width: 100px;
        height: 110px;
    }
}
.opacity-80 {
    opacity: .8;
}
.bottom-arrow-grayHome {
    border-bottom: 5px solid #D2D3D5;
    text-align: center;
    font-size: 18pt;
}

    .bottom-arrow-grayHome:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 0;
        height: 0;
        border-top: 50px solid #D2D3D5;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
    }
.bottom-arrow-blue {
    border-bottom: 5px solid #3a70ae;
    text-align: center;
    font-size: 18pt;
}

    .bottom-arrow-blue:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 0;
        height: 0;
        border-top: 30px solid #3a70ae;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
    }
.bottom-arrow-white {
    border-bottom: 5px solid white;
    text-align: center;
    font-size: 18pt;
}

    .bottom-arrow-white:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 0;
        height: 0;
        border-top: 50px solid white;
        border-left: 50px solid transparent;
        border-right: 50px solid transparent;
    }
.centre-card
{
    filter: grayscale(1);
    opacity:.8;
}
    .centre-card:hover {
        filter: grayscale(0);
        opacity: 1;
    }
.bg-timeline-line {
    background: linear-gradient(90deg, #0000 calc(100% - 1px), #cecece 0);
    background-size: calc((100% - 9*1px)/10 + 1px) 100%;
}

.bg-timeline-activity{
    fill: #3579df;
    fill-opacity:.5;
    cursor: pointer;
    color: white;
}

.bg-timeline-activity:hover, .bg-timeline-activity + text:hover, .bg-timeline-activity.active {
    fill: #295aa3;
    fill-opacity: 1;
}

#r4:hover {
    fill: #295aa3;
    fill-opacity: 1;
}
.solutions-rect-home {
    width: 300px;
    height: 300px;
}

.bg-home-about {
    background-image: url('/images/test/rectStarsHome.png');
    background-repeat: no-repeat;
    background-position: right;
}

/*TIMELINE*/
.circle-opacity:hover, .circle-opacity.active, .circle-opacity.active.circle-opacity {
    opacity: 1;
}
.st0 {
    opacity: 0.1;
    fill: #174280;
}

.st1 {
    opacity: 0.15;
}

.st2 {
    fill: none;
    stroke: #295AA3;
}

.st3 {
    fill: #FFFFFF;
    stroke: #174280;
    stroke-width: 3;
}

.st4 {
    fill: none;
    stroke: #174280;
    stroke-width: 2;
}

.st5 {
    fill: #FFFFFF;
    stroke: #7F95C2;
    stroke-width: 2;
}
.flag-rect:hover, .flag-rect.active {
    stroke: #295AA3 !important;
}

.st6 {
    fill: #7F95C2;
}

.st7 {
    font-family: 'Ubuntu';
}

.st8 {
    font-size: 20px;
}

.st9 {
    fill: none;
    stroke: #7F95C2;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    enable-background: new;
}

.st10 {
    fill: none;
    stroke: #7F95C2;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.st11 {
    fill: #7F95C2;
    enable-background: new;
}
.st11:hover, .st11.active {
    fill: #295AA3 !important;
}

.st12 {
    fill: #F0F3F8;
}

.st13 {
    fill: #FFFFFF;
}

.st14 {
    fill: none;
    stroke: #D2D2D2;
    stroke-width: 1.5;
}

.st15 {
    fill: #5B5B5B;
}

.st16 {
    font-family: 'OpenSans';
    font-weight: 600;
}

.st17 {
    font-size: 14px;
}

.st18 {
    fill: #FFFFFF;
    stroke: #D2D2D2;
    stroke-width: 1.5;
}

.st19 {
    fill: #174280;
}

/*END TIMELINE*/

/* GOVERNANCE */

.gov-st0 {
    display: none;
    opacity: 0.4;
}

.gov-st1 {
    opacity: 0.1;
    fill: #3579FD;
    enable-background: new;
}

.gov-st2 {
    fill: none;
    stroke: #112E5A;
    stroke-width: 2;
    stroke-dasharray: 8,6;
}

.gov-st3 {
    fill: #295AA3;
}

.gov-st4 {
    fill: #112E5A;
}

.gov-st5 {
    fill: #FFFFFF;
}

.gov-st6 {
    fill: none;
    stroke: #D2D2D2;
    stroke-width: 1.5;
}

.gov-st7 {
    fill: none;
    stroke: #112E5A;
    stroke-width: 2;
    stroke-dasharray: 8.0198,6.0148;
}

.gov-st8 {
    fill: none;
}

.gov-st9 {
    font-family: 'OpenSans';
    font-weight: 600;
}

.gov-st10 {
    font-size: 1rem;
}

.gov-st11 {
    fill: #313131;
}

.gov-st12 {
    font-family: 'Ubuntu';
    font-weight: lighter;
}

.gov-st13 {
    font-size: 1rem;
}

.gov-st14 {
    fill: #4C4C4C;
}

.gov-st15 {
    font-family: 'Ubuntu';
}

.gov-st16 {
    font-family: 'Ubuntu-Medium';
}

.gov-st17 {
    letter-spacing: 25;
}

.gov-st18 {
    fill: #D2D2D2;
}

.gov-st19 {
    fill: none;
    stroke: #112E5A;
    stroke-width: 2;
    stroke-dasharray: 7.9854,5.9891;
}

.governance-activity{
    cursor: pointer;
}
/* END GOVERNANCE */
.fs-small {
    font-size: small;
}

.line {
    width: 50px;
    height: 0;
    border-bottom: 5px solid #f6c42d;
    margin: 3px;
    display: inline-block;
}

.bg-deepdive-home {
    -webkit-transition: .4s ease-out;
    -moz-transition: .4s ease-out;
    -o-transition: .4s ease-out;
    transition: .4s ease-out;
}
    .bg-deepdive-home:hover {
        /*background-position: 300px;*/
        transform: scale(1.2);
    }

.news-card-height {
    height: 650px !important;
}

.btn-outline-secondary:hover {
    color: white !important;
}