/* CSS Document */
* {
    box-sizing: border-box;
}
html {
    font-size: 30px;
}
body {
    background: black;
    overflow-x: hidden;
    position: relative;
}
h1, h2, h3, h4, h5, h6, p, blockquote, a, ol, ul, li, nav {
    font-family: PresleySlabRegular, Helvetica, sans-serif;
    color: #FFF6EE;
}
p {
    font-size: 1rem;
    line-height: 1.6;
}
p:not(.last-child) {
    margin-bottom: 1rem;
}
span.no-break {
    white-space: nowrap;
}
a:not(.icon) {
    border-bottom: 1px solid;
    cursor: pointer;
}
#hero {
    position: relative;
    height: 20rem;
    max-width: 100%;
    z-index: 0;
    text-align: center;
    padding: 1rem 3rem;
    ;
}
#logo {
    height: 100%;
    max-width: 100%;
}
#burst {
    position: absolute;
    top: 0;
}
#burst path {
    fill: #F39103;
    top: 1000px;
}
#shadow path, #riser {
    fill: black;
}
#logoKO path {
    fill: white;
}
section.body {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem 4rem 2rem;
    z-index: 1;
}
ul {
    font-size: .75rem;
    margin-bottom: 2rem;
}
li:not(:last-child) {
    line-height: 1.2;
    margin-bottom: .5rem;
}
ul.twocol {
    column-count: 2;
}
.icon-wrapper {
    margin-bottom: 2rem;
}
.icon-wrapper .icon {
    position: relative;
    margin-right: 1rem;
    line-height: 1.6;
    font-size: 2rem;
    display: inline-block;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: #FFF6EE;
    text-decoration: none;
}
.icon-wrapper .icon:hover .tooltip {
    top: -45px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.icon-wrapper .icon:hover span, .icon-wrapper .icon:hover .tooltip {
    text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.icon-wrapper .facebook:hover, .icon-wrapper .facebook:hover .tooltip, .icon-wrapper .facebook:hover .tooltip::before {
    color: #F39103;
}
.icon-wrapper .instagram:hover, .icon-wrapper .instagram:hover .tooltip, .icon-wrapper .instagram:hover .tooltip::before {
    color: #F39103;
}
.icon-wrapper .youtube:hover, .icon-wrapper .youtube:hover .tooltip, .icon-wrapper .youtube:hover .tooltip::before {
    color: #F39103;
}
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 1rem;
}
.embed-container iframe, .embed-container object, .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}