/* solution.php */
body{
    background-color: #f3f4f8;
}

.hero{
    background-color: #0A1D39;
}

.waves-move{
    background-color: #0A1D39;
}

.btn {
    padding: 10px 16px 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 0.20px;
}

.btn-outline {
    color: rgb(150, 170, 189);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(150, 170, 189);
    border-image: initial;

    &:hover {
        border: 1px solid #EE4345;
        color: #EE4345;
    }
}

.btn-main {
    background-color: #FF4A4C;
    border: 1px solid #FF4A4C;
    color: #FFF;
    box-shadow: 0px 11.06px 18.43px 0px #ed282866;

    &:hover {
        background: #FD1114;
        border: 1px solid #FD1114;
        color: #FFF;
    }
}

.hero.hero-prod{
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.hero-prod h1 {
    font-weight: 700;
    font-style: normal;
    font-size: 55px;
    line-height: 67px;
}

.sect-desc {
    font-weight: 400;
    font-style: normal;
    color: #96AABD;
    font-size: 20px;
    line-height: 1.5;
}

.fade-text{
    font-size: 200px;
    font-weight: 600;
    line-height: 300px;
    letter-spacing: 0.01em;
    background: linear-gradient(176.8deg, #F1F2F7 33.66%, #E6EAEF 77.23%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.operational{
    .card{
        background: #F3F4F8;
        border-radius: 10px;
        border: 1px solid #DFE3E8;
        width: 100%;
        height: 100%;
        transition: .4s ease;
        padding: 32px 18px;

        &:hover{
            background: #FFF;
        }

        .card-title{
            font-size: 20px;
            font-weight: 600;
            line-height: 24px;
            letter-spacing: 0.2px;
            text-align: center;
            color: #002F5D;
            margin-top: 16px;
        }

        .card-text{
            font-size: 16px;
            font-weight: 300;
            line-height: 24px;
            letter-spacing: 0.4px;
            text-align: center;
            color: #2B5279;
        }
    }
}

#cust-exp .card, #financial .card{
    background: #061D38;
    border: 1px solid #0D2F52;

    &:hover{
        background: #FFF;
    }

    .card-title{
        color: #FFF;
    }

    .card-text{
        color: #96AABD;
    }
}

#cust-exp .card:hover .card-title, #cust-exp .card:hover .card-text, #financial .card:hover .card-title, #financial .card:hover .card-text{
    color: #2B5279;
}

#financial{
    clip-path: polygon(0px 0px, 100% 0%, 100% 0px, 100% 90%, 50% 100%, 0px 90%);
    padding-bottom: 150px;
}

.row.banner {
    background: linear-gradient(to bottom right, rgb(10, 44, 73, 100%), rgb(6, 34, 58, 100%));
    padding: 40px 56px;
    border-radius: 30px;
    overflow: hidden;
}