/*
** Image Cards -- .home-cards ---------------------> START
*/

.home-cards-section {
    background: #fff;
    padding: 5px 0 60px;
}
.home-cards-head {
    text-align: center;
    max-width: 1100px;
    margin: auto auto 39px;
}
.home-cards-head p {
    line-height: 1.75em;
    margin-top: 20px;
}
.home-cards-section .col-industry {
    margin-bottom: 35px;
}
.home-cards-image {
    margin-bottom: 27px;
}
.home-cards-content {
    padding: 35px 45px 55px 40px;
    border-radius: 25px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 10%);
    cursor: pointer;
    min-height: 100%;
    text-align: center;
}
.home-cards-desc h4,
.home-cards-desc strong {
    font-size: 18px;
    font-weight: 900;
}
.home-cards-desc p {
    margin-top: 5px;
    line-height: 1.75em;
    margin-bottom: 25px;
}
.home-cards-image,
.home-cards-desc,
.home-cards-content .btn-wrapper {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}
.home-cards-image {
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-cards-image .industry-icon-image,
.home-cards-image > img {
    height: auto;
    width:  auto;
    max-width: 100%;
    display: block;
}
.home-cards-content .btn-primary {
    border: none;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    line-height: 1.2;
}
.home-cards-content .btn-primary:after {
    content: "\e916";
    color: #641964;
    font-family: "icomoon";
    font-size: 9px;
    background: #fff;
    border-radius: 100%;
    padding: 4px;
    margin-left: 10px;
    top: -2px;
    position: relative;
}
.home-cards-content .btn-primary:hover:after {
    color: #471247;
}
@media (min-width: 768px) {
    .home-cards-section {
        padding: 10px 0 90px;
    }
    .home-cards-section .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        min-height: 100%;
    }
}
@media (min-width: 1024px) {
    .home-cards-content .btn-wrapper {
        position: absolute;
        bottom: 0;
        opacity: 0;
        width: 100%;
        transform: translateX(-50%);
        left: 50%;
    }
    .home-cards-content:hover .home-cards-image {
        opacity: 0;
    }
    .home-cards-content:hover .home-cards-desc {
        transform: translateY(-120px);
    }
    .home-cards-content:hover .btn-wrapper {
        opacity: 1;
        bottom: 45px;
    }
    .home-cards-desc p {
        height: 80px;
        overflow: hidden;
        display: block;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .home-cards-content:hover .home-cards-desc p {
        height: 160px;
        width: 100%;
        position: absolute;
        display: block;
        display: -webkit-box;
        -webkit-line-clamp: 6;
    }
}
@media (min-width: 1200px) {
    .home-cards-section {
        padding: 10px 0 149px;
    }
    .home-cards-section .container {
        max-width: 1384px;
        width: 100%;
    }
}

.smaller-content {
    padding: 30px !important;
}

.smaller-content .home-cards-desc p {
    font-size: 15px;
}

.smaller-content .home-cards-image img {
    height: 60px;
    width: auto;
}

.smaller-content .home-cards-image {
    min-height:  100px;
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    .smaller-content:hover .home-cards-desc {
        transform: translateY(-110px) !important;
    }
}

/* Image Cards -- .home-cards ---------------------> END */