/* .learn-more-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    justify-items: center;
    justify-content: space-evenly;
    column-gap: 60px;
    height: 250px;
}

.learn-more-section .learn-more-card-1,
.learn-more-section .learn-more-card-2,
.learn-more-section .learn-more-card-3 {
    width: 100%;
    height: 100%;
    min-height:410px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    position: relative;
    border-radius: 16px;
    color: white;
    cursor: pointer;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}

.learn-more-section .learn-more-card-1 {
    background-image: url('../../assets/img/learn-more-section/learn-more-1.webp');
}

.learn-more-section .learn-more-card-2 {
    background-image: url('../../assets/img/learn-more-section/learn-more-2.webp');
}

.learn-more-section .card-filter {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(12, 30, 65, 0.00) 0%, #0C1E41 100%);
    background-blend-mode: multiply;
    transition: 0.3s ease-in-out;
}

.learn-more-section .card-content span {
    font-family: 'Nunito Sans',Nunito,Helvetica,Arial,Lucida,sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    color: white;
}

.learn-more-section .card-content p {
    color: white;
    text-align: center;
    font-family: 'Nunito Sans',Nunito,Helvetica,Arial,Lucida,sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.4em;

    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.learn-more-section .card-content{
    text-decoration: none;
    color: inherit;
}

.learn-more-section .card-content {
    position: absolute;
    bottom: -40px;
    left: auto;
    z-index: 2;
    padding: 0 20px;
    transition: 0.3s ease-in-out;
}

.learn-more-section .learn-more-card-1:hover .card-content,
.learn-more-section .learn-more-card-2:hover .card-content,
.learn-more-section .learn-more-card-3:hover .card-content {
    transform: translateY(-90px);
}

.learn-more-section .learn-more-card-1:hover .card-content p,
.learn-more-section .learn-more-card-2:hover .card-content p,
.learn-more-section .learn-more-card-3:hover .card-content p {
    visibility: visible;
    opacity: 1;
}

.learn-more-section .learn-more-card-1:hover .card-filter,
.learn-more-section .learn-more-card-2:hover .card-filter,
.learn-more-section .learn-more-card-3:hover .card-filter {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.80) 100%);
}

@media (min-width: 768px) and (max-width:1024px) {
    .learn-more-section {
        column-gap: 20px;
        height: auto;
    }

    .learn-more-section .learn-more-card-1,
    .learn-more-section .learn-more-card-2,
    .learn-more-section .learn-more-card-3 {
        max-height: none;
        height: 350px;
    }

    .learn-more-section .card-content {
        bottom: 0;
    }

    .learn-more-section .card-content p {
        visibility: visible;
        opacity: 1;
        font-size: 14px;
        line-height: 1.2em;
    }

    .learn-more-section .card-filter {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    }
}

@media (max-width:767px) {
    .learn-more-section {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        row-gap: 40px;
        height: auto;
    }

    .learn-more-section .learn-more-card-1,
    .learn-more-section .learn-more-card-2,
    .learn-more-section .learn-more-card-3 {
        max-height: none;
        height: 350px;
    }

    .learn-more-section .card-content {
        bottom: 0;
    }

    .learn-more-section .card-content p {
        visibility: visible;
        opacity: 1;
        line-height: 1.4em;
    }

    .learn-more-section .card-filter {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    }
} */

.learn-more-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    justify-items: center;
    justify-content: space-evenly;
    column-gap: 60px;
    min-height: 410px;
}

.learn-more-card-3 {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 410px;
    overflow: hidden;
    text-align: center;
    position: relative;
    border-radius: 16px;
    color: white;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: multiply;
}

.learn-more-card-3 h3 {
    font-family: 'Aeries Sans Bold', Helvetica, Arial, Lucida, sans-serif;
    color: white;
    font-size: 23px;
    line-height: 1.2em;
    padding: 0 40px;
    font-weight: bold;
}

.learn-more-card-3 .card-content {
    display: flex;
    text-decoration: none;
    color: inherit;
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: 0.3s ease-in-out;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.learn-more-card-3 .card-content p {
    display: none;
    color: white;
    text-align: center;
    font-family: 'Nunito Sans', Nunito, Helvetica, Arial, Lucida, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6em;
    padding: 0 40px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.learn-more-card-3 .card-filter {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(12, 30, 65, 0.00) 0%, #0c1e41 100%);
    background-blend-mode: multiply;
    transition: 0.3s ease-in-out;
}

/* .learn-more-card-3:hover .card-content {
    padding-top: 140px;
} */

.learn-more-card-3:hover .card-content p {
    visibility: visible;
    opacity: 1;
    display: flex;
    margin-top: 10px;
}

@media (max-width:767px) {
    /* .learn-more-card-3 .card-content {
        padding-top: 100px;
    } */

    .learn-more-card-3 .card-content p {
        visibility: visible;
        opacity: 1;
        display: flex;
        line-height: 1.4em;
    }
}