/* 
    Esse arquivo é um arquivo possui
    o template de rows de cards em uma section
    
    Responsive -> Tablet = Column // Laptop = Row
*/

/* Row Section */
.row-cards { 
    padding: 30px 0; 
    background-color: orange; 
    position: relative;
    top: -50px;
    
}

.row-cards p{
    font-weight: bold;
}

.row-cards h1 { 
    font-size: 28px;
    color: orange; 
}

.row-cards h2 {
    font-size: 24px;
    color: orange; 
}

.row-cards p {
    font-size: 1rem;
    color: var(--white);
}

/* Row of Cards */
.container-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

/* Card position + styles */
.row-card{
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    height: 250px;
    width: 200px;
    border-radius: 10px;
    background-color: var(--primary-500);
    color:var(--white);
}
@media (min-width:769px) and (max-width: 991px) {.row-card{ height: 280px;}}
.row-card div {
    text-align: center;
}

/* Icons */
.row-card .circle {
    background-color: white;
    height: 70px;
    width: 70px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 12px 18px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 12px 18px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 6px 8px 0px rgba(0,0,0,0.25);
}

.row-card .circle img {
    place-self: center;
    height: 45px;
}

/*Media Querie*/

@media (max-width: 768px) {
    .container-cards{
        flex-direction: column;
    
    }
    .row-cards{
        top: 10px;
    }
    

}