.section1 {
    display: flex;
    margin: 60px auto 30px;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}
.section1 a{
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
    border-radius: 15px;
}
.section1 a h2{
    font-size: 25px;
    color: #fff;
    font-family: '6SemiBold' !important;
    margin-bottom: 10px;
}
.section1 a pre{
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
}
.section1 a:nth-child(1){
    background: linear-gradient(to right, #5521de, #2d5afd);
}
.section1 a:nth-child(2){
    background: linear-gradient(to right, #fd680c, #fdaa11);
}
.section1 a img{
    width: 85%;
}
.section1 .right {
    text-align: right;
}
.section2 {
    background-color: #e8f4ff;
    margin: 40px auto 30px;
    width: 100%;
    max-width: 1200px;
    padding: 35px 20px;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.section2 h1{
    font-size: 25px;
    font-family: '7Bold' !important;
    line-height: 1.3;
}
.section2 .btn_wrap{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}
.section2 .btn_wrap a{
    background-color: #fff;
    width: 33.3333%;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 23px;
    font-family: '6SemiBold' !important;
}
.section2 .btn_wrap a img{
    width: 80px;
    margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
    .section1 {
        display: flex;
        margin: 35px auto 30px;
        width:90%;
        max-width: 100%;
        gap: 10px;
    }

    .section1 a {
        padding: 17px;
        align-items: flex-start;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        border-radius: 10px;
    }
    .section1 a img {
        width: 60%;
    }
    .section1 a h2 {
        font-size: 20px;
        margin-bottom: 5px;
    }
    .section1 a pre {
        font-size: 16px;
    }
    .section2 {
        margin: 40px auto 30px;
        width: 90%;
        max-width: 100%;
        padding:25px 20px;
        text-align: center;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .section2 h1 {
        font-size: 19px;
        line-height: 1.3;
    }
    .section2 .btn_wrap {
        gap: 10px;
        margin-top: 20px;
        flex-direction: column;
    }
    .section2 .btn_wrap a {
        background-color: #fff;
        width: 100%;
        border-radius: 10px;
        padding: 20px;
        flex-direction: row-reverse;
        align-items: center;
        font-size:18px;
        font-family: '6SemiBold' !important;
        justify-content: space-between;
        text-align: unset !important;
    }
    .section2 .btn_wrap a img {
        width: 45px;
        margin-bottom: 0;
    }
}