.box7 {
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    background-color:#461E69;
    color: #fff;
    /* width: 100%; */
    width: 100vw;
    min-height: 100vh;
    position:relative;
    
}

.box7 .box7__title {
    display:flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    font-family: 'Poppins';
    font-size: 1.7rem;
    color:rgb(190, 0, 245);
}

.box7  .box7__detail {
    display:flex;
    flex-direction:column;
    justify-content: space-between;
    font-family: 'Poppins';
    font-weight: 200;
    font-size: 1.25rem;
    color:#fff;
    padding: 10px;
}

.box7  .box7__detail > div.separator {
    margin-block-end: 30px;
}

.box7 .box7__detail  > div{
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px;
}





.box7 img {
    width: 75%;
    height: auto;
}

@media only screen and (min-width: 768px){

    .box7  .box7__detail {
        display:flex;
        flex-direction:row;
        justify-content: space-between;
        text-align: center;
        font-size: 2rem;
    }
    
    .box7  .box7__detail > div.separator {
        margin-inline-end: 30px;
    }
    
    .box7 .box7__detail  > div{
        display:flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 5px;
    }

    .box7 .box7__detail  > div > span:first-child{
        margin-block-end: 20px;
    }


    .box7 svg{
        transform: rotate(-90deg);
    }
    
}