#main{
    margin: 20vh 0;
    padding: 0 10vw;
}

#main h2{
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10vh;
}

#main .newsletters{
    width: 100%;
    display: grid;
    grid-template-columns: 30% 30% 30%;
    grid-gap: 20vh 5%;
}

#main .newsletters .card{
    border-radius: 10%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 1px 1px 10px 5px #f1f1f1;
}

#main .newsletters .card:hover{
    transform: scale(1.1);
}

#main .newsletters .card img{
    width: 100%;
    object-fit: cover;
    height: 200px;
}

#main .newsletters .card .container{
    padding: 0 30px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#main .newsletters .card h3{
    font-family: 'Sora', sans-serif;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
}

#main .newsletters .card p{
    font-family: 'Sora', sans-serif;
    color: #000;
    font-size: 14px;
    text-align: justify;
}

@media screen and (max-width:1000px) {
    
    #main .newsletters{
        grid-template-columns: 47.5% 47.5%;
    }
}

@media screen and (max-width:768px) {
    
    #main .newsletters{
        grid-template-columns: 100%;
    }
}