@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
:root {
    --bg-primary: #1e1f2a;
    --sub-primary: #D46D4A;
    --primary: #FC6A03;
    --primary-hover: #ec5d2d;
    --secondary: #22242E;
    --cinder: #14151D;
    --bg-primary-transparent: #2C2F4899;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
button {
    outline: none;
    border: none;
    cursor: pointer;
}

body {
    background-color: var(--bg-primary);
    color: white;
    font-family: Noto Sans JP;
    line-height: 1.5;
    overflow-x: hidden;
    background-color: #1E1F2A;
    position: relative;
}

main {
    overflow: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/platform.png') no-repeat;
    background-attachment: fixed, fixed, fixed;
    background-size: cover, cover, cover;
    opacity: 0.3;
    z-index: -1; 
}

.wrapper {
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
}
ul {
    list-style: none;
    padding-left: 0;
}
a {
    text-decoration: none;
    color: white;
}

input, textarea {
    box-shadow: none;
    outline: none;
    border: none;
}
button {
    background-color: var(--primary);
    color: white;
    border-radius: 1.25rem;
    padding: 1rem 3rem;
    font-weight: 700;
    transition: 0.2s all;
}
button:hover{
    background-color: var(--sub-primary);
}
.container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}
.container {
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}
/* Utilities */
.d-flex {
    display: flex;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.mt-1 {
    margin-top: 1rem;
}
.mt-3 {
    margin-top: 3rem;
}
.mt-4 {
    margin-top: 4rem;
}
.mt-5 {
    margin-top: 5rem;
}
.pl-2 {
    padding-left: 2rem;
}
.text-center {
    text-align: center;
}
/* Animations */
.shake:hover {
    animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}
/* Common */
.heading {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}
.heading img:first-child{
    margin-right: 1.5rem;
}
.heading img:last-child{
    margin-left: 1.5rem;
    transform: rotate(180deg)
}
.box-grid {
    display: grid;
    justify-items: right;
    grid-template-columns: 1fr 1fr;
}
.flex-between {
    display: flex;
    justify-content: space-between;
}
.flex-center {
    display: flex;
    justify-content: center;
}
.table {
    text-align: center;
}
.box-gradient-b {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bg-primary-transparent);
}
.box-gradient-b::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    border-radius: inherit;
    mask: 
        conic-gradient(#000 0 0) content-box exclude,
        conic-gradient(#000 0 0);
    z-index: -1;
}

/* Header */
header {
    background-size: cover;
    margin-bottom: -6rem;
}
.header-top {
    margin: 0 auto;
    max-width: 1080px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: .25rem;
    padding-bottom: .25rem;
}
.has-children {
    position: relative;
}
.has-children ul {
    display: none;
    position: absolute;
    width: 200px;
    margin-top: 8px;
    background: #1b1d22;
    border-radius: 10px;
    padding: 1rem;
    left: -16px;
    z-index: 199;
    transition: 0.2s all;
}
.mail-item > a {
    position: relative;
    display: flex;
    align-items: center;
    transition: 0.2s all;
}
.mail-item > a:hover {
    opacity: 0.85;
}
.mail-item > a > p {
    position: absolute;
    left: 14%;
    margin-bottom: 2px;
    font-weight: 400;
    color: var(--primary);
}
.has-children ul li:not(:last-child) {
    margin-bottom: 1rem;
}
.has-children ul li a {
    color: white !important;
}
.has-children ul li:hover a {
    color: var(--sub-primary) !important;
}
.has-children:hover ul {
    display: block;
}
.header-box {
    background-color: var(--cinder);
    position: fixed;
    z-index: 9;
    width: 100%;
    transition: 0.2s all;
    top: 0;
}
.header-box.sticky{
    background-color: var(--bg-primary);
}
.header-box.sticky:after{
    content: ' ';
    height: 10px;
    margin-top: -10px;
    /* background: linear-gradient(180deg, rgba(165, 79, 14, 0) -1.33%, #A54F0E 95%); */
    box-shadow: 0px 5px 5px 0px #A54F0E;
    width: 100%;
    display: block;
    opacity: 0.3;
}
.navbar-toggler {
    display: none;
}
.navbar-top {
    display: flex;
    align-items: center;
    justify-content: center;
}
.navbar-top > ul {
    display: flex;
    align-items: center;
}
.navbar-top > ul > li{
    margin-left: 1rem;
    margin-right: 2.5rem;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: bold;
}
.navbar-top > ul > li:hover a {
    color: var(--sub-primary);
}
.navbar-top > ul > li.has-children:after{
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 0.5rem;
    cursor: pointer;
    display: inline-block;
    height: 8px;
    width: 14px;
}
.navbar-top > ul > li.has-children:hover:after{
    color: var(--sub-primary);
}
.navbar-top > ul > li:first-child{
    margin-left: 0;
}
.navbar-top > ul > li:last-child{
    margin-right: 0;
}
.sp-menu {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    padding-top: 0;
    z-index: 10;
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition: -webkit-transform cubic-bezier(.76,.17,.13,.7) 0.3s;
    transition: -webkit-transform cubic-bezier(.76,.17,.13,.7) 0.3s;
    transition: transform cubic-bezier(.76,.17,.13,.7) 0.3s;
    transition: transform cubic-bezier(.76,.17,.13,.7) 0.3s,-webkit-transform cubic-bezier(.76,.17,.13,.7) 0.3s;;
}
.sp-menu.show {
    display: block;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    overflow: auto;
    z-index: 3456;
}
.sp-menu .menu-button{
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.sp-menu .menu-button .navbar-button{
    display: flex;
    align-items: center;
}
.menu-items li {
    line-height: 3rem;
}
.menu-items li a {
    position: relative;
}
.menu-items li.has-children > a:after {
    display: inline-block;
    content: ' ';
    height: 30px;
    width: 30px;
    position: absolute;
    right: -2rem;
    background: url(/images/icons/menuArw.svg) no-repeat;
    top: 0;
    transform: translate(25%, 25%);
    background-size: 8px 8px;
}
.menu-items .has-children ul {
    position: inherit;
    background: no-repeat;
    padding: 0 0 0 2rem;
    margin: 0;
    display: none;
    width: 100%;
}

.menu-items .has-children ul li {
    margin: 0;
}
.menu-items .has-children.active ul{
    display: block;
}
/* Section Hero */
.banner {
    position: relative;
    max-width: 100vw;
    width: 100%;
    max-height: 550px;
    border-radius: 0 0 50px 50px;
    height: 100%;
    margin: auto;
    margin-top: 50px;
    box-shadow: 0px 20px 20px 0px #00000040;
    filter: blur(10px);
    transition: filter 0.5s ease-out;
}

.banner .item{
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}
.overlay-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}
.hero {
    display: flex;
    position: relative;
    padding-top: 3rem;
}
.hero-text {
    margin: 6rem 0 16rem;
}
.hero-text h1{
    margin-bottom: 0.5rem;
    color: #FF7842;
    font-size: 54px;
}
.hero-text p{
    max-width: 465px;
    margin-bottom: 36px;
    font-size: 20px;
}
.hero-text a{
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    padding: 0.6rem 0.7rem 0.7rem 0.7rem;
    color: var(--primary);
    background: url(/images/header/button.svg) no-repeat;
    background-size: contain;
    transition: 0.2s all;
    margin-top: 10px;
}
.hero-text button:hover{
    opacity: 0.85;
}
/* Section virtual currency exchange */
#virtual-currency-exchange {
    padding: 2rem 0;
    background-size: contain;
    background-position: center;
}
#virtual-currency-exchange .box-text{
    padding-left: 2rem;
}

