<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.swiper-slide img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;

}

.board-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 5%;
    margin-top: 100px;
}

.profile{
    margin-bottom: 50px;
    width: 95%;
    padding-left: 10px;
    padding-right: 10px;
    padding-block: 50px;
    /* padding: 10px; */
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.profile h3{
    font-weight: 900;
}

.profile hr{
    border-top: 5px solid #970f14;
    border-radius: 50px;
    box-shadow: rgba(210, 32, 32, 0.824) 0px 13px 27px -5px, rgba(201, 20, 20, 0.902) 0px 8px 16px -8px;
}

@media only screen and (max-width: 1192px) {
    .board-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .profile{
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    .board-grid{
        display: block;
    }
}</pre></body></html>