*{
    font-family:  "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background-color: #ffffff;
    margin: 0;
    color: #000000;
}


.main_window{
    width: 100%;
}

:root {
    --primary-color: #ffffff;
    --grey-color: #6B7177;
    --menu-color: rgba(18,18,18, 1);
    --bg-color: rgba(0,0,0, 1);
    --container-color: rgba(31,31,31, 1);
    --container-selected-color: rgba(20,20,20,.6);
    --container-hover-color: rgba(20,20,20,.6);

    --red: rgba(233,51,35, .3);
    --red-full: rgba(233,51,35, 1);

    --table-td-color: rgba(188,210,238,.05);
}


/*------------------ menu-bar ------------------*/


.menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: rgba(255,255,255,.8);
    z-index: 9;
    overflow: visible;
}

.menu .logo{
    display: block;
    height: 40px;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-list .regular-menu {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.menu-list .regular-menu li,
.menu-list .dropdown-menu li {
    text-align: center;
    font-size: 20px;
    margin: 5px;
    text-transform: uppercase;
    min-width: max-content;
    transition: font-weight 0.2s ease;
    position: relative;
}

.menu-list i {
    font-size: 26px;
    margin-top: 5px;
}

.menu-list i:hover {
    color: rgba(3,169,62,1);
}

.menu-list a {
    text-decoration: none;
    color: #000000;
    display: inline-block;
}

.menu-list a:hover {
    color: rgba(3,169,62,1);
}

.active{
    color: rgba(3,169,62,1);
}

#menu_container.open {
    height: 100%;
}

#mobile-menu-list, #menu-toggle-off, #menu-toggle.active #menu-toggle-on, .menu-button{
    display: none;
}

#mobile-menu-list.show, #menu-toggle.active #menu-toggle-off {
    display: block;
}

.dropdown-menu {
    display: none;
    margin-top: -20px;
    padding: 10px 0 0 10px;
    margin-bottom: -10px;
    background-color:rgba(3, 169, 62, 0.8);
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu li {
    display: inline-block;
}

.dropdown-menu li a {
    color: #ffffff;
    margin: 0 10px;
}

.dropdown-menu li a:hover {
    color: #000000;
}


@media only screen and (max-width: 747px) {
    .menu-list{
        display: none;
    }

    .menu-button{
        display: block;
        font-size: 42px;
    }

    .mobile-menu-list{
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        font-size: 32px;
        text-align: center;
        line-height: 48px;
        overflow: hidden;
    }

    .mobile-menu-list ul{
        padding-top: 25%;
    }

    #menu-toggle-off{
        position: absolute;
        z-index: 9;
        right: 5%;
        top: 5%;
        font-size: 42px;
    }

    .mobile-menu-list a{
        color: #000000;
        text-decoration: none;
    }

    .mobile-menu-list i{
        font-size: 47px;
        margin: 30px 5px 0 5px;
    }
}

@media only screen and (max-width: 480px) {
    .mobile-menu-list {
        font-size: 20px;
    }
    .mobile-menu-list i{
        font-size: 32px;
    }
}



/*------------------ main ------------------*/


.banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    display: block;
}

