@import url('./font.css');
@import url('./header.css');
@import url('./footer.css');
@import url('./main.css');

@import url('./company.css');
@import url('./ci.css');

@import url('./business.css');
@import url('./process.css');
@import url('./certificate.css');
@import url('./client.css');

@import url('./contact.css');
@import url('./location.css');

@import url('https://cdn.jsdelivr.net/npm/swiper@8/swiper-bundle.min.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
*:focus {
    outline: none;
}
:root {
    --swiper-theme-color: #FF5500;
    --point-color: #FF5500; 
    --sub-color: #818284;
    --font-color: #222;
}
html {
    transition: ease all 1s;
}
a {
    cursor: pointer;
}
body ,a ,p ,div ,span ,input ,textarea ,select ,option ,th ,td, button,h1  {
    color: var(--font-color);
    font-family: 'Poppins','AppleSDGothicNeo', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: -0.1px;
}
th, td {
    font-family: 'AppleSDGothicNeo' !important;
}
p{
    font-family: 'AppleSDGothicNeo' !important;
    font-size: 1.5rem;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
select {
    padding: 0 .625rem;
    -o-appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(/_inc/img/select-arrow.png) center right 7.5% no-repeat;
}
img {
    max-width: 100%;
}
.mobile {
    display: none;
}
.max-width {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}
.flex {
    display: flex;
}
.flex-row {
    display: flex;
    flex-flow: row;
}
.flex-column {
    display: flex;
    flex-flow: column;
}
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}
.space-nowrap {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.line-clamp {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.fade-up {
    opacity: 0;
}
.fade-up.active {
    animation: fadeUp 0.7s .1s ease-out forwards;
}
.delay1 {
    animation-delay: 0.1s !important;
}
.delay2 {
    animation-delay: 0.2s !important;
}
.delay3 {
    animation-delay: 0.3s !important;
}
.delay4 {
    animation-delay: 0.4s !important;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translatey(6.25rem);
    }
    100% {
        opacity: 1;
        transform: translatey(0);
    }
}
@keyframes slideFadeUp {
    0% {
        opacity: 0;
        transform: translatey(3rem);
    }
    100% {
        opacity: 1;
        transform: translatey(0);
    }
}
@keyframes slideFadeDown {
    0% {
        opacity: 1;
        transform: translatey(0);
    }
    100% {
        opacity: 0;
        transform: translatey(-3rem);
    }
}
.page-title {
    padding: 9.375rem 0 0;
}
.page-title h1 {
    font-size: 3.75rem;
    font-weight: 800;
    color: var(--point-color);
}
.page-title article {
    align-items: flex-start;
    justify-content: space-between;
}
.page-title .path{
    column-gap: 10px;
    align-items: center;
}
.page-title .path span {
    color: var(--sub-color);
    text-transform: uppercase;
}

@media (max-width: 1200px){
    html{
        font-size: 93.8%;
    }
}

@media (max-width: 1024px){
    html {
        font-size: 87.5%;
    }
    body ,a ,p ,div ,span ,input ,textarea ,select ,option ,th ,td, button {
        font-size: 1rem;
    }
    select {
        background: url(/_inc/img/select-arrow.png) center right 3.5% no-repeat;
    }
    .max-width:not(.hd-wrap) {
        max-width: 42.8571rem;
        width: calc(100% - 30px);
    }
    .pc {
        display: none;
    }
    .mobile {
        display: block;
    }
    .flex-row {
        flex-flow: unset;
    }
    .content .flex-row {
        flex-flow: column;
    }
    .page-title{
      padding: 5.7143rem 0 0;
    }
    .page-title .path{
      display: none;
    }
    .page-title h1{
      font-size: 2.2857rem;
    }
}
