@charset "UTF-8";
@font-face {
    font-family: "SF-Pro";
    src: url("./fonts/SfPro/SF-Pro.ttf");
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');

input, textarea, button { -webkit-appearance: none; -webkit-border-radius: 0; }

:root {
    --bs-blue: #0d6efd;
    --bs-maincolor: #1293ff;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #f4623a;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #f4623a;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 244, 98, 58;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-white2-rgb: #fafafa;
    --bs-black-rgb: 0, 0, 0;
    --bs-black-rgb2: #404040;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: -apple-system, BlinkMacSystemFont, sans-serif;
    --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
    --bs-body-font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.5;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
}


/* HTML5 display-role reset for older browsers */
body {
    line-height: 1.3;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a { text-decoration: none; }

/* main */
*, body { box-sizing: border-box; font-family: 'SF-Pro'; }
html {
    font-size: 62.5%;
}
.section-container{
    position: relative;
    width: 360px;
    height: 100%;
    margin: 0px auto;
}
.section-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.wrap {
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    background: #f1f1f1;
}
header {
    background: #fff;
    height: 40px;
    display: flex;
    justify-content: space-between;
    line-height: 10px;
    padding: 0 20px;
}
.logo {
    display: block;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}
.mBtn a {
    display: block;
    text-indent: -9999px;
    width: 24px;
    height: 24px;
    background: url('../assets/img_m_eng/menu.png') no-repeat;
    margin-top: 5px;
}
.mNav {
    z-index: 2;
    position: fixed;
    background-color: #000000;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    transition: all 0.3s ease;
}
.mNav.on { right: 0; }
.bg-shadow {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    cursor: pointer;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}
.bg-white2 {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white2-rgb), var(--bs-bg-opacity)) !important;
}
.bg-black{
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

/* menu */
.sub {
    position: relative;
    padding-top: 70px;
    background-color: #000000;
}
.closeBtn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
}
.closeBtn a {
    display: block;
    text-indent: -9999px;
    width: 24px;
    height: 24px;
    background: url('../assets/img_m_eng/close.png') no-repeat;
    background-size: 16px;
    margin-top: 40px;
    margin-right: 5px;
}
.sub li a {
    display: block;
    font-size: 1.4rem;
    line-height: 1.4rem;
    color: #ffffff;
    background-color: #000;
    padding: 15px 10px;
    border-bottom: 1px solid #ffffff;
}
/* masthead */
.masthead {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 460px;
    background-image: url("../assets/img_m_eng/bg-masthead.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.masthead h1 {
    margin-bottom: 30px;
    font-size: 29px;
    color: #ffffff;
    text-align: center;
    font-family: SF-Pro !important;
    font-weight: 500;
}

.masthead h1 .text-blue {
    color: #1293ff;
}

small {
    line-height: 1.5;
    font-size: 15px;
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    opacity: 0.84;
    font-family: SF-Pro !important;
}

.masthead .masthead-footer {
    transform: translate(-50%, -50%);
    font-size: 8px;
    font-weight: 500;
    color: #fff;
    opacity: 0.6;
    text-align: justify;
    margin-top: 30px;
    margin-left: 70px;
}
/* service */
#service {
    padding-top: 20px;
    padding-bottom: 69.4px;
}
#service small{
    padding-left: 25px;
    opacity: 0.21;
    font-size: 19px;
    font-weight: bold;
    color: #9a9a9a;
}
#service h3{
    opacity: 0.69;
    font-size: 12px;
    font-weight: 600;
    color: #1294ff;
    text-align: center;
}
#service h1{
    font-size: 20px;
    font-weight: 600;
    color: #1294ff;
    text-align: center;
}
#service h4{
    font-size: 15px;
    font-weight: 500;
    color: #071540;
    text-align: center;
}
#service h5{
    font-size: 20px;
    font-weight: bold;
    color: #071540;
    text-align: center;
}
#service hr{
    border: 0.5px dashed;
    border-width: 0.5px;
    color: #707070;
    opacity: 0.6;
}
/* service1 */
#service1 {
    padding-top: 49px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 30px;
}
#service1 h4{
    font-family: SF-Pro;
    font-size: 13px;
    font-weight: normal;
    color: #fff;
    text-align: left;
    line-height: 1.43;
}
#service1 button{
    width: 33px;
    height: 33px;
    border-radius: 7px;
    border: solid 0.05px #e2e2e2;
    background-color: #1278ff;
    color: #e2e2e2;
    font-size: 21px;
    font-weight: 100;
    float: right;
    position: relative;
    top: 20px;
}