.table-box {
    display: flex;
    justify-content: end
}
.table-item {
    justify-content: space-between;
    min-width: 10rem;
    width: 100%;
    font-size: .75rem;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--secondary);
    border-right: 1px solid var(--secondary);
    background-color: #2B2D44;
    color: #fff;
}
.table-item:nth-child(odd) {
    margin-right: .25rem;
}
.table-item:nth-child(even) {
    margin-left: .25rem;
}
.table-heading, .table-footer {
    height: 2rem;
    line-height: 2rem;
}
.table-heading {
    font-weight: 700;
    border-radius: .2rem .2rem 0px 0px;
    background-color: var(--sub-primary);
    color: white;
}
.table-body {
    padding-top: 1rem;
    padding: 4px;
    padding-bottom: 1rem;
    line-height: 1.25rem;
}
.table-footer {
    justify-self: flex-end;
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Technology */
#technology {
    padding: 0 0 4rem;
}
#technology h2{
    display: flex;
    gap: 1rem;
    justify-content: center;
}
#technology h2 span {
    text-align: center;
}
#technology .box-items {
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}
#technology .box-item {
    width: 100%;
    height: auto;
    aspect-ratio: 13 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 30px 0;
    border-radius: 30px;
    background-color: #fff;
    color: #000;
}
#technology .box-item:has(h3:first-child:last-child) {
    justify-content: center;
}
#technology .box-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}
#technology .box-item img {
    max-height: 60px;
    max-width: 109px;
}
#technology .box-item h3 {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
#technology .box-item h3:only-child {
    font-size: 22px;
    font-weight: 700;
}
#technology span.faster-rcnn {
    background: yellow;
    padding: 0 5px;
    border-radius: 4px;
}
/* categories */
#categories .box-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 240px;
    border-radius: 30px;
}

