#content-wrapper{
    display: flex;
    flex-wrap: wrap;    
    align-items: center;
}


#featured{
   width: 100%;
   max-height: 500px;
    object-fit: cover;
    cursor: pointer;
    border:1px solid rgba(62,62,62,0.26);
    border-radius: 5px;
    
    
}
.column{
    padding: 5px;
    
}
.thumbnail{
    
    object-fit: cover;
    width: 25%;
    cursor: pointer;
    margin: 5px;
    border: 1px solid rgba(128,128,128,0.34);
}

.thumbnail:hover{
    opacity: 0.7;
}
.active{
    opacity: 1;
    
}
#slide-wrapper{
    max-width: 100%;
    display: flex;
    min-height: 100px;
    align-items: center;
}
#slider{
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
}
.arrow{
    height: 30px;
    width: 30px;
    cursor: pointer;
    transition: .3s;
}
.arrow:hover{
    opacity: .5;
    width: 33px;
    height: 33px;
}
.kay{
    flex-direction: row;
}


@media only screen and (max-width: 800px) {
   
    #featured{
        width: 200%;
    }
      .kay{
    flex-direction: column;
}
}




