.main-title {
    padding: 90px 0;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
    margin-bottom: 6rem;
}

.card {
    display: flex;
    position: relative;
    flex-direction: column;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease-out;
    width: 330px;
    aspect-ratio: 3 / 4;
}

.card .content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    color: white;
}

.card img {
    object-fit: cover;
    height: 100%;
}

.card .footer {
    position: absolute;
    bottom: 0;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 600;
}

.card .gradient {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.00) 60%, rgba(0, 0, 0, 0.82) 85%, #000 100%);
    width: 100%;
    height: 100%;
    bottom: 0;
    position: absolute;
}

@media screen and (max-width: 700px) {
    .card-container {
        padding: 0 20px;
    }

    .main-title {
        padding: 50px 0;
    }

    .card {
        width: 270px;
    }
}