#categories .box-item .item-body {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

#categories .box-item .item-title {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: var(--bg-primary);
    border-radius: 20px 20px 30px 30px;
    padding-top: 28px;
    text-align: center;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
}

#categories .box-item .item-title::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: url(/images/categories/ic-hexagon.svg) no-repeat center;
}

#categories .box-item::before {
    content: '';
    position: absolute;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    top: 50%;
    left: 50%;
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    border-radius: 30px;
    z-index: -1;
    transform: translate(-50%, -50%);
}

#categories .box-item:hover {
    filter: brightness(0.8);
    transition: all 0.5s;
}

#categories .box-item .item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#categories .box-items{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* industries */
#industries .box-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
}

#industries .box-items{
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    place-items: center;
}
#industries .overlay {
    position: absolute;
    bottom: 30%;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    width: 100%;
    text-align: center;
    padding-left: 8px;
}
/* certification */
.certification {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    place-items: center;
}

.certification .box-item {
    background: url(/images/certification/item.svg) no-repeat;
    background-size: contain;
    max-width: 350px;
    height: 245px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.certification .box-item img {
    height: 120px;
}
/* clients */
#clients .box-item{
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 250px;
    border-radius: 30px;
}

#clients .box-items{
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
    place-items: center;
    gap: 20px;
}
#clients .box-item h3 {
    font-family: Noto Sans JP;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    
}
#clients .box-image {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 37px;
}

#clients .box-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

#customer-voices h2 {
    margin-bottom: 20px;
}

#customer-voices .icon-company {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

#customer-voices .icon-company a img {
    width: 150px;
}

#customer-voices .box-image {
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

#customer-voices .box-image iframe {
    width: 100%;
    aspect-ratio: 85 / 57;
    border-radius: 5px;
}
#customer-voices .box-icon {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    top: -18px;
    left: 50%;
    transform: translate(-50%);
}
#customer-voices .slick-dots {
    bottom: -70px;
}

.asakurasoft {
    height: 60px;
}

/* our-products */
#our-products, #industries, #company-informartion, #technology, #clients, #categories {
    margin-bottom: 100px;
    margin-top: 30px;
}

.h3-achievement {
    text-align: center;
    margin: 30px 0 15px;
}

.achievement .achievement-item {
    gap: 10px;
    margin-bottom: 10px;
}

.achievement .achievement-item a {
    text-wrap-mode: nowrap;
    color: #FC6A03;
    text-decoration: underline;
}

.achievement .achievement-item img {
    width: 20px;
}

#customer-voices {
    margin-bottom: 120px;
}

#about-kiaisoft .item-branch {
    margin-top: 100px;
}

#solutions {
    margin-bottom: 120px;
}
.our-products-title, .company-infor-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 40px;
    margin-bottom: 20px;
}

.our-products-item {
    margin-top: -35px;
}

#our-products-1 .box-grid {
    padding-left: 30px;
}
#our-products .slick-slide {
    display: flex;
    flex-wrap: wrap;
}

#our-products .category-title {
    flex: 0 0 100%;
    margin-bottom: 20px;
}

