.home-banner {
    text-decoration: none !important;
    border-bottom: none !important;
    border: none !important;
    outline: none !important;
}

.home-banner::before,
.home-banner::after {
    display: none;
}

.home-banner {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-banner::after {
    content: '';
    display: block !important;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background-color: #004be3;
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.home-banner:hover::after {
    width: 100%;
}

.home-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.home-banner.line-left::after {
    left: auto;
    right: 0;
    background-color: #c61b08;
}

.col3 {
    width: 48% !important;
    margin: 1% !important;
    float: left !important;
}

.cnt.clr {
    overflow: hidden;
    position: relative;
}

.col3:first-child {
    position: relative;
}

.col3:first-child::after {
    content: '';
    position: absolute;
    right: -1%;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(0, 0, 0, 0.12);

    pointer-events: none;
}

@media (min-width: 769px) {
    .cnt.clr {
        display: flex;
        justify-content: space-between;
    }
    
    .col3 {
        width: calc(50% - 10px) !important;
        margin: 0 !important;
    }
    
    .col3:first-child::after {
        content: '';
        position: absolute;
        right: -10px; 
        top: 10%;
        height: 80%;
        width: 1px;
        background: #d4d4d4;
        pointer-events: none;
    }
}



@media (max-width: 768px) {
    .col3 {
        width: 100% !important;
        margin: 10px 0 !important;
    }
    
    .col3:first-child::after {
        display: none;
    }
}

.home-banner:hover .home-banner-text-1 {
    transform: translateX(6px);
    transition: transform 0.25s ease;
}

.home-banner.line-left:hover .home-banner-text-1 {
    transform: translateX(-6px);
}

.home-banner a {
    transition: all 0.25s ease;
}

.home-banner:hover a {
    opacity: 0.9;
}