body{
	background-color: #fff;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	margin: 0;font-size: 15px;
}

h1{font-family: 'Titillium Web', sans-serif;size: 40px;
}

div#header {
	background-color: #ffffff;
	color: #fff;
	width: 98%;
	margin: 0 auto;
	/*border: 2px solid black;*/
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
}

div#nav {
	background-color: #white;
	width: 98%;
	margin: 0 auto;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;

}

div#footer {
	background-color: #fff;
	width: 98%;
	margin: 0 auto;
    text-align: center;
    font-size: small;
	padding-top: 5px;
	padding-bottom: 5px;
}

div#sidebar {
	background-color: #white;
	width: 19%;
	padding-left: 3%;
	float:left;
	height:100%;

}

div#content {
	background-color: #fff;
	width: 98%;
	margin: 0 auto;
  text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
}
* {box-sizing:border-box}

div#about {
  background-color: #fff;
  width: 60%;
  margin: 0 auto;
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 20px;
  padding-right: 200px;
  color:#808080;
}
div#aboutsmall {
  background-color: #fff;
  width: 90%;
  margin: 0 auto;
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
  color:#808080;

}
/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: center;
  margin: auto;
  width: 100%
 
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0%;
  border-radius: 3px 0 0 3px;
  color: #000000
}

/* Position the "prev button" to the left */
.prev {
  left: 18%;
  border-radius: 3px 0 0 3px;
   color: #000000

}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

p.blueshadow{background: white;
  margin-top: 20px;
  margin-bottom: 20px;
}

div#bigfooter {
	position: fixed;
	bottom: 0px;
	font-size: x-small;
	padding-left: 4px;
	padding-bottom: 4px
}

/*scroll bar*/
div#Journey {
	height:700px;
	overflow-y: scroll;
}
/* unvisited link */
a:link {
  color: #000000;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #737373;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #000;
  background-color: #a6a6a6;
  text-decoration: none;
}

/* This option elimiate the background color in the sidebar.*/
.nobackground a:hover {
  color: #000;
  background-color: #a6a6a6;
  text-decoration: none;
}

/*This code makes images resize when the dic'sare measured in %*/
img {
	max-width: 100%;
	height: auto;
}


/*contact page*/
* {
  box-sizing: border-box;
}

/* Style inputs */
input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* Style the container/contact section */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 10px;
}

/* Create two columns that float next to eachother */
.column {
  float: left;
  width: 50%;
  margin-top: 6px;
  padding: 20px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}


/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

/*the following is for iphone 11 2019*/
/*this is for tablet and computer*/
@media screen and (max-width: 3000px) and (min-width: 829px){
	div#large {display: block;}
	div#mobile {display: none;}

	div#content {
		width: 79%;
	    padding-left: 1%;
	    float:left;
	}

}

/*this is for small smart phont*/
@media screen and (max-width: 828px){
	div#large {display: none;}
	div#moblie {display: block;}
}
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
}
