@import url('https://fonts.googleapis.com/css2?family=Montserrat: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');
:root{
    --charlie-pink: #FF6699;
    --charlie-orange:  #FBAF43;
    --text-grey: #818181
}
html{
    width: 100%;
    max-width:100vw;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    max-width:100vw;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color:var(--text-grey);
    overflow-x: hidden;
    background-image: url('../img/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.d-none{
    display: none !important;
}
.d-block{
    display: block !important;
}
.d-flex{
    display: flex !important;
}
.c-pointer{cursor: pointer;}
.no_pointer_events{pointer-events: none;}
.mb-3{margin-bottom: 1rem !important;}

.two-column-flex{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    color: white;
    gap: 50px;
}
#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}
.header{
    padding:2rem 0 2rem 0;
    width: 100vw;
    position: absolute;
    top:0;
    z-index: 1;
}
.header_wrapper{
    width: 60%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:1rem;
    overflow-x: hidden;
}
.header_nav ul {
    display: flex;
    gap:1rem;
    font-weight: normal;
    cursor:pointer
}
.header_link{
    color:white;
}
.header_link[aria-current]{
    position: relative;
    top: -2px;
    font-weight: bold;
    border: 3px solid;
    padding: 1px 10px;
    border-radius: 15px;
}
.mobile_menu{
    background-color: transparent;
    display: none;
    width: 40px;
    cursor: pointer;
}
.mobile_menu:focus{
    box-shadow: none;
    transform: scale(.99);
}
.hero{
    width: 100%;
    height: 800px;
}
.hero.smaller{
    min-height: 760px;
}
.hero.smaller .home_title{
    text-align: left;
    left: -20%;
    position: relative;
}
.hero.smaller.about{
    background-image: url(../img/hero_bg_about.webp);
}
.hero.smaller.results{
    background-image: url(../img/hero_bg_results.webp);
}
.hero.smaller.press{
    background-image: url(../img/hero_bg_press.webp);
}
.hero.smaller.consortium{
    background-image: url(../img/hero_bg_consortium.webp);
}
.hero.smaller.contacts{
    background-image: url(../img/hero_bg_contacts.webp);
}
.hero.-purple_img{
    width: 100%;
    min-height: 850px;
    background-image: url(../img/purple_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: grid;
}
.hero_wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column-reverse;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.hero.-purple_img .hero_wrapper{
    align-items: flex-start;
    justify-content: flex-start;
}
.hero_wrapper_flex_left{
    width: 140%;
    position: relative;
    top: 40%;
    left: 20%;
}
.hero_wrapper_flex_right{
    position: relative;
    top: 14%;
    right: 18%;
}
.hero.-purple_img .hero_wrapper div{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero_img{
    width:65%;
    position: absolute;
    right: -10%;
    top:50%;
    transform: translateY(-40%);
}
.quest-button{
    font-size: 1.5rem;
    color:white !important;
    background-color: var(--charlie-pink);
    border-radius:100px;
    padding: 1rem 2rem;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .2s ease;
}
.contact_form .quest-button{
    position: relative;
}
.quest-button:disabled{
    cursor:default;
    opacity:0.5;
    color:transparent !important;
}
.loading-icon{
    width: 20px;
    color:white;
    height: 20px;
    left:calc(50% - 10px);
    top:calc(50% - 10px);
    position: absolute;
    display: none;
}
.quest-button:disabled .loading-icon{
    display: block;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% {
        transform:  rotate(1turn);
    }  
}
.quest-button:hover,
.quest-button:focus {
  transform: scale(1.01);
}
.hero.-purple_img .hero_wrapper h1{
    margin-top: 2rem;
    opacity: .5;
}
.hero_wrapper p.home_description{
    color: white;
}
.hero_wrapper h1{
    font-size: 6rem;
    color:white;
    line-height: 1;
    margin-top: auto;
}
.hero_wrapper .quest-button{
    margin: 2rem 0;
}
.default_section{
    width: 100%;
    display: grid; 
    padding: 2rem 0;
}
.default_section .wrapper.-up{
    padding: 12rem 10rem 0 10rem;
    background-color: white;
    transform:translateY(-150px)
}
.wrapper{
    --wrapperWidth: 60%;
    height: 100%;
    width: var(--wrapperWidth);
    margin: 0 auto;
    padding:2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
a:not(.quest-button):hover,
a:not(.quest-button):focus{
    opacity:0.5;
}
h2{
    text-align: center;
    font-size: 2rem;
    color:var(--charlie-pink);
    margin-bottom: 4rem;
    line-height: 1;
    position: relative;
}
h2::after{
    content:'';
    position: absolute;
    width: 100px;
    height: 2px;
    background-color: currentColor;
    bottom:-2rem;
    left:50%;
    transform: translateX(-50%);
}
p{
    margin-bottom: 2rem;
}
h3{
    margin-bottom: 2rem;
    color:var(--charlie-pink)
}
.objectives_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:1rem
}
.objectives_list li{
    width: 22.5%;
    min-width: 225px;
}
.news_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:1rem;
}
.news{
    width: 32%;
    min-width: 300px;
    background-color: white;
}
.news.-border{
    box-shadow: 0 5px 10px rgba(30, 0, 58, 0.05), 0 10px 20px rgba(30, 0, 58, 0.05), 0 20px 40px rgba(30, 0, 58, 0.05), 0 30px 60px rgba(30, 0, 58, 0.05);
}
.news_image{
    height:150px;
    width: 100%;
    background-image: var(--newsImg);
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 5px solid var(--charlie-orange);
    padding: 1rem;
}
.news_date{
    text-transform: uppercase;
    display: inline-block;
    padding:.5rem;
    background-color: white;
    color: var(--charlie-pink);
    font-weight: 700;
    text-align: center;
    line-height: 1;
}
.news_info{
    width: 100%;
    padding:2rem 1rem;
    color:var(--text-grey)
}
.news .quest-button{
    background-color: var(--charlie-orange);
    font-size: 1rem;
    padding:.5rem 1rem
}
.news_fulldate{
    display: inline-block;
    margin-right: auto;
}
.quest-video{
    width: 100%;
}
.logo_list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:1rem;
}
.logo_list li{
    max-width: 200px;
}
.logo_list li img{
    max-height: 60px;
}
.footer{
    background-color: var(--charlie-orange);
    color: var(--charlie-pink);
    position: relative;
    bottom: 2rem;
}
.footer .wrapper{
    padding:4rem 0;
}
.footer_row{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap:4rem;
    margin-bottom: 2rem;
}
.footer_disclaimer{
    max-width: 500px;
    line-height: 1;
}
.footer_disclaimer img:first-of-type{
    margin-bottom:3rem;
}
.footer_disclaimer img:not(:first-of-type){
    margin-bottom:1rem;
}
.footer_disclaimer small{
    border-top: 1px solid currentColor;
    display: inline-block;
    padding-top: 1rem;
}
.footer_map ul{
    column-count:2;
}
.footer_map li{
    color: var(--charlie-pink);
    font-weight: 700;
    margin-bottom: 1rem;
    cursor: pointer;
}
.footer_map span{
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 2rem;
}
.footer_social ul,
.hero ul{
    display: flex;
    gap: 1rem
}
.hero ul{
    margin-right: auto;
}
.footer_copyright{
    /* width: 100%; */
    /* text-align: center; */
    display: flex;
    color: #006699;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}
.footer-logo{
    width: 10%;
    padding-left: 2rem;
}
.footer .footer-social-icons{
    display: flex;
    /* gap: 15px; */
    position: relative;
    top: -20px;
    justify-items: center;
    justify-content: center;
}
.footer .footer-social-icons img{
    width: 20%;
    height: 20%;
}
.footer .social-icon{
    border: 1px solid #ffffffb5;
    padding: 6px 10px 6px 10px;
    border-radius: 10px;
    margin-top: -5px;
}
.social-icon:hover{
    cursor: pointer;
    color: var(--charlie-pink);
    transition: transform 0.3s;
    transform: translateY(-5px);
}
ul.plus_list{
    list-style: circle;
    padding-inline-start: 1rem;
}
.plus_list li::marker {
    content:'+ ';
    font-weight: 700;
    font-size: 1.5em;
  }
  .press_list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:3rem;
  }
  .press_list + h2{
    margin-top: 4rem;
  }
  .press_item{
    display: flex;
    flex-direction: column;
    min-width: 150px;
  }
  .press_item div:first-of-type{
    min-height: 225px;
    width: 100%;
    background-color: var(--charlie-orange);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding:1rem;
  }
.press_item span{
    text-transform: uppercase;
    font-weight: 700;
    margin: 1rem 0;
    text-align: center;
}
.result_list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:2rem;
}
.result_item{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap:2rem;
}
.result_img{
    width: 300px;
    height: 300px;
    background: url(../img/comingsoon_results.png) no-repeat center;
    background-size: contain;
    margin: .75rem 0;
}
.result_links,
.press_links{
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
}
.result_links a,
.press_links a{
    width: 40px;
    height: 40px;
    background-color: var(--charlie-orange);
    display: grid;
    place-items: center;
    color:white;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
}
.contact_form{
    display: flex;
    flex-direction: column;
}
.contact_wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    gap:.5rem;
}
.contact_wrapper label{
    display: flex;
    flex-direction: column;
    width: 49%;
    min-width: 200px;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.contact_wrapper input,
.contact_form textarea
{
    padding:.5rem;
    border: 1px solid var(--text-grey);
}
.contact_form textarea{
    width: 100%;
    resize: vertical;
}
.contact_form button{
    margin-top: 2rem;
    font-size: 1rem;
    align-self: center;
}
.form-feedback{
    position: fixed;
    top:1rem;
    left:50%;
    transform: translateX(-50%);
    max-width: 300px;
    width: 90%;
    height: 100px;
    color:white;
    display: none;
    place-items: center;
    box-shadow: 0 0 10px rgb(0 0 0 / 31%);
    text-align: center;
    padding: 1.5rem;
}
.form-feedback.-positive{
    background-color: #28a745 ;
}
.form-feedback.-negative{
    background-color: #dc3545;
}
.form-feedback button{
    background: none;
    color:white;
    font-size: 2rem;
    position: absolute;
    top:0;
    right: 0;
    cursor: pointer;
}
.map_wrapper{
    position:relative;
}
.map_wrapper a{
    position: absolute;
    top: var(--top);
    left:4%;
    width: var(--width);
    height: var(--height);
}
img.header_logo{
    width: 28%;
}
li.header_link{
    white-space: nowrap
}
img.partners_img{
    width: 60%;
    padding-bottom: 5rem;
}
.social-media{
    display: flex;
    gap: 15px;
    top: 58%;
    position: absolute;
}
.social-media .social-icon{
    border: 1px solid #FF6666;
    padding: 6px 10px 6px 10px;
    border-radius: 10px;
    margin-top: -5px;
    color: #FF6666;
}
.footer-project-id{
    position: absolute;
    width: 100%;
    height: 2vw;
    bottom: 18rem;
    text-align: right;
    color: white;
    right: 4rem;
}
@media only screen and (max-width: 540px) {
    .hero_wrapper {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: column-reverse;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .hero_wrapper h1.home_title{
        font-weight: bold;
        margin: 0;
        font-size: 2em;
        padding: 20px;
        width: 50%;
    }
    .hero_wrapper img{
        width: 60%;
    }
}
@media only screen and (min-width: 700px) {
    .hero_wrapper {
        display: flex;
        width: 100%;
        height: 100%;
        flex-direction: row;
        align-content: center;
        justify-content: center;
        align-items: center;
    }
    .hero_wrapper img{
        width: 30%;
    }
    .hero_wrapper h1.home_title{
        font-weight: bold;
        margin: 0;
        font-size: 2em;
        padding: 20px;
        width: 40%;
    }
}
@media only screen and (max-width: 1600px) {
    nav{
        display: block;
        position: relative;
        right: 10%;
    }
    img.header_logo{
        position: relative;
        width: 10% !important;
        left: 10%;
    }
    .header_wrapper{
        width: 90%;
    }
    /* .hero_wrapper {
        width: 100%;
    } */
    .hero_wrapper_flex_right{
        right: 15%;
    }
    /* .hero_wrapper div{
        height: 35%;
        width: 60%;
    } */
    .home_hero_right{
        position: relative;
        top: 35%;
        width: 40%;
    }
    .home_hero_right img{
        width: 85%;
        position: relative;
        top: 35%;
        right: 7%;
    }
    .hero.-purple_img .hero_wrapper div{
        width: 100%;
        align-items: center;
    }
    .hero_wrapper_flex_left {
        width: 140%;
        position: relative;
        top: 40%;
        left: 16%;
    }
    img.partners_img{
        width: 80%;
        padding-bottom: 5rem;
    }
    .slider{
        width: 300px;
        text-align: center;
        overflow: hidden;
        padding-top: 9%;
        position: absolute;
    }
  }
  @media only screen and (max-width: 1450px) {
    .wrapper.-break_earlier{
        width: 90%;
    }
  }
@media only screen and (max-width: 1100px) {
    .mobile_menu{
        display: block;
    }
    .header_wrapper{
        width: 90%;
    }
    .header_nav{
        position: absolute;
        z-index: 1;
        top:8rem;
        right: 0;
        display: flex;
        flex-direction: column;
        background-color: rgba(174, 76, 171, 0.75);
        backdrop-filter: blur(2px);
        padding: 2rem 4rem;
        clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
        transition:  clip-path .3s ease;
    }
    .header_nav.-open{
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    }
    .header_nav ul{
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }
    /* .hero_wrapper {
        width: 100%;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: flex-start;
        padding: 8rem 0 2rem 0;
    } */
    .hero{
        min-height: min(100vh,800px);
    }
    /* .hero_wrapper h1{
        font-size: 3rem;
        text-align: center;
    } */
    /*.hero_wrapper h1.home_title {
         font-size: 1.5rem;
        margin-bottom: .5rem;
        font-weight: bold;
        text-align: center;
    } */
    .hero_wrapper div {
        width: 90%;
        height: 50%;
        align-items: center;
    }
    .hero_img{
        position: relative;
        right: initial;
        top:initial;
        transform: translateY(-10%);
    }
    .hero ul {
        margin:0 auto;
    }
    .hero.-purple_img .hero_wrapper h1{
        margin-top: 0;
    }
    .wrapper{
        width: 95%;
    }
    .default_section .wrapper.-up{
        padding: 6rem 5rem 0 5rem; 
    }
    .footer_logo{
        width: 250px;
    }
    .footer .wrapper{
        width:80%;
    }
    .footer_row{
        justify-content: center;
        gap: 2rem;
    }
    .footer_disclaimer {
        max-width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
  }
  @media only screen and (max-width: 850px) { 
    .result_item{
        flex-direction: column;
    }
  }
  @media only screen and (max-width: 700px) {
    .hero.-purple_img{
        min-height: 100vh;
    }
    .footer .wrapper{
        width:95%;
    }
    figure.default_section{
        overflow: hidden ;
    }
        figure.default_section > img{
          transform: scale(1.5);
      }
      .default_section .wrapper.-up{
          transform: none;
        padding: 2rem .5rem; 
    }
  }
  @media only screen and (max-width: 450px) {
    .press_item{
        width: 80%;
    }
    .press_item span{
        transform: none;
        text-align: center;
    }
  }
  @media only screen and (max-height: 700px){
    .hero_img {
        transform: translateY(-30%);
    }
  }
  .contact-form{
    width: 60%;
    background: var(--charlie-pink);
    height: 840px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    color: white;
  }
  .contact-form h1{
    font-weight: 900;
  }
  .contact-form span{
    padding-top: 5%;
  }
  .contact-form .form-group{
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .contact-form .text-box{
    width: 500px;
    padding: 10px;
    border: 0;
    border-radius: 10px;
  }
  .charlie-btn{
    background-color: white;
    padding: 10px;
    color: var(--charlie-pink) !important;
    font-weight: 900;
    text-align: center;
    cursor: pointer;
    width: 30%;
    border-radius: 10px;
    align-self: center;
  }
.contact-form .contact-form-social{
    display: flex;
    gap: 15px;
    padding-top: 20px;
}
.contact-form .contact-form-social i{
    color: white;
}
.contact-form .social-icon{
    border: 1px solid #ffffffb5;
    padding: 6px 20px 6px 20px;
    border-radius: 20px;
    margin-top: -5px;
    font-size: 40px;
}


.btn-active {
    position: relative;
    top: -2px;
    font-weight: bold;
    border: 3px solid;
    padding: 1px 10px;
    border-radius: 15px;
}

.link-white-ball, .link-white-ball:hover, .link-white-ball:visited, .link-white-ball:focus {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #ffffff;
    border-radius: 50%;
    margin: 0.1rem;
    display: inline-block!important;
    font-size: 1rem;
    font-weight: bold;
    padding: 7px 0;
    color: #000000 !important;
    transition: all 0.25s ease;
    text-decoration: none !important;
    text-align: center;
    line-height: 1.7em;
}


.link-white-btn, .link-white-btn:hover, .link-white-btn:visited, .link-white-btn:focus {
    background-color: #ffffff;
    border-radius: 10px;
    margin: 0.1rem;
    display: inline-block!important;
    font-size: 1rem;
    font-weight: bold;
    padding: 7px 20px;
    color: #000000 !important;
    transition: all 0.25s ease;
    text-decoration: none !important;
    text-align: center;
    line-height: 1.7em;
}
  