.file-upload-sec{
  background-color: #f9f9f9;
  padding: 50px;  
}

.file-upload {
  display: none;
  width: 60%;
  margin: 0 auto;
}

.file-upload-label{
  display: block;
  position: relative;
  background: var(--maincolor);
  color: #fff;
  font-size: 18px;
  text-align: center;
  width: max-content;
  padding: 7px 30px;
  cursor: pointer;
  border-radius: 50px;
  margin: 10px auto 0;
  margin-bottom: 20px;
}




#secimages{
  display: flex;
  align-items: center;
  width: 400px;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  border: 1px solid #f9f9f9;
  position: relative;
  flex-wrap: wrap;
  margin-top: 20px;
}

#secimages figure{
  width: 30%;
  margin-right: 15px;
}

#secimages figure img{
  width: 200px;
  height: 200px;
  object-fit: cover;


}

#secimages figure figcaption{
  display: none;
}

@media only screen and (max-width: 600px) {
  #secimages{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  #secimages figure{
    width: 40%;
  }

  #secimages figure img{
  width: 100px;
  height: 100px;
  object-fit: cover;


}
}



