#nav-placeholder {
    display: none;
}

.cards {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    gap: 20px;
}

section.rant {
    padding: 0 min(10vw, 50px);
}

section.rant h2 {
    font-weight: 700;
    font-size: 27px;
    text-align: left;
    text-transform: none;
    margin-bottom: 15px;
    line-height: 37px;
    padding: 0 !important;
}

section.rant p {
    font-size: 20px;
    margin: 15px 0;
}

@media only screen and (min-width: 720px) {
    section.rant h2 {
        font-size: 32px;
    }

    section.rant p {
        font-size: 24px;
        margin: 20px 0;
    }
}

.scard {
    width: min(100%, 340px);
    height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 6px 14px 0 rgba(0, 0, 0, .37);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    min-width: 300px;
}

.scard img {
    height: 48%;
    width: 100%;
    object-fit: cover;
    border: none;
    border-bottom: 2px solid #277D31;
    box-sizing: border-box;
    overflow-clip-margin: unset;
    overflow: hidden;
}

.scard .text {
    height: 52%;
    width: 100%;
    padding: 15px 10px;
    padding-top: 5px;
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
}

.scard .title {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
    margin-bottom: 0;
}

.scard .description {}

.scard .description p {
    font-size: 13px;
    margin: 5px 0;
}

.scard .button {
    margin: auto;
    padding: 4px 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.scard .button span {
    text-align: center;
    width: 100%;
}

section {
    margin: 60px auto;
    z-index: 1;
    max-width: 1300px;
}

section * {
    z-index: 1;
}

section:nth-child(1) {
    margin-top: 0;
}

section h2 {
    font-size: 34px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

@media only screen and (min-width: 720px) {
    section {
        padding: 0 min(50px, 10vw);
    }

    .cards {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: start;
        gap: 20px;
        scrollbar-color: #1f6427 transparent;
        padding: 0 10px 20px 10px;
        margin: 0;
        flex-wrap: wrap;
    }

    .scard {
        width: 330px;
        max-width: unset;
    }

    section h2 {
        font-size: 50px;
    }
}