.section1 {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto ;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section1 .box{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 300px;
}
.section1 .box p{
    font-size: 25px;
    font-family: '6SemiBold' !important;
    color: #feb614;
    margin-bottom: 20px;
}
.section1 .box pre{
    font-size: 18px;
    background-color: #feb614;
    color: #fff;
    border-radius: 15px;
    padding: 10px 30px;
    line-height: 1.3;
    font-family: '4Regular' !important;
    margin-top: -10px;
}
.section2 {
    background-color: #f5f5f5;
    padding: 50px 0;
}
.section2 .btn_wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.section2 .btn_wrap a{
    width: calc(25% - 15px);
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    font-family: '6SemiBold' !important;
    line-height: 1.3;
}
.section2 .btn_wrap a img{
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
.section1 {
    width: 90%;
    max-width: 100%;
    margin: 40px auto;
    flex-direction: column;
    gap: 25px
}
.icon {
    width: 32%;
}
.arrow_pc{
    transform: rotate(90deg);
    display: block;
    width: 6%;
}
.section1 .box p {
    font-size: 21px;
    margin-bottom: 10px;
  
}
.section1 .box {
    flex-direction: column;
    height: unset;
}
.section1 .box pre {
    font-size: 16px;
    padding: 10px 50px;
    border-radius: 12px;
}
.section2 {
    padding: 40px 0;
}
.section2 .btn_wrap {
    width: 90%;
    max-width: 100%;
    gap: 15px;
}
.section2 .btn_wrap a {
    width: calc(50% - 8px);
    padding: 25px;
    border-radius: 12px;
    font-size: 16px;
}
.section2 .btn_wrap a img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}
}