#our-products .carousel-section .box-text {
    max-width: 500px;
}

#our-products .carousel-section .btn {
    display: none;
    position: relative;
    width: max-content;
    transform: translate(2px, -2px);
    z-index: 10;
    cursor: pointer;
    padding: 0;
}

#our-products .carousel-section .btn-content {
    display: block;
    border-radius: 40px;
    padding: 8px 20px;
    background: linear-gradient(132.8deg, rgba(252, 106, 3, 0.2) 3.21%, rgba(112, 55, 154, 0.2) 88.64%) 0% 0% no-repeat padding-box;
    color: var(--primary);
    font-weight: 400;
}

#our-products .carousel-section .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 40px;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: -1;
}

#our-products .carousel-section .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 40px;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    z-index: -2;
}

.carousel-nav {
    display: none;
    padding: 10px 15px;
    margin-top: 10px;
    width: calc(100% + 40px);
    justify-content: space-between;
    background: var(--bg-primary);
    margin-left: -20px;
}

.carousel-nav .carousel-prev, 
.carousel-nav .carousel-next {
    padding: 0;
    background: transparent;
    outline: none;
    border: none;
    position: relative;
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px;
    border-radius: 50%;
    color: var(--bg-primary);
}

.carousel-nav .carousel-prev::after, 
.carousel-nav .carousel-next::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    animation: zoom-in 2s infinite;
    border-radius: 50%;
    display: block;
    z-index: 0;
}

.carousel-nav svg {
    background-color: transparent;
    position: relative;
    z-index: 1;
}

#our-products-1 .box-text > p,
#our-products-2 .box-text > p {
    height: 500px;
}

#our-products-2 .box-text .short-text {
    height: 400px;
}

.img-products {
    max-width: 500px;
    width: 100%;
}

.img-products .box-image img {
    margin: auto;
}

.company-infor-title {
    line-height: 46px;
}

h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    backdrop-filter: blur(5px);
}

.modal-body {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    background: var(--bg-primary);
    max-width: 95%;
    max-height: 95%;
    width: max-content;
    height: max-content;
    max-height: 90vh;
    padding: 16px;
    z-index: 2;
}

.modal-body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: -1;
}

.modal-body::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 20px;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    z-index: -2;
}

.modal-title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: transparent;
    padding: 1px;
    border: 1px solid gray;
}

.modal-close:hover {
    background: transparent;
    filter: brightness(0.8);
}

.modal-close img {
    width: 60%;
}

.modal-content {
    box-sizing: border-box;
    display: flex;
    gap: 10px;
    flex-direction: column;
    overflow: auto;
}

.modal-content .table-box {
    max-width: 100%;
    width: 100%;
}   
.modal-content .table-box .table-item  {
    max-width: 50%;
}

.modal-footer {
    width: 100%;
}


.qa-project {
    position: relative;
    width: max-content;
    cursor: pointer;
    padding: 0;
    background: var(--bg-primary);
    margin-top: 36px;
    width: max-content;
    display: block;
    border-radius: 40px;
    margin: 20px auto;
}

.qa-project:hover {
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    color: var(--bg-primary);
}

.qa-project span {
    display: block;
    border-radius: 40px;
    padding: 18px 20px;
    background: linear-gradient(132.8deg, rgba(252, 106, 3, 0.2) 3.21%, rgba(112, 55, 154, 0.2) 88.64%) 0% 0% no-repeat padding-box;
    color: var(--primary);
    font-weight: 400;
    text-align: center;
}

.qa-project:hover  span {
    color: var(--bg-primary);
    color: white;
}

.qa-project::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 40px;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: -1;
}

.qa-project::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 44px;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    z-index: -1;
}

