@charset "UTF-8";

html, body{
    font-family: sans-serif;
    margin: 0;
    padding: 0;
}

footer, header, nav, section{
    display: block;
}

ul, li{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

button{
    background-color: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
}

p{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: #717A84;
    margin: 0;
    padding: 0;
}
p.last-p{
    clear: both;
    padding-bottom: 60px;
}

b{
    font-weight: 400;
}

.content-wrap{
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
}
/* ---------- */
/* navigation */
nav.primary-navigation{
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    background-color: transparent;
    z-index: 99;
}
/* logo */
nav.primary-navigation a.logo{
    height: 30px;
    float: left;
    margin: 15px 0 0 0;
    padding: 0;
}
nav.primary-navigation a.logo img{
    max-height: 30px;
}
/* menu */
nav.primary-navigation ul{
    width: 100%;
    height: auto;
    position: fixed;
    top: 60px;
    bottom: 0;
    right: -100%;
    overflow: hidden;
    overflow-y: scroll;
    display: block;
    background-color: #0055FF;
    margin: 0;
    padding: 0;
    -webkit-transition: right 0.3s linear;
    -moz-transition: right 0.3s linear;
    -ms-transition: right 0.3s linear;
    -o-transition: right 0.3s linear;
    transition: right 0.3s linear;
}
nav.primary-navigation ul.slide-right{
    right: 0;
}
nav.primary-navigation ul li{
    border-bottom: 1px solid rgba(255,255,255, 0.2);
    margin: 0;
    padding: 0;
}
nav.primary-navigation ul li:last-child{
    border-bottom: 0;
}
nav.primary-navigation ul li a{
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    color: #FFFFFF;
    padding: 20px;
}
/* mobile icon */
#mobile-icon{
    width: 40px;
    height: 40px;
    position: relative;
    float: right;
    margin-top: 10px;
    padding: 0;
}
#mobile-icon span{
    width: 40px;
    height: 2px;
    position: absolute;
    display: block;
    background-color: #FFFFFF;
}
#mobile-icon .line-top{
    -webkit-transform: translateY(-10px) rotate(0deg);
    -moz-transform: translateY(-10px) rotate(0deg);
    -ms-transform: translateY(-10px) rotate(0deg);
    -o-transform: translateY(-10px) rotate(0deg);
    transform: translateY(-10px) rotate(0deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#mobile-icon .line-bottom{
    -webkit-transform: translateY(10px) rotate(0deg);
    -moz-transform: translateY(10px) rotate(0deg);
    -ms-transform: translateY(10px) rotate(0deg);
    -o-transform: translateY(10px) rotate(0deg);
    transform: translateY(10px) rotate(0deg);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
#mobile-icon.open .line-top{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#mobile-icon.open .line-middle{
    opacity: 0;
}
#mobile-icon.open .line-bottom{
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
/* -------------------- */
/* secondary navigation */
nav.secondary-navigation{
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    background-color: #FFFFFF;
    z-index: 99;
}
/* logo */
nav.secondary-navigation a.logo{
    height: 30px;
    float: left;
    margin: 15px 0 0 0;
    padding: 0;
}
nav.secondary-navigation a.logo img{
    max-height: 30px;
}
/* menu */
nav.secondary-navigation ul{
    width: 100%;
    height: auto;
    position: fixed;
    top: 60px;
    bottom: 0;
    right: -100%;
    overflow: hidden;
    overflow-y: scroll;
    display: block;
    background-color: #0055FF;
    margin: 0;
    padding: 0;
    -webkit-transition: right 0.3s linear;
    -moz-transition: right 0.3s linear;
    -ms-transition: right 0.3s linear;
    -o-transition: right 0.3s linear;
    transition: right 0.3s linear;
}
nav.secondary-navigation ul.slide-right{
    right: 0;
}
nav.secondary-navigation ul li{
    border-bottom: 1px solid rgba(255,255,255, 0.2);
    margin: 0;
    padding: 0;
}
nav.secondary-navigation ul li:last-child{
    border-bottom: 0;
}
nav.secondary-navigation ul li a{
    display: block;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    color: #FFFFFF;
    padding: 20px;
}
nav.secondary-navigation #mobile-icon span{
    width: 40px;
    height: 2px;
    position: absolute;
    display: block;
    background-color: #000000;
}


/* ------------ */
/* header index */
#particles-js{
  width: 100%;
  height: 100vh;
  position: relative;
  background: #6e90f6;
  background: -webkit-linear-gradient(45deg,#33b1f8 37%,#6e90f6 100%);
  background: linear-gradient(180deg,#1A2955 ,#136BBE 100%);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 97;
}
#particles-js .headline{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 98;
}
#particles-js .headline h1,
#particles-js .headline h2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
}
#particles-js .headline h1{
    font-size: 38px;
    margin-top: 20px;
}
#particles-js .headline h2{
    font-size: 22px;
    color: #A5DFFC;
}
#particles-js .headline h2{
    padding-top: 10px;
}
#particles-js .headline button.white-button{
    width: 140px;
    height: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    line-height: 40px;
    color: #6794F6;
    background-color: #FFFFFF;
    border-radius: 4px;
    cursor: pointer;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0, 0.25);
    box-shadow: 0 1px 3px 0 rgba(0,0,0, 0.25);
    margin-top: 50px;
    padding: 0;
}
#particles-js canvas{
    position: absolute;
    top: 0;
}
/* ----------- */
/* intro index */
#intro h1{
    font-family: 'Eczar', serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.25;
    color: #494747;
    margin: 30px 0;
}
/* ----------- */
/* main section */
#main{
    position: relative;
    background-color: #F7F8FA;
    margin: 60px 0 0 0;
    padding: 0;
}
#main h2{
    font-family: 'Eczar', serif;
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
    color: #494747;
    margin: 0;
    padding: 30px 0 0 0;
}
#main h3{
    font-family: 'Eczar', serif;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #494747;
    margin: 0;
    padding: 30px 0 0 0;
}
#main h4{
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    color: #000000;
    margin: 0;
    padding: 20px 0 10px 0;
}
#main h4:after{
    content: '';
    width: 6px;
    height: 10px;
    display: inline-block;
    background: url(../images/arrow-right.svg);
    margin-left: 15px;
}
#main .container{
    max-width: 768px;
    margin: 0 auto;
}
#main .container .column-6{
    width: 100%;
}
#main p{
    max-width: 768px;
    margin: 0 auto;
    padding-bottom: 15px;
}
#main p.title{
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}
#main img.icon-title{
    max-height: 60px;
    display: block;
    margin: 0 auto;
    padding: 20px 0;
}
#main ul{
    display: block;
}
#main ul li{
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    color: #717A84;
    padding: 5px 0;
}
#main a{
    text-decoration: none;
    color: #000000;
}
#main hr{
    width: 75%;
    height: 1px;
    background-color: #CFD6DD;
    border: 0;
    margin: 20px 0;
}
/* ------ */
/* footer */
footer{
    border-top: 1px solid #CFD6DD;
}
footer .sponsors{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
footer .sponsors img{
    max-height: 30px;
    padding-top: 20px;
}
footer p{
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #6D8195;
    margin: 0;
    padding-top: 30px;
    padding-bottom: 20px;
}



@media only screen and (min-width: 768px){
    /* ---------- */
    /* navigation */
    nav.primary-navigation{
      height: 80px;
      position: absolute;
    }
    /* logo */
    nav.primary-navigation a.logo{
        height: 35px;
        margin-top: 25px;
    }
    nav.primary-navigation a.logo img{
        max-height: 35px;
    }
    /* menu */
    nav.primary-navigation ul{
        width: auto;
        height: 40px;
        position: relative;
        top: 0;
        right: 0;
        float: right;
        overflow: visible;
        overflow-y: visible;
        background-color: transparent;
        margin-top: 25px;
    }
    nav.primary-navigation ul li{
        float: left;
        border-bottom: none;
        padding: 0 20px;
    }
    nav.primary-navigation ul li a{
        position: relative;
        font-size: 13px;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 2px;
        padding: 11px 0;
    }
    nav.primary-navigation ul li a:after{
        content: "";
        width: 0;
        height: 2px;
        position: absolute;
        bottom: 5px;
        left: 0;
        display: block;
        background-color: rgba(255,255,255, 0.75);
        transition: width 0.5s linear;
    }
    nav.primary-navigation ul li a:hover:after{
        width: 100%;
    }
    /* mobile icon */
    nav.primary-navigation #mobile-icon{
        display: none;
    }
    /* ---------- */
    /* navigation */
    nav.secondary-navigation{
      height: 80px;
      position: relative;
    }
    /* logo */
    nav.secondary-navigation a.logo{
        height: 35px;
        margin-top: 25px;
    }
    nav.secondary-navigation a.logo img{
        max-height: 35px;
    }
    /* menu */
    nav.secondary-navigation ul{
        width: auto;
        height: 40px;
        position: relative;
        top: 0;
        right: 0;
        float: right;
        overflow: visible;
        overflow-y: visible;
        background-color: transparent;
        margin-top: 25px;
    }
    nav.secondary-navigation ul li{
        float: left;
        border-bottom: none;
        padding: 0 20px;
    }
    nav.secondary-navigation ul li a{
        position: relative;
        font-size: 13px;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 2px;
        color: #000000;
        padding: 11px 0;
    }
    nav.secondary-navigation ul li a:after{
        content: "";
        width: 0;
        height: 2px;
        position: absolute;
        bottom: 5px;
        left: 0;
        display: block;
        background-color: rgba(0,0,0, 0.75);
        transition: width 0.5s linear;
    }
    nav.secondary-navigation ul li a:hover:after{
        width: 100%;
    }
    /* mobile icon */
    nav.secondary-navigation #mobile-icon{
        display: none;
    }
    /* ------------ */
    /* header index */
    #particles-js{
        max-height: 500px;
    }
    #particles-js .headline h1{
        font-size: 48px;
        margin-top: 100px;
    }
    #particles-js .headline h2{
        font-family: 'Open Sans', sans-serif;
        font-size: 28px;
        font-weight: 300;
    }
    #particles-js .headline button.white-button{
        width: 160px;
        height: 44px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 400;
        letter-spacing: 1px;
        color: #FFFFFF;
        background-color: transparent;
        border: 2px solid #FFFFFF;
        box-shadow: none;
        margin-top: 50px;
    }
    /* ----------- */
    /* intro index */
    #intro h1{
        font-size: 48px;
        margin: 50px 0;
    }
    #intro p{
        max-width: 50%;
    }
    /* ------------ */
    /* main section */
    #main{
        margin: 0;
    }
    #main .column-6{
        max-width: 384px;
        float: left;
    }
    /* ------ */
    /* footer */
    footer .sponsors{
        -webkit-justify-content: space-around;
        justify-content: space-around;
        margin: 0 auto;
    }
    footer .sponsors img{
        max-height: 45px;
        padding-top: 50px;
    }
    footer p{
        text-align: center;
        padding-top: 50px;
    }
}
