/* Global Styles */
html,
body {
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.4px;
  font-size: 0.9em;
    margin: 0;
    padding: 0;
    background: #333;
    color: #fff;
  height: 100%;
  width: 100%;
text-align: center;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 0.4px;
} 
body .image
    {
position: fixed;
  height: 100%;
  width: 100%;
  z-index: 0;
 
     background-image: url('bg.jpg');  
     /*
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    background-attachment: fixed;*/
     
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
    }
    
body:before { 
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  z-index: 100;
  -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
  -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.8);
  box-shadow: 0px 0px 10px rgba(0,0,0,.8);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}
:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  z-index: 900;
}

@media (min-width: 768px) {
	.container {
	  width: 750px;
	}
}
@media (min-width: 992px) {
	.container {
	  width: 970px;
	}
}
@media (min-width: 1200px){
	.container {
	  width: 1170px;
	}
}
	.col-sm-6 {
	  padding-left: 3%;
	  padding-right: 3%;
	  padding-bottom: 3%;
	  text-align: center;
	}

@media (min-width: 768px){
	.col-sm-6 {
	  width: 44%;
	}
	.col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
	  float: left;
	}
}
.clearfix {clear: both;
  padding-top: 50px; }

.content-header {
	padding-top: 10%;
	padding-bottom: 10%;
  font-size: 1.1em;
    letter-spacing: 0.5px;
}
.btn {
	display: block-inline;
	color: #000 !important;
padding: 2px 3px;
margin: 5px;
background: rgba(255,255,255,0.4);
}
big{
	font-weight: bold;
}
h1 a,h2 a, h3 a ,h4 a,h5 a, a.btn  {
  text-decoration: none !important;
}

a {
  text-decoration: none;
    color: #777;
}
a:hover, a:focus, a:active {
    color: #333;
}
.content-header p {
	max-width: 560px;
	margin: auto;
	padding: 5px 0;
}

.col-sm-6 p {
	max-width: 370px;
	margin: auto;
	padding: 5px;
}



footer {
  width: 100%;
  min-height: 50px;
  text-align: center;
  color: #888;
  font-size: 0.9em;
	padding-top: 10%;
}



 .animate {
            -webkit-animation: fadein 4s; /* Safari and Chrome */
            -moz-animation: fadein 4s; /* Firefox */
            -ms-animation: fadein 4s; /* Internet Explorer */
            -o-animation: fadein 4s; /* Opera */
            animation: fadein 4s;
        }



        @keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* Firefox */
        @-moz-keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* Safari and Chrome */
        @-webkit-keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }

        /* Internet Explorer */
        @-ms-keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }​

        /* Opera */
        @-o-keyframes fadein {
            from { opacity: 0; }
            to   { opacity: 1; }
        }​