/*reset browser css*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/*content basic style*/
.container {
	margin: auto;
	max-width: 1100px;
	padding: 0 20px;
	overflow: auto;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} 

h1, h2 {
    font-family: Trebuchet MS;
}

p {
    font-family: Trebuchet MS;
}

a {
    	text-decoration: none;
}

.btn {
    display: inline-block;
    color: #fff;
    background: #444;
    font-family: Trebuchet MS;
    font-size: 20px;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn:hover {
    background: #1ff218;
}

.btn:active {
    background: #13a30f;
}

/*navbar*/
#navbar {
    color: #fff;
	overflow: auto;
	background: #333;
	padding: 0.5rem;
	font-family: Trebuchet MS;
	position: sticky;
    top: 0;
    z-index: 10;
}

#navbar ul {
	list-style: none;
	float: right;
}

#navbar ul li {
	float: left;
} 

#navbar ul li a {
	color: #fff;
	display: flex;
	flex-direction: row;
	padding: 10px 20px;
	text-align: center;

	margin: 10px 0;
}

#navbar ul li a:hover {
	background: #1ff218;
	border-radius: 5px
}

#navbar h1 {
    padding-top: 15px;
    float: left;
}



@media only screen and (min-width: 800px) {
    .openbtn,
    .closebtn {
        visibility: hidden;
    }
}

.title {
    color: #1ff218;
}

.current {
	background: #444;
	border-radius: 5px
}

/*header*/

header {
    color: #fff;
    background: url("../img/showcase.jpg") no-repeat center center/cover;
    text-align: center;
    height: 600px;
}

header h1 {
    margin: 20px;
    font-size: 55px;
    margin-top: 170px;
}

header p {
    margin: 20px;
}

/*content*/

#content {
    color: #fff;
    background: #222;
}

#content p {
    margin: 25px 15px;
}

#content h2 {
    margin-top: 40px;
}

.guide-text {
    float: left;
    width: 50%;
    min-height: 300px;
    text-align: center;
}

.gallery-text {
    float: right;
    width: 50%;
    min-height: 300px;
    text-align: center;
}

.guide-img {
    background: url("../img/home_guide.jpg") no-repeat center center/cover;
    float: right;
    width: 50%;
    min-height: 300px;
    text-align: center;
}

.gallery-img {
    background: url("../img/home_gallery.jpg") no-repeat center center/cover;
    float: left;
    width: 50%;
    min-height: 300px;
    text-align: center;
}

/*guide*/

#guide {
    margin: 0 60px 30px 60px;
    background: #222;
}

#guide h2 {
    color: #1ff218;
    font-size: 30px;
    padding: 10px;
    text-align: left;
}

#guide p {
    color: #fff;
}

.guide-content {
    float: left;
    width: 50%;
}

.guide-vid {
    float: right;
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
}

/*gallery*/

#slideshow {
    position: relative;
    align-items: center;
    margin: 0 60px 30px 60px;
    padding: 30px;
    background: #222;

}

/* Position the image container (needed to position the left and right arrows)*/
.container {
  position: relative;
  width: 80%;
}

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

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

.next {
  right: 0;
  margin-right: 20px;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.caption-container {
  text-align: center;
  background-color: #fff;
  padding: 2px 16px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 16.66%;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

/*about*/

.about {
    color: #fff;
    background: #222;
    text-align: center;
    margin: 60px 60px 0 60px;
}

.about h1 {
    font-size: 50px;
    padding: 25px 0;
}

/*contact*/

#contact-form {
    background: #222;
    margin: 60px;
    padding: 50px 0;
}

#contact-form h1 {
    text-align: center;
    font-size: 2.5em;
    color: #fff;
    padding: 20px;
}

#contact-form form {
    text-align: center;
    font-family: Trebuchet MS;
    color: #fff;
}

#contact-form .btn {
    padding: 10px 50px;
    margin: 0 20px;
}

form .form-field {
    margin: 20px;
    padding: 0 200px;
}

form .form-field label {
    display: block;
    float: left;
    margin-bottom: 10px;
    font-size: 20px;
}
form .form-field input {
    height: 50px;
}

form .form-field textarea {
    height: 150px;
}

#contact-form .form-field input,
#contact-form .form-field textarea {
    width: 100%;
    font-size: 20px;
    margin-bottom: 10px;
}

#contact-form .form-field input:focus,
#contact-form .form-field textarea:focus {
    outline: solid 3px #1ff218;
}

.blank {
    flex: 1;
}

/*footer*/
footer {
    background: #444;
    margin-top: auto;
}

footer p {
	text-align: center;
	padding: 15px;
	color: #fff;
	font-family: Trebuchet MS;
}
	
footer .socialicons {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer ul {
    list-style: none;
    display: flex;
}

footer ul li {
    float: right;
}

footer ul li a {
    color: #fff;
    display: block;
	text-align: center;
	text-decoration: none;
	margin: 10px 0;
}

footer ul li a i {
    font-size: 30px;
    background: #444;
    padding: 0 15px 20px 15px;
}

footer .yt:hover {
    color: red;
}

footer .fb:hover {
    color: #1877F2;
}

footer .ig:hover {
    color: #fcaf45;
}

/*clear*/
.clear {
	clear: both;
}