/* Second Section*/
#second-section{
    padding: 0px 100px;
}

.subtitle{
    color: #1f3e72;
    font-size: 40px;
    margin-bottom: 30px;
}

.text{
    width: 50%;
    font-size: 19px;
    font-weight: bold;
    
    color: #6d7b93;

    line-height: 1.6;
}

#cards-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    margin-top: 60px;
    margin-bottom: 60px;
}

.card{
    width: 270px;
    height: 330px;

    border: 2px solid lightgray;
    border-radius: 10px;

    box-sizing: border-box;
    padding: 25px;

    margin-top: 20px;
}

.card i{
   font-size: 30px;
   padding: 13px; 
}

.card h3 {
    color: #1f3e72;
    font-size: 22px;
    
    margin-top: 20px;
    margin-bottom: 20px;
}

.card p{
    color: #6d7b93;
    font-size: 16px;
    font-weight: bold;

    line-height: 1.7;
}

/* Effects */
.card:hover{
    box-shadow: 10px 10px 10px lightgray;
    background-color: rgba(0,0,255, 0.2);
    background-color: #dfeafc;
}

/* Responsive */
@media (max-width:800px){
    #second-section{
        padding: 50px;
    }

    .card{
        margin-top: 20px;
    }

    .text{
        width: 100%;
    }
}

@media (max-width: 500px){
    #cards-container{
        justify-content: center;
    }
}

