.card1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 275px;
    height: 300px;
    scroll-snap-align: center;
    border-radius: 30px;
    overflow: hidden;
    background-color: white;
}

.card1 img {
    height: 65%;
    width: 100%;
    object-fit: cover;
}

.card1 .text-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 35%;
    padding: 20px;
}

.card1 p {
    color: var(--color-1);
    text-align: center;
}

@media (min-width: 1200px) {
    .card1 {
        height: 420px;
    }

    .card1 img {
        height: 50%;
    }

    .card1 .text-section {
        height: 50%;
    }
}

@media (min-width: 1200px) {
    .desk-grid-home-1 {
        display: grid;
        grid-template-columns: 54% auto;
        align-items: start;
        grid-template-rows: 420px;
        max-width: 1200px;
    }

    .desk-grid-home-2 {
        grid-template-columns: 45% auto;
        grid-template-rows: repeat(3, 8vw);
        justify-items: start;
        align-items: center;
        max-width: 1200px;
    }

    .desk-grid-home-2 img {
        grid-column-start: 2;
        grid-row-start: 1;
        grid-row-end: 4;
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

    .desk-grid-home-2 h1 {
        grid-column-start: 1;
        text-align: start;
        width: 100%;
    }

    .desk-grid-home-2 p {
        grid-column-start: 1;
        text-align: start;
        width: 100%;
    }

    .desk-grid-home-2 a {
        grid-column-start: 1;
        text-align: start;
    }
}

.card2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    width: 274px;
    height: 340px;
    scroll-snap-align: center;
    border-radius: 30px;
    overflow: hidden;
    background-color: white;
    padding: 30px 15px;
    gap: 5px;
}

.card2 a {
    margin-top: 10px;
}

.card2 img {
    object-fit: contain;
}

@media (min-width: 1200px) {
    .card2 {
        height: 420px;
        width: 540px;
    }

    .card2 h1 {
        font-size: 22px;
    }
}

.card3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    scroll-snap-align: center;
    overflow: hidden;
    width: 100px;
}

.card3 img {
    object-fit: contain;
    width: 100%;
}
