@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300&display=swap');
:root {
    --link-color: #000000;
    --header-bg-color: rgba(255, 255, 255, 0.9);
    --header-text-color: #5f5f5f;
    --main-bg-color: #ececec;
    --card-bg-color: #ffffff;
    --card-title-color: #000000;
    --card-text-color: #303030;
    --footer-bg-color: #2b2b2b;
    --footer-text-color: #e2e2e2;
}
/*////////////////////////////////////--global-styling--*/
    *{
        box-sizing: border-box;
    }
    a{
        color: var(--link-color);
        text-decoration: underline;
    }
    a:hover{
        text-decoration: none;
    }
    html{
        padding:0;
        margin: 0;
        scroll-behavior: smooth;
    }
    body{
        padding:0;
        margin: 0;
        font-family: 'Atkinson Hyperlegible', sans-serif;
        background-color: var(--main-bg-color);
    }
    .wrapper_grant_image{
        display: grid;
        grid-template-columns: 1fr auto;
        width: 100%;
        height: auto;
        padding: 20px 0;
    }
    .wrapper_grant_image h2{
        text-align: left;
        margin-top:0;
    }
    .wrapper_grant_image img{
        width: 250px;
        margin-left: 30px;
        padding: 10px;
        border-right: 5px dotted #C9C9C9;
    }
/*@////////////////////////////////////--END-global-styling--@*/

/*////////////////////////////////////--header-styling--*/
    header{
        background-color: var(--header-bg-color);
        display: grid;
        grid-template-columns: 90px 1fr;
        padding: 15px;
        position: fixed;
        width: 100%;
        z-index: 1;
    }
    .desktop_nav{
        justify-self: end; 
        align-self: center;
    }
    .desktop_nav ul{
        margin:0;
        padding: 0;
        list-style-type: none;
        display: flex;
        flex-direction: row;
    }
    .desktop_nav ul li a{
        padding: 5px 25px;
    }
    .desktop_nav ul li a img{
        filter: none;
        width: 23px;
        margin-left: 20px;
        margin-right: -20px;
        border-radius: 50%;

    }
    .desktop_nav a{
        text-decoration: none;
        color: var(--header-text-color);
        font-weight: bold;
        font-size: 1.1rem;
        transition: color 0.2s;
    }
    .desktop_nav a:hover{
        color: black;
    }
    header img{
        filter: invert(1);
        width: 100%;
    }

/*@////////////////////////////////////--END-header-styling--@*/

/*////////////////////////////////////--slide-navigation-styling--*/
.slideButton{
    visibility: hidden;
    font-size: 1.2rem;
    cursor: pointer;
    right: 20px;
    top: 25px;
    position: absolute;
    font-weight: bold;
  }
  .mobileNav{
    position: absolute;
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: black;
    overflow-x: hidden;
    padding-top: 60px;
  }
  .mobileNav ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  .mobileNav a{
    padding: 15px 0 15px 0;
    text-decoration: none;
    font-size: 2rem;
    color: #fff;
    display: block;
    margin-left: 20%;
  }
  .mobileNav ul li a img{
    filter: none;
    width: 40px;
    border-radius: 50%;
}
  .closebtn{
    position: absolute;
    top: 3px;
    right: 35px;
    font-size: 50px !important;
    padding: 0 !important;
  }
/*@////////////////////////////////////--END-side-navigation-styling--@*/

/*////////////////////////////////////--main-styling--*/
    main{
    display: grid;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    }
    .goto{
        position: absolute;
        padding: 0;
        margin: 0;
        margin-top: 0px;
        background-color: transparent;
        margin-top: -160px;
    }
    section{
        max-width: 1300px;
        padding: 50px;
        margin-top: 50px;
        background-color: var(--card-bg-color);
    }

    section h1{
        font-size: 2.8rem;
        margin-top: 0;
        margin-bottom: 60px;
    }
    section p{
        font-size: 1.1rem;
        color: var(--card-text-color);
    }
    section ul{
        list-style-type: square;
        color: #303030;
    }
    section ul li{
        margin-bottom: 10px;
    }
    .flex_image{
        display: flex;
        flex-direction: row;
    }
    .flex_image img{
        width: 100%;
        padding-top: 20px;
        padding-right: 40px;
        min-width: 300px;
    }
    #section_hero{
        margin-top: 140px;
        padding: 0;
        background: rgb(59,33,107);
        background: linear-gradient(-90deg, rgb(44, 25, 80) 0%, rgba(24,66,149,1) 60%, rgba(50,157,172,1) 100%);
    }
    #particle-div{
        height: 200px;
        width: 100%;
        position: relative;
    }
    #particle-div img{
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 30%;
        max-width: 100px;
        filter: opacity(0.7);
    }
    .flex_top_logos{
        display: grid;
        grid-template-areas: "left right";
        grid-template-columns: 50% 1fr;
        align-items: center;
        margin: 20px auto 0 auto;
        max-width: 700px;
        
    }
    .flex_top_logos img{
        width: 100%;
        padding: 0 50px;
    }
    #section_rolunk{
        margin-top: 30px;
    }
    .map{
        width: 100%;
        height: 400px;
        border: none;
    }
/*@////////////////////////////////////--END-main-styling--@*/

/*////////////////////////////////////--footer-styling--*/
    footer{
        padding:30px 50px;
        width: 100%;
        background-color: var(--footer-bg-color);
        color: var(--footer-text-color);
        margin-top: 50px;
    }
    footer img{
        width: 100px;
        filter: invert(0.2);
    }
    footer p{
        padding:0;
        margin:20px 0 0 0;
        
    }
/*@////////////////////////////////////--END-footer-styling--@*/

/*////////////////////////////////////--under-1100px-styling--*/
    @media only screen and (max-width: 1100px) {
        
        .desktop_nav{
            display: none;
        }
        .slideButton{
            visibility:visible !important;
        }
        
    }
/*@////////////////////////////////////--END-under-1100px-styling--@*/

/*////////////////////////////////////--under-700px-styling--*/
    @media only screen and (max-width: 700px) {
        header{
            padding: 10px;
        }
        main{
            padding: 0;
        }
        section{
            padding: 20px;
        }
        .flex_image{
            display: flex;
            flex-direction: column;
        }
        .flex_image img{
            padding-top: 20px;
            padding-right: 40px;
            padding-left: 40px;
            min-width: none;
        }
        #section_hero{
            margin-top: 78px;
        }
        .flex_top_logos{
            margin-top: 30px;
        }
        .flex_top_logos img{
            padding: 0 15px;
        }
        .wrapper_grant_image{
            grid-template-columns: auto;

        }
        .wrapper_grant_image img{
            justify-self: end;
            width: 60%;
        }
        footer{
            padding:20px 30px;
        }
    }
    
    
    
    
           .gallery-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        .gallery-table td {
            text-align: center;
            padding: 10px;
        }
        .gallery-table img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            cursor: pointer;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
  
/*@////////////////////////////////////--END-under-700px-styling--@*/