	 /*NAV BAR*/
*{
		  @import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
		  
	    padding: 0;
	    text-decoration: none;
	    list-style: none;
	    box-sizing: border-box;
            flex-wrap: wrap;
	  }
    a {
        color: white important!;
        text-decoration: none;
        background: transparent;
    
    }
	  body{
	    font-family: 'Poppins', sans-serif;
	  }
	  nav{
	    background: black;
	    height: 80px;
	    width: 100%;
	  }
	  label.logo{
	    color: white;
	    font-size: 35px;
	    line-height: 80px;
	    padding: 0 100px;
	    font-weight: bold;
	  }
	  nav ul{
	    float: right;
	    margin-right: 20px;
	  }
	  nav ul li{
	    display: inline-block;
	    line-height: 80px;
	    margin: 0 5px;
	  }
	  nav ul li a{
	    color: white;
	    font-size: 17px;
	    padding: 7px 13px;
	    border-radius: 3px;
	    text-transform: uppercase;
	  }
	  a.active,a:hover{
	    background: #1b9bff;
	    transition: .5s;
	  }
	  .checkbtn{
	    font-size: 30px;
	    color: white;
	    float: right;
	    line-height: 80px;
	    margin-right: 40px;
	    cursor: pointer;
	    display: none;
	  }
	  #check{
	    display: none;
	  }
	  @media (max-width: 952px){
	    label.logo{
	      font-size: 20px;
	      padding-left: 50px;
	    }
	    nav ul li a{
	      font-size: 16px;
	    }
	  }
	  
	  section{
	    background-size: cover;
	    height: calc(100vh - 80px);
	  }
	  a.log {
	      color: white important!;
	      text-decoration: none;
	  }

	  a.log:hover, a.log:focus {
	      color: white;
	      text-decoration: none;
		  background: transparent;
	  }
	  @media (max-width: 858px){
	    .checkbtn{
	      display: block;
	    }
	   nav ul{
	      position: fixed;
	      width: 100%;
	      height: 100vh;
	      background: black;
	      top: 80px;
	      left: -100%;
	      text-align: center;
	      transition: all .5s;
	    }
	    nav ul li{
	      display: block;
	      margin: 50px 0;
	      line-height: 30px;
	    }
	    nav ul li a{
	      font-size: 20px;
	    }
	    a:hover,a.active{
	      background: none;
	      color: white;
	    }
	    #check:checked ~ ul{
	      left: 0;
	    }
		form{
			width: 100%;
		}
	  }

    img {
      display: block;
      max-width: 100%;
      
    }

    .images {
      width: -webkit-fill-available;
      display: flex;
      align-items: center;
      margin: auto 0;
      margin-left: auto;
      margin-right: auto;
      justify-content: space-evenly;
    }

    @media screen and (max-width: 768px) {
      .images {
        flex-direction: column;
        padding: 0;
      }
    }
	.imgButton{
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	button {
	  background-color: orange; 
	  border: none;
	  color: black;
	  padding: 10px;
	  text-align: center;
	  text-decoration: none;
	  display: inline-block;
	  font-size: 16px;
	  margin: 4px 2px;
	  cursor: pointer;
	  border-radius: 12px;
	}
	
	/* Footer of the page */
	.footer {
	   left: 0;
	   bottom: 0;
	   width: 100%;
	   color: black;
	   text-align: center;
	   font-family: "Open Sans", sans-serif;
	}
	.fa {
	  padding: 15px;
	  font-size: 30px;
	  width: 40px;
	  text-align: center;
	  text-decoration: none;
	  margin: 5px 2px;
	  padding-left: 2px;
	  padding-right: 2px;
	  padding-top: 4px;
	  padding-bottom: 4px;
	}
	.fa:hover {
	    opacity: 0.7;
	}
	.fa-instagram {
	  background: #125688;
	  color: black;
	  border-radius: 4px;

	}
	.footer-list{
		text-align: center;
		color: white;	
 	   font-family: "Open Sans", sans-serif;
	}
	
	.footer-list ul { 
		text-align: center;
		color: white;	
 	   font-family: "Open Sans", sans-serif;
	   list-style-type:none 
			
	}
	.footer-list li a { 
		text-align: center;
		color: white;				
	}
	
    @media screen and (max-width: 858px) {
		.footer-list ul { 
			text-align: center;
			color: white;	
		   list-style-type:none;
			
		}
		.footer-list li a { 
			text-align: center;
			color: white;	
			
		}
		.footer-list{
			text-align: center;
			color: white;	
		}
      
    }
	/* Slideshow */ 
    .img_center {
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 50%;
    }

    h3 {
        color: white;
    }
  * {box-sizing:border-box}

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

  /* 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;
  }

  /* 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}
  }

  @import url(https://fonts.googleapis.com/css?family=Open+Sans);

body{
  background: black;
  font-family: 'Open Sans', sans-serif;
}

.search {
  width: 100%;
  position: relative;
  display: flex;
  color: black;
  padding-top: 50px;
}

.searchTerm {
  width: 100%;
  border: 3px solid white;
  padding: 5px;
  height: 40px;
  border-radius: 30px;
  outline: none;
  color: black;
  background-color: black;
  
}

.searchTerm:focus{
  color: white;
  font-size: 18px;
  
}

.searchButton {
  width: 40px;
  height: 36px;
  border: 1px solid white;
  background: black;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-size: 20px;
  
}

/*Resize the wrap to see the search bar change!*/
.wrap{
  width: 40%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 100px;
}
  