@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400');


:root{
    font-family: 'Roboto';
    --body-background: rgb(255, 255, 255);
    --navbar-color: #fff;
    --navbar-text-color: #222;
    --text-color: rgb(58, 58, 58);
    --border-color: rgba(125, 125,125, 0.5);
    --primary-color:rgb(11, 116, 181);
    --facebook-color: #3b5998;
    --insta-color: #3b6d96;
    --twitter-color: #46b8da;
    --youtube-color: #d43f3a;
    --border-radius: 25%;
}

html, body{
    margin:0px;
    padding:0px;
    color:var(--text-color);
    background: var(--body-background);
    font-weight: 300;
    font-size: 14px;
}

p,
h1,
h5,
h3,
h4,
h2{
    margin:5px 0px;
    padding:0px;
}

footer {
    padding: 30px 0px;
    background: #8c8c8c;
    margin-bottom: -60px;
    color: black;
    font-weight: bold;
    text-align: center;
}

header{
    position: fixed;
    width:100%;
    top:0px;
    z-index: +9999999999;
    display: block;
}

section{
    padding-top: 60px;
    border-bottom:1px solid rgba(0,0,0,0.1);
    padding-bottom:60px;
}

h1{
    font-weight: 100;
    padding:15px;
    border-bottom: 1px solid #999;
    font-size: 42px;
    font-weight: 200;
    margin-bottom: 15px;
}

h1:after{
    margin-top: 10px;
    content: " ";
    display:block;
    width:150px;
    border-bottom: 2px solid var(--primary-color);
    background: #333;
}

img{
    vertical-align: middle;
    max-width: 100%;
}

nav{
    box-shadow: 0px -10px 40px rgba(0,0,0,0.5);
    margin-bottom: 30px;
    background: var(--navbar-color);
    color: var(--navbar-text-color);
    padding: 5px;
}

.nav{
    vertical-align: middle;
    display: inline-block;
    list-style: none;
    margin: 0px;
    padding:0px;
}
.nav>li{
    display:inline-block;
    line-height: 60px;
    box-sizing: border-box;
}

.nav>li>a{
    box-sizing: border-box;
    font-weight: 200;
    text-transform: uppercase;
    vertical-align: middle;
    display: inline-block;
    padding:0px 10px;
    color: var(--navbar-text-color);
    text-decoration: none;
}
.contact-form.row a{
    color: var(--text-color);
}
.nav>li>a:hover{
    color:var(--body-background);
    background: var(--primary-color);
    border-radius: 5px;
}

.social-nav{
    float: right;
}
.social-nav>li{
    text-align: center;
    width: 50px;
}
.social-nav>li>a{
    display: inline-block;
    background: var(--primary-color);
    padding:0px;
    line-height: 0px;
    padding:9px;
    border-radius:5px;
}

.social-nav>li>a>img{
    width:16px;
}

.social-nav .insta:hover>a{ background-color: var(--insta-color); }
.social-nav .facebook:hover>a{ background-color: var(--facebook-color); }
.social-nav .twitter:hover>a{ background-color: var(--twitter-color); }
.social-nav .youtube:hover>a{ background-color: var(--youtube-color); }

/**
 * Body
 */

.container{
    width:900px;
    margin: 0 auto;
}

.row{
    display:flex;
    flex-wrap: wrap;
}

.col-3{
    position: relative;
    flex: 0 0 calc(33.333% - 10px);
    width: 33.33333%;
    box-sizing: border-box;
    margin:5px;
}

.col-6{
    flex: 0 0 50%;
    width: 50px;
    box-sizing: border-box;
    margin:10px;
}

