html {
    
}
body {
    background: #9d2339;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
}
.color_white {
    color: #fff;
}
.color_red {
    color: #9d2339;
}
.cara_head {
    font-family: "caraque-melted", sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 1px;
}
.cara_subhead {
    font-family: "caraque-melted", sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.2;
    letter-spacing: 1px;
}
.arial_para {
    font-family: 'Arial Narrow';
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: 1px;
}
.arial_para_sm {
    font-family: 'Arial Narrow';
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: 1px;
}
.anim_icon {
    animation: anim 6s linear infinite;
    /* transition: .3s all ease; */
}
@keyframes anim {
  0% {
    transform:translate(0,0);
  }
  25% {
    transform: translate(-30px, -10px);
  }
  50% {
    transform: translate(-20px, -30px);
  }
  75% {
    transform: translate(-30px, -10px);
  }
  100% {
    transform:translate(0,0);
  }
}
.anim_icon_rev {
    animation: anim_rev 6s linear infinite;
    /* transition: .3s all ease; */
}
@keyframes anim_rev {
  0% {
    transform:translate(0,0);
  }
  25% {
    transform: translate(30px, -10px);
  }
  50% {
    transform: translate(20px, -30px);
  }
  75% {
    transform: translate(30px, -10px);
  }
  100% {
    transform:translate(0,0);
  }
}
.anim_icon_half {
    animation: anim_half 5s linear infinite;
    /* transition: .3s all ease; */
}
@keyframes anim_half {
  0% {
    transform:translate(0,0);
  }
  25% {
    transform: translate(-8px, -5px);
  }
  50% {
    transform: translate(-15px, -20px);
  }
  75% {
    transform: translate(-8px, -5px);
  }
  100% {
    transform:translate(0,0);
  }
}
.anim_icon_half_rev {
    animation: anim_half_rev 5s linear infinite;
    /* transition: .3s all ease; */
}
@keyframes anim_half_rev {
  0% {
    transform:translate(0,0);
  }
  25% {
    transform: translate(8px, -5px);
  }
  50% {
    transform: translate(15px, -20px);
  }
  75% {
    transform: translate(8px, -5px);
  }
  100% {
    transform:translate(0,0);
  }
}
/*-========== Landing Background Section ==========-*/
.l_backicon_sec {
    display: block;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: clip;
}
.l_backicon_sec.l_backicon_anim {
    width: 200%;
    min-width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.l_backicon_sec .l_backicon_mphone {
    position: absolute;
    top: 18%;
    left: 15%;
    width: 120px;
}
.l_backicon_sec .l_backicon_csoon {
    position: absolute;
    top: 60%;
    left: 15%;
    width: 180px;
}
.l_backicon_sec .l_backicon_bpack {
    position: absolute;
    top: -7%;
    right: -7%;
    width: 30vw;
}
.l_backicon_sec .l_backicon_wgun {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 150px;
}
.l_backicon_sec .l_backicon_mphone img, 
.l_backicon_sec .l_backicon_csoon img, 
.l_backicon_sec .l_backicon_bpack img,
.l_backicon_sec .l_backicon_wgun img {
    width: 100%;
}
/*-========== Landing Main Section ==========-*/
.l_main_sec {
  position: relative;
}
.l_main_sec .landing_main_blank {
    height: 150vh;
}
.l_main_sec .l_main_inner {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
}
.l_main_inner .l_main_bg {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.l_main_inner .l_main_bg img.l_main_bg_img {
    width: 650px;
    height: auto;
    object-fit: cover;
}
.l_main_inner .l_main_bg img.l_main_bg_img.l_main_bg_splash {
    width: 100%;
    min-width: 650px;
}
.l_main_inner .l_main_bg .l_main_img {
    position: absolute;
    width: 320px;
}
.l_main_inner .l_main_bg .l_main_img img {
    width: 100%;
}
/*-========== Landing Content Section ==========-*/
.l_cont_sec {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
}
.l_cont_sec .l_cont_inner {
    text-align: center;
}
.l_cont_inner .l_cont_head {
    max-width: 400px;
    margin: 0 auto 60px;
}
.l_cont_inner .l_cont_para {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.l_cont_sec .l_cont_hicon {
    position: absolute;
    top: 30px;
    left: 15%;
    width: 100px;
}
.l_cont_sec .l_cont_bicon {
    position: absolute;
    top: 20px;
    right: -45px;
    width: 180px;
}
.l_cont_sec .l_cont_hicon img,
.l_cont_sec .l_cont_bicon img {
    width: 100%;
}
/*-========== Landing Splash Gun Section ==========-*/
.l_sgun_sec {
    position: relative;
    padding-bottom: 20px;
}
.l_sgun_sec:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 55px);
    background: #fff;
    top: 55px;
    left: 0;
    z-index: -1;
}
.l_sgun_sec .l_sgun_inner {
    text-align: center;
}
.l_sgun_inner .l_sgun_sgun {
    width: 90%;
    max-width: 920px;
    margin: 0 auto 20px;
}
.l_sgun_inner .l_sgun_sgun img {
    width: 100%;
}
.l_sgun_inner .l_sgun_para {
    margin: 0;
}
.l_sgun_sec .l_sgun_bicon {
    position: absolute;
    top: 0;
    left: -45px;
    width: 180px;
}
.l_sgun_sec .l_sgun_bicon img {
    width: 100%;
}
/*-========== Landing Form Section ==========-*/
.l_form_sec {
    position: relative;
    padding: 60px 60px 0;
}
.l_form_sec .l_form_inner {
    text-align: center;
}
.l_form_inner .l_form_head {
    position: relative;
    max-width: 400px;
    margin: 0 auto 16px;
}
.l_form_inner .l_form_head span {
    position: relative;
}
.l_form_inner .l_form_head span img {
    position: absolute;
    bottom: calc(100% - 10px);
    left: calc(100% - 16px);
    width: 120px;
}
.l_form_inner .l_form_para {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 40px;
}
.l_form_inner .l_form_btn {
    display: inline-block;
    width: 160px;
    margin: 0 auto;
    cursor: pointer;
    position: relative;
    aspect-ratio: 1;
}
.l_form_inner .l_form_btn:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
}
.l_form_inner .l_form_btn img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: .5s all ease;
}
.l_form_inner .l_form_btn:hover img.before_submit {
    transform: rotate(35deg);
}
.l_form_inner .l_form_btn img.btn_hidden {
    opacity: 0;
    visibility: hidden;
}
.l_form_sec .l_form_hmicon {
    position: absolute;
    top: 60px;
    left: -45px;
    width: 180px;
}
.l_form_sec .l_form_hicon {
    position: absolute;
    top: 70px;
    right: 15%;
    width: 100px;
}
.l_form_sec .l_form_hmicon img,
.l_form_sec .l_form_hicon img {
    width: 100%;
}
/*-========== Landing Footer Logo Section ==========-*/
.footer_sec {
    position: relative;
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}
.footer_inner .footer_logo {
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}
.footer_inner .footer_logo img {
    width: 100%;
}
.footer_sec .ee_footer_bicon {
    position: absolute;
    top: calc(50% - 75px);
    right: -45px;
    width: 180px;
}
.footer_sec .ee_footer_bicon img {
    width: 100%;
}
.footer_sec .co_footer_bicon {
    position: absolute;
    top: calc(50% - 75px);
    left: -45px;
    width: 180px;
}
.footer_sec .co_footer_wgbicon {
    position: absolute;
    top: calc(50% - 10px);
    right: 15%;
    width: 150px;
}
.footer_sec .co_footer_bicon img,
.footer_sec .co_footer_wgbicon img {
    width: 100%;
}
/*-========== Landing Footer Lists Section ==========-*/
.footer_list_sec {
    padding: 15px 5%;
}
.footer_list_inner .footer_list {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer_list_inner .footer_list li {
    font-family: 'Arial Narrow';
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1px;
    color: #fff;
}
.footer_list_inner .footer_list li a {
    color: inherit;
    text-decoration: none;
}
/*-========== Early Entry Content Section ==========-*/
.ee_cont_sec {
    position: relative;
    padding: 60px 0;
    z-index: 1;
}
.ee_cont_sec .ee_cont_inner {
    text-align: center;
}
.ee_cont_inner .ee_cont_head {
    max-width: 550px;
    margin: 0 auto 40px;
}
.ee_cont_inner .ee_cont_para {
    width: 80%;
    max-width: 670px;
    margin: 0 auto 40px;
}
.ee_cont_inner .ee_cont_note {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.open_barcode {
    cursor: pointer;
    border-bottom: 1px solid;
}
.ee_cont_sec .ee_cont_bicon {
    position: absolute;
    bottom: 60px;
    left: -45px;
    width: 180px;
}
.ee_cont_sec .ee_cont_dicon {
    position: absolute;
    top: 140px;
    right: 15%;
    width: 75px;
}
.ee_cont_sec .ee_cont_bicon img, 
.ee_cont_sec .ee_cont_dicon img{
    width: 100%;
}
.barcode_popup_outer {
    position: relative;
    width: 100%;
    text-align: center;
}
.barcode_popup {
    position: absolute;
    left: 50%;
    top: calc(100% + 20px);
    width: calc(85% - 120px);
    padding: 60px 60px;
    background: rgb(255 255 255 / 98%);
    border-radius: 20px;
    transform: translateX(-50%);
}
.barcode_popup .barcode_popup_close {
    position: absolute;
    right: 10px;
    top: 10px;
     width: 36px;
    height: 36px;
    padding: 2px;
    color: #fff;
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    background: #000;
    border-radius: 50px;
    cursor: pointer;
}
.barcode_popup .barcode_inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}
.barcode_inner .barcode_list {
    width: calc(33.3334% - 20px);
    max-width: 280px;
    text-align: center;
}
.barcode_inner .barcode_list .barcode_head {
    margin: 0 0 20px;
    text-transform: uppercase;
}
.barcode_inner .barcode_list .barcode_img {
    width: 100%;
    border-radius: 50%;
    overflow: hidden;
}
.barcode_inner .barcode_list .barcode_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*-========== Early Entry Bottom Section ==========-*/
.ee_bottom_sec {
    position: relative;
    padding: 0;
}
.ee_bottom_sec .ee_bottom_inner {
    text-align: center;
}
.ee_bottom_sec .ee_bottom_head {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}
.ee_bottom_inner .ee_bottom_head span {
    position: relative;
}
.ee_bottom_inner .ee_bottom_para {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 20px;
}
.ee_bottom_sec .ee_bottom_hicon {
    position: absolute;
    top: -70px;
    right: 15%;
    width: 100px;
}
.ee_bottom_sec .ee_bottom_hicon img {
    width: 100%;
    rotate: 75deg;
}
/*-========== Competition Over Content Section ==========-*/
.co_cont_sec {
    position: relative;
    padding: 100px 0 60px;
}
.co_cont_sec .co_cont_inner {
    text-align: center;
}
.co_cont_inner .co_cont_head {
    max-width: 550px;
    margin: 0 auto 40px;
}
.co_cont_inner .co_cont_para {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 30px;
}
.co_cont_inner .co_cont_para:last-child {
    margin-bottom: 0;
}
.co_cont_sec .co_cont_hmicon {
    position: absolute;
    top: 160px;
    left: -45px;
    width: 180px;
}
.co_cont_sec .co_cont_bicon {
    position: absolute;
    top: 60px;
    right: -45px;
    width: 180px;
}
.co_cont_sec .co_cont_hmicon img, 
.co_cont_sec .co_cont_bicon img{
    width: 100%;
}
/*-========== Competition Over Bottom Section ==========-*/
.co_bottom_sec {
    position: relative;
    padding: 0;
}
.co_bottom_sec .co_bottom_inner {
    text-align: center;
}
.co_bottom_sec .co_bottom_head {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}
.co_bottom_inner .co_bottom_head span {
    position: relative;
}
.co_bottom_sec .co_bottom_hicon {
    position: absolute;
    top: -60px;
    left: 15%;
    width: 100px;
}
.co_bottom_sec .co_bottom_ilmicon {
    position: absolute;
    top: -60px;
    right: 15%;
    width: 200px;
}
.co_bottom_sec .co_bottom_hicon img,
.co_bottom_sec .co_bottom_ilmicon img {
    width: 100%;
}
/*-========== Data Entry Content Section ==========-*/
.de_cont_sec {
    position: relative;
    padding: 100px 0 60px;
}
.de_cont_sec .de_cont_inner {
    text-align: center;
}
.de_cont_inner .de_cont_head {
    max-width: 550px;
    margin: 0 auto 40px;
}
.de_cont_inner .de_cont_para {
    width: 80%;
    max-width: 540px;
    margin: 0 auto 30px;
}
.de_cont_inner .de_cont_para:last-child {
    margin-bottom: 0;
}
.de_cont_sec .de_cont_wgicon {
    position: absolute;
    top: 200px;
    left: -45px;
    width: 180px;
}
.de_cont_sec .de_cont_bicon {
    position: absolute;
    top: 100px;
    right: 60px;
    width: 180px;
}
.de_cont_sec .de_cont_wgicon img, 
.de_cont_sec .de_cont_bicon img{
    width: 100%;
}
.de_cont_sec .de_cont_wgicon img {
    scale: -1 1;
}
/*-========== Data Entry Form Section ==========-*/
.de_form_sec {
    position: relative;
    z-index: 1;
}
.de_form_sec .de_form_inner {
    position: relative;
    z-index: 1;
}
.de_form_inner form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.de_form_inner form .form_fields {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #fff;
    width: 80%;
    max-width: 300px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 12px 6px rgb(0 0 0 / 20%);
}
.de_form_inner form .form_fields .error-message,
.de_form_inner form .form_fields .success-message {
    font-family: 'Arial Narrow';
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
    color: #9d2339;
}
.de_form_inner form .form_fields .success-message {
    color: #0a7800;
}
.de_form_inner form .form_fields .form_inp {
    font-family: "caraque-melted", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #9d2339;
    border: 0;
    border-bottom: 2px solid #9d2339;
    margin-bottom: 16px;
    outline: 0;
}
.de_form_inner form .form_fields .form_inp::placeholder {
    color: #9d2339;
}
.de_form_inner form .form_fields span {
    font-family: 'Arial Narrow';
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    color: #9d2339;
}
.de_form_inner form .form_fields .form_clabel {
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    font-family: 'Arial Narrow';
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #9d2339;
    margin-top: 10px;
    cursor: pointer;
}
.de_form_inner form .form_fields .form_clabel input {
    display: none;
}
.de_form_inner form .form_fields .form_clabel:before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2px solid #9d2339;
}
.de_form_inner form .form_fields .form_clabel:after {
    content: '';
    position: absolute;
    left: 4px;
    width: 18px;
    height: 18px;
    background: #9d2339;
    opacity: 0;
}
.de_form_inner form .form_fields .form_clabel:has(input:checked):after {
    opacity: 1;
} 
.de_form_inner .de_form_note {
    margin: 0;
}
.de_form_inner form .form_btn {
    width: 160px;
    margin: 20px auto 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}
