/* common card*/
.card  {
    width: 552px;
    padding: 40px;
    border-radius: 25px;
}
.card-title{
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    height: 48px;
    text-align: left;
}
.card-desc {
    text-align: left;
}
@media (max-width:1280px) and (min-width: 768px){
    .card-title{
        font-size: 36px;
        line-height: 48px;
        height: 96px;
    }
}
/* solution card */
.solution{
    width: 100%;
}
.solution-title{
    margin-top: 80px;
}
.solution-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    margin-top: 20px;
}
.solution-box .first-card{
    background: linear-gradient(135deg, #201050, #7B50F8CC);
}
.solution-box .second-card{
    background: linear-gradient(135deg, #7B50F8, #301779);
}
.solution-box .third-card{
    background: linear-gradient(135deg, #693EE9, #A186EF);
}
.solution-item {
    box-sizing: border-box;
    position: relative;
    height: 580px;
}
.solution-item:not(:first-child) {
    margin-left: 32px;
}
.solution-item-title{
    color: white;
}
.solution-item-desc{
    color: white;
    width: 80%;
    height: 140px;
    margin-top: 40px;
}
.solution-item-link {
    margin-top: 40px;
}
.solution-item-icon{
    position: absolute;
    right: 40px;
}
.solution-icon{
    width: 180px;
    height: 180px;
}
@media (max-width:1280px) and (min-width: 768px){
    .solution{
        height: 1188px;
    }
    .solution-item {
        height: 780px;
    }
    .solution-item-desc {
        height: 245px;
    }
    .solution-item-icon{
        bottom: 40px;
    }
}
/* core advantage */
.core-advantage {
    margin-top: 80px;
}
.advantage-box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    flex-wrap: wrap;
}
.advantage-item{
    text-align: center;
    border: none;
    flex: 0 0 calc((100% - 320px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.advantage-item-desc{
    height: 116px;
    margin: 40px auto;
    text-align: center;
}
.core-advantage .advantage-item-desc.reason-desc{
    height: 176px;
}
.advantage-icon{
    width: 210px;
    height: 210px;
}
.advantage-icon.small-icon {
    width: 180px;
    height: 180px;
}
/* success example*/
.success-example-box{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    margin-top: 40px;
    padding-bottom:80px ;
    position: relative;
}
.example-item{
    border: none;
    background-size: cover;
    background-position: center;
    width: 28vw;
    height: 28vw;
}
.example-item:not(:first-child) {
    margin-left: 32px;
}
.example{
    position: relative;
}
.example-item::before {
    height: 100%; 
    width: 100%;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background-image: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1),
        rgba(242, 242, 242, 0));
    border-radius: 25px;
    z-index: 1;
}
.example2 {
    background-position: revert;
}
.example-title{
    height: 96px;
}
.example-title,  .example-desc{
    color: white;
}
.example-title,  .example-desc, .example-item-link {
    position: relative;
    z-index: 3;
}
.example-desc, .example-item-link{
    margin-top: 30px;
}
@media (max-width:1280px) and (min-width: 768px){
    .example-item{
        height: 25%; 
    }
    .core-advantage .advantage-item-desc.reason-desc{
    height: 196px;
}
}