.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 img{
    width: 90vw;
}

.topics li{
    font-family: "Grandstander", sans-serif;
    font-weight: bold;
    letter-spacing: -.1rem;
    font-size: 5rem;
    line-height: 5rem;
}

.topics li:nth-child(even), .topics li span{
    color: var(--secondary);
}

.topics .right{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

@media(width>600px){
    .topics .topic{flex-direction: row;}

    .topics img{width: 30vw;}

    .topics .topic.reverse{flex-direction: row-reverse;}

    .topic li{
        font-size: 6rem;
        line-height: 6rem;
    }

    .topics .button{
        width: auto;
    }
}