.modal-footer .qa-project {
    width: 100%;
}
/* company informartion */
.cto img {
    width: 100%;
}
.cto-2 {
    margin-top: 120px;
    display: flex;
}
.cto-2 .box-image  {
    order: 0;
    flex: 1;
    width: 100%;
}
.cto-2 .box-image img {
    width: max-content;
}
.cto-2 .box-text {
    order: 1;
    flex: 1;
    width: 100%;
}
.cto-3 {
    margin-top: 120px;
}
.detail-cto {
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail-cto img {
    height: 60px;
    margin-right: 10px;
    border-radius: 5px;
}

.detail-cto-content {
    text-align: left;
    font-size: 12px;
    line-height: 18px;
}

.detail-cto-content a {
    text-decoration: underline;
}

.mobile-line-break {
    display: inline;
}

/* Solutions */
#solutions {
    padding: 4rem 0;
    background-color: #13131C;
    position: relative;
}
#solutions p{
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 700;
    color: var(--primary);
}
#solutions span{
    font-size: 1.25rem;
    color: white;
}
#solutions img{
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-4rem, -4rem);
    height: 260px;
}

/* About Kiaisoft */
#about-kiaisoft {
    padding: 0 0 5rem;
}
#about-kiaisoft .box-items {
    display: grid;
    margin-top: 2rem;
    grid-template-columns: 9fr 8fr;
    gap: 2rem;
}
#about-kiaisoft .box-description h3 {
    color: var(--sub-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
#about-kiaisoft p {
    font-size: .9rem;
    line-height: 1.8;
}
#about-kiaisoft p A{
    color: var(--sub-primary);
    font-weight: 700;
}
#about-kiaisoft .box-info h3{
    color: var(--sub-primary);
    margin-bottom: .5rem;
}
.table-rows {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
.table-rows .table-row{
    border-top: 1px solid var(--sub-primary);
    padding: .85rem 0;
    display: flex;
    align-items: center;
}
.table-rows .table-row:last-child{
    border-bottom: 1px solid var(--sub-primary);
}
.table-rows .table-row label{
    min-width: 10rem;
    color: var(--sub-primary);
    font-weight: 700;
}
.table-rows .table-row div{
    line-height: 1.25rem;
}
.table-rows .table-row a{
    text-decoration: underline;
}
/* Achievements */
#achievements .box-container{
    max-width: 900px;
    margin: 0 auto;
}
#achievements .box-items{
    display: flex;
    justify-content: space-around;
}
#achievements .box-items .box-item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#achievements .box-items .box-item span{
    font-size: 24px;
    font-weight: 700;
    margin: .75rem 0;
}
#achievements .box-items .box-item span ~ span{
    font-size: 16px;
    font-weight: 400;
    color: var(--primary);
    margin: 0 auto;
}
#achievements .grid-items{
    display: grid;
    margin-top: 2rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}
#achievements .grid-items .box-item{
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#achievements .grid-items .box-item span{
    margin-top: 2rem;
}
#achievements .grid-items .box-border {
    background-color: white;
    border-radius: 20px;
    height: 80px;
    width: 80px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
/* Contact us */
#contact-us {
    padding: 2rem 0 4rem;
    background-size: cover;
    background-position: top center;
}
#contact-us .contact-us-container {
    max-width: 1260px;
    position: relative;
    margin: auto;
}
#contact-us h3{
    text-align: center;
    margin-bottom: 3rem;
    font-size: 32px;
}
#contact-us .box-info{
    background: #5E7792;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
}
#contact-us .box-info .text-heading{
    color: #082749;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
