*{
    padding: 0;
    margin: 0;
}
html{
    font-size: 16px;
}
body{
    background-color: #EDEDEE;
}
header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}
header>img{
    height: 7rem;
    margin: 0 2rem;
}
.content{
    width: 1170px;
    margin: auto;
    height: 900px;
}
nav{
    width: 100%;
    padding: 2rem 0;
    background-color: #BBE0F9;
    position: relative;
}
.search{
    width: 130px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url(../img/find.png);
    background-position: 10px 50%;
    background-repeat: no-repeat;
    transition: width 0.3s ease-in-out;
    padding:10px 30px;
}
.search:focus {
    width: 100%;
}
.line{
    margin-top: 1.5rem;
    color: white;
    background-color: white;
    width: 100%;
    height: 2px;
}
.smText{
    color: #717274;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    margin-top: 1.5rem;
    font-family: 'Karla', sans-serif;
}
footer{
    width: 100%;
    padding: 0 0 3rem 0;
}
.sponsorImg{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}
.sponsorImg>img{
    margin-right: 1rem;
}
.footerBottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
}


#toggle{
    display: none;
}
nav{
    width: 100%;
    padding: 1rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: #BBE0F9;
}
label{
    font-size: 30px;
    cursor: pointer;
    display: none;
}
.menu{
    list-style: none;
    display: flex;
    align-self: stretch;
    justify-content: flex-end;
    transition: all 0.3s;
}
.menu>div{
    margin: 0 10px;
    display: inline-block;
}
.menu>div>a{
    color: #7B777B;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Electrolize', sans-serif;
}
.menu>div>a:hover{
    color: white;
}
.logo{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 20%;
}



@media screen and (max-width: 1170px){
    .content{
        width: 100%;
    }
}

@media screen and (max-width: 960px){
    html{
        font-size: 10px;
    }
    .row-fluid{
        width: 100% !important;
    }
    .menu{
        display: block;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: all 0.6s;
    }
    .menu>div{
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 2vw 0;
        transition: all 0.3s;
        border-bottom: 1px solid #7B777B;
    }
    label{
        display: block;
    }
    .menu>div>a{
        width: 100%;
    }
    .menu>div:hover{
        background-color: #CEF5FF;
    }
    #toggle:checked +.menu {
        height: 180px;
    }

    .logo{
        position: absolute;
        left: 10px;
        top: 35px;
        display: inline-block;
        width: 15%;
    }
}
@media screen and (max-width: 768px){
    html{
        font-size: 8px;
    }
    .sponsorImg{
        display: none;
    }
    .footerBottom{
        display: none;
    }
    .smText{
        display: none;
    }
}
