@charset "UTF-8";
/* CSS Document */

* {box-sizing: border-box}

body {
	margin: 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #363636;
	line-height: 36px
}
a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  border: solid 1px #3a6f90;
  margin-bottom: 20px;
  background-color: rgba(55, 138, 188, 0.8);
  padding: 10px 20px;
  transition: all 1s ease
  }
a:hover {
  border:solid 1px #3a6f90;
  background-color: rgba(55, 138, 188, 0.4); 
  transition: all 1s ease
  }
.quotes {width: 100%;
  max-width: 900px;
  margin: auto;
  display: none;
  text-align: center
}
#quote-box {
  font-size: 18px;
  display: none;
  margin: 3% auto;
  width: 80%;
  max-width: 700px;
  height: 170px;
  padding: 30px 40px;
  background-color: rgba(45, 97, 127, 0.8);
  border-top: solid #FFF 2px;
  border-bottom: solid #FFF 2px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .2em;
  text-shadow: 0px 0px 4px #fff
}  
.quotes:first-child {
  display:block
}
  
@media only screen and (min-width: 640px) {
 #quote-box {
   display:block
  }
 #quote-box {
   height:170px
  }
}
@media only screen and (min-width: 730px) {
 #quote-box {
   font-size:21px
  }
} 
@media only screen and (min-width: 805px) {
 #quote-box {
   height:170px
  }
}  
.quote-break {
  padding: 19px 0px 0px 0px
}
@media only screen and (max-width: 795px) {
  .quote-break {
    padding: 0px 0px 0px 0px
  }
}
