.main-body{
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 80vh;
}

.container-content, .container{
    display: flex;
}

.panel{
    height: 70vh;
    cursor: pointer;
    color: #ffffff;
    border-radius: 10px;
    margin: 10px;
    flex: 0.5;
    position: relative;
    overflow: hidden;
    transition: all 700ms ease-in;
    padding: 25px 44px;
    align-items: end;
    display: flex;
    justify-content: center;
}

.content{
    z-index: 2;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 72, 121, 0.6); /* bluish overlay */
  z-index: 1;
  border-radius: 15px;
}

/* .panel h2,
.panel p {
    position: absolute;
    z-index: 2; 
} */

.panel-heading {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 1.2rem;
    bottom: 44px !important;
    justify-self: anchor-center;
}
 


.panel.active{
    flex: 15;
	justify-content: flex-start;
}




@media (max-width: 480px) {
    .container{
        width: 100vw;
    }

    
}

/* .panel:nth-child(5),
.panel:nth-child(6){
    display: none;
} */

.setDisplay{
    content-visibility: show;
}

