html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	//vertical-align: baseline;
}

.wrapper {
    margin: auto;
    //width: 1200px;
}

h1 {
    font-family: 'Raleway', sans-serif;
    font-size: 24px;
}

h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 30px;
}

p {
    
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 34px;
}

.background {
    z-index:-999;
    
    top: 0;
    left:0;
    
    position: fixed;
    width: 100%;
    height: 100vh;
    
    background: linear-gradient( rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35) ), url(Drawing_kit_cut2.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: 50% 50%;
    
}

    .sector {
        background-image: url(../Sector_compressed.png);
        background-repeat: no-repeat;
        background-position: 50% 41%;
        background-size: 45%;
        position: fixed;
        top: 0;
        left:0;
        width: 100%;;
        height: 100vh;
        z-index: -1;
        opacity: .7;
    }
    
    .greenPentagon {
        background-image: url("../images/pencil.png");
        background-repeat: no-repeat;
        background-position: 35.4% 48%;
        background-size: 2.8%;
        position: fixed;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: -1;
        opacity: .9;
    }

.bar {
    z-index: 99;
    margin-top: 4px;
    width: 22px;
    height:2px;
    //border-radius: 100px;
    color: white;
    ;background: white;
    background: rgba(81, 160, 113,1);
}

.menu-button {
    height: 10vh;
    z-index: 9;
    display: flex;
    //background: rgba(81, 160, 113,1);
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button:hover {
    cursor: pointer;
}

.nav-toggle {
    cursor: pointer;
}

a {

}

#click-area {
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
}

.menu {
    margin-top: 2px;
    font-family: 'Open Sans', sans-serif;
    font-size: 80%;
    font-weight: 500;
    letter-spacing: 2px; 
    color: black;
    margin-left: 10px;
}

.menu-container {
    width: 100%;
    height: 10vh;
    display: flex;
    align-content: center;
    justify-content: center;
}

#icon-container {
    width: 100%;
    position: absolute;
    height: 10vh;
    display: flex;
    align-items: center;
}

#home-icon {
    //position: absolute;
    width: 32px;
    margin-left: 10px;
}

.main-nav {
    display: flex;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(81, 160, 113,1);
    text-align: center;
    transform: translateX(-100%);
    transition: transform 0.9s ease;
    
}

.main-nav.open {
    transform: translateX(0);
}

.main-nav .nav-toggle {
    position: absolute;
    right: 1.6%;
    top: 2.5%;
    color: white;
}

nav ul {
    display: flex;
    flex:1;
    
    font-size:100%;
    list-style-type: none;
    
    justify-content:space-around;
    align-items: center;
}

nav li {
    display: flex;
    align-items: center;
    
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    display: block;
    padding: 10px;
}

a:hover {
    color: lightgray;
}

a {
    text-decoration: none;
    list-style: none;
}

#close-icon {
    width: 40px;
}

h3 {
    font-weight: 400;
}

.navigation {
    z-index: 99999;
    top: 0;
    //font-family: 'Playfair Display', serif;
    font-family: 'Raleway', sans-serif;
    font-size: 130%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 10vh;
    background: rgba(255,255,255,1);
    letter-spacing: 8px;
    color: white;
}

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    //margin-top: 100px;
    background-image: url(../images/Sector_compressed.png);
    background-size:600px;
    background-repeat: no-repeat;
    background-position: 50% 42%;
}

.header > h1 {
    text-align: center;
    color: black;
    font-size: 420%;
    letter-spacing: 6px;
}

.header > h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 100%;
    text-align: center;
    margin-top: 220px;
    font-size: 120%;
    font-style: italic;
    color: gray;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Keyframes for the fade-in */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;
  opacity: 1 \9; /*just in case ie*/
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fade-in.sector {
        -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fade-in.greenPentagon {
            -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fade-in.title {
    -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}



.block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 70%;
    height: 60vh;
    margin: auto;
}

.c1 {
    height: 100%;
}

.block1 {
    display: flex;
    position: relative;
    //width: 70%;
}

.info1 {
    background: #fff0a8;
    position: relative;
    padding: 75px;
    display: flex;
    flex-direction: column;
}

.number, .number2 {
    font-family: 'Raleway', sans-serif;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top:-20px;
    left: 20px;
    width:40px;
    height:40px;
    background: #f2f2f2;
    color: black;
}

.block2 {
    margin-top: 100px;
    //width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info2 {
    position: relative;
    padding: 75px;
    display: flex;
    flex-direction: column;
    background: #e3f4f7;
}

.block3 {
    display: flex;
    justify-content: center;
    //width: 70%;
    height: 50vh;
    margin-top: 100px;
}

.info3 {
    margin-right: 40px;
    position: relative;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    background: #f9f9f9;
    color: black;
}

.info3-right {
    flex:2;
    background: url(../images/Prior_Park.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.block4 {
    display: flex;
    justify-content: center;
    //width: 70%;
    margin-top: 100px;
}

.info4 {
    position: relative;
    padding: 75px;
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #e8f2e6;
}

.info5 {
    position: relative;
    margin-top: 100px;
    padding: 75px;
    display: flex;
    flex-direction: column;
    margin: 100 auto;
    //width: 55%;
    background: #fff0a8;
}

.info5 > p {
    margin-top: 40px;
    text-align: left;
    font-size: 16px;
    width: 100%;
}

.info6 {
    position: relative;
    margin-top: 100px;
    padding: 75px;
    display: flex;
    width: 85%;
    
    align-items: center;
    justify-content: center;
}

button {
    font-family: 'Raleway', sans-serif;
    margin-top: 100px;
    margin-bottom: 100px;
    width: 200px;
    height: 100px;
    
    border:none;
    background: rgba(81, 160, 113,1);
    color: white;
    font-size: 20px;
    
    cursor: pointer;
}

@media only screen 
and (min-width: 200px)
and (max-width: 1025px) {
    .sector {
        background-size: 55%;
        background-position: 48% 41%;
    }
    
    .greenPentagon {
        background-size: 3%;
        background-position: 29.9% 48%;
    }
    
    .block {
        width: 80%;
    }
    
    p {
        font-size: 20px;
    }
    
    .info3-right {
        display: none;
    }
}

@media only screen 
and (min-width: 200px)
and (max-width: 760px) {
    
    body {
        height: 100vh;
    }
    
    h1, h2 {
        font-size: 125%;
    }
    
    #pb {
        //width: 65px;
    }
    
    .char1:hover {
    flex: 1;
    }
    
    .char2:hover {
    flex: 1;
    }
    
    .char3:hover {
    flex: 1;
    }
    
    .characters {
        flex-direction: column;
        //height: 1000px;
    }
    
    #container {
    margin-top: 10vh;
    height: 100vh;
    }
    .char1 {
        background-position: 20% 10%;
    }
    
    .char2 {
    order: 3;
     background-position: 20% 15%;   
    }
    
    nav ul {
        flex-direction: column;
    }
    
    .block {
        width: 90%;
    }
    
    .info1, .info2, .info3, .info4, .info5 {
        padding: 30px;
    }

}