/* 9. escolas*/
.m-schools{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    margin-top: 80px;
}
.m-schools__title {
    font-weight: 400;
    font-size: 40px;
    color: #002a3f;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.m-schools__title + p {
    font-size: 16px;
}
.m-schools__item {
    text-decoration: none;
}

.m-schools__item:hover {
    text-decoration: none;
}
.m-schools__item__image img{
    width: 100%;
}
.m-schools__item__content {
    background: #002a3f;
    padding: 20px;
    height: 200px;
}
.m-schools__item__content p {
    font-size: 14px;
    color: #ffffff;
}
.m-schools__item__title {
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 4px;
}

@media (max-width: 1200px) {
    .m-schools {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .m-schools {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .m-schools{
        grid-template-columns: 1fr;
    }
    .m-schools__item__image img{
        width: 100%;
    }
    .m-schools__item__image img {
        max-width: 100%;
    }
}
