:root {
    --orange-supbyte: #ffa500;
    --blue1-supbyte: #04102b;
    --blue2-supbyte: #082256;
    --grey1-supbyte: #333333;
    --grey2-supbyte: #7f7f7f;
    --white-supbyte: #ffffff;
    --black-supbyte: #000000;
    --purple-supbyte: #5232ed;
    --sky-supbyte: #3d88e3;
    --green-supbyte: #07dd58;
  }

.pqe__container{
    display: grid;
    width: 75%;
    max-width: 1140px;
    grid-template-columns: repeat(3, 1fr) ;
    height: 300px;
    gap: 10px;
    padding: 0 10px;
    margin: 0 auto;
    
    opacity: 0;
    transition: opacity 1s ease;
}

.pqe__container--entry{
    opacity: 1;
}

.pqe__box{
    /* border: 2px solid green; */

    display: flex;
    height: calc(0.7 * 300px);
    margin: auto 0;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.pqe__icon-box{
    /* height: 50%; */   
    font-size: 80px;
    color: var(--green-supbyte);
}

.pqe__text-box {
    /* height: 50%; */
    padding: 0 10px;
    color: var(--black-supbyte);
    font-family: 'Sora', sans-serif;
}

.pqe__box:hover{
    background:var(--grey2-supbyte);
    border-radius: 5px;
}

.pqe__box:hover .pqe__icon-box{
    color: var(--white-supbyte);
}
.pqe__box:hover .pqe__text-box{
    color: var(--white-supbyte);
}

@media (max-width: 768px){
    .pqe__container{
        display: grid;
        grid-template-columns: unset;
        grid-template-rows: repeat(3, 1fr);
        height: 500px;
        gap: 0;
    }
    .pqe__icon-box{
        font-size: 70px;
        width: 30%;
        display: flex;
        /* align-items: center; */
        justify-content: center;
    }
    .pqe__box{
        height: 100%;
        flex-direction: row;
    }
    .pqe__text-box{
        width: 70%;
    }

}




