/* inside out project STEP-105 CSS Document */








@font-face {
    font-family: 'kingthings_christmas_regular';
    src: url('kingthings_christmas-webfont.woff2') format('woff2'),
         url('kingthings_christmas-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


#logo{
     cursor: pointer;
}
#logo:hover{
     color:#EEE;
}

nav {
    right: 250px;
    display: inline;
    position: fixed;
    background: #FFF;
    z-index: 1000;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-right: 20px;
}
nav ul {
    list-style: none;
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}
nav ul a {
    display: block;
    text-decoration: none;
    font-weight: 700;
    line-height: 32px;
    padding: 0 15px;
    font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #333;
    font-size: 16px;
}
nav ul li {
    position: relative;
    float: left;
    margin: 0;
    padding: 0;
}
nav ul li.current-menu-item {
    background: #ddd;
}
nav ul li:hover {
    background: #DDD;
}
nav ul ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f6f6f6;
    border: thin #225AA7 solid;
    padding: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
}
nav ul ul li {
    float: none;
    width: 200px;
}
nav ul ul a {
    line-height: 120%;
    padding: 10px 15px;
}
nav ul ul ul {
    top: 0;
    left: 100%
}
nav ul li:hover > ul {
    display: block
}
#loaderDiv {
    background: url("https://step-105.justinolanin.com/assets/images/snowflake.gif") no-repeat center center fixed;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.7;
    background-size: 100%;
    background-color: #FFFFFF;
    display: none;
}

section{
     min-height: 450px;
}

.circle {
    position: absolute;
    top:150px;
    left:50%;
    transform:translate(-50%,-50%);
    width:350px;
    height:350px;
    border: 5px solid #fff;
    box-shadow:0 0 0 5px #4973ff;
    border-radius:50%;
    overflow:hidden;
}
.wave {
    position:relative;
    width:100%;
    height:100%;
    background:#4973ff;
    border-radius:50%;
    box-shadow:inset 0 0 50px rgba(0,0,0,.5);
}
.wave:before,
.wave:after{
    content:'';
    position:absolute;
    width:200%;
    height:200%;
    top:0;
    left:50%;
    transform:translate(-50%,-75%);
    background:#000;
}
.wave:before {
    border-radius:45%;
    background:rgba(255,255,255,1);
    animation:animate 5s linear infinite;
}
.wave:after {
    border-radius:40%;
    background: rgba(255,255,255,.5);
    animation: animate 10s linear infinite;
}
@keyframes animate {
    0%{
        transform: translate(-50%,-75%) rotate(0deg);
    }
    100%{
        transform: translate(-50%,-75%) rotate(360deg);
    }
}
