@import "liberation.css"

*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


html, body {
    height: 100vh;
    width: 100vw;
    margin: 0px;

    background-color: #4e6e87;
    
}


    .container {
        display: grid;
        grid-template-columns: 30% auto 20%;
        grid-template-rows: repeat(auto);
        
        position: relative;
  
        height: 100%;
        width: 100%;

        background-color: #4e6e87;
    
    }


    .logo {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 3;
        
        padding-left: 2vw;
        padding-right: 0%;
        
        background-color: #4e6e87;
        
        position: relative;

    }


    .logo img {
        display: block;
        
        max-width: 100%;
        height: 100%;
        object-fit: contain;
        
        background-color: #4e6e87;

    }

    
    .title {
        grid-column-start: 2;
        grid-column-end: 4;
        grid-row-start: 1;
        grid-row-end: 2;
        
        padding-left: 2vw;
        padding-right: 0%;
        
        background-color: #4e6e87;
        
        position: relative;

    }


    .title p {
        background-color: #4e6e87;
        
        color: white;

        font-family: 'liberation_serifitalic', serif;
        font-size: calc(19px + 1.5vw);
        
    }


    .header {
        max-width: 100%;
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 3;
        grid-row-end: 4;
        align-items: center;
        
        height: calc(100% - 50px);
        
        color: white;
        background-color: #4e6e87;
        padding: 1rem;

        font-family: 'liberation_sansregular', sans-serif;
        font-size: calc(16px + 0.2vw);
        
    }


    .navbar {
        display: none;

    }

    
    .text {
        max-width: 100%;
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 4;
        grid-row-end: 5;
        align-items: center;
        
        height: calc(100% - 50px);

        background-color: #4e6e87;
        padding: 1rem;

        font-family: 'liberation_sansregular', sans-serif;
        font-size: calc(16px + 0.2vw);
        
    }


    .text p, ul, h1, h2, h3 {
        margin-bottom: 1.5vh;
        color: white;
        
    }


    .footer {
        max-width: 100%;
        grid-column-start: 1;
        grid-column-end: 4;
        grid-row-start: 5;
        grid-row-end: 6;
        align-items: center;
        
        height: calc(100% - 50px);

        color: white;
        background-color: #4e6e87;
        padding: 1rem;

        font-family: 'liberation_sansregular', sans-serif;
        font-size: calc(16px + 0.2vw);
        
    }


    .link-list {
        
        line-height: 5;
        
    }


    .text ul {
        padding-left: 2vw;
        color: white;
        
    }


    a:link {
    color:inherit;
    
    }


.menuwrapper {
        grid-column-start: 3;
        grid-column-end: 4;
        grid-row-start: 2;
        grid-row-end: 3;

        position: absolute;
        
        justify-self: end;
    
    }
    
    
    #menu-btn {
        position: absolute;
        top: -100%;
        left: -100%;
    }


    .menu {
        display: flex;
        justify-content: space-between;
        align-items: right;
        margin-right: 2rem;
    }

    .menu a {
        text-decoration: none;
        color: white;
    }
  

    .menu-btn {
        display: none;
    }


    .menu-icon {
        grid-column-start: 3;
        grid-column-end: 4;
        grid-row-start: 2;
        grid-row-end: 3;

        cursor: pointer;
        display: flex;
        justify-content: flex-end;
        align-items: baseline;
        padding: 30px 20px 30px 0;
        position: relative;
        user-select: none;
        visibility: visible;
    }
    
    .navicon {
        background: white;
        display: block;
        height: 2px;
        width: 24px;
        position: relative;
        
    }
    
    
    .navicon:before {
        top: 5px;
    }
    
    
    .navicon:after {
        top: -5px;
    }
    
    
    .navicon:before,
    .navicon:after {
        background: white;
        display: block;
        width: 100%;
        height: 100%;
        content: "";
        position: absolute;
        transition: all 0.2s ease-out;
    }
    
    
    .menu {
        max-width: unset;
        max-height: 0;
        transition: max-height 0.2s ease-out;
        overflow: hidden;
        margin: 0;
        padding: 0;
        background-color: white;
        line-height: 5;
        display: flex;
        flex-direction: column;
    }

    
.menu a {
        padding: 20px 20px;
        border-right: 1px solid #f4f4f4;
        color: #4e6e87;
        background-color: white;
        width: 90vw;
        text-align: right;
        font-family: 'liberation_sans', sans-serif;

    }

    
    .menu-btn:checked ~ .menu {
        max-height: 250vh;
    }


    .menu-btn:checked ~ .menu-icon .navicon {
        background: transparent;
    }

    
    .menu-btn:checked ~ .menu-icon .navicon:before {
        transform: rotate(-45deg);
  
    }
   
   
    .menu-btn:checked ~ .menu-icon .navicon:after {
        transform: rotate(45deg);
    }

  
    .menu-btn:checked ~ .menu-icon .navicon:before,
    .menu-btn:checked ~ .menu-icon .navicon:after {
        top: 0;
    }


