.info {
    margin-top: 16px;
}

.info-background {
    max-width: 1360px;
    border-radius: 50px;
    background: rgb(232, 239, 255);
    background: linear-gradient(23deg, rgba(232, 239, 255, 1) 0%, rgba(233, 240, 254, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 341px;
}

.payments-info-background {
    max-width: 1360px;
    border-radius: 50px;
    background: rgb(232, 239, 255);
    background: linear-gradient(23deg, rgba(232, 239, 255, 1) 0%, rgba(233, 240, 254, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 243px;
}

.blog-info-background {
    max-width: 1360px;
    border-radius: 50px;
    background: rgb(232, 239, 255);
    background: linear-gradient(23deg, rgba(232, 239, 255, 1) 0%, rgba(233, 240, 254, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 241px;
}

.info-container {
    width: 85%;
    display: flex;
    gap: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.info-heading h2 {
    font-size: 44px;
    font-weight: 600;
    color: #056DFA;
    text-align: center;
}


.info-body-mh p {
    display: flex;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0em;
    color: #13307E;
    opacity: 0.8;

}

.info-body p {
    display: flex;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0em;
    color: #13307E;
    opacity: 0.8;
}


.info-tabs {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 82px;
    border-radius: 50px;
    background-color: #FFFFFF;
    box-shadow: 0px 6px 40px 0px #5F79971A;
    margin-top: 0;

}

.info-tab-item {
    width: 14%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.info-tab-item sub {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0em;
    opacity: 0.5;
    color: #056DFA;
    height: 100%;
}


.tab-item-active {
    height: 100%;
    cursor:default;
    transition: .3s;
}

.tab-item-active sub {
    opacity: 0.8;
    border-bottom: 3px solid #056DFA;
    transition: .3s;
}

.mobile-info-tabs {
    display: none;
}