.banner h1{
    position: absolute;
    color: #ffffff;
    width: 70%;
    margin: 20% 0 0 5%;
    font-size: 72px;
    font-weight: 900;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.banner-img{
    width: 50%;
    margin: 0 0 40px 0;
}

.about-project{
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto 80px auto;
    font-size: 24px;
    gap: 20px;
}

.about-project .left, .about-project .right,
.ull .right, .ull .left{
    flex: 1;
    line-height: 32px;
    margin-top: 10px;
}

.about-project .right img{
    width: 100%;
}

h2{
    padding-bottom: 20px;
}

h2, h3, .green{
    color: rgba(3,169,62,1);
}

.project-objectives{
    width: 100%;
    line-height: 32px;
    font-size: 24px;
    background-image: url('/img/pattern.png');
    background-repeat: repeat;
    background-size: auto; /
}

.project-objectives .container, .ull .container{
    width: 90%;
    margin: 80px auto 80px auto;
}

.project-consortium{
    width: 90%;
    margin: 80px auto 80px auto;
    line-height: 32px;
    font-size: 24px;
}

.project-consortium .images{
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin: 40px auto;
    gap: 40px;
}

.project-consortium .images .box{
    flex: 1;
    box-sizing: border-box;
}

.images .box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.project-consortium a{
    text-decoration: none;
    color: #000000;
    font-weight: 600;
}

.project-consortium a:hover{
    color: rgba(3,169,62,1);
}

@media only screen and (max-width: 1400px) {
    .banner h1{
        font-size: 58px;
        margin: 30% 0 0 5%;
    }

    .about-project, .project-consortium, .project-objectives{
        font-size: 18px;
    }

    .about-project .left, .about-project .right,
    .ull .right, .ull .left{
        line-height: 25px;
    }

}

@media only screen and (max-width: 900px) {
    .banner h1{
        margin: 40% 0 0 5%;
    }
    .project-consortium .images .box{
        flex: 0 0 calc(33% - 40px);
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 880px) {

    .about-project{
        flex-direction: column;
    }

    .about-project .right{
        overflow: hidden;
    }
}

@media only screen and (max-width: 747px) {
    .banner h1{
        margin: 40% 0 0 5%;
        width: 90%;
    }
}

@media only screen and (max-width: 480px) {
    .banner h1{
        font-size: 42px;
        margin: 50% 0 0 5%;
    }
    .banner-img{
        width: 80%;
        margin: 0 0 40px 0;
    }
    h2{
        font-size: 1.2rem;
    }
    h3{
        font-size: 1.1em;
    }
    .project-consortium .images .box{
        flex: 0 0 calc(50% - 20px);
        box-sizing: border-box;
    }

    .about-project, .project-consortium, .project-objectives{
        font-size: 16px;
    }

    .project-consortium, .project-objectives{
        line-height: 20px;
    }

    .about-project .left, .about-project .right,
    .ull .right, .ull .left{
        line-height: 20px;
    }
}

/*------------------ ULL ------------------*/


.ull{
    width: 100%;
    margin-top: 50px;
}

.ull .element{
    margin: 80px 0;
}

.ull .element .container{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto 80px auto;
    font-size: 24px;
    gap: 20px;
    align-items: center;
}

.ull .grey{
    background-color: #f4f4f4;
}

.ull .element img{
    width: 70%;
    margin: auto;
    display: block;
}

.ull .long{
    flex: 100%;
    text-align: center;
}

.ull .logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    justify-content: center;
}

.ull .logos .box {
    flex: 0 0 calc(25% - 15px);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.ull .logos .box img {
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}


.ull span{
    font-size: 24px;
}

@media only screen and (max-width: 1400px) {
    .ull .element .container{
        font-size: 20px;
    }
}

@media only screen and (max-width: 880px) {
    .ull .element .container{
        font-size: 18px;
    }
    .ull .element img{
        width: 90%;
    }
    .ull .container .left, .ull .container .right{
        flex: unset !important;
    }
    .ull .logos .box {
        flex: 0 0 calc(50% - 10px);
    }
    .long span{
        font-size: 16px;
    }
}

@media only screen and (max-width: 700px) {
    .ull .element .container{
        font-size: 16px;
    }
}


/*------------------ partners ------------------*/


.partners{
    width: 90%;
    margin: 80px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: stretch;
}

.partner {
    flex: 1 1 calc(50% - 100px);
    background-color: #f6f6f6;
    padding: 60px 40px;
    font-size: 24px;
    line-height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100%;
}

.partner img{
    height: 200px;
    display: block;
    margin: auto;
}

.partner h2{
    text-align: center;
    margin: 10px 0 20px 0;
}

.partner span{
    display: block;
    margin-bottom: 40px;
    flex-grow: 1;
}

.partner .read-more{
    font-weight: 600;
    text-decoration: none;
    color: #000000;
    border-bottom: 1px solid CurrentColor;
    margin-top: auto;
}

.partner a:hover{
    color: rgba(3,169,62,1);
}

@media only screen and (max-width: 1400px) {

    .partner, .partner .read-more{
        font-size: 20px;
        line-height: 26px;
    }
    .partner h2{
       font-size: 1.3rem;
    }
}

@media only screen and (max-width: 900px) {
    .partner {
        flex: 0 0 calc(100% - 80px);
    }
}

@media only screen and (max-width: 480px) {
    .partner, .partner .read-more{
        font-size: 16px;
        line-height: 20px;
    }
    .partner h2{
        font-size: 1.1rem;
    }
    .partner img{
        height: 150px;
        display: block;
        margin: auto;
    }
}


/*------------------ news ------------------*/


.news{
    width: 90%;
    margin: 100px auto;
}

.news-element{
    width: calc(50% - 40px);
    background-color: #f6f6f6;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
}

.news-element .left, .news-element .right{
    flex: 1;
}

.news-element .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.news-element span{
    display: block;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 32px;
}


.news-element a{
    color: #000000;
    font-weight: 600;
    border-bottom: 1px solid CurrentColor;
    text-decoration: none;
    font-size: 24px;
    line-height: 32px;
}

.news-element a:hover {
    color: rgba(3, 169, 62, 1);
}

.article{
    margin: 100px auto;
    width: 90%;
}


/*------------------ partners ------------------*/


.partner-description{
    width: 90%;
    margin: 120px auto;
    font-size: 22px;
    line-height: 30px;
}

.partner-description .description{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 80px;
}

.partner-description .left, .partner-description .right{
    flex: 1;
}

.partner-description .description img{
    width: 100%;
}

.researcher{
    display: flex;
    gap: 20px;
    margin: 20px 2%;
}

.researcher .left{
    flex: 1;
}

.researcher .right{
    flex: 10;
}

.researcher a{
    color: rgba(3, 169, 62, 1);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid CurrentColor;
}

.researcher a:hover{
    color: #000000;
}


@media only screen and (max-width: 1400px) {
    .partner-description {
        font-size: 18px;
        line-height: 24px;
    }
}

@media only screen and (max-width: 900px) {
    .partner-description{
        font-size: 16px;
        line-height: 26px;
    }
    .partner-description .left, .partner-description .right {
        flex: 0 0 100%;
    }
    .partner-description .researcher .left{
        flex: 2;
    }

    .partner-description .researcher .right {
        flex: 5;
    }
}

@media only screen and (max-width: 600px) {
    .partner-description{
        font-size: 16px;
        line-height: 24px;
    }
}

/*------------------ footer ------------------*/


.footer{
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.footer .eu-logos{
    display: flex;
    margin: auto auto 10px auto;
    justify-content: center;
    gap: 50px;
}

.footer .eu-logos img{
    height: 100px;
}

.footer .copyright{
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    background-color: rgba(3,169,62,1);
    color: #ffffff;
    font-size: 20px;
}

@media only screen and (max-width: 1400px) {
    .footer .eu-logos img{
        height: 50px;
    }
    .footer, .footer .copyright{
        font-size: 18px;
    }
}
@media only screen and (max-width: 900px) {
    .footer .founded {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 480px) {
    .footer .eu-logos img{
        height: 30px;
    }

    .footer, .footer .copyright{
        font-size: 10px;
    }
}
