/* ################## GALLERY WHAT WE DO ############ */
.accordion-container {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-accordion {
  width: 90%;
  max-width: 1440px;
  height: 70vh;
  display: flex;
}

.accordion-item {
  height: 100%;
  flex: 1;
  border: 2px solid #000;
  box-shadow:0px 0px 15px 2px rgba(0,0,0,0.2);
  transform: skew(-5deg);
  cursor: pointer;
  position: relative;
  transition: flex 0.3s;
}

.accordion-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion-item p {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.8em;
  text-transform: uppercase;
  font-family: "Glacial";
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  transform: rotate(-90deg);
  transform-origin: top left;
  transition: all 0.3s;
}

.accordion-item:hover p {
  transform: rotate(0);
  background-color: #000;
  width: 100%;
}

.accordion-item:hover {
  flex: 6;
  border: 2px solid #dcdcdc;
  box-shadow:0px 0px 15px 2px rgba(0,0,0,0.2);
}



/* ############### HIDDEN SECTION ########## */
.hidden-section-wrapper    
{
 width: 100vw;
 margin: 0px;
}

#hidden-section-wrap 
{
  margin-top: 0px;  
  margin-bottom: 0px; 
  background: #fff;
  /*border: 1px solid gray;*/
  width: 100vw;
  height: auto;
}

#hidden-section-wrap-toggle 
{
    display: block;
    width: 100vw;
    height: 60px;
    line-height: 60px;
    background: #BA0C2F;
    text-align: center;
    color: white;
    font-size: 1.7em;
    font-weight: bold;
    text-decoration: none;
}

#hidden-section-wrap-toggle:hover 
{
    text-decoration: none;
    color: #fff;
    background: #67080b;
}
