/* *********************************************************************************************************** */
/* UNIVERSAL STYLE                                                                                             */
/* *********************************************************************************************************** */
body{
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: 'Raleway',sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #363636;
}

p{
    line-height: 190%;
}

a{
    text-decoration: none;
    color: teal;
    
}

/* *********************************************************************************************************** */
/* MENU STYLE                                                                                                  */
/* *********************************************************************************************************** */
#menu{
    background-color: #16a085;
    height: 100px;
    
}
#menu ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}
#menu li{
    display: inline-block;
}
#menu a{
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    line-height: 100px;
    color: white;
    
    padding: 0 40px;
    border: none;
    display: block;
}

#menu a:hover{
    background-color: #1abc9c;
}

/* *********************************************************************************************************** */
/* HEADER STYLE                                                                                                */
/* *********************************************************************************************************** */
#header{
    padding: 60px 0px 40px 0px;
    background-color: #333333;
    text-align: center;
}
#header h1{
    letter-spacing: 0.1en;
    font-size: 44px;
    color: #ffffff;
    
}

#header p{
    letter-spacing: 0.1en;
    color: white;
}
/* *********************************************************************************************************** */
/* BANNER STYLE                                                                                                */
/* *********************************************************************************************************** */
#banner {
    height: 300px;
}
#banner img{
    width: 100%;
    height: 300px;
}
/* *********************************************************************************************************** */
/* PAGE STYLE                                                                                                  */
/* *********************************************************************************************************** */
#page{
    padding: 20px;
    min-height: 400px;
}
#page h2{
    font-size: 18px;
    color: #16a085;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 400;
}
/* CONTENT */
#content{
    float: left;
    width: 70%;
}

/* SIDEBAR */
#sidebar{
    float: right;
    width: 25%;
}
/* LISTS */
ul.styled{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul.styled li{
    padding: 14px 0;
    border-top: 1px solid #e5e5e5;
}
/* FOOTER */
#footer{
    clear: both;
    background-color: #1e1b1a;
    width: 100%;
    height: 340px;
    padding-left: 22px;
    padding-top: 25px;
}
#footer h2{
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}
#footer p{
    color: #adadad;

}
#footer a{
    color: #adadad
}
#box-1{
    width: 30%;
    float: left;
    padding-right: 30px;
}
#box-2{
    width: 30%;
    float: left;
    padding-right: 30px;
}
#box-3{
    width: 30%;
    float: right;
    padding-left: 30px;
}
/* *********************************************************************************************************** */
/* COPYRIGHT STYLE                                                                                             */
/* *********************************************************************************************************** */
#copyright{
    width: 100%;
    height: 130px;
    clear: both;
    text-align: center;
    padding-top: 55px;
    background-color: #16a085;
}
#copyright p{
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
}
/* *********************************************************************************************************** */
/* GALLERY STYLE                                                                                               */
/* *********************************************************************************************************** */
#gallery img{
    width: 120px;
    margin: 12px;
    -moz-transition: -moz-transform 0.5s ease-in;
	-webkit-transition: -webkit-transform 0.5s ease-in;
	-o-transition: -o-transform 0.5s ease-in;
    transition: transform 0.5s ease-in; 
}
#content img:hover{
    -moz-transform: scale(3);
    -webkit-transform: scale(3);
    -o-transform: scale(3);
    transform: scale(3);
}