
.investmentCardSec {
   width: 100%;
   margin-bottom: 180px;
}
.investmentCardSec .investmentCardContainer {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    width: 100%;
    padding: 0px 30px;
}
.investmentCardInner {
    height: 400px;
    width: 32%;
    position: relative;
}
.investmentCardInner .investmentCardInnerBack {
    border-radius: 20px;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 10px;
    left: 10px;
    transform: rotate(357deg);
}
.investmentCardInnerFront {

    border-radius: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    box-shadow: 0px 4px 4px rgba(0 0 0 / 25%);
    border: none;
}
.investmentCardInner:first-child .investmentCardInnerBack,
.investmentCardInner:first-child .investmentCardInnerFront {
    background: linear-gradient(117deg, #4a618f 50%, #29447B 50%);
}
.investmentCardInner:nth-child(2) .investmentCardInnerBack,
.investmentCardInner:nth-child(2) .investmentCardInnerFront {
    background: linear-gradient(117deg, #a2a2a2 50%, #757575 50%);
}
.investmentCardInner:last-child .investmentCardInnerBack,
.investmentCardInner:last-child .investmentCardInnerFront {
    background: linear-gradient(114deg, #4b4a4a 50%, rgba(26, 26, 26, 1) 50%);
}
.investmentCardContentOne {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.investmentCardContentTwo {
    display: none;
}
.investmentCardInnerFront:hover .investmentCardContentOne {
    display: none;
}
.investmentCardInnerFront:hover .investmentCardContentTwo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}
.investmentCardContentOne p {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #fff;
    margin: 0;
}
.investmentCardContentOne h4 {
    font-size: 64px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    text-align: center;
}
.investmentCardContentOne .investmentCardBtnImg {
    position: absolute;
    right: 20px;
    bottom: 40px;
}
.investmentCardContentTwo .investmentCardMoneyBagImg {
    margin-top: 10px;
}
.investmentCardContentTwo h3 {
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.investmentCardContentTwo h2 {
    font-size: 64px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #fff;
    margin: 0;
}
.investmentCardInner.blue:hover  .investmentCardInnerFront,
.investmentCardInner.blue:hover  .investmentCardInnerBack  {
    background: #29447B;
}

.investmentCardInner.silver:hover .investmentCardInnerFront,
.investmentCardInner.silver:hover .investmentCardInnerBack
{
    background: #757575;
}

.investmentCardInner.platinum:hover .investmentCardInnerFront,
.investmentCardInner.platinum:hover .investmentCardInnerBack{
    background: #1A1A1A;
}

@media(max-width: 768px){
    .investmentCardInnerFront.active .investmentCardContentOne {
        display: none;
    }
    .investmentCardInnerFront.active .investmentCardContentTwo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