.de_form_inner form .form_btn img {
    width: 100%;
    transition: .5s all ease;
}
.de_form_inner .form_btn.before_submit:hover img {
    transform: rotate(35deg);
}
.de_form_inner form .form_btn.after_submit {
    display: none;
}
.de_form_sec .de_form_tjicon {
    position: absolute;
    top: 40px;
    left: 0;
    width: 260px;
}
.de_form_sec .de_form_flicon {
    position: absolute;
    bottom: 80px;
    left: 15%;
    width: 140px;
}
.de_form_sec .de_form_ilmticon {
    position: absolute;
    top: -40px;
    right: 60px;
    width: 180px;
}
.de_form_sec .de_form_dicon {
    position: absolute;
    bottom: 120px;
    right: 22%;
    width: 80px;
}
.de_form_sec .de_form_tjicon img,
.de_form_sec .de_form_flicon img,
.de_form_sec .de_form_ilmticon img,
.de_form_sec .de_form_dicon img {
    width: 100%;
}
.de_form_sec .de_form_flicon img {
    rotate: -15deg;
}
/*-========== Entry Confirmation Content Section ==========-*/
.ec_cont_sec {
    position: relative;
    padding: 100px 0 60px;
}
.ec_cont_sec .ec_cont_inner {
    text-align: center;
}
.ec_cont_inner .ec_cont_head {
    max-width: 740px;
    margin: 0 auto;
}
.ec_cont_sec .ec_cont_dicon {
    position: absolute;
    top: 110px;
    left: 15%;
    width: 80px;
}
.ec_cont_sec .ec_cont_bicon {
    position: absolute;
    top: -10px;
    right: -20px;
    width: 180px;
}
.ec_cont_sec .ec_cont_dicon img, 
.ec_cont_sec .ec_cont_bicon img{
    width: 100%;
}
.ec_cont_sec .ec_cont_dicon img {
    scale: -1 1;
}
/*-========== Entry Confirmation Splash Gun Section ==========-*/
.ec_sgun_sec {
    position: relative;
    margin-top: 20px;
    padding-bottom: 20px;
}
.ec_sgun_sec:before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% - 55px);
    background: #fff;
    top: 55px;
    left: 0;
    z-index: -1;
}
.ec_sgun_sec .ec_sgun_inner {
    text-align: center;
}
.ec_sgun_inner .ec_sgun_sgun {
    width: 90%;
    max-width: 920px;
    margin: 0 auto 20px;
}
.ec_sgun_inner .ec_sgun_sgun img {
    width: 100%;
}
.ec_sgun_inner .ec_sgun_para {
    margin: 0;
}
.ec_sgun_sec .ec_sgun_hicon {
    position: absolute;
    top: 5px;
    left: 15%;
    width: 100px;
}
.ec_sgun_sec .ec_sgun_hicon img {
    width: 100%;
}
/*-========== Entry Confirmation Message Section ==========-*/
.ec_message_sec {
    position: relative;
    padding: 60px;
}
.ec_message_sec .ec_message_inner {
    text-align: center;
}
.ec_message_inner .ec_message_head {
    position: relative;
    max-width: 740px;
    margin: 0 auto 16px;
}
.ec_message_inner .ec_message_head span {
    position: relative;
}
.ec_message_inner .ec_message_head span img {
    position: absolute;
    bottom: calc(100% - 10px);
    left: calc(80% + 0px);
    width: 120px;
}
.ec_message_inner .ec_message_para {
    width: 90%;
    max-width: 650px;
    margin: 0 auto;
}
.ec_message_sec .ec_message_bicon {
    position: absolute;
    top: -40px;
    left: -45px;
    width: 180px;
}
.ec_message_sec .ec_message_wgicon {
    position: absolute;
    top: -60px;
    right: 15%;
    width: 130px;
}
.ec_message_sec .ec_message_bicon img,
.ec_message_sec .ec_message_wgicon img {
    width: 100%;
}
/*-========== Entry Confirmation Bottom Section ==========-*/
.ec_bottom_sec {
    position: relative;
    padding: 0;
}
.ec_bottom_sec .ec_bottom_inner {
    text-align: center;
}
.ec_bottom_sec .ec_bottom_head {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}
.ec_bottom_inner .ec_bottom_head span {
    position: relative;
}
.ec_bottom_inner .ec_bottom_para {
    width: 80%;
    max-width: 800px;
    margin: 0 auto 20px;
}
.ec_bottom_sec .ec_bottom_ticon {
    position: absolute;
    top: 40px;
    right: 24%;
    width: 100px;
}
.ec_bottom_sec .ec_bottom_ticon img {
    width: 100%;
}
.data_entry_sec {
    margin: 60px 0 0;
    overflow: hidden;
}
/*-========== Responsive MAX-Width 1400PX ==========-*/
@media screen and (max-width: 1400px) {
  .l_main_inner .l_main_bg img.l_main_bg_img {
    width: 550px;
  }
  .l_main_inner .l_main_bg .l_main_img {
    width: 260px;
  }
  .l_backicon_sec .l_backicon_mphone {
    width: 100px;
  }
  .l_backicon_sec .l_backicon_csoon {
    width: 150px;
  }
  .l_backicon_sec .l_backicon_bpack {
    width: 40vw;
    right: -10%;
  }
  .l_backicon_sec .l_backicon_wgun {
    width: 110px;
  }
  .ee_bottom_sec .ee_bottom_hicon {
    top: -60px;
    width: 80px;
  }
  .l_form_sec .l_form_hicon {
    width: 80px;
  }
  .footer_inner .footer_logo {
    max-width: 330px;
  }
  .l_cont_sec .l_cont_hicon {
    width: 80px;
  }
  .de_cont_sec .de_cont_wgicon {
    width: 160px;
  }
}
/*-========== Responsive MAX-Width 1200PX ==========-*/
@media screen and (max-width: 1200px) {
  .l_backicon_sec .l_backicon_mphone {
    left: calc(50% - 420px);
  }
  .l_backicon_sec .l_backicon_csoon {
    left: calc(50% - 400px);
  }
  .l_backicon_sec .l_backicon_bpack {
    width: 500px;
    right: -140px;
    top: -40px;
  }
  .l_backicon_sec .l_backicon_wgun {
    left: calc(50% + 320px);
  }
  .l_sgun_inner .l_sgun_sgun {
    width: 80%;
    max-width: 760px;
  }
  .de_cont_sec .de_cont_wgicon {
    width: 150px;
  }
  .de_form_sec .de_form_tjicon {
    width: 220px;
  }
}
/*-========== Responsive MAX-Width 1024PX ==========-*/
@media screen and (max-width: 1024px) {
  .cara_head {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .cara_subhead {
    font-size: 22px;
  }
  .arial_para {
    font-size: 20px;
  }
  .l_main_sec .l_main_inner {
    height: auto;
    padding: 120px 0 40px;
  }
  .l_backicon_sec {
    height: 100%;
  }
  .l_main_inner .l_main_bg img.l_main_bg_img {
    width: 440px;
  }
  .l_main_inner .l_main_bg .l_main_img {
    width: 200px;
  }
  .l_backicon_sec .l_backicon_mphone {
    left: unset;
    right: calc(50% + 220px);
  }
  .l_backicon_sec .l_backicon_csoon {
    left: unset;
    right: calc(50% + 220px);
    top: 70%;
  }
  .l_backicon_sec .l_backicon_wgun {
    left: calc(50% + 250px);
    top: 70%;
  }
  .ee_cont_inner .ee_cont_head {
    max-width: 390px;
  }
  .ee_cont_inner .ee_cont_para {
    max-width: 480px;
  }
  .ee_cont_sec .ee_cont_bicon {
    width: 150px;
  }
  .ee_cont_sec .ee_cont_dicon {
    right: unset;
    left: calc(50% + 200px);
    width: 60px;
    top: 160px;
  }
  .barcode_popup {
    width: calc(90% - 80px);
    padding: 40px 40px;
  }
  .barcode_popup .barcode_popup_close {
    width: 30px;
    height: 30px;
    font-size: 24px;
    line-height: 34px;
  }
  .ee_bottom_sec .ee_bottom_hicon {
    top: -50px;
    width: 70px;
  }
  .footer_inner .footer_logo {
    max-width: 260px;
  }
  .footer_sec .ee_footer_bicon {
    width: 150px;
  }
  .l_form_sec .l_form_hicon {
    width: 70px;
  }
  .l_form_sec .l_form_hmicon {
    width: 150px;
  }
  .l_form_inner .l_form_head span img {
    bottom: calc(100% - 6px);
    left: calc(100% - 30px);
    width: 100px;
  }
  .l_form_inner .l_form_btn {
    width: 130px;
  }
  .l_sgun_sec .l_sgun_bicon {
    width: 150px;
  }
  .l_cont_inner .l_cont_head {
    margin: 0 auto 40px;
  }
  .l_cont_sec .l_cont_bicon {
    width: 150px;
  }
  .l_cont_sec .l_cont_hicon {
    width: 70px;
  }
  .de_cont_sec .de_cont_bicon {
    width: 150px;
    right: 40px;
  }
  .de_cont_inner .de_cont_head {
    margin: 0 auto 20px;
    max-width: 388px;
  }
  .de_cont_inner .de_cont_para {
    max-width: 380px;
  }
  .de_form_sec .de_form_ilmticon {
    right: 40px;
    width: 140px;
  }
  .de_form_inner form .form_fields {
    max-width: 260px;
    padding: 30px;
  }
  .de_cont_sec .de_cont_wgicon {
    width: 120px;
    left: -35px;
  }
  .de_cont_sec {
    padding: 60px 0;
  }
  .de_form_sec .de_form_tjicon {
    width: 180px;
    left: -10px;
  }
  .de_form_sec .de_form_flicon {
    width: 100px;
  }
  .de_form_sec .de_form_dicon {
    right: 15%;
    width: 60px;
  }
  .de_form_inner form .form_btn {
    width: 130px;
  }
}
/*-========== Responsive MAX-Width 767PX ==========-*/
@media screen and (max-width: 767px) {
    @keyframes anim {
      0% {
        transform:translate(0,0);
      }
      25% {
        transform: translate(-20px, -10px);
      }
      50% {
        transform: translate(-10px, -20px);
      }
      75% {
        transform: translate(-20px, -10px);
      }
      100% {
        transform:translate(0,0);
      }
    }
    @keyframes anim_rev {
      0% {
        transform:translate(0,0);
      }
      25% {
        transform: translate(20px, -10px);
      }
      50% {
        transform: translate(10px, -20px);
      }
      75% {
        transform: translate(20px, -10px);
      }
      100% {
        transform:translate(0,0);
      }
    }
    @keyframes anim_half {
      0% {
        transform:translate(0,0);
      }
      25% {
        transform: translate(-4px, -5px);
      }
      50% {
        transform: translate(-8px, -10px);
      }
      75% {
        transform: translate(-4px, -5px);
      }
      100% {
        transform:translate(0,0);
      }
    }
    @keyframes anim_half_rev {
      0% {
        transform:translate(0,0);
      }
      25% {
        transform: translate(4px, -5px);
      }
      50% {
        transform: translate(8px, -10px);
      }
      75% {
        transform: translate(4px, -5px);
      }
      100% {
        transform:translate(0,0);
      }
    }
  .l_main_inner .l_main_bg img.l_main_bg_img {
    width: 380px;
  }
  .l_main_inner .l_main_bg .l_main_img {
    width: 180px;
  }
  .l_backicon_sec .l_backicon_mphone {
    width: 80px;
    left: 15px;
    right: unset;
  }
  .l_backicon_sec .l_backicon_csoon {
    width: 120px;
    left: 30px;
    right: unset;
  }
  .l_backicon_sec .l_backicon_bpack {
    width: 440px;
    right: -110px;
    top: -30px;
  }
  .l_backicon_sec .l_backicon_wgun {
    width: 100px;
    left: unset;
    right: 15px;
  }
  .ee_cont_sec .ee_cont_bicon {
    width: 120px;
  }
  .barcode_popup {
    padding: 40px 20px;
    width: calc(90% - 40px);
  }
  .barcode_popup .barcode_inner {
    gap: 20px;
  }
  .barcode_inner .barcode_list {
    width: calc(33.3334% - 15px);
  }
  .footer_sec .ee_footer_bicon {
    width: 120px;
    top: calc(50% - 30px);
  }
  .l_sgun_sec .l_sgun_bicon {
    width: 120px;
  }
  .l_form_sec .l_form_hmicon {
    width: 120px;
  }
  .l_form_sec .l_form_hicon {
    right: 10%;
    top: 90px;
  }
  .l_cont_inner .l_cont_head {
    margin: 0 auto 20px;
  }
  .l_cont_inner .l_cont_para {
    width: 90%;
  }
  .l_cont_sec .l_cont_bicon {
    width: 120px;
  }
  .l_cont_sec .l_cont_hicon {
    left: 10%;
    top: 40px;
  }
  .de_cont_sec .de_cont_bicon {
    width: 120px;
    right: 20px;
  }
  .de_cont_sec .de_cont_wgicon {
    width: 100px;
    left: -25px;
  }
  .de_form_sec .de_form_tjicon {
    width: 160px;
  }
  .de_form_sec .de_form_flicon {
    width: 90px;
    left: 40px;
  }
  .de_form_sec .de_form_dicon {
    right: 80px;
  }
  .de_form_sec .de_form_ilmticon {
    right: 20px;
    width: 120px;
  }
}
/*-========== Responsive MAX-Width 640PX ==========-*/
@media screen and (max-width: 640px) {
  .arial_para {
    font-size: 18px;
  }
  .l_main_inner .l_main_bg img.l_main_bg_img {
    width: 62%;
  }
  .l_main_inner .l_main_bg .l_main_img {
    width: 30%;
  }
  .l_main_sec .l_main_inner {
    padding: 60px 0 40px;
  }
  .l_backicon_sec .l_backicon_mphone {
    width: 70px;
    left: 0px;
  }
  .l_backicon_sec .l_backicon_csoon {
    width: 95px;
    left: 0px;
  }
  .l_backicon_sec .l_backicon_bpack {
    width: 60%;
    right: -80px;
    top: -20px;
  }
  .l_backicon_sec .l_backicon_wgun {
    width: 70px;
    right: 10px;
  }
  .ee_cont_inner .ee_cont_para {
    width: calc(100% - 80px);
    padding: 0 40px;
  }
  .ee_cont_sec .ee_cont_dicon {
    right: 20px;
    left: unset;
    width: 50px;
  }
  .ee_cont_sec .ee_cont_bicon {
    width: 100px;
    bottom: 40px;
  }
  .ee_bottom_sec .ee_bottom_hicon {
    top: -50px;
    width: 60px;
    right: 30px;
  }
  .footer_inner .footer_logo {
    max-width: unset;
    width: 50%;
  }
  .footer_sec .ee_footer_bicon {
    width: 100px;
    bottom: 40px;
  }
  .barcode_popup .barcode_inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .barcode_inner .barcode_list {
    width: calc(50% - 10px);
  }
  .l_sgun_sec:before {
    top: 40px;
    height: calc(100% - 40px);
  }
  .l_sgun_sec .l_sgun_bicon {
    width: 100px;
    left: -30px;
  }
  .l_form_sec {
    padding-top: 40px;
  }
  .l_form_inner .l_form_head span img {
    width: 70px;
    left: calc(100% - 20px);
  }
  .l_form_sec .l_form_hicon {
    width: 60px;
    right: 30px;
  }
  .l_form_sec .l_form_hmicon {
    width: 100px;
    left: -30px;
  }
  .l_cont_sec {
    padding: 40px 0;
  }
  .l_cont_sec .l_cont_hicon {
    width: 60px;
    left: 0px;
  }
  .l_cont_sec .l_cont_bicon {
    width: 100px;
    right: -30px;
  }
  .de_cont_sec .de_cont_bicon {
    width: 100px;
    top: 140px;
    right: -10px;
  }
  .de_cont_sec .de_cont_wgicon {
    width: 95px;
    top: 180px;
  }
  .de_form_sec .de_form_ilmticon {
    right: 0px;
    width: 100px;
  }
  .de_form_sec .de_form_tjicon {
    top: -30px;
    width: 140px;
  }
  .de_form_sec .de_form_dicon {
    right: 40px;
    width: 55px;
  }
  .de_form_sec .de_form_flicon {
    width: 80px;
    left: 30px;
  }
}
/*-========== Responsive MAX-Width 480PX ==========-*/
@media screen and (max-width: 480px) {
  .cara_head {
    font-size: 24px;
  }
  .arial_para {
    font-size: 16px;
  }
  .arial_para_sm {
    font-size: 15px;
  }
  .l_main_inner .l_main_bg img.l_main_bg_img {
    width: 58%;
  }
  .l_main_inner .l_main_bg .l_main_img {
    width: 27%;
  }
  .l_backicon_sec .l_backicon_mphone {
    width: 60px;
  }
  .l_backicon_sec .l_backicon_csoon {
    width: 80px;
  }
  .l_backicon_sec .l_backicon_bpack {
    width: 70%;
  }
  .l_backicon_sec .l_backicon_wgun {
    width: 60px;
    right: 0px;
  }
  .ee_cont_sec {
    padding: 40px 0;
  }
  .ee_cont_sec .ee_cont_dicon {
    top: 130px;
  }
  .ee_cont_sec .ee_cont_bicon {
    width: 90px;
  }
  .ee_bottom_sec .ee_bottom_hicon {
    width: 45px;
    right: 20px;
  }
  .barcode_inner .barcode_list {
    width: calc(1000% - 10px);
  }
  .barcode_inner .barcode_list .barcode_head {
    margin: 0 0 10px;
  }
  .barcode_inner .barcode_list .barcode_img {
    max-width: 200px;
    margin: 0 auto;
  } 
  .footer_list_inner .footer_list li {
    font-size: 15px;
  }
  .l_sgun_sec:before {
    top: 30px;
    height: calc(100% - 30px);
  }
  .l_sgun_sec .l_sgun_bicon {
    width: 90px;
  }
  .l_form_sec .l_form_hicon {
    width: 45px;
    right: 10px;
  }
  .l_form_sec .l_form_hmicon {
    width: 90px;
  }
  .l_cont_inner .l_cont_head {
    max-width: 280px;
  }
  .l_cont_sec .l_cont_hicon {
    width: 45px;
    left: -10px;
  }
  .l_cont_sec .l_cont_bicon {
    width: 90px;
  }
  .de_cont_sec .de_cont_bicon {
    width: 90px;
    right: -20px;
    top: 80px;
  }
  .de_cont_sec .de_cont_wgicon {
    width: 85px;
    top: 100px;
  }
  .de_form_sec .de_form_flicon {
    bottom: 20px;
    left: 20px;
  }
  .de_form_sec .de_form_dicon {
    right: 20px;
    bottom: 90px;
  }
  .de_form_sec .de_form_ilmticon {
    width: 90px;
    top: -65px;
  }
  .de_form_sec .de_form_tjicon {
    top: -40px;
    width: 130px;
  }
}