.cards-wrapper {
    /* margin-top: 50px; */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card-container {
    /* perspective: 1200px; */
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    color: white;
}
.card_exhibit {
    margin: 20px auto;
    height: 300px;
    width: 300px;
    /* max-width: 80%; */
    position: relative;
    border-radius: 50%;
    transition: all 1s ease;
    transform-style: preserve-3d;
    /* box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.2); */
  
}
.rotated1{
    transform: rotateY(-180deg);
}
.rotated2 { 
    transform: rotateY(-180deg);
}

.rotated3 {
    transform: rotateY(-180deg);
}
.rotated4{
    transform: rotateY(-180deg);
}
.rotated5 {
    transform: rotateY(-180deg);
}

.rotated6 {
    transform: rotateY(-180deg);
}



.card-contents {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}
.card-contents h2, .card-contents p {
    /* text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);  */
}
.card-contents h2 {
    font-size: 3em;
    margin: 0 auto;
}
.card-contents hr {
    width: 50%;
    margin: 10px auto;
    height: 1px;
    background-color: rgb(197, 197, 197);
}
.card-contents p {
    /* margin: 0 auto; */
    padding: 10px 10px;
}
.card-depth {

    perspective: inherit;
    width: 100%;
    position: relative;
    transform: translateZ(70px) scale(0.98);

}
.card-depth img{
    width: 100%;
    
    /*filter: brightness(0.3);
  	*/
   
}
.card-front {
    background: linear-gradient(to top left, rgb(3, 138, 138,0.5),#b8a74c);
    /* background-color: rgb(85, 85, 85); */
    transform-style: preserve-3d;


}
.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(to top left, #C4B454, rgb(3, 138, 138,0.5));
    transform-style: preserve-3d;

}
.shape-container{
    position:relative;
    width: 1180px;
      height: 780px;
    background-image: url('https://images.unsplash.com/photo-1557844352-761f2565b576?ixlib=rb-1.2.1&auto=format&fit=crop&w=1050&q=80');
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .shape-top{
    position:absolute;
    top:0;
    left:0;
      width: 100%;
      height: 100%;
      background-image: url('https://images.unsplash.com/photo-1557838429-126184c0345c?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=634&q=80');
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-clip-path: polygon(0 0, 80% 0, 35% 50%, 0 12%);
    clip-path: polygon(0 0, 80% 0, 35% 50%, 0 12%);
  }
  
  .shape-left{
    position:absolute;
    left:0;
    bottom:0;
    width: 100%;
      height: 100%;
      background-image: url('https://images.unsplash.com/photo-1557878499-95663e82c9d1?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1052&q=80');
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-clip-path: polygon(0 12%, 0 86%, 35% 50%);
    clip-path: polygon(0 12%, 0 86%, 35% 50%);
  }