/*img background for navbar */
.header-image {
    display: block;
    width: 100%;
    /* for height a px value is added in case the vh unit is not browser supported */
    height: 240px;
    height: 40vh;
    padding-left: 5%;
    padding-right: 5%;
    text-align: center;
    margin-bottom: 20px;
    background-position: center top;
    background: url("../img/case2.jpg") no-repeat center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

@media (max-height: 600px) {

    .header-image {
        /* fixed height is set for screen resolution of less than 600px to ensure there is a header 
        image of at least height 240px */
        height: 240px;
    }
}

.headline {
    padding: 70px 0;
    text-shadow: 3px 3px 1px #702828;   
}

@media ( min-width:410px ){
    .headline {
        padding: 85px 0;
    }
}

@media ( min-width:490px ){
    .headline {
        padding: 90px 0;
    }
}

.headline h1 {
    font-size: 30px;
    color: White;
    text-shadow: ;
    font-weight: 700;
}

.headline h2 {
    font-size: 20px;
    color: white;
    text-shadow: ;
    font-weight: 700;
}

.lead {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    margin-bottom: 20px;
    font-size: 21px;
    text-align: justify;
    font-weight: 300;
    line-height: 1.4;
}

/*text format */
 h2 {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-bottom: 10px;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: green;
}

 h3 {
    margin-top: 20px;
     margin-left: 30px;
     margin-bottom: 20px;
    margin-bottom: 10px;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: green;
}

h3 {
  font-style: italic;
}

/*images */
.featurette-image.pull-right {
    margin-left: 40px;  
}

.pull-right {
    float: right !important;
}

.img-responsive{
display: block;
max-width: 100%;
height: auto;
}

img {
    vertical-align: middle;
}
img {
    border: 0;
}


/*footer :) */

.footer {
    display: block;
    width: 100%;
  
    text-align: center;
    background: url("") no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
footer {
  
    margin-top: 20px;
    padding: 0;
}
footer p {
    margin: 30px;
}
.col-lg-13 {
    color: #777;
  
}

