.porque-nos-container {
    padding: 80px 0;
    max-width: 1980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.porque-nos-card {
    max-width: 580px;
    display: flex;
    flex-direction: column;
    justify-self: end;
    justify-content: center;
    gap: 32px;
    margin: 0 8px;
}

.porque-nos-paragraph-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.porque-nos-container img {
    margin: auto;
}

@media only screen and (max-width: 1050px) {
    .porque-nos-container {
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .porque-nos-container.first-porque-nos-card {
        flex-direction:column-reverse;
        margin-bottom: 40px;
    }
    
    .porque-nos-card {
        max-width: none;
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin: 0;
    }

}
@media only screen and (max-width: 800px) {
    .porque-nos-container {
        padding: 40px 0;
    }
}
.main-topics-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.topic-card {
    padding: 32px;
    background-color: var(--MainColor);
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.topic-card h3 {
    color: #231E20;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}

.topic-card p {
    color: var(--Black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.topic-card-arrow {
    margin-left: auto;
    display: flex;
}

.topic-card-arrow path{
    transition: .3s ease-in-out;
}

.topic-card:hover .topic-card-arrow path {
    fill: var(--White);
}


@media only screen and (max-width: 1200px) {
    .main-topics-content {
        gap: 24px;
    }
     
    .topic-card {
        padding: 24px;
    }
}

@media only screen and (max-width: 1000px) {
    .main-topics-content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 16px;
    }
    .topic-card1 {grid-area: 1 / 1 / 2 / 2;}
    .topic-card2 {grid-area: 1 / 2 / 2 / 3;}
    .topic-card3 {grid-area: 2 / 1 / 3 / 3;}

}

@media only screen and (max-width: 800px) {
    .main-topics-content {
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 16px;
    }
    .topic-card1 {grid-area:auto;}
    .topic-card2 {grid-area:auto;}
    .topic-card3 {grid-area:auto;}
}

@media only screen and (max-width: 450px) {
    .topic-card {
        padding: 16px;
    }
}