﻿@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swp');

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

}
header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    z-index: 10000;
    transition: 0.6s;
}
    header .logo {
        position: relative;
        font-weight: 700;
        color: #300b6b;
        text-decoration: none;
        font-size: 1em;
        letter-spacing: 2px;
        transition: 0.6s; 
    }
        header .logo span {
            color: #009CD7;
        }
    header #toggele {
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
    }
    header #toggele:before {
        content: '';
        position: absolute;
        top: 7px;
        width: 100%;
        height: 2px;
        background: #333;
    }
header #toggele:after {
    content: '';
    position: absolute;
    bottom: 7px;
    width: 100%;
    height: 2px;
    background: #333;
}
.banner.active header #toggele:before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.banner.active header #toggele:after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 50px;
    /*    background: url('img/2.jpg');
    background-size: cover;*/
    background: #ffffff;
    display: flex;
    align-content: center;
    transition: 0.5s;
    z-index: 2;
}
    .banner.active {
        transform: translateX(-400px);
    }
#navigation {
    position: fixed;
    top: 0;
    right: -200px;
    width: 400px;
    height: 100vh;
    background: #4a5055;
    z-index: 1;
    display: grid;
    place-items: center;
    transition: 0.5s;
}




    #navigation.active {
        right: 0;
    }
    #navigation ul {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 90%;
        padding-left:0px!important
    }
        #navigation ul li {
            list-style: none;
            color: #fff;
/*            font-size: 1em;*/
            font-weight:normal;
        }
#navigation ul li a {
/*    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-size: 2em;
    font-weight: 600;
    text-transform: uppercase;*/
}
.content {
   width: 100%
}
    .content h2 {

    }
.content h2 span {
    color: #40c3ff;

}
    .content .p {
        font-size: 1.2em;
        font-weight: 300;
        text-align: justify;
    }
    .content a {

    } 
    .sci {
        position: absolute;
        display: flex;
        flex-direction: column;
        right: 100px;
    }
    .sci li {
        list-style: none;

    }
     .sci li a {
         position: relative;
         display: grid;
         place-items: center;
         width: 50px;
         height: 50px;
         text-decoration: none;
         border: 1px solid #fff;
         margin: 10px 0 0;
     }
     .sci li a:hover {
         background: #fff;
     }
     .sci li a img {
         max-width: 20px;
         filter: invert(1);
         mix-blend-mode: difference;
     }
@media (max-width: 767px) {
    header {
        padding: 10px 10px;
    }
    .banner {
        padding: 100px 10px 10px;
    }
    .banner h2 {
        font-size: 1.8em;
    }
    .banner .content p, .banner .content a {
            font-size: 1em;
    }
    .banner.active {
        transform: translateX(-300px);
    }
    #navigation {
        width: 300px
    }
    #navigation ul li a {
        margin: 5px 0;
    }
    .sci {
        position: absolute;
        bottom: 50px;
        right: initial;
        flex-direction: row;
    }
    .sci li a {
        margin: initial;
        margin-right: 10px;
    }
}