.section1 {
    background: linear-gradient(to right, #4ba0cb, #a2e8ce);

 
}
.section1 .contents{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    padding: 40px 0 100px;
    justify-content: space-between;
    align-items: center;
}
.section1 .contents p{
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.section1 .contents pre{
    font-size: 20px;
    color: #fff;
    line-height: 1.3;
    font-weight: 500;
}
.btn_wrap {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: -80px auto 0;
    box-shadow:rgb(200 227 209 / 84%) 0px 2px 8px;
    background-color: #fff;
    padding: 30px 0;
    border-top-left-radius: 35px;
    border-bottom-right-radius: 35px;
}
.btn_wrap a {
    display: flex;
    flex-direction: column;
    width: 25%;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    font-size: 18px;
}

.btn_wrap a::after {
    content: '';
    width: 5px; 
    height: 5px;
    background-color: #333; 
    border-radius: 50%; 
    position: absolute;
    top: 50%; 
    right: -10px; 
    transform: translateY(-50%); 
}
.btn_wrap a:last-child::after {
    content: ''; 
    display: none;
}
.btn_wrap a img{
    width: auto;
    height: 70%;
}
.section2 {
    width: 100%;
    max-width: 1200px;
    margin: 100px auto ;
}
.section2 h2{
    font-size: 22px;
    font-weight: 800;
}
.btn_group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.btn_group a {
    display: flex;
    align-items: center;
    width: calc(50% - 10px);
    box-shadow: rgb(200 227 209 / 84%) 0px 0px 0.25em, rgb(200 227 209 / 84%) 0px 0.25em 1em;
    padding: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px ;
}
.btn_group a:nth-child(1) {
    border-top-left-radius: 35px;
}
.btn_group a:nth-child(2) {
    border-top-right-radius: 35px;
}
.btn_group a:nth-child(5) {
    border-bottom-left-radius: 35px;
}
.btn_group a:nth-child(6) {
    border-bottom-right-radius: 35px;
}
.btn_group a .left{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:40px;
}
.btn_group a span{
    font-size: 20px;
    font-weight: 500;
}
.btn_group a .icon{
    width: 80px;
    height: auto;
}
.btn_group a .arrow{
    width: 5%;
 }
@media (min-width: 768px) and (max-width: 1200px) {
    .section1 {
        margin-top: -10px;
    }
    .section1 .contents {
        padding: 30px 0 100px;
        width: 90%;
    }
    .section1 .contents .left{
        width: 50%;
    }
    .section1 .contents .right{
        width: 50%;
        text-align: right;
    }
    .section1 .contents .right img{
        width: 80%;
    }
    .btn_wrap {
        display: flex;
        width: 90%;
        max-width: 100%;
    }
    .section2 {
        width: 90%;
        max-width: 100%;
        margin: 50px auto;
    }
    .btn_group a .icon {
        width: 60px;
    }
    .btn_group a .arrow {
        width: 10%;
    }
}
@media screen and (max-width: 767px) {
    .section1 .contents {
        width: 90%;
        max-width: 100%;
        padding: 60px 0 100px;
        flex-direction: column;
        text-align: center;
    }
    .section1 .contents p {
        font-size: 20px;
    }
    .section1 .contents pre {
        font-size: 17px;
    }
    .section1 .contents img {
        width: 60%;
        margin-top: 30px;
    }
    .btn_wrap {
        display: flex;
        width: 90%;
        max-width: 100%;
        margin: -80px auto 0;
        padding: 20px 0;
        border-top-left-radius: 35px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 35px;
        flex-wrap: wrap;
    }
    .btn_wrap a {
        display: flex;
        width: 50%;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-size: 16px;
    }
    .btn_wrap a:nth-child(2)::after {
        content: ''; 
        display: none;
    }
    .btn_wrap a img {
        width: auto;
        height: 40%;
    }
    .section2 {
        width: 90%;
        max-width: 100%;
        margin: 50px auto;
    }
    .section2 h2 {
        font-size: 19px;
    }
    .btn_group a .icon {
        width: 35px;
        height: auto;
    }
    .btn_group a .arrow {
        display: none;
    }
    .btn_group a {
        padding: 10px;
        justify-content: space-between;
        padding: 30px 20px;
    }
    .btn_group a .left {
        gap: 0;
        width: 100%;
    }
    .btn_group a span {
        font-size: 16px;
        font-weight: 500;
    }
}