@keyframes contentSlideDown{
    0%{
        opacity: 0;
        transform: translateY(-100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contentSlideUp{
    0%{
        opacity: 0;
        transform: translateY(100%);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

.container-title{
    animation:contentSlideDown 1s ease-in-out;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:2%;
    width: 100%;
    height: 100%;
    color:white;
}

.container-title h1{
    display:inline-block;
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top:1rem;
    margin-bottom: 1rem;
}

.container-title p{
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom:.01%;
}

.projects-content{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, auto));
    align-items:center;
    gap:2.3rem;
    margin-top: 3.2rem;
    margin-left: 2rem;
    margin-right:2rem;
}

.row img{
    width:100%;
    border-radius:28px;
    margin-bottom:1.4rem;
}

.row{
    animation:contentSlideUp 1s ease-in-out;
    background: white;
    border-radius:28px;
    border: 1px solid transparent;
    padding:20px;
    transition: all 0.3s ease-in-out;
}

.main-row{
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.row h5{
    font-size:20px;
    font-weight:600;
}

.row i{
    display: inline-flex;
    align-items:center;
    justify-content:center;
    width:55px;
    height:55px;
    font-size:37px;
    border-radius: 50%;
    background:white;
}

.row h4{
    font-size:15px;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.4;
}

.row:hover{
    border:1px solid var(--main-color);
    transform: translateY(-5px) scale(1.03);
    cursor:pointer;
}