#contact-us .box-info .text-desc{
    color: white;
    text-align: center;
    font-size: .9rem;
    line-height: 1.25rem;
}
#contact-us .box {
    max-width: 1440px;
    width: 100%;
    height: 530px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 3fr 5fr;
    position: relative;
    border-radius: 10px;
    padding-bottom: 5rem;
}
#contact-us .box .box-text{
    color: var(--primary);
    font-weight: 300;
    text-align: center;
    line-height: 1.7;
    margin-top: 2rem;
    margin-right: 50px;
}
#contact-us .box .box-form{
    padding-top: 0;
}
#contact-us .box .box-form h3{
    color: white;
}
#contact-us .box .box-form input, #contact-us .box .box-form textarea{
    line-height: 1.5;
    background: #373940;
    border-radius: 10px;
    color: white;
}
#contact-us .box .box-form textarea{
    width: 100%;
}
#contact-us .box .box-form .form-group{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
#contact-us .box .box-form .form-group input, #contact-us .box .box-form textarea{
    padding: .75rem .75rem;
    height: 50px;
    background: #FFFFFFCC;
    color: black;
}
#contact-us .box .box-form textarea{
    padding: .75rem .75rem;
    height: 140px;
}
#contact-us .box .box-form ::placeholder {
    color: white;
}
#contact-us .box .box-form button{
    padding: 1rem 4rem;
}
#contact-us .text-response{
    color: var(--primary);
}
#contact-us .frm_project {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}
#contact-us .frm_project select {
    background: transparent;
    color: white;
    width: 100%;
    padding: 16px 8px;
    font-weight: 700;
    display: block;
    outline: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('/images/icons/ic-arrow-down.svg') no-repeat right var(--bg-primary);
    background-position-x: calc(100% - 11px);
}
#contact-us .frm_project select option {
    background: var(--bg-primary);
}
#contact-us .frm_project::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    z-index: -1;
}
.contact-us-container > img {
    position: absolute;
    z-index: 5;
    bottom: -65px;
}
.contact-us-container .container {
    max-width: 1040px;
}
/* customer-voices */
#customer-voices .slick-list, #customer-voices .slick-track {
    display: flex;
}
#customer-voices .box-item .box-text {
    text-align: start;
    font-size: 14px;
    width: 100%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
}
#customer-voices .box-item .box-text .box-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#customer-voices .box-item {
    width: 100%;
}
#customer-voices .box-content {
    margin-top: 25px;
    font-size: 14px;
    height: max-content;
}

#customer-voices .box-content .customer-voice {
    gap: 10px;
}
#customer-voices .name-company {
    min-height: 45px;
    font-family: 'Montserrat';
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-top: 16px;
}

#customer-voices .name-company.letter-spacing {
    letter-spacing: -0.9px;
}

#customer-voices .link-company {
    text-align: center;
}

#customer-voices .ceo {
    font-weight: 400;
    font-size: 16px;
    font-family: 'Montserrat';
    color: var(--primary);
}

#customer-voices .slick-next, #customer-voices .slick-prev {
    top: 50%;
}
#customer-voices .slick-next:before, #customer-voices .slick-prev:before {
    font-size: 25px;
    color: #FF8C4D;
    content: '';
}
#customer-voices .box-item-2 {
    padding: 0 15px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
#customer-voices .box-item-2 .box-content {
    flex: 1;
}
#customer-voices .box-footer {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
}
#customer-voices .box-footer img {
    width: 40px;
    height: 40px;
}
#customer-voices .box-item {
    display: flex;
    height: auto;
    position: relative;
    align-items: stretch;
}
#customer-voices .box-text {
    text-align: center;
    color: #fff;
    padding: 40px 0 40px 0;
    border-radius: 10px;
    margin-right: 10px;
    height: auto;
    min-height: 550px;
    position: relative;
    transform: scale(0.94);
}
#customer-voices .box-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: var(--bg-primary);
    z-index: -1;
}
#customer-voices .box-text::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 10px;
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    z-index: -2;
}
/* Footer */
.branch-box {
    display: flex;
    gap: 20px
}
footer {
    line-height: 1.25rem;
    font-size: 0.875rem;
    background: var(--sub-primary);
    border-radius: 20px 20px 0px 0px;
}
footer .container {
    max-width: 1200px;
}
footer .box-logo {
    margin-right: 40px;
}
footer .box-logo p{
    max-width: 30rem;
    margin-top: 1rem;
}
footer .footer-copyright{
    margin: 0 auto;
    padding: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-align: left;
    background-color: #2c2934;
    position: relative;
}
footer .box-footer {
    padding: 2rem 0;
    display: flex;
    gap: 2rem;
}
footer .branch-info {
    margin-bottom: 1rem;
    margin-right: 10px;
}
footer .branch-info .branch-item:nth-child(-n+2) {
    align-items: normal;
}
footer .box-items {
    margin-top: 2rem;
    margin-right: 1rem;
}
footer .box-item {
    display: grid;
    grid-template-columns: 30px 1fr;
    row-gap: 1rem;
    line-height: 1.45rem;
    margin-bottom: 0.25rem;
}
footer .box-item span {
    width: 2rem;
}
footer .branch-info img {
    height: 20px;
    margin-right: 0.5rem;
}
footer .branch-info .branch-item {
    display: flex;
    margin-bottom: 0.5rem;
    align-items: flex-start;
    font-size: 12px;
    align-items: center;
}
footer .branch-title {
    font-weight: 700;
}
footer .branch-title p{
    display: inline-block;
    line-height: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
}
footer .branch-title p:after{
    content: ' ';
    position: absolute;
    display: inline-block;
    height: 3px;
    background: white;
    width: 100%;
    left: 0;
    bottom: -0.5rem;

}
.footer-copyright .copyright-content .box-copyright {
    display: flex;  
    align-items: center;
    gap: 5px;
    margin-top: 20px;
}

