@charset "utf-8";
/* CSS Document */

  body, html {
    height: 100%;
	background-color: #000;
	padding: 0;
	margin: 0;
	font: 400 15px/1.8 Lato, sans-serif;
	color: #777;
  }
  
  .container-fluid {
	padding-right: 100px;
	padding-left: 100px;
	padding-top: 50px;
	padding-bottom: 50px;
  }
  
  @media  (max-width: 768px) {
  .container-fluid { 

	padding-right: 20px;
	padding-left: 20px;
  }

}
  
  h1 {
    color:#05b0ff;
	text-align:center;
	margin-top: 0;
	margin-bottom: 20px;
  }
  
  a a:hover, a:visited, a:link, a:active {
    text-decoration: none;
  }

  .bg-black { 
    background-color:#000;
    color:#bbb;
  }
  

  	  
  .bg-blue { 
    background-color:#05b0ff;
    color:#fff;
  }
  
  .bg-blue h1 {
	color: #000;
  }
  
  .bg-white { 
    background-color: #ffffff;
    color: #555555;
  }
  
  .content-b {
    position:relative;
	vertical-align:middle;
	text-align:center;
	color:#000;
  }
 
  footer {
    background-color: #000;
    color: #f5f5f5;
    padding: 32px;
  }
  
  footer a {
    color: #05b0ff;
  }
  
  footer a:hover {
    color: #777;
    text-decoration: none;
  }  
  
  .button {
    background-color: #fff;
    border: thin;
    color: #f00;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
	margin: 0 auto;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
	width: 100%;
  }

  .button:hover {
    background-color: #f00;
    color: white;
	text-decoration: none;
  }

  .parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
	background-size: cover;
	width: 100%; 	
  }

  .content-quote {
	width: 50%;
    padding-right: 55px;
    padding-left: 65px;
	padding-top: 50px;
	padding-bottom: 30px;
  }


  blockquote{  
    display:block;
    padding: 50px 50px 50px 50px;
    position: relative;
    right: 10px;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.2;
    text-align: justify;
    border:none;
    min-width: 400px;
  }

  blockquote::before{
    content: "\201C"; /*Unicode for Left Double Quote*/
    font-family: Georgia, serif;
    font-size: 80px;
    font-weight: bold;
    position: absolute;
    left: 0px;
    top:40px;
  }

  blockquote::after{
    /*Reset to make sure*/
    content: "";
  }

