.courses_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* text-align: center; */
    gap: 2rem;
}


.course {
    background: #2e3267;
    text-align: center;
    border: 1px solid transparent;
    transition: all 400ms ease;
}

.course:nth-child(5) .course_info {
    margin-top: 4rem;
}

.course:hover {
    background: transparent;
    border-color: #040730;
}
.course_info {
    padding: 2rem;
}

.course_info p {
    margin: 1.2rem 0 2rem;
    font-size: 0.9rem;
}

@media screen and (max-width: 1024px){
    .courses_container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px){
    .courses_container {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
}