/******CSS Document******/

/***----Site Style----***/

body {
  background-color: rgba(249,249,249,1.00);
  font-family: cairo, sans-serif;
  font-weight: 400;
  font-style: normal;
}
header{
  width: 100%;
}

h1{
  font-family: almaq-rough, sans-serif;
  font-size: 70px;
  font-weight: 300;
  color: rgba(255,0,0,1.0);
  text-align: center;
  margin: 0;
  padding-top: 0px;
  padding-bottom: 20px;
  text-shadow: 3px 3px 5px #000000;
}


h2{
  font-size: 40px;
  font-weight: 600;
  color: rgba(207,207,207,1.0);
  text-align: center;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  text-shadow: 2px 2px 3px #000000;
}

main{
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.hero-grid{
	display: grid;
	grid-template-columns: auto auto auto;
	grid-gap: 20px;
}
.navback{
	align-self: center;
	justify-self: end;
}
.navfwd{
	align-self: center;
	justify-self: start;
}
.hero img{
  display: block;
  max-height: 750px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.hero-grid a{
    text-decoration: none;
	color: rgba(192,192,192,1.00);
	font-size: 20px;
}

.col{
	
  font-family:Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
  color: rgba(128,128,128,1.00);
  line-height: 18px;
}

footer{
margin-top: 20px;
display: block;
}

footer img{
padding-left: 15px;
padding-right: 15px;
}

/***--Gallery  Style--***/

.gallery {
column-width: 250px;
column-gap: 20px;
}

.gallery img {
	width: 100%;
	padding-bottom: 15px;
}


/***                  ***/
/***-Navigation Style-***/
/***                  ***/

/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: rgba(249,249,249,1.00);
  position: relative;
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: rgba(153,153,153,1.0);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  background: rgba(249,249,249,1.0);
  font-size: 20px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  color: rgba(204,0,0,1.0);
}

/* Landscape Page Navigation */
nav{
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  background-color: rgba(249,249,249,1.00);
  font-family: cairo, sans-serif;
  font-weight: 400;
  font-style: normal;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    font-size: 20px;
}

li {
    float: left;
}

li a{
    display: block;
    padding-top : 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    color: rgba(153,153,153,1.00);
    text-decoration: none;
    text-align: center;
}

li a:hover {
    color: rgba(204,0,0,1.00);
}


/***                  ***/
/***---Popup Image----***/
/***                  ***/
.modal {
   display: none;
   position: fixed;
   margin:auto;
   z-index: 1;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   overflow: auto;
   background-color: rgba(127, 127, 127, 0.95);
}
.modalImage {
   max-width: 100%;
   max-height: 90%;
   display: block;
   margin: 0;
   position: absolute;
   top: 50%;
   left: 50%;
   -ms-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
}
#caption {
   margin: auto;
   display: block;
   width: 80%;
   max-width: 700px;
   text-align: center;
   color: #eee;
   padding: 10px 0;
   height: 150px;
   font-size: 24px;
   font-weight: bold;
}

/***                  ***/
/***---Media Calls----***/
/***                  ***/

/* Portrait */
@media (orientation: portrait) {
.col{
  width: 100%;
  float:left;
}
nav{
	display: none;
}
}


/* Landscape */
@media (orientation: landscape) {
.col{
  width: 50%;
  float:left;
  }
.topnav{
  display: none;
  }
}

/* SCREEN WIDTH */

@media (max-width:1024px){
h1{
  font-size: 70px;
  }	
}
@media (max-width:750px){
h1{
  font-size: 70px;
}
h2{
  font-size: 40px;
  padding-top: 30px;
  padding-bottom: 10px;
}
.hero img{
  display: block;
  max-height: 750px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

footer{
margin-top: 50px;
}
}

@media (max-width:600px){
h1{
  font-size: 50px;
}
.hero img{
  display: block;
  max-height: 750px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

}

@media (max-width:500px){

.col{
	width:100%;
   float:left;
}
h1{
  font-size: 50px;
  padding-bottom: 10px;
}
h2{
  font-size: 40px;
  padding-top: 30px;
  padding-bottom: 10px;
}
.hero img{
  display: block;
  max-height: 750px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
footer{
margin-top: 50px;
}
}