/* service2 */
#service2 {
    padding-bottom: 46px;
    padding-right: 25px;
}
#service2 h4{
    font-family: SF-Pro;
    font-size: 13px;
    font-weight: normal;
    color: #000;
    text-align: left;
    line-height: 1.43;
    padding-left: 25px;
}
#service2 button{
    width: 33px;
    height: 33px;
    border-radius: 7px;
    border: solid 0.05px #e2e2e2;
    background-color: #1278ff;
    color: #e2e2e2;
    font-size: 21px;
    font-weight: 100;
    float: right;
    position: relative;
    top: 20px;
    text-align: center;
}
/* service3 */
#service3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 360px;
    background-image: url("../assets/img_m_eng/service3.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 25px;
}
#service3 h1{
    font-size: 20px;
    font-weight: 600;
    color: #071540;
    text-align: center;
}

/* capability */
#capability {
    padding-top: 46px;
    padding-left: 25px;
    padding-bottom: 70px;
    background-image: url("../assets/img_m_eng/capability.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
    background-position-x: 28px;
    background-position-y: 85px;
}
#capability small{
    padding-left: 25px;
    opacity: 0.21;
    font-size: 19px;
    font-weight: bold;
    color: #9a9a9a;
}
#capability h5{
    font-size: 16px;
    font-width: 500;
    text-align: center;
    color: #000;
    line-height: 0.69;
}
#capability h4{
    font-size: 20px;
    font-width: bold;
    text-align: center;
    color: #000;
    line-height: 0.4;
}
/* capability1 */
.swiper1 {
    width: 360px;
    height: 678.4px;
}
.swiper1 .swiper-button-prev,
.swiper1 .swiper-button-next {
    opacity: 0.5;
    padding: 15px 5px;
    border-radius: 20px;
    color: #fff !important;
}

.swiper1 .swiper-button-prev:after,
.swiper1 .swiper-button-next:after {
    font-size: 2rem !important;
    font-weight: 600 !important;
}

.swiper1 .swiper-pagination-bullet {
    background: #ffffff !important;
}

/* history */
#history {
    padding-top: 60px;
    padding-bottom: 69.4px;
    padding-left: 25px;
}
#history small{
    opacity: 0.21;
    font-size: 19px;
    font-weight: bold;
    color: #9a9a9a;
}
#history .oneLine {
    height: 60px;
    display: grid;
    align-items: center;
    grid-template-columns: 20% 20% 60%;
}
#history .oneLine2 {
    height: 40px;
    display: grid;
    align-items: center;
    grid-template-columns: 20% 20% 60%;
}
#history h2{
    font-size: 12px;
    font-weight: bold;
    color: #1278ff;
    line-height: initial;
}
#history h4{
    font-size: 12px;
    font-weight: 500;
    line-height: initial;
    color: #1278ff;
}
#history h5{
    font-size: 12px;
    font-weight: 500;
    line-height: initial;
    color: #414141;
}

/* chNews */

#chNews {
    padding-top: 60px;
    padding-bottom: 100px;
}
#chNews small{
    font-size: 20px;
    font-weight: bold;
    color: #2b2b2b;
}
#chNews p{
    font-size: 14px;
    font-weight: normal;
    line-height: 1.43;
    text-align: left;
    color: #404040;
    opacity: 0.5;
}
#chNews hr{
    border: solid 1px #9f9f9f;
    opacity: 0.5;
}
#chNews h5{
    opacity: 0.75;
    font-size: 10px;
    font-weight: 500;
    text-align: left;
    color: #404040;
    float: right;
}
#chNews .swiper2{
    width: 300px !important;
}
#chNews .swiper-slide {
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    border-radius: 9px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    background-color: #fff;
    width: 300px !important;
    align-items: center;
    justify-items: center;
    text-align: center;
}
#chNews .swiper-slide .card-contents {
    padding: 0px 20px 10px;
    height: 280px;
}
#chNews .swiper-slide .card-contents h6 {
    font-size: 16px;
    font-weight: 600;
    color: #404040;
}

/* contact */
#contact {
    padding-top: 32px;
    padding-left: 25px;
    padding-bottom: 69.4px;
    padding-right: 25px;
}
#contact h2{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}
#contact button{
    width: 169px;
    height: 27px;
    border-radius: 15px;
    border: solid 0.05px #1295ff;
    background-color: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 100;
    float: left;
}
#contact select{
    width: 119px;
    height: 27px;
    font-family: SF-Pro;
    font-size: 10px;
    font-weight: 500;
    color: #606060;
    float: right;
    justify-content: center;
}
#contact h4{
    font-size: 10px;
    font-weight: bold;
    color: #fff;
}
#contact h5{
    font-size: 7px;
    font-weight: 500;
    color: #fff;
}
