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

html{
  height: 100vh;
}

body{
  padding: 0px;
  margin: 0px;
  background: #000000;
  font-family:  "Roboto Condensed", sans-serif;
  color: #fff;
  
}
a {
	color: #ffffff;
	text-decoration: none;
	font-weight:400;
}
a:hover {
  background-color: #f89c27; /* Changes the link to red on hover */
}
.topbox {
  background: #171717;
  margin-left: auto;
  margin-right: auto;
  margin-top:10px;
  width: 100%;	
  max-width: 990px; /* Optional: set a specific width */
	padding-top:20px;

}
.bottombox {
  background: #171717;
  margin-left: auto;
  margin-right: auto;
  margin-top:10px;
	padding-bottom:20px;
  width: 100%;	
  max-width: 990px; /* Optional: set a specific width */
	height: 60px;

}
.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;	
  max-width: 400px; /* Optional: set a specific width */
}
.award {
  width: 70%;	
  max-width: 380px; /* Optional: set a specific width */
}
h1, h2{
  font-family: 'Fascinate', cursive;
}
.accordion{
  max-width: 990px;
  background: rgba(0,0,0,0.10);
  height: 900px; /* desktop image height */
  margin: 10px auto;
  display: flex;
  box-shadow: 0px 20px 30px rgba(0,0,0,0.47);
  flex-direction: row;
  cursor: pointer;
  
}

.box{
  position: relative;
  height: 100%;
  flex: 1;
  background-position: center;
  background-size: cover;
  transition: .4s;
  box-shadow: 0px 20px 30px rgba(0,0,0,0.3);
}

.box:hover{
  flex: 7;
  height: 900px;
} 

/* Background images */
.a1{
  background-image: url("img3.jpg");
}
.a2{
  background-image: url("img2.jpg");
}
.a3{
  background-image: url("img1.jpg");
}
.a4{
  background-image: url("img4.jpg");
}
.a5{
  background-image: url("img5.jpg");
}
/* End Background images */

.blurb {
	line-height:1.5;
	padding-bottom:10px;
	font-size:14px;
}
.footer {
	line-height:1.5;
	padding-top:10px;
	font-size:12px;
}
p{
  font-weight: 300;
  font-family: "Roboto Condensed", sans-serif;
  margin: 0px;
}

.text{
  position: absolute;
  bottom: 0;
  opacity: 0;
  padding: 40px;
	text-align: right;
	margin-left: auto;
}

.box:hover .text{
  opacity: 1;
}

h1{
  width: 300px;
  text-align: center;
  margin: 100px auto 20px auto;
}

.roboto-condensed-font {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.35px;
}

@media screen and (max-width: 1200px) 
  and (-webkit-min-device-pixel-ratio: 2) 
  and (orientation: portrait) 
{
  body{
    margin: 0px;
  }
	.blurb {font-size:32px;}
	.footer {font-size:19px;}
	.text {font-size:32px;text-align: left;}
	.logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 70%;
		max-width: 666px;/* Optional: set a specific width */
}
	.award {
		width: 40%;
		max-width: 999px;
		margin-left:auto;
	}
  .accordion{
    flex-direction: column;
    height: 1400px;
    box-shadow: none;
  }
  .box{
    box-shadow: none;
    background-position: center;
  }
  .box:hover{
    flex: 7;
  }
}
