

.con1_flex_wrap{
    display: flex;
    justify-content: stretch;
    align-items: center;
    margin-bottom: 100px;
}
.con1_img_box{
    width: 50%;
}
.con1_img_box img{
    width: 100%;
}
.con1_text_box{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 50%;
}
.con1_title{
    font-size: 24px;
    line-height: 50px;
}
.price{
    font-size: 38px;
    font-weight: 600;
    line-height: 50px;
    color: rgb(0, 66, 141);
}
.btns{
    margin-top: 50px;
    justify-content: space-between;
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}
.btns input{
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgb(18, 27, 56);
    background-color: rgba(0, 0, 0, 0);
    font-size: 16px;
    margin-bottom: 10px;
    height: 50px;
}
.small_btn{
    width: 135px;
}
.small_btn2{
    width: 205px;
}
.btns .big_btn{
    background-color: rgb(18, 27, 56);
    color: white;
    width: 100%;
    height: 50px;
}
.btns .big_btn2{
    width: 100%;
    background-color:white;
    color: black;
}
.con2_title{
    color: rgb(18, 27, 56);
}

.con_title3{
    line-height: 100px;
    border-bottom: 4px solid rgb(18, 27, 56);
    margin-bottom: 100px;
}
.con3_img{
    width: 100%;
    margin-bottom: 100px;
}
.btns{
    width: 90%;
}
@media screen and (max-width:1000px) {
    .con1_flex_wrap{
        flex-direction: column;
    }
    .small_btn{
        width: 100%;
    }
    .con1_img_box{
        width: calc(100% - 20px);
    }
    .con1_img_box img{
        width: 100%;
    }
    .con1_text_box{
        width: calc(100% - 20px);
    }
    .con1_title{
        font-size: 18px;
        line-height: 50px;
    }
    .con2_title{
        padding: 0 20px;
        box-sizing: border-box;
    }
    .price{
        font-size: 24px;
        font-weight: 600;
        line-height: 50px;
        color: rgb(0, 66, 141);
    }
    .small_btn2{
        width: 100%;
    }
}