/* .slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .slider {
    display: flex;
    overflow: hidden;
  }
  
  .slide {
    flex: 0 0 100%;
    display: none;
  }
  
  .slide img {
    max-width: 100%;
  }
  
  .content {
    text-align: center;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #555;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 15px;
    font-size: 16px;
  }
  
  .prev {
    left: 0;
    top: 500px;
  }
  
  .next {
    right: 0;
    top:500px;
  }
  
  .MAIN{
    display: flex;
    flex-direction: column;
    background-color: white;
  }
  .sub-content{
    background-color: rgb(230, 222, 214);
    display: flex;
    justify-content: space-around;
    padding: 10px;
  }
  .box{
    padding: 5px;
    box-shadow: 2px 2px 2px 4px grey;
  }
 */

.sub-content {
  display: flex;
  justify-content: space-around;
  padding: 10px;
}

.slider-container {
  position: relative;
  max-width: 80vw;
  margin: 0 auto;
}

.slider {
  display: flex;
  overflow: hidden;
}

.slidem {
  display: flex;
}

.box {
  display: flex;
  flex-direction: column;
  margin: 10px;
  background-color: #ffffff;
  border-radius: 8px;
  text-align: center;
  max-width: 130px;
}
.box img {
  max-height: 100px;
}

.box h5 {
  font-size: 1.4vw;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #eca012;
  color: rgb(255, 255, 255);
  border: none;
  cursor: pointer;
  padding: 10px 15px;
  font-size: 16px;
}

.prev {
  left: -30px;
}

.next {
  right: -30px;
}
.image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-content1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-content1 div {
  max-width: 70vw;
}

@media screen and (max-width: 680px) {
  .sub-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slider-container {
    max-width: 100%;
  }
  .slidem img {
    width: 50px;
  }
  .slidem div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .prev,
  .next {
    width: 0px;
  }
}

@media screen and (max-width: 410px) {
  .sub-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slider-container {
    max-width: 100%;
  }
  .slidem img {
    width: 20px;
  }
  .slidem div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .prev,
  .next {
    width: 0px;
  }
}

@media screen and (max-width: 350px){

  .sub-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slider-container {
    max-width: 100%;
  }
  
  .slidem div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .prev,
  .next {
    width: 0px;
  }

}
/* 
.gallery{
  font-family: arial;
  font-size: 3em;
  text-align: center;
  margin: 25px;
  padding: 50px;
  background-color: #b96e27;
  
  overflow: hidden;
}

#flexbox {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.column img {
  vertical-align: middle;
  margin-top: 8px;
  filter: grayscale(70%);
}

.column:nth-child(even) {
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .column {
    flex: 100%;
    max-width: 100%;
  }
} */


