.image-box-section {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
}
.image-box-section .image-box-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.image-box-section h2 {
    text-transform: uppercase;
    line-height: 1;
    /* font-family: 'Poppin SemiBold'; */
    margin-bottom: 20px;
}
.image-box-section .main-description {
    margin-bottom: 30px;
    line-height: 1.8;
}
.image-box-section .top_bg_img {
    position: absolute;
    left: 140px;
    top: 53px;
    display: block;
}
.image-box-section .image-box-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}
.image-box-section .image_box {
    width: calc(25% - 11px * 3 / 4);
    list-style: none;
    position: relative;
    overflow: hidden;
}
.image-box-section .image_box_img img {
    width: 100%;
    height: 100%;
    display: block;
}
.image-box-section .image_box_content {
    position: absolute;
    left: 0;
    bottom: -100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transition: all .5s;
}
.image-box-section .image_box_content:after {
    transition: all .5s;
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.image-box-section .image_box:hover .image_box_content {
    opacity: 1;
    bottom: 0;
}
.image-box-section .image_box_content_wrapper {
    width: 100%;
    padding: 0 8%;
    text-align: center;
    position: relative;
    z-index: 1;
}
.image-box-section .image_box_content .imgae-box-desc {
    line-height: 1.8;
    margin: 25px 0 0;
    max-height: 72px;
    overflow: hidden;
}
.image-box-section .image_box_content .button.learn-more-btn {
    margin-top: 25px;
    min-height: 38px;
}
.image-box-section .image_box_content h3 a {
    display: block;
    padding: 0 0 10px 0;
    position: relative;
}
.image-box-section .image_box_content h3 a:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    background: -webkit-linear-gradient(left, #b67eff, #3d6be4);
    background: linear-gradient(left, #b67eff, #3d6be4);
}
.image-box-section .mobile-only {
    display: none;
}
.image_box .image_box_img a {
    overflow: hidden;
}
.image_box .image_box_img a img {
    transition: all .5s;
}
.image_box:hover .image_box_img a img {
    transform: scale(1.08);
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
}
@media only screen and (max-width: 1260px) {
    .image-box-section .desktop-only {
        display: none;
    }
    .image-box-section .mobile-only {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }
    .image-box-section .top_bg_img {
        display: none;
    }
}
@media only screen and (max-width: 1024px) {
    .image-box-section .image_box {
        width: calc(50% - 20px * 1 / 2);
    }
    .image-box-section .image-box-wrapper {
        gap: 20px;
    }
}
@media only screen and (max-width: 575px) {
    .image-box-section .image_box {
        width: 100%;
    }
}