.footer-copyright .copyright-content .box-link {
    display: flex;  
    align-items: center;
    gap: 20px;
}

.go-top {
    position: fixed;
    bottom: 30%;
    right: 20px;
    width: 50px;
    z-index: 2;
    opacity: 0.3;
}

.go-top:hover {
    opacity: 1;
}

.d-flex {
    display: flex;
}
.justify-center {
    justify-content: center;
}

.p-10 {
    padding: 10px;
}

.frame {
    height: 540px;
}

.m-auto {
    margin: auto;
}

.frame::before {
    content: "";
    position: absolute;
    height: 540px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    z-index: -1;
    padding: 1px;
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

input::placeholder, textarea::placeholder {
    color: #1E1F2A !important;
}

.footer-our-certifications {
    display: flex;
    justify-content: end;
    gap: 10px;
    width: 1200px;
    position: absolute;
    bottom: 20px;
    right: 10px;
}

.infor-cto {
    margin: 168px auto auto;
    text-align: center
}

.c-bnr__list {
    display: flex;
}

.footer-our-certifications .c-bnr__list.our-certifications .c-bnr__link img {
    height: 110px;
}

.footer-our-certifications .c-bnr__list.our-certifications {
    justify-content: end;
    gap: 10px;
}

.c-bnr__item {
    width: 260px;
    height: 160px;
    padding: 0;
    background-color: white;
    text-align: center;
    border-radius: 10px;
    color: black;
}

.c-bnr__link {
    position: relative;
    display: block;
    cursor: default;
}

/* ============ */
.category-title {
    font-size: 20px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}


.nav-btn, button, a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0); /* Đối với Chrome, Opera và Safari */
    -webkit-tap-highlight-color: transparent; /* Đối với một số trình duyệt khác */
}

#our-products .slick-next, #our-products .slick-prev {
    top: 45%;
}
#our-products .slick-next:before, #our-products .slick-prev:before {
    font-size: 25px;
    color: #FF8C4D;
}

/* Tùy chỉnh kiểu dáng dấu chấm */
.slick-dots li button:before {
    content: "";
    display: block;
    width: 10px; 
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    border: 1px solid #fffc;
}

.slick-dots li.slick-active button:before {
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    border: 1px solid transparent;
}

.slick-dots li button:hover:before {
    width: 11px;
    height: 11px;
}

#our-products .slick-dots {
    text-align: center;
    bottom: -20px;
    position: relative !important;
}

.slick-dots li {
    margin: 0 12px;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
}

.slick-list .box-item .box-text {
    margin: auto;
}

.slick-list {
    transition: all .5s ease;
}

.lazy-section {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.lazy-section.fade-in {
    opacity: 1;
}

.lazy-load {
    width: 100%;
    height: auto;
}

#kyoryoku {
    margin: 50px 0 100px 0;
}

#kyoryoku .box-text {
    background: rgba(37, 46, 69, 0.9);
    padding: 20px 20px 20px 20px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#kyoryoku .box-text p {
    width: 65%;
    text-align: start;
}

#kyoryoku .box-text img {
    width: 300px;

}

#kyoryoku .box-text span {
    color: var(--primary);
}

#kyoryoku .box-text:before {
    content: "";
    background: linear-gradient(132.8deg, var(--primary) 3.21%, #70379A 88.64%);
    opacity: 0.6;
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    z-index: -1;
    border-radius: 30px
}

.slick-next, .slick-prev {
    height: 40px;
}

.slick-prev:hover, .slick-next:hover {
    opacity: 0.8;
}

.sp {
    display: none;
}

.non-sp {
    display: block;
}