.col-3 a{
    position: relative;
    text-align: center;
    color: var(--text-color);
    text-transform: uppercase;
    display:block;
    width: 100%;
    padding:0px;
    box-sizing: border-box;
    text-decoration: none;
    border:1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.col-3 img{
    max-width: 100%;
    width: 100%;
}

.event-details{
    padding:10px;
}

.event-title{
    font-size:.9em;
    display: block;
    font-weight: bold;
}

.event-city{
    font-size: 0.8em;
}

.event-date{
    box-sizing: border-box;
    background: rgba(0,0,0,0.3);
    color:#fff;
    border-radius: 0px 0px 0px 6px;
    font-size:13px;
    position: absolute;
    text-align: right;
    padding-right:10px;
    padding-left:10px;
    line-height: 30px;
    height: 30px;
    top:0px;
    right:0%;
}

/**
 *  Profile
 */

.profile-box{
    margin-top: 0px;
    background:#333 no-repeat center;
    background-size:cover;
    color:#fff;
    text-shadow: 0px 1px 2px rgba(0,0,0,0.8);
}

.profile-overlay{
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,0.75+100 */
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.75) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#bf000000',GradientType=0 ); /* IE6-9 */
    padding-top:250px;
    padding-bottom: 50px;
}

.profile{
    vertical-align: middle;
    display: inline-block;
}

.profile-name{
    vertical-align: middle;
    display: inline-block;
}

.profile-pic{
    margin-right: 30px;
    vertical-align: middle;
    display:inline-block;
    width:96px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.75);
    border: 1px solid #fff;
}

.mini-pic{
    width:42px;
    border-radius:var(--border-radius);
    margin-right:15px;
    overflow: hidden;
}

/**
 *
 */

.template-customize{
    position: fixed;
    top:90px;
    right:0px;
    background: #fff;
    z-index: +99999999999;
    border-radius: 6px 0px 0px 6px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
    padding:12px;
    color:#333;
}

.template-customize label{
    width:100%;
    display:block;
}

.template-customize label>input{
    display: inline-block;
    background: attr(value);
    padding: 0px;
    border:none;
    outline: none;
    width:36px;
    height: 36px;
    margin:0px;
    padding:5px;
    overflow: hidden;
    vertical-align: middle;
}

.template-customize.closed>.content{
    display:none;
}

.close-button{
    font-size: 24px;
    float:right;
}

.closed>.close-button{
    display:none;
}

.content{
    width:220px;
}

.button{
    width: 72px;
    height: 36px;
    width:100%;
    box-sizing: border-box;
    vertical-align: middle;
}

.hamburguer{
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display:none;
    padding:9px;
    margin-top:3px;
    padding-bottom: 14px;
    width:50px;
    line-height: 5px;
}
.hamburguer>.line{
    border-bottom: 2px solid var(--navbar-text-color);
    display: inline-block;
    width:100%;
}

.mobile-logo{
    text-transform: uppercase;
    display:none;
    padding:8px;
}
.nav>#menu-heading>a{
    font-weight: bold;
    font-size: 1.1em;
}
.contact-form.row {
    font-size: 1.4rem;
}
@media(max-width:900px){

    #menu-heading{
        display:none;
    }

    .hamburguer{
        display:inline-block;
        float:right;
    }

    .nav-menu{
        display:none;
    }

    .nav.nav-menu>li,
    .nav.nav-menu>li>a{
        display:block;
        width:100%;
    }

    .nav-menu.open{
        display:block;
    }

    .mobile-logo{
        display: inline-block;
    }

    .container{
        max-width: 100%;
    }
    .col-3{
        width:50%;
        flex: 0 0 calc(50% - 10px);
    }
    .profile{
        text-align: center;
        width:100%;
    }
    .profile-box{
        width:100%;
    }
    .profile-pic{
        margin-top:180px;
        text-align: center;
        display: block;
        margin: 0 auto;
        margin-bottom: 15px;
    }
    .social-nav{
        border-top:1px solid var(--border-color);
        width:100%;
        text-align: center;
        float: none;
    }
    #agenda{
        margin-bottom: 120px;
    }

    .template-customize{
        margin-top: 180px;
    }

}
@media (orientation: portrait){
    footer {
        padding: 30px 0px;
        background: #ddd;
        margin-bottom: -60px;
        text-align: center;
    }
    .contact-form.row a {
        display: block;
        margin-bottom: 30px;
    }
    h1.header {
        font-size: 2rem;
        border-bottom: 0px;
        margin-bottom: -10px;
        margin-left: -2px;
    }
}