html{
    width:  100%;
    height:  100%;
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    color: black;
}
a{
    text-decoration: none;
    color: #b71c1c;
}
* {
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
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;
    vertical-align: baseline;
    font-family: nimbus-sans, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
}
body {
    color: #333;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #E4E4E4;
    line-height: 26px;
}
b{
    font-weight: 600;
}
.u-hide{
    display: none !important;
}
/* Logo */
.logoWrap{
    position: fixed;
    z-index: 5;
    width: 140px;
    padding: 10px 20px 5px;
    top: 20px;
    left: 20px;
    background-color: #fff;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 0.10s;
    -moz-transition: all 0.10s;
    transition: all 0.10s;
}
.more-menu.start{
    display: block !important;
}
.more-menu a{
    display: block;
    color: #333;
    padding: 5px;
}
.more-menu a:hover{
    color: #b71c1c;
}
.more-menu .nav-home{
    color: #b71c1c;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 5px;
}
/* Map */
#map{
    position: fixed;
    width: 100%;
    top: 0px;
    bottom: 0px;
}
/* Features */
#features{
    position: relative;
    width: 100%;
    margin-left: 0%;
    overflow-y: scroll;
    background-color: transparent;
    z-index: 5;
}
section{
    position: relative;
    width: 550px;
    right: 0px;
    padding: 25px;
    line-height: 25px;
    border: 1px solid #ddd;
    opacity: 0.5;
    font-size: 13px;
    margin-bottom: 50%;
    margin-left: auto;
    margin-right: 0px;
    background-color: #fff;
}
section.active{
    opacity: 1;
}
section:last-child{
    margin-bottom: 200px;
}
section .image{
    position: relative;
    width: 498px;
    height: 395px;
    margin-bottom: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-size: cover;
}
section .embed,
section .embed > iframe{
    position: relative;
    width: 498px;
    max-width: 498px;
}
section .embed-youtube{
    position: relative;
    padding-bottom: 56.25%;
    height: 0; 
    overflow: hidden;
    width: auto;
    max-width: 100%; 
}
section .embed-youtube iframe,
section .embed-youtube object,
section .embed-youtube embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
}
section h3{
    font-family: kepler-std, serif;
    font-weight: 500;
    font-style: normal;
    font-size: 30px;
    margin-bottom: 10px;
    line-height: 40px;
}
section p{
    font-size: 16px;
    margin-bottom: 10px;
}
section p span{
    background-color: rgba(255, 255, 0, 0.3);
    font-family: nimbus-sans, sans-serif;
    font-weight: 700;
}
section .citation{
    color: #666;
    font-size: 14px;
}
section .citation a{
    font-size: 14px;
    border-bottom: 1px dotted #666;
}
/* Header section */
#sec1{
    background-color: #b71c1c;
    color: #fff;
    padding: 75px 50px;
}
#sec1 h3{
    font-size: 50px;
    line-height: 60px;
}
#sec1 .author{
    font-weight: 700;
}
#sec1 .author a{
    color: #fff;
    border-bottom-color: #fff;
    font-weight: 700;
}
/* Responsive CSS */
@media (min-width: 300px) and (max-width: 1100px){
    section{
        width: 100%;
        padding: 20px;
        opacity: 1;
        background-color: rgba(255, 255, 255, 0.95);
    }
    section h3{
        font-size: 24px;
        line-height: 34px;
    }
    #sec1{
        margin-top: 500px;
        padding: 30px;
    }
    #sec1 h3{
        font-size: 30px;
        line-height: 40px;
    }
}
@media (min-width: 300px) and (max-width: 660px){
  
    section .image{
        width: 300px;
        height: 238px;
    }
    section .embed,
    section .embed > iframe{
        width: auto;
        max-width: inherit;
    }
    section .embed-youtube{
        max-width: 100%; 
    }
    section .embed-youtube iframe,
    section .embed-youtube object,
    section .embed-youtube embed{
        width: 100%;
    }
}