main{
    border-top: 1px solid var(--gray);
    padding-top: 8px;
}

main aside{
    align-items: center;
}

.my-block{
    position: relative;
    cursor: pointer;
}

.default-grid > aside.active .my-block:not(.active) img{
    background-color: #E9E7E4;
}

.default-grid > aside.active .my-block:not(.active) span{
    display: none;
}

footer .circle{
    transition: all 0.5s;
    cursor: pointer;
}

footer.active .circle.active.red{background-color: var(--red);}
footer.active .circle.active.blue{background-color: var(--blue);}
footer.active .circle.active.green{background-color: var(--green);}
footer.active .circle.active.orange{background-color: var(--orange);}
footer.active .circle.active.purple{background-color: var(--purple);}
footer.active .circle.active.yellow{background-color: var(--yellow);}

#eixo0 h2{color:var(--red);}
#eixo1 h2{color:var(--blue);}
#eixo2 h2{color:var(--purple);}
#eixo3 h2{color:var(--orange);}
#eixo4 h2{color:var(--yellow);}
#eixo5 h2{color:var(--green);}

.my-block span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 3vh;
    color: var(--neutral);
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    display: block;
    width: 100%;
    max-width: 140px;    
}

.my-block:hover span{
    color: var(--gray)   
}

.preview{
    display: grid;
    grid-template-columns: 1fr 2fr;    
    height: 100%;
}

.preview .text{
    display: flex;
    justify-content: center;
    align-items: center;    
}

.preview .text p{
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.view{
    display: none;
    height: 100%;
    overflow-y: scroll;    
    scroll-behavior: smooth;
    padding: 0 10%;
    border-left: 1px solid var(--gray);
}

#eixos.active .view{
    display: flex;
}

.view-holder{
    height: 100%;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    row-gap: 48px;
    width: 100%;
}

#eixos.active .preview{
    display: none;
}

.content-block{
    display: none;        
    flex-direction: column;
    flex-shrink: 0;    
    justify-content: center;
    align-items: flex-start;
}

.content-block.active{
    display: flex;
}

.content-block h2{
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.content-block h3{
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 44px;
    text-transform: uppercase;
}

.content-block p{
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 24px;    
}

iframe{
    width: 100%;
    margin-bottom: 20px;
}

.audio-holder{    
    height: 40px;
    width: 100%;
    border-radius: 10px;    
    margin-bottom: 20px;
}

audio{
    width: 100%;
}

@media screen and (max-width: 769px){
    main aside{
        justify-content: center;
    }

    .default-grid{
        grid-template-columns: 1fr;        
    }

    .preview{
        display: none;
    }

    main aside.active{
        grid-template-columns: repeat(6,1fr);
        margin-bottom: 12px ;
    }
    main aside.active .my-block{
        width: 100%;
    }
    main aside.active .my-block span{
        font-size: 0.5rem;
    }
    main aside .my-block{
        width: 100%;
    }

    footer{
        display: none;
    }

    iframe{
        height: 240px;
    }

    #eixo5{
        margin-bottom: 28px;
    }
    .view{
        border-left: none;
        padding: 0 5%;
    }
    .view-holder{
        max-height: calc(100vh - 130px);
    }
    .content-block{
        display: flex;
    }
    .content-block h2{
        font-size: 1.1rem;
    }

    .content-block h3{
        font-size: 1rem;
    }

    .content-block p{
        font-size: 0.9rem;
    }
}