.container {
    width: 100%;
    max-width: 1210px;
    padding: 0px 15px;
    margin: 0px auto;
}

.discover-succeed {
    padding: 80px 0px;
    background-color: #E1F1F9;
}

h2.heading {
    font-family: Inter;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.1;
    color: #000;
    text-align: center;
    margin: 0px;
}

.discover-succeed .discover-succeed-wrap {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.discover-succeed .discover-succeed-wrap .succeed-card {
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #011129;
    width: calc((100% - 40px) / 3);
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 20px;
    padding: 30px;
}

.discover-succeed .discover-succeed-wrap .succeed-card p {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    margin: 0px;
}

.discover-succeed .discover-succeed-wrap .succeed-card h3 {
    font-family: Inter;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    color: #fff;
    margin: 30px 0 0;
}

.discover-succeed .discover-succeed-wrap .succeed-card .icon-box {
    width: 100%;
    max-width: 65px;
    margin-top: 80px;
}

.discover-succeed .discover-succeed-wrap .succeed-card .icon-box img {
  width: 100%;
  border-radius: 10px;
}

@media (max-width:991px) {
    .discover-succeed .discover-succeed-wrap {
        margin-top: 30px;
    }

    .discover-succeed .discover-succeed-wrap .succeed-card {
        width: calc((100% - 40px) / 2);
    }
}

@media (max-width: 767px) {
    .discover-succeed {
        padding: 60px 0px;
    }

    .discover-succeed .discover-succeed-wrap .succeed-card {
        width: 100%;
    }

    h2.heading {
        font-size: 28px;
    }