.banner{
    background: linear-gradient(98deg, #A47052 1%, #D5A971 101%), #F6F6F6;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    min-height: 246px;
    position: relative;
}
.banner::before{
    position: absolute;
    content: '';
    inset: 0;
    background: url(../img/openBanner.png) no-repeat;
    background-size: 80% auto;
    background-position: -400px 0px;
}
.banner .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;   
    padding-top: 50px;
}
.banner .wrap>div:first-of-type{
    font-size: 48px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0em;
    color: #FFFFFF;
    position: relative;
}
.banner .wrap>div:first-of-type::before{
    position: absolute;
    content: '';
    top: -20px;
    width: 56px;
    height: 8px;
    background: #FFFFFF;
}
.banner .wrap>div:last-of-type{
    font-size: 24px;
    font-weight: 600;
    line-height: 44px;
    text-align: right;
    text-transform: uppercase;
    color: #E2E2E2;
    display: flex;
    align-items: center;
    gap: 12px;
}
.banner .wrap>div:last-of-type>img{
    width: 23px;
    height: 16px;
}
.open{
    width: 100%;
    display: flex;
    justify-content: center;
}
.wrap{
    padding: 64px 0;
}
.title{
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    letter-spacing: 0em;
    color: #333333;
    margin-bottom: 32px;
}
.subTitle{
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 0em;
    color: #333333;
    margin-bottom: 28px;
}
.text{
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0em;
    color: #333333;
}
.open .ul{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 23px;
}
.open .ul>div{
    font-size: 16px;
    font-weight: normal;
    line-height: 16px;
    letter-spacing: 0em;
    color: #666666;
    position: relative;
    padding-left: 24px;
}
.open .ul>div::before{
    position: absolute;
    content: '';
    left: 0;
    top: 1px;
    width: 12px;
    height: 12px;
    background: #D8D8D8;
    border-radius: 50px;
}
.open .ul>div>span{
    font-size: 20px;
    font-weight: normal;
    line-height: 30px;
    letter-spacing: 0em;
    color: #666666;
    margin-top: 12px;
}
.open .ul>div>a{
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 0em;
    text-decoration: underline;
    color: #3366FF;
    margin-top: 12px;
}
.process{
    width: 100%;
    height: 579px;
    background: #F6F6F6;
    display: flex;
    justify-content: center;
}
.round{
    width: 100%;
    height: 140px;
    border-top: 2px solid #D8D8D8;
    border-right: 2px solid #D8D8D8;
    border-bottom: 2px solid #D8D8D8;
    border-radius: 0 200px 200px 0;
}
.process .list{
    display: flex;
    align-items: end;
    gap: 40px;
    margin-bottom: -25px;
}
.process .list .item{
    display: flex;
    flex-direction: column;
    width: 200px;
    align-items: center;
    gap: 20px;
}
.item>.text{
    font-size: 14px;
    font-weight: normal;
    line-height: 19.6px;
    text-align: center;
    letter-spacing: 0em;

    font-variation-settings: "opsz" auto;
    color: #444444;
}
.item>.num{
    width: 50px;
    height: 50px;
    background: linear-gradient(136deg, #A47052 0%, #D5A971 101%), #A56F26;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0em;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}
.list.reverse{
    margin-top: -25px;
    margin-bottom: 0;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: start;
}