.about-title {
    margin-bottom: 32px;
}
.about-content {
    display: flex;
    align-self: center;
    flex-direction: row;
    margin-bottom: 8px;
}
.about-content .about-rs {
    width: 700px;
    padding-left: 45px;
    padding-top: 44px;
    padding-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-content .about-ls {
    width: calc(100% - 700px);
    height: auto;
}
.about-content .about-ls img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 24px;
    display: block;
}
.about-content-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    margin-bottom: 90px;    
}
.about-content-text > *:last-child {
    margin-bottom: 0;
}
.about-advs {
    padding:46px 41px;
    border-radius: 24px;
    background: #FCF8F1;
    overflow: hidden;
}
.advs-list {
    display: flex;
    gap:10px;
    align-items: flex-start;
    justify-content: space-between;
}
.advs-list .adv-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.advs-list .adv-item-value {
    font-size: 64px;
    font-weight: 600;
    line-height: 64px;
    text-align: left;    
    margin-bottom: 10px;
    color: #DFA437;
}
.advs-list .adv-item-value::after {
    content:"+";
    display: inline-block;
    font-size: 64px;
    font-weight: 600;
    line-height: 64px;
    text-align: left;   
    color: #DFA437;
}
.advs-list .adv-item-excerpt {
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    text-align: left;    
    margin: 0;
    max-width: 302px;
}
@media(max-width:1200px) {
    .about-content .about-ls {
        width: calc(100% - 500px);
    }
    .about-content .about-rs {
        width: 500px;
    }
    .about-content-text {
        margin-bottom: 32px;
    }
    .advs-list .adv-item-value {
        font-size: 44px;
        line-height: 44px;
    }
    .advs-list .adv-item-excerpt {
        font-size: 18px;
        line-height: 24px;
    }
}
@media(max-width:992px) {
    .advs-list {
        gap: 24px;
        flex-direction: column;
    }
    .about-content {
        flex-direction: column;
    }
    .about-content .about-ls {
        width: 100%;
    }
    .about-content .about-rs {
        width: 100%;
        padding-left: 0;
    }
}
@media(max-width:768px) {
    .about-content-text {
        font-size: 16px;
        font-weight: 600;
        line-height: 24px;
        text-align: left;
        margin-bottom: 32px;
    }
    .about-content .about-rs {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .about-advs {
        padding: 32px 12px;
    }
    .advs-list .adv-item-value {
        font-size: 34px;
        line-height: 34px;
    }
    .advs-list .adv-item-value::after {
        font-size: 34px;
        line-height: 34px;
    }
    .advs-list .adv-item-excerpt {
        font-size: 16px;
        font-weight: 600;
        line-height: 21px;
    }
}