.topics{
    padding: 5rem 3rem;
}
.topics .topic{
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 4rem;
}
.topics .topic .left, 
.topics .topic .right{
    flex: 1;
}
.topics .topic .left img{
    max-width: 100%;
}
.topics li, .logo li{
    font-family: "Grandstander", sans-serif;
    font-weight: bold;
    letter-spacing: -0.1rem;
    font-size: 5rem;
    line-height: 5rem;
}
.topics li:nth-child(even), .topics li span{
    color: var(--secundary);
}
.topics .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}
.topics img{
    width: 640px;
    height: 300px;
}

@media(width>600px){
    .topics .topic{
        flex-direction: row;
    }
    .topics .topic.reverse{
        flex-direction: row-reverse;
    }
    .topic li{
        font-size: 6rem;
        line-height: 6rem;
    }
    .topics img{
        height: 700px;
    }
}