@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600&display=swap');

body {
    font-family: 'Source Sans Pro', sans-serif;
    padding: 0;
    margin: 0;
    min-height: 100vh;
}

h1  {
    text-transform: uppercase;
    color: rgb(49, 49, 49);
    font-weight: 400;
    padding-top: 10px;
}

.section--heading:hover p {
    display: block;
}

.container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: center 210px no-repeat;
    background-size: contain;
    background-image: linear-gradient(180deg, rgba(255,255,255,.6) 0%, rgba(255,255,255,1) 100%), url("data:image/svg+xml,%0A%3Csvg width='215px' height='215px' viewBox='0 0 215 215' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cpath d='M107.5,1.11803399 L0.809016994,214.5 L214.190983,214.5 L107.5,1.11803399 Z' id='Triangle' stroke='%23979797'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    transition: all 0.3s;
}

@media (max-width: 900px) {
.container {
    background: white;
}
}

.container.deactivated {
    transform: translateX(60%);
}

#offcanvas-container {
    z-index: 10;
    position: fixed;
    overflow: scroll;
    top: 0;
    left: 0;
    height: 100%;
    background: #414141;
    color: white;
    width: 50%;
    transform: translateX(-100%);
    transition: all 0.3s;
    padding: 20px;
}

#offcanvas-container.active {
    transform: translateX(0px);
}

@media (max-width: 900px) {
    #offcanvas-container {
        width: 90%;
    }
}

.header {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 4fr 1fr;
    align-items: center;
}

.header h1 {
    text-align: center;
}

.header p {
    text-align: center;
}

#headline {
    padding: 0 20%;
}

#introduction {
    padding-left: 50px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 100;
    cursor: pointer;
}

#offcanvas-close {
    cursor: pointer;
}

.section {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-gap: 10px;
    margin: 5px;
    background: rgba(0, 0, 0, 0.1);
}

.section--heading {
    padding: 20px;
}

.section--heading h2 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 100;
    margin: 0;
}

.section--heading p {
    font-size: 12px;
    display: none;
}

.section--heading:hover h2:after {
    display: none;
}
.section--heading h2:after {
    content: "Hover for details";
    display: block;
    padding-top: 10px;
    color: grey;
    font-size: 10px;
}

.section--body {
    padding: 10px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    text-transform: uppercase;
}

.indicated {
    color: gold;
    opacity: 1;
    /* font-size: 18px; */
    padding: 0px;
}

ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

ul li {
    margin: 5px 10px;
    cursor: default;
    /* padding: 5px; */
    opacity: 0.2;
    transition: all .5s ease-out;
    font-weight: 600;
}

.principles ul li {
    cursor: pointer;
}

li:hover {
    color: gold;
    opacity: 1;
}

@media (max-width: 1200px) {
    .section {
     grid-template-columns: 200px auto;
    }

    .section:hover .section--body li {
        display: inline;
    }

    li {
        display: none;
        font-size: 12px;
    }
    li.indicated {
        display: inline;
    }
}

.logo {
    margin-top: 20px;
}

.logo svg {
    height: 50px;
}

.modal_window {
    position: fixed;
    top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    background:rgba(0, 0, 0, 0.8);
    transition: opacity 400ms ease-in;
    opacity:0;
    pointer-events: none;
}

.modal_window.active {
    opacity: 1;
    pointer-events: auto;
}

.modal_window__container {
    width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	background: #fff;
}

.model_window__close {
    cursor: pointer;
}