﻿.section_our_solution .row {
    align-items: center;
}

.our_solution_category {
    flex-direction: row;
    flex-wrap: wrap;
}

    .our_solution_category .solution_cards_box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }

.solution_cards_box .solution_card {
    flex: 0 0 calc(50% - 16px);
    background: #fff;
    box-shadow: 0 5px 8px 0 rgba(136, 144, 195, 0.2), 0 5px 15px 0 rgba(37, 44, 97, 0.15);
    border-radius: 15px;
    margin: 8px;
    padding: 12px 18px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 250px;
    transition: 0.7s;
    max-width: 350px;
}

    .solution_cards_box .solution_card:hover {
        background: rgb(142 221 101 / 50%);
        color: rgb(142 221 101 / 50%);
        transform: scale(1.1);
        z-index: 9;
    }

        .solution_cards_box .solution_card:hover::before {
            background: rgb(85 108 214 / 10%);
        }

        .solution_cards_box .solution_card:hover .solu_title h2,
        .solution_cards_box .solution_card:hover .solu_description p {
            color: #fff;
        }

    .solution_cards_box .solution_card:not(.disabled):before {
        content: "";
        position: absolute;
        background: rgb(142 221 101 / 50%);
        width: 350px;
        height: 500px;
        z-index: -1;
        transform: rotate(60deg);
        right: -100px;
        top: 150px;
        border-radius: 35px;
    }

    .solution_cards_box .solution_card:hover .solu_description button {
        background: #fff !important;
        color: #309df0;
    }

.solution_link {
    text-decoration: none !important;
    color: black !important;
}

.solution_card .solu_title h2 {
    color: #212121;
    margin-top: 13px;
    margin-bottom: 13px;
}

.solution_card .solu_description p {
    font-size: 15px;
    margin-bottom: 15px;
}

.solution_card .solu_description button {
    border: 0;
    border-radius: 15px;
    background: linear-gradient( 140deg, #42c3ca 0%, #42c3ca 50%, #42c3cac7 75% ) !important;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 16px;
}

.our_solution_content h1 {
    text-transform: capitalize;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.our_solution_content p {
}

.hover_color_bubble {
    position: absolute;
    background: rgb(0 160 112 / 40%);
    width: 100rem;
    height: 100rem;
    left: 0;
    right: 0;
    z-index: -1;
    top: 16rem;
    border-radius: 40%;
    transform: rotate(-40deg);
    left: -30rem;
    transition: 0.7s;
    box-shadow: 0 0 10px rgb(33 33 33 / 40%);
}

.solution_cards_box .solution_card:hover .hover_color_bubble {
    top: 0rem;
    background: rgb(0 160 112 / 80%);
}

.solution_cards_box .solution_card .so_top_icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .solution_cards_box .solution_card .so_top_icon img {
        width: 40px;
        height: 50px;
        object-fit: contain;
    }

.disabled {
    background: rgb(235, 235, 228) !important;
    pointer-events: none;
}

.solution_card_official {
    border: 2px solid rgb(0 160 112);
}
    
/* Badge */
.solution_card_official::after {
        content: "Offisiell";
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgb(0 160 112);
        color: white;
        font-size: 11px;
        padding: 4px 8px;
        border-radius: 8px;
        font-weight: 600;
}
