#section-info .card {
    cursor: pointer;
}
#section-info .card:after {
    content: '';
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    transition: all .5s cubic-bezier(.215, .61, .355, 1);
}
#section-info-container > .row > .col-card:nth-child(3n+1) .card:after {
    background-color: #52B2AF;
}
#section-info-container > .row > .col-card:nth-child(3n+2) .card:after {
    background-color: #A28E45;
}
#section-info-container > .row > .col-card:nth-child(3n) .card:after {
    background-color: #DC8177;
}
#section-info .card:hover:after {
    opacity: .7;
}
#section-info .card .card-img-overlay {
    z-index: 5;
}
#section-info .card .card-img-overlay .text,
#section-info .card .card-img-overlay .ico {
    transition: all .5s cubic-bezier(.215, .61, .355, 1);
}
#section-info .card:hover .card-img-overlay .text {
    transform: translateY(-16px);
}
#section-info .card:hover .card-img-overlay .ico {
    transform: scale(115%);
}
#section-info .card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    color: #fff;
}
#section-info .card strong {
    font-size: 36px;
    font-weight: 600;
    line-height: .9;
}
#section-info .card .card-img {
    height: 33.333%;
    object-fit: cover;
}
#section-info .card a .ico {
    position: absolute;
    bottom: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    margin-top: 20px;
    padding: .5rem;
    border: 2px solid #fff;
    border-radius: 50%;
}
#section-info .card a svg {
    width: auto;
    height: 27px;
}
#section-home-intro {
    background: var(--marien-color-1) url(../img/pattern-2.png) repeat-y right top;
}
#section-home-intro .section-wrapper {
    padding: 70px 1rem;
    font-size: 16px;
    font-weight: 300 !important;
}
#section-home-intro header .header-title {
    font-size: 26px;
    font-weight: 300 !important;
    color: #000;
}
#section-home-intro .section-content {
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 992px) {
    #section-info .card a {
        max-width: 350px;
        font-size: 22px;
        line-height: 1;
    }
    #section-info .card a .line-1 {
        display: inline-block;
        margin-bottom: .5rem;
    }
    #section-info .card strong {
        font-size: 60px;
    }
    #section-info .card .card-img {
        height: 400px;
    }
    #section-info .card a .ico {
        width: 50px;
        height: 50px;
    }
    #section-home-intro .section-wrapper {
        font-size: 22px;
    }
    #section-home-intro header .header-title {
        font-size: 44px;
    }
}
@media (max-width: 767px) {
    #section-info-container > .row {
        display: block;
        height: calc(100dvh - 60px - 90px);
    }
    #section-info-container > .row > * {
        height: 33.333%;
        overflow: hidden;
    }
    #section-info .card {
        height: 100%;
    }
    #section-info .card .card-img {
        height: 100%;
    }
}
@media (max-width: 400px) {
    #section-info .card a {
        line-height: 1.5;
    }
    #section-info .card strong {
        font-size: 24px;
    }
    #section-info .card .card-img-overlay h3{
        margin-bottom:0;
    }
    #section-info .card a .ico {
        position: relative;
        bottom: 0;
        width: 28px;
        height: 28px;
        border-width: 1px;
    }
    #section-info .card a svg {
        height: 16px;
    }
}