/* 
    Document   : style
    Created on : Sep 4, 2014, 11:36:19 AM
    Author     : Fastweb
    Description:
        Purpose of the stylesheet follows.
*/

root { 
    display: block;
}

body {
  padding-top: 80px;
}

h1, h2, h3, h4 {
    font-family: Oswald, Arial, sans-serif;
}
a {
    -webkit-transition: all 0.4s;
    -moz-transition: all  0.4s;
    -o-transition:all  0.4s;
    -ms-transition: all  0.4s;
    transition: all  0.4s;
}
a, a:hover {
    color: #1292cf; 
}
.container {
    max-width: 980px;
}

.navbar-styled {
    border-bottom: 2px solid #1292cf;
    height: 60px;
}

.logo {    
    color: #fff !important;
    font-family: Oswald, Arial, sans-serif;
    font-size: 28px;
}

.margin-div {
    height: 30px;
}

.photo-border {
    border: 2px solid #1292cf;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    height: 130px;
    margin: 0 0 30px 0;
    min-width: 203px;
    overflow: hidden;
    
    position: relative;
}

/* effect */
.photo-border img {
    display: block;
    position: relative;
    transition: all 0.2s linear;
}
.mask {
    min-width: 216px;
    height: 130px;
    max-width: 220px;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
        
    opacity: 0;
    background-color: rgba(0,0,0, 0.6);
    transition: all 0.4s ease-in-out;
    
}

.photo-border span {
    background-color: #1292cf;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    color: #fff;
    margin: 40px 0 0 0;
    padding: 10px;
    position: relative;
}

.photo-border:hover img {
    transform: scale(1.1);
}
.photo-border:hover .mask {
    opacity: 1;
}

.special-title{
    border-color: rgba(30, 30, 30, 0.2);    
    position: relative;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    margin: 15px 0;
    padding-bottom: 10px;
}	
.special-title:after{
    border-color: #1292cf;
    content: '';
    width: 70px;
    height: 0px;
    border-top-style: solid;
    border-top-width: 4px;
    position: absolute;
    left: 0;
    bottom: -2px;
}
.special-title[style="text-align: center;"]:after,
.special-title[style="text-align:center;"]:after{
    left: 50%;
    margin-left: -35px;
}

/* footer */
footer {
    background-color: #181818;
    min-height: 60px;
}

footer p {
    margin: 18px 0 20px 0;
    color: #999
}


/* Responsive: Portrait tablets and down */
@media screen and (max-width: 700px) {    
    .logo {
        font-size: 20px;
    }
    
    .navbar-styled {
        height: auto;
    }
    
    .photo-border {        
        max-width: 220px;
    }

}