body{
    padding-top: 100px;

}

header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 100px;
    background: rgb(0, 0, 0, 0.6);
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
  }
  
  header .logo {
    color: #fff;
    height: 50px;
    line-height: 50px;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    float: left;
  }

  header .logo a{
    color: #fff !important;
  }
  
  
  header nav {
    float: right;
  }
  
  header nav ul {
    margin: 0;
    padding: 0;
    display: flex;
  }
  
  header nav ul li {
    list-style: none;
  }
  
  header nav ul li a {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 18px;
  }
  
  header nav ul li a.active,
  header nav ul li a:hover {
    color: #fff;
    background: #7c657c;
  }
  .menu-toggle {
    color: #fff;
    float: right;
    line-height: 50px;
    font-size: 24px;
    cursor: pointer;
    display: none;
  }

.example::-webkit-scrollbar {
    display: none;
  }

#content-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
    align-items: center;
    overflow-x : hidden;
}

.column{
	width: 600px;
	padding: 10px;

}

#inside{
  width: 500px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}
#featured{
	max-width: 500px;
	max-height: 400px;
	cursor: pointer;
  border: 1px solid black;
}

.thumbnail{
	object-fit: cover;
	max-width: 180px;
	max-height: 100px;
	cursor: pointer;
	opacity: 0.5;
	margin: 5px;
  border: 1px solid black;
}

.thumbnail:hover{
	opacity:1;
}

.active{
	opacity: 1;
}

#slide-wrapper{
	max-width: 500px;
	display: flex;
	min-height: 100px;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

#slider{
	width: 440px;
	display: flex;
	flex-wrap: nowrap;
  overflow-x: hidden;
}

.arrow{
	width: 30px;
	height: 30px;
	cursor: pointer;
	transition: .3s;
}

.arrow:hover{
	opacity: .5;
	width: 35px;
	height: 35px;
}

.container::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

.boton{
  margin-top: 20px;
}

.botonWeb{
  margin-top: 20px;
  background: #7c657c;
  border-color: #7c657c;
}
footer {
  background: #393e46;
  padding-bottom: 20px;
  padding-top: 20px;
  margin-top: 30px;
  
}

.footer-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap-reverse;
  color: white;
  font-size: 17px;
}

@media screen and (max-width: 880px) {

 #inside{
  max-width: 100%;

 }

 #featured{
   max-width: 300px;
 }

  
 #slide-wrapper{
   max-width: 300px;   
 }

}

@media (max-width: 991px) {
  header {
    padding: 0 20px;
    position: fixed;
    background: rgb(0, 0, 0, 0.9);
  }
  .menu-toggle {
    display: block;
  }
  header nav {
    position: absolute;
    width: 50%;
    height: calc(100vh - 50px);
    background: #333;
    top: 50px;
    left: -100%;
    transition: 0.5s;
    text-align: center;
  }
  header nav.active {
    left: 0;
  }
  header nav ul {
    display: block;
  }
  header nav ul li a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}