@charset "utf-8";
/* CSS Document */
body{
	font-family:Arial, Helvetica, sans-serif;
}
.top {
	padding:0px;
    /* The image used */
    background-image:url(images/img_parallax.jpg);

    /* Set a specific height */
    min-height: 500px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	
}

ul.topnav {
	display:block;
	width:100%;
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  background-color:rgba(250,150,0,0.75);
  position:fixed;
  left:0px;
  top:0px;
  z-index:999;
}

ul.topnav li {float:left;}

ul.topnav li a {
  display: inline-block;
  height:100%;
  color: #f2f2f2;
  text-align: center;
  padding: 22px 16px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 17px;
}

ul.topnav li a:hover {background-color: rgba(250,150,0,1);}

ul.topnav li.icon {display: none;}

.logo{
	margin:5px;
}

.caption{
	margin:0px;
	display:flex ; 
	flex-direction:row ; 
	flex-wrap:wrap ; 
	//justify-content:center ;
	//justify-content: space-between ; 
	justify-content: space-around ;
	//align-items:center ; 
	align-content:center;
	//background-color:#FC0;
	width:100%;
	height:500px;
}
.contain_title{
	background-color:#F90;
	text-align:center;
	border:1px solid #F90;
	font-size:36px;
	width:100%;
	height:auto;
	color:#FFF;
}
.contain{
	width:90%;
	padding-left:5%;
	padding-right:5%;
	height:auto;
	overflow:auto;
	margin-top:0px;
	font-size:24px;
	display:flex ; 
	flex-direction:row ; 
	flex-wrap:wrap ; 
	align-content:center;
}

.cleft{
	width:40%;
	padding:5%;
	height:100%;
	text-align:center;

}
.cleft img{
	width:100%;
}
.cright{
	width:40%;
	padding:5%;
	height:100%;
}

.contact{
	width:40%;
	padding:5%;
	height:auto;
	background-image:url(images/redborder.png);
	background-repeat:no-repeat;
	background-position:right;
	background-size:contain;
	text-align:right;
}
.contact_info{
	width:40%;
	padding:5%;
	height:100%;
	font-size:14px;
}

@media screen and (max-width:680px) {
  ul.topnav li:not(:first-child) {display: none;}
  ul.topnav li.icon {
    float: right;
    display: inline-block;
  }
}

@media screen and (max-width:680px) {
  ul.topnav.responsive {position: relative;}
  ul.topnav.responsive li.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  ul.topnav.responsive li {
    float: none;
    display: inline;
  }
  ul.topnav.responsive li a {
    display: block;
    text-align: left;
  }
  
  .contain_title{
	background-color:#F90;
	text-align:center;
	border:1px solid #F90;
	font-size:25px;
	width:100%;
	height:auto;
	color:#FFF;
	}
  
  .contain{
	width:98%;
	padding-left:1%;
	padding-right:1%;
	height:auto;
	overflow:auto;
	margin-top:20px;
	font-size:16px;
	display:block;
	}
	.contain img{
	width:70%;
	}
	.cleft{
		width:90%;
		padding:5%;
		height:100%;
	
	}
	.cright{
		width:90%;
		padding:5%;
		height:100%;
	}
	
	.contact{
		width:90%;
		padding:5%;
		height:auto;
		background:none;
		text-align:center;
	}
	.contact_info{
		width:90%;
		padding:5%;
		height:100%;
		font-size:14px;
	}
}

