/* --- Header and Menu --- */

       header#top-header {
       position: fixed;
       display: block;
       width: 100%;
       background: white;
       z-index: 1;
       padding: 0 5%;
       height: auto;
       border-bottom: 0.25px solid rgb(215,215,215);
       -webkit-box-shadow: 0px 0.5px 0.5px 0px rgba(189,187,189,0.5);
       -moz-box-shadow: 0px 0.5px 0.5px 0px rgba(189,187,189,0.5);
       box-shadow: 0px 0.5px 0.5px 0px rgba(189,187,189,0.5);
       transition: all 1s;
       }

       header#top-header:hover {
       -webkit-box-shadow: 0px 1.5px 5px 0px rgba(189,187,189,0.85);
       -moz-box-shadow: 0px 1.5px 5px 0px rgba(189,187,189,0.85);
       box-shadow: 0px 1.5px 5px 0px rgba(189,187,189,0.85);
       }

       #logo {
       display: block;
       z-index: 5;
       }

       /*header nav {
       display: block;
       }*/

       /* --- Main-Aside --- */

       main, aside {
       display: block;
       height: 100%;
       padding: 5% 5%;
       }

       main {
       position: relative;
       width: 65%;
       float: left;
       border-right: 0.25px solid rgb(215,215,215);
       }

       main section {
       width: 100%;
       display: block;
       }

       aside {
       padding-left: 1%;
       width: 35%;
       height: 100%;
       float: right;
       }

       aside article a {
       color: black;
       display: block;
       width: 100%;
       height: 115px;
       display: grid;
       grid-template-columns: 35% 65%;
       grid-template-rows: 100%;
       overflow: hidden;
       }

       aside article div * {
       margin: 0;
       padding: 5px;
       padding-left: 10px;
       }

       aside article div h4 {
       font-size: 16px;
       }

       aside article div p {
       font-size: 12px;
       }

       /* --- Footer --- */

       footer.main-footer {
       background: var(--main-color);
       color: white;
       border-top: 0.25px solid rgb(215,215,215);
       padding: 25px 5%;
       /*display: grid;
       grid-template-columns: 70% 30%;*/
       }
		
       footer.main-footer div * {
       font-size: 15px;
	   line-height: 1.8;
	   }
	   footer.main-footer h2 {font-size: 21px;}

	   /* --- Article --- */

	   article p {
	   line-height: 1.8;
	   }