.projects {
    height: 100%;
}

.projects-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.projects-title {
    display: flex;
    justify-content: center;
    color: #00296b;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    width: 100%;
}

.project-cards {
    display: flex;
    text-align: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10% 0%;
}

.card {
    color: #00296b;
    margin: 10px 5px;
    max-width: 218px;
    transition: 0.7s ease;
    padding-bottom: 2%;
    display: flex;
    text-align: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(1 1 1 /15%);
    position: relative;

}

.card-title1 {
    font-size: 1.20rem;
}

.card img {
    height: 150px;
}

.project-btn {
    display: flex;
    margin-bottom: 2rem;
    justify-content: center;
    width: 80%;
    background-color: #00296b;
    padding: 4% 15%;
    color: #fdc500;
    text-decoration: none;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.project-btn:hover {
    color: #fdc500;
}

.card-text {
    padding-bottom: 70px;
    height: 50%;
}

/* .card:hover {
    transform: scale(1.1);
} */