@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('./keyframe.css');


:root{
    --o-primary: #ed5d21;
    --o-second: #ffa42c;
    --o-gradient: linear-gradient(293deg,#ed5d21 0%, #ffa42c 100%);
    --text-cl: #565656;
    --heading-cl: #191919;
    --border: #cecece;
    --border-light: #f3f3f3;
    --main-bg: #f7f7f7;
    --shadow-lg: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    --shadow-md: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    --h-l-gap: 80px;
}

html{
    margin-top: 0 !important;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 14px;
    background-color: var(--main-bg);
    color: var(--text-cl);
}

section{
    width: 100%;
}


a{
    text-decoration: none;
}

.main-wrapper{
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}


#wpadminbar{
    top: unset !important;
    bottom: 0 !important;
    background: var(--o-gradient);
    display: none;
}

.site-st{
    padding-top: 100px;
    padding-bottom: 100px;
}


.section-frame{
    position: absolute;
    width: fit-content;
}

.section-frame.top-left{
    top: -5px;
    left: -5px;
}
.section-frame.top-right{
    top: -5px;
    right: -5px;
}
.section-frame.bot-right{
    bottom: -5px;
    right: -5px;
}
.section-frame.bot-left{
    bottom: -5px;
    left: -5px;
}

.section-frame_node{
    display: inline-block;
    width: 10px;
    height: 10px;
    position: relative;
    background-color: var(--heading-cl);
}

.section-frame.top-left .section-frame_node::before{
    position: absolute;
    content: '';
    height: 2px;
    width: 60px;
    background-color: var(--heading-cl);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.section-frame.top-left .section-frame_node::after{
    position: absolute;
    content: '';
    height: 60px;
    width: 2px;
    background-color: var(--heading-cl);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section-frame.bot-right .section-frame_node::before{
    position: absolute;
    content: '';
    height: 2px;
    width: 60px;
    background-color: var(--heading-cl);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.section-frame.bot-right .section-frame_node::after{
    position: absolute;
    content: '';
    height: 60px;
    width: 2px;
    background-color: var(--heading-cl);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bg{
    background-size: contain;
    background-repeat: repeat-y;
    background-position: top center;
    background-attachment: fixed;
}

.section-title{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0;
    /* text-transform: uppercase; */
    color: var(--heading-cl);
    line-height: 48px;
}
.section-title span{
    color: var(--o-primary);
}
.section-title.wrap{
    width: 100%;
    max-width: 492px;
}
.section-title.wrap-lg{
    width: 100%;
    max-width: 700px;
}

.section-header{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 44px;
}

.sub-title{
    width: 100%;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;   
}
.sub-title.left{
    max-width: unset;
    text-align: left;
    margin: 0 0;
}

.view-all_btn{
    display: inline-block;
    background-color: var(--heading-cl);
    color: white;
    padding: 8px 16px;
    font-weight: 600;
    transition: all .3s;
    border-radius: 18px;
}
.view-all_btn:hover{
    background-color: var(--text-cl);
    color: white;
}

.page-breakcrumb{
    display: flex;
    gap: 8px;
    width: 100%;
    color: white;
}

.page-breakcrumb a{
    color: var(--o-second);
    transition: all .3s;
}
.page-breakcrumb a:hover{
    color: var(--o-primary);
}

.page-banner{
    width: 100%;
    position: relative;
}

.page-banner_img{
    width: 100%;
    height: 400px;
    margin-bottom: 0;
}

.page-banner_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-banner_text{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: end;
    padding-bottom: 40px;
}

.page-title{
    width: 100%;
}
.page-title .section-title{
    width: 100%;
    color: white;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.page-wrap{
    padding-top: 80px;
    padding-bottom: 60px;
}

.category-list{
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    gap: 12px;
    align-items: center;
}
.category-list a{
    display: inline-block;
    padding: 6px 12px;
    color: var(--heading-cl);
    border: 1px solid var(--text-cl);
    font-weight: 500;
    border-radius: 17px;
    transition: all .3s;
}
.category-list a:hover, .category-list a.active{
    border-color: var(--o-primary);
    color: #ed5d21 ;
}

.page-content{
    width: 100%;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 24px;
}

.page-content p{
    font-size: 16px;
    line-height: 24px;
}

/* --------------------------- */

.main-header{
    width: 100%;
    background-color: #fff;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
}

.main-header_contain{
    width: 100%;
    padding: 24px 0;
    position: relative;
    display: flex;
    gap: var(--h-l-gap);
    align-items: center;
    justify-content: center;
}
.main-header_contain.fill{
    justify-content: space-between;
    gap: unset;
}

.header-logo{
    position: absolute;
    width: fit-content;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.main-header_contain.fill .header-logo{
    opacity: 1;
    visibility: visible;
}

.header-logo-img{
    width: 150px;
    margin: 0;
}
.header-logo-img img{
    width: 100%;
}

.header-menu{
    display: flex;
    align-items: center;
    gap: var(--h-l-gap);
    color: var(--heading-cl);
    transition: all .3s;
}
.main-header_contain.fill .header-menu{
    gap: 32px;
}

.header-menu_list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: var(--h-l-gap);
    width: fit-content;
    transition: all .3s;
}
.main-header_contain.fill .header-menu_list{
    gap: 32px;
}

.header-menu_list>li{
    width: fit-content;
}

.header-menu_list>li>a{
    display: inline-block;
    color: var(--heading-cl);
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
}

.header-story_btn{
    display: inline-flex;
    color: var(--o-primary);
    font-weight: 500;
    text-transform: uppercase;
    transition: all .3s;
    gap: 8px;
    align-items: center;
}

.header-btn{
    display: inline-block;
    padding: 8px 16px;
    color: white;
    font-weight: 500;
    background: var(--o-gradient);
    /* border: 1px solid var(--border); */
    border-radius: 18px;
    transition: all .3s;
}
.header-btn:hover{
    background: var(--text-cl);
    color: white;
}
.header-btn span i{
    margin-left: 8px;
    transform: rotate(-45deg);
}


.search-btn{
    display: inline-grid;
    width: 37px;
    aspect-ratio: 1/1;
    place-items: center;
    border-radius: 50%;
    background-color: var(--heading-cl);
    color: white;
    transition: all .3s;
}
.search-btn:hover{
    background-color: var(--text-cl);
}


.mobile-search-btn,
.call-menu{
    display: none;
}

.overlay{
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%);
    transition: all .3s;
}
.overlay.show{
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.menu-mobile_wrap{
    position: fixed;
    top: 0;
    bottom: 0;
    right: -320px;
    background-color: white;
    width: 300px;
    padding: 24px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.menu-mobile_wrap.show{
    right: 0;
}

.close-menu_btn{
    font-size: 24px;
    cursor: pointer;
}

.menu-mobile{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu-mobile>li{
    width: 100%;
}
.menu-mobile>li>a{
    display: block;
    width: 100%;
    color: var(--heading-cl);
    text-transform: uppercase;
    /* text-align: center; */
    font-weight: 500;
}

/* --------------------- */
.start-st{
    background-color: white;
}

.start-contain{
    width: 100%;
    height: calc(100vh - 138px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    transform: scale(0.1);
    opacity: 0;

    animation: zoomOut 1s 0.3s forwards;
}


.start-logo {
    width: fit-content;
    position: relative;
    margin-bottom: 32px;
    z-index: 1;
}

.start-logo-img {
    margin: 0;
    width: 1080px;
}

.start-logo-img_2st,
.start-logo-img_3st{
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
}

.start-logo-img_2st{
    z-index: 2;
}

.start-logo-img_3st{
    z-index: 3;
}

.start-logo-img img,
.start-logo-img_2st img,
.start-logo-img_3st img{
    width: 100%;
}

.start-logo_overlay{
    position: absolute;
    inset: -2px;
    background:#fff;
    z-index:10;
}

.start-logo.play .start-logo_overlay{
    animation: logoOverlay 1s 1s forwards;
}

.start-logo.play .start-logo-img_2st{
    animation: logoFlash 1s 2.5s forwards;
}

.start-logo.play .start-logo-img_3st{
    animation: logoFinal 1s 4s forwards;
}


.start-text{
    width: 1080px;
    opacity: 0;
    animation: logoFinal 1s 4s forwards;
}

.start-text_heading{
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--heading-cl);
    text-align: center;
    margin-bottom: 20px;
}

.start-services{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.start-services li{
    width: fit-content;
    padding: 6px 12px;
    font-weight: 500;
    color: var(--text-cl);
    border: 1px solid var(--border);
    /* background-color: var(--border-light); */
    border-radius: 19px;
}

/* -------------------------- */
.hero-contain{
    width: 100%;
    height: 100vh;
    padding-top: 85px;
    background-color: var(--border);
    overflow: hidden;
}

.hero-desktop{
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-desktop_video{
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    object-fit: cover;
    object-position: center;
}

.hero-toggle_mute{
    position: absolute;
    top: 32px;
    right: 24px;
    display: inline-grid;
    place-items: center;
    width: 36px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .5);
    color: white;
    font-size: 20px;
    cursor: pointer;
}



.video-banner{
    display: none;
    width: 100%;
    height: 100%;
    position: relative;
}

.video-banner_thumb{
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
    background-color: var(--text-cl);
}
.video-banner_thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-play_btn{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: inline-grid;
    place-items: center;
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: white;
    color: var(--heading-cl);
    font-size: 28px;
    cursor: pointer;
}

.hero-overlay{
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 111;
    display: grid;
    place-items: center;
}
.hero-overlay.show{
    opacity: 1;
    visibility: visible;
}

.hero-video_wrap{
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.hero-video{
    width: 100%;
}

.close-hero-video{
    display: inline-block;
    width: 32px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: white;
    color: var(--heading-cl);
    font-size: 16px;
    cursor: pointer;
}


/* -------------------------- */

.overview-st{
    padding-top: 120px;
    padding-bottom: 70px;
}

.overview-header{
    display: flex;
    flex-wrap: wrap;
    gap: 28px 60px;
    margin-bottom: 60px;
    align-items: center;
}
.overview-header_title{
    width: 100%;
    max-width: 432px;
    flex-shrink: 0;
}
.overview-header_sub{
    font-size: 16px;
    line-height: 24px;
    flex: 1;
}

.home-overview{
    width: 100%;
    display: flex;
    gap: 60px;
}

.home-overview_label{
    width: 500px;
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    /* background-color: white; */
    border-radius: 12px;
    /* box-shadow: var(--shadow-md); */
    /* border: 1px solid var(--border); */
}

.big-circle {
	width: 320px;
	height: 320px;
	border-radius: 50%;
	border: 1px solid var(--heading-cl);
	position: relative;
	animation: rotateCircle 25s linear infinite;
}


.center-img {

	width: 160px;
	height: 160px;
	margin-bottom: 0;
	border-radius: 50%;
	overflow: hidden;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.center-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	animation: rotateCircleCounter 25s linear infinite;
}

.orbit {
	position: absolute;
    z-index: 2;
}

.small-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: white;
	border: 1px solid var(--heading-cl);
	cursor: pointer;
	transition: all .3s;

}
.small-circle:hover {
	background-color: var(--heading-cl);
}

.orbit.one {
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
}

.orbit.two {
	right: 0;
	top: 50%;
	transform: translate(50%, -50%);
}

.orbit.three {
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
}

.orbit.four {
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
}

.orbit-text{
    position: absolute;
    width: 60px;
    aspect-ratio: 1/1;
    /* background-color: red; */
    z-index: 1;
    display: inline-grid;
    place-items: center;
    left: 50%;
    top: 50%;
}

.orbit-text span{
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    color: var(--heading-cl);
    animation: rotateCircleCounter 25s linear infinite;
}

.orbit-text.one {
	transform: translate(-50%, -235px);
}

.orbit-text.two {
	transform: translate(177px, -50%);
}

.orbit-text.three {
	transform: translate(-50%, 175px);
}

.orbit-text.four {
	transform: translate(-237px, -50%);
}



.home-overview-content{
    flex: 1;
    display: flex;
    gap: 60px;
    align-items: center;
}


.home-overview_list{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    height: 500px;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

.home-overview_list::-webkit-scrollbar {
    display: none;
}

.home-overview_item{
    width: 100%;
    height: 500px;               /* bằng chiều cao của container */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.home-overview_item .title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--heading-cl);
    text-transform: uppercase;
}
.home-overview_item .desc{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
}


.home-overview-total{
    width: 240px;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.home-overview-total_item{
    width: 100%;
    padding: 16px 20px;
    /* background: white; */
    border-radius: 8px;
    border: 1px solid var(--border);
}
.home-overview-total_item .number{
    margin-bottom: 0;
    font-weight: 800;
    font-size: 32px;
    color: var(--o-primary);
    line-height: 32px;
    display: flex;
    gap: 4px;
    align-items: center;
}
.home-overview-total_item .number .plus{
    font-size: 20px;
}
.home-overview-total_item .text{
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
}

/* ------------------------- */

.section-header_control{
    display: flex;
    width: fit-content;
    gap: 16px;
    align-items: center;
}

.section-nav{
    display: inline-grid;
    width: 32px;
    aspect-ratio: 1/1;
    place-items: center;
    color: white;
    background-color: var(--heading-cl);
    border-radius: 50%;
    transition: all .3s;
    cursor: pointer;
}
.section-nav:hover{
    background-color: var(--text-cl);
}


.platform-item{
    width: calc(33.33% - 20px);
    background-color: white;
    border-radius: 10px;
    padding: 12px;
    transition: all .3s;
}
.platform-item:hover{
    box-shadow: var(--shadow-md);
}

.platform-img{
    margin: 0;
    aspect-ratio: 5/3;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}
.platform-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.platform-text{
    padding: 20px 12px;
    padding-top: 24px;
    text-align: center;
    min-height: 165px;
}

.platform-title{
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
}

.platform-desc{
    margin-bottom: 0;
}

/* ------------------------- */
.service{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-item{
    width: calc(33.33% - 20px);
}

.service-thumb{
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    overflow: hidden;
}
.service-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}

.service-header{
    display: flex;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.service-icon{
    width: 70px;
    aspect-ratio: 1/1;
    border-radius: 10px;
    /* background-color: #ffefd5; */
    border: 1px solid var(--border);
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
}
.service-icon_img{
    width: 40px;
    aspect-ratio: 1/1;
    margin-bottom: 0;
}
.service-icon_img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.service-info{
    flex: 1;
}
.service-info_name{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--heading-cl);
}
.service-info_desc{
    margin-bottom: 0;
}

.service-item_list{
    margin: 0;
    padding: 0;
    padding-top: 16px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    list-style: none;
}

.service-item_list li{
    width: calc(50% - 8px);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-item_list li i{
    color: var(--heading-cl);
    font-size: 12px;
}


/* ---------------------- */
.customer-wrap{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: white;
    border-radius: 10px;
}

.customer-label{
    width: 540px;
    background: var(--o-gradient);
    padding: 40px;
    flex-shrink: 0;
    display: flex;
    gap: 28px;
    border-radius: 10px;
}

.customer-label_img{
    width: 70px;
    opacity: 0.4;
    flex-shrink: 0;
    margin-bottom: 0;
    padding: 12px 0;
}

.customer-label_img img{
    width: 100%;
}

.customer-label_content{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.customer-label_content_text .section-title{
    color: white;
    margin-bottom: 12px;
}
.customer-label_content_text p{
    color: white;
    font-size: 16px;
    padding-right: 20px;
}

.customer-label_btn{
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-cl);
    background-color: white;
    padding: 10px 20px;
    width: fit-content;
    margin-bottom: 12px;
    border-radius: 22px;
}

.customer-list{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: white;
    padding: 0 60px;
}

.customer-img{
    width: 20%;
    aspect-ratio: 2/1;
    overflow: hidden;
    margin-bottom: 0;
}
.customer-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
/* ------------------------ */

.team-item{
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s;
}
.team-item:hover{
    box-shadow: var(--shadow-md);
}

.team-img{
    width: 100%;
    aspect-ratio: 3/4;
    margin-bottom: 0;
    border-radius: 10px;
    overflow: hidden;
}
.team-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-text{
    position: absolute;
    inset: 0;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.team-item:hover>.team-text{
    opacity: 1;
    visibility: visible;
}
.team-name{
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.team-position{
    font-size: 16px;
    color: var(--border-light);
    margin-bottom: 18px;
}

.team-skill{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.team-skill li{
    font-size: 13px;
    width: fit-content;
    padding: 3px 6px;
    color: var(--border-light);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.team-btn{
    display: inline-block;
    width: fit-content;
    padding: 6px 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(15px);
    color: var(--heading-cl);
    border-radius: 16px;
    transition: all .3s;
}
.team-btn:hover{
    background-color: var(--heading-cl);
    color: white;
}

/* --------------------------------- */
.post-st{
    margin-bottom: 100px;
}

.post-wrap{
    width: calc(33.33% - 20px);
}

.post-item{
    display: block;
    color: var(--heading-cl);
}

.post-thumb{
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 12px;
}
.post-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all .3s;
}

.post-term{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.post-category{
    color: var(--o-primary);
    font-weight: 500;
}
.post-author{
    color: var(--text-cl);
    font-weight: 500;
}

.post-info{
    display: flex;
    gap: 16px;
    align-items: center;
}

.post-time{
    width: 80px;
    flex-shrink: 0;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 10px;
}
.post-time_date{
    display: block;
    font-size: 36px;
    text-align: center;
    line-height: 36px;
    font-weight: 800;
    color: var(--o-primary);
}
.post-time_year{
    display: block;
    text-align: center;
    font-weight: 600;
}

.post-title{
    flex: 1;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 27px;
    font-weight: 600;
    color: var(--heading-cl);
}

.post-item:hover .post-thumb img{
    transform: scale(1.2);
}

/* ------------------------------ */
.main-footer{
    background-color: white;
}

.footer-head{
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer-logo{
    margin-bottom: 0;
    width: 100%;
    max-width: 430px;
}
.footer-logo img{
    width: 100%;
}

.footer-info{
    width: fit-content;
    gap: 24px;
    display: flex;
    align-items: center;
}

.footer-info_item{
    display: flex;
    width: fit-content;
    gap: 12px;
    align-items: center;
}

.footer-info_icon{
    width: 52px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--o-gradient);
    display: grid;
    place-items: center;
    font-size: 20px;
    color: white;
}

.footer-info_text_name{
    font-weight: 500;
    margin-bottom: 0;
    color: var(--o-primary);
}

.footer-info_text_value{
    font-size: 16px;
    margin-bottom: 0;
    color: var(--heading-cl);
}




.footer-body{
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
}

.footer-body_label{
    width: 430px;
    min-height: 100%;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: repeat-y;
    background-position: top center;
}

.footer-body_contain{
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-menu_col_sm{
    width: calc(20% - 16px);
}

.footer-menu_col_md{
    width: calc(30% - 16px);
}

.menu-footer{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu-footer>li{
    width: 100%;
}
.menu-footer>li>a{
    display: block;
    width: 100%;
    color: var(--text-cl);
    font-weight: 600;
}

.menu-orther{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.menu-orther>li{
    width: 100%;
}
.menu-orther>li>a{
    display: block;
    width: 100%;
    color: var(--text-cl);
    font-weight: 600;
}


.footer-option_col{
    width: calc(50% - 16px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-title{
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-cl);
    margin-bottom: 0;
}
.footer-title>span{
    color: var(--o-primary);
}

.footer-sub{
    margin-bottom: 0;
}

.footer-form{
    width: 100%;
    display: flex;
    background: var(--border-light);
    padding: 12px;
    align-items: center;
    justify-content: space-between;
}

.footer-form_submit{
    border: none;
    outline: none;
    background-color: white;
    color: var(--heading-cl);
    font-weight: 500;
    padding: 6px 12px;
    flex-shrink: 0;
    transition: all .3s;
}
.footer-form_submit:hover{
    background-color: var(--heading-cl);
    color: white;
}

.footer-form_input{
    flex: 1;
    border: none;
    outline: none;
    padding-left: 10px;
    background-color: transparent;
}


.footer-foot{
    padding: 16px 0;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-social{
    width: fit-content;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 16px;
}
.footer-social>li{
    width: fit-content;
}
.footer-social>li>a{
    display: inline-block;
    font-size: 16px;
    color: var(--heading-cl);
    transition: all .3s;
}
.footer-social>li>a:hover{
    color: var(--o-primary);
}


.page-project-list{
    width: 100%;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.page-project-item{
    width: calc(33.33% - 20px);
}

.project-item_wrap{
    width: 100%;
    display: block;
}

.page-project-thumb{
    margin-bottom: 16px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}
.page-project-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-project-customer{
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 20px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 6px 6px 0 0;
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
}

.page-project-name{
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-cl);
    margin-bottom: 12px;
}

.project-item_service{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    overflow-x: scroll;
}

.project-item_service::-webkit-scrollbar {
    display: none;
}

.project-item_service li{
    width: fit-content;
    color: var(--text-cl);
    padding: 4px 8px;
    font-size: 13px;
    border: 1px solid var(--text-cl);
    border-radius: 15px;
    white-space: nowrap;
}


/* ------------------------------ */

.single-page{
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 32px 40px;
}

.single-header{
    width: 100%;
}

.single-term{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 500;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 8px;
}

.single-term li{
    width: fit-content;
    font-size: 16px;
    color: var(--o-primary);
    display: flex;
    gap: 6px;
    align-items: center;
}
.single-term li i{
    font-size: 10px;
}

.single-title{
    font-size: 48px;
    font-weight: 700;
    line-height: 62px;
}

.single-breakcrumb{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow-x: hidden;
}
.single-breakcrumb a{
    color: var(--o-primary);
}

.single-main{
    width: calc(100% - 500px);
}

.single-banner{
    width: 100%;
    aspect-ratio: 2/1;
    margin-bottom: 16px;
    overflow: hidden;
    border-radius: 10px;
}

.single-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-info{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.single-list{
    width: fit-content;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
}
.single-list li{
    width: fit-content;
    white-space: nowrap;
    padding: 5px 10px;
    border: 1px solid var(--text-cl);
    border-radius: 16px;
    color: var(--heading-cl);
}

.single-project_timer{
    font-size: 16px;
    font-weight: 500;
    color: var(--heading-cl);
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.single-excerpt{
    font-style: italic;
    color: var(--heading-cl);
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 24px;
}

.single-gallery{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.single-gallery_item{
    width: calc(25% - 9px);
    aspect-ratio: 1/1;
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 6px;
}

.single-gallery_item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.single-sidebar{
    width: 460px;
    flex-shrink: 0;
}

.single-sidebar_wrap{
    width: 100%;
    padding: 20px;
    background-color: white;
}
.sidebar-title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.sidebar-post_list{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
}

.sidebar-post_item{
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--heading-cl);
}

.sidebar-post_img{
    width: 100px;
    aspect-ratio: 4/3;
    flex-shrink: 0;
    border-radius: 6px;
    margin-bottom: 0;
    overflow: hidden;
}
.sidebar-post_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sidebar-post_text{
    flex: 1;
}

.sidebar-post_title{
    margin-bottom: 4px;
    color: var(--heading-cl);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.sidebar-customer{
    color: var(--o-primary);
    font-weight: 500;
}
/* ------------------------------ */
.cta-wrap{
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.cta-banner{
    width: 100%;
    height: 380px;
    margin-bottom: 0;
}
.cta-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cta-content{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 0 40px;
    padding-top: 40px;
    padding-bottom: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cta-content .section-title{
    color: white;
}
.cta-content .section-title span{
    color: var(--o-second);
}

.cta-sub{
    width: 100%;
    max-width: 480px;
    font-size: 16px;
    font-weight: 400;
    color: white;
    margin-bottom: 0;
    margin-top: 16px;
}

.cta-footer{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.cta-footer_list{
    width: fit-content;
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.cta-footer_list li{
    width: fit-content;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.cta-number{
    font-size: 28px;
    font-weight: 700;
    line-height: 28px;
    color: var(--o-second);
    margin-bottom: 4px;
}
.cta-text{
    margin-bottom: 0;
    color: white;
}


.re-paginate{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding-top: 40px;
}
.page-numbers{
    display: inline-grid;
    width: 30px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    place-items: center;
    color: white;
    font-weight: 500;
    background: var(--heading-cl);
}
.page-numbers.current, .page-numbers:hover{
    background: var(--o-gradient);
}
.prev.page-numbers, .next.page-numbers{
    background-color: #565656;
}
/* ------------------------------ */
@media only screen and (max-width: 1367px){
    .customer-img{
        width: 25%;
    }

    .home-overview-content{
        /* flex-wrap: wrap; */
        gap: 24px;
        display: block;
    }

    .home-overview_list{
        flex: unset;
        width: 100%;
        height: 280px;
    }
    .home-overview_item{
        height: 280px;
    }

    .home-overview-total{
        flex-shrink: unset;
        width: 100%;
    }
    .home-overview-total_item{
        width: calc(33.33% - 16px);
    }

}



@media only screen and (max-width: 1025px){
    .main-header_contain{
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
    }
    .main-header_contain.fill{
       visibility: visible;
       opacity: 1;
    }

    .header-logo{
        visibility: visible;
        opacity: 1;
    }

    .header-menu{
        display: none;
    }

    .call-menu{
        display: inline-block;
        color: var(--heading-cl);
        font-size: 24px;
        cursor: pointer;
    }
    .mobile-search-btn{
        display: inline-block;
        color: var(--heading-cl);
        font-size: 22px;
    }

    .start-contain{
        height: calc(100vh - 152px);
    }

    .start-logo-img{
        width: 680px;
    }

    .start-text{
        width: 680px;
    }

    .home-overview-content{
        /* flex-wrap: wrap; */
        gap: 24px;
        display: block;
    }

    .home-overview{
        display: block;
    }

    .home-overview_label{
        width: 100%;
        aspect-ratio: unset;
        height: 460px;
    }

    .home-overview_list{
        flex: unset;
        width: 100%;
        height: 240px;
    }
    .home-overview_item{
        height: 240px;
    }

    .home-overview-total{
        gap: 12px;
    }
    .home-overview-total_item{
        width: calc(33.33% - 8px);
    }

    .customer-wrap{
        position: relative;
    }
    .customer-label{
        flex-shrink: unset;
        width: 100%;
    }
    .customer-label_img{
        width: 100px;
    }
    .customer-list{
        flex: unset;
        position: absolute;
        top: 210px;
        right: 60px;
        bottom: 130px;
        left: 170px;
        padding: 20px;
        border-radius: 8px;
    }
    .customer-img{
        width: 20%;
    }

    .footer-head{
        justify-content: center;
        gap: 24px;
    }

    .footer-logo{
        width: 320px;
    }

    .footer-body_label{
        display: none;
    }

    .footer-body_contain{
        max-width: unset;
    }

    .service, .page-project-list{
        gap: 30px 20px;
    }
    

    .service-item, .post-wrap, .platform-item, .page-project-item{
        width: calc(50% - 10px);
    }

    .single-main, .single-sidebar{
        width: 100%;
    }

    .sidebar-post_item{
        width: calc(50% - 8px);
    }

}


@media only screen and (max-width: 821px){

    .hero-desktop{
        display: none;
    }

    .video-banner{
        display: block;
    }

    .overview-header{
        gap: 16px;
        margin-bottom: 24px;
    }
    .overview-header_title{
        flex-shrink: unset;
        width: 100%;
        max-width: unset;
    }
    .overview-header_sub{
        flex: unset;
        width: 100%;
    }

    .service-item{
        gap: 16px;
    }

    .service-item_text{
        flex: 1;
        overflow-x: hidden;
    }

    .customer-list{
        top: 220px;
    }
    
    .customer-img{
        width: 25%;
    }


    .page-project-item{
        width: calc(50% - 15px);
    }

    .cta-banner{
        height: 420px;
    }
    .cta-content{
        padding-bottom: 40px;
    }

    .cta-footer{
        gap: 16px;
        justify-content: center;
    }

    .cta-footer_list{
        width: 100%;
    }
    .cta-footer_list li{
        width: calc(33.33% - 8px);
    }

    .cta-number{
        text-align: center;
    }
    .cta-text{
        text-align: center;
    }

    .category-list{
        width: 100%;
        white-space: nowrap;
        overflow: auto;
        margin-bottom: 32px;
    }

    .category-list a{
        font-size: 12px;
        padding: 4px 8px;
        border-radius: 14px;
    }

}



@media only screen and (max-width: 481px){
    .main-wrapper{
        padding: 0 16px;
    }

    .main-header_contain{
        padding: 16px 0;
    }

    .site-st{
        padding: 64px 0;
    }

    .start-logo{
        margin-bottom: 20px;
    }
    .start-text,
    .start-logo-img{
        width: 320px;
    }

    .start-text{
        overflow-x: hidden;
    }
    .start-text_heading{
        font-size: 16px;
    }

    .start-services{
        flex-wrap: nowrap;
        justify-content: start;
        gap: 10px;
        animation: marquee 15s linear infinite;
    }
    .start-services li{
        width: fit-content;
        white-space: nowrap;
    }

    .hero-contain{
        padding-top: 68px;
    }

    .section-title, .single-title{
        font-size: 24px;
        line-height: 36px;
    }

    .overview-header_sub{
        font-size: 14px;
        line-height: 21px;
    }

    .section-header{
        margin-bottom: 32px;
    }

    .page-banner{
        margin-bottom: 20px;
    }


    .overview-st{
        padding-top: 80px;
        padding-bottom: 64px;
    }

    .home-overview{
        padding: 0;
        gap: 16px;
    }

    .home-overview_label{
        width: 100%;
        height: 480px;
        overflow: hidden;
    }

    .big-circle{
        width: 290px;
        height: 290px;
    }
    .center-img{
        width: 120px;
        height: 120px;
    }

    .orbit-text.one {
        transform: translate(-50%, -222px);
    }

    .orbit-text.two {
        transform: translate(162px, -50%);
    }

    .orbit-text.three {
        transform: translate(-50%, 160px);
    }

    .orbit-text.four {
        transform: translate(-222px, -50%);
    }

    .home-overview_list{
        height: 340px;
    }

    .home-overview_item{
        height: 340px;
    }

    .home-overview_item .title{
        font-size: 16px;
    }

    .home-overview_item .desc{
        font-size: 14px;
        line-height: 21px;
    }

    .home-overview-total{
        gap: 8px;
    }

    .home-overview-total_item{
        width: fit-content;
        padding: 6px 10px;
        align-items: unset;
        flex-shrink: 0;
    }
    .home-overview-total_item:first-child{
        flex: 1;
    }
    .home-overview-total_item:last-child{
        width: 100%;
    }

    .home-overview-total_item .number{
        font-size: 20px;
    }
    .home-overview-total_item .number .plus{
        font-size: 14px;
    }
    .home-overview-total_item .text{
        font-size: 14px;
    }

    .section-nav{
        width: 28px;
    }
    
    .sub-title{
        font-size: 14px;
    }

    .platform-text{
        text-align: left;
    }

    .service-item, .post-wrap, .platform-item, .page-project-item{
        width: 100%;
    }

    .platform-text{
        min-height: unset;
    }


    .view-all_btn{
        padding: 6px 12px;
    }

    .customer-wrap{
        position: unset;
    }
    .customer-label{
        padding: 20px 15px;
        gap: 16px;
    }
    .customer-label_img{
        width: 38px;
    }

    .customer-label_content_text p{
        padding-right: 0;
        font-size: 14px;
    }

    .customer-label_btn{
        font-size: 14px;
        padding: 6px 12px;
        border-radius: 16px;
    }
 
    .customer-list{
        position: unset;
        padding: 20px 16px;
    }
    .customer-img{
        width: 33.33%;
    }

    .section-header_control{
        gap: 10px
    }

    .post-st{
        margin-bottom: 20px;
    }

    .footer-logo{
        display: none;
    }

    .footer-info{
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-info_item{
        width: fit-content;
        gap: 8px;
    }
    .footer-info_icon{
        width: 40px;
        font-size: 16px;
    }
    .footer-info_text_name{
        font-size: 13px;
    }
    .footer-info_text_value{
        font-size: 12px;
    }

    .footer-menu_col_sm, .footer-menu_col_md, .footer-option_col{
        width: 100%;
    }

    .footer-option_col{
        gap: 12px;
    }

    .menu-footer{
        gap: 12px 16px;
        flex-wrap: wrap;
        justify-content: start;
        flex-direction: row;
    }
    .menu-footer > li{
        width: fit-content;
    }
    .menu-footer > li > a{
        display: inline-block;
        width: fit-content;
    }

    .footer-foot{
        flex-wrap: wrap;
        gap: 12px;
        text-align: center;
        justify-content: center;
    }

    .page-wrap{
        padding-top: 40px;
    }
    .page-breakcrumb{
        width: 100%;
        justify-content: flex-start;
        overflow: hidden;
        white-space: nowrap;
    }

    .single-banner{
        aspect-ratio: 4/3;
    }

    .single-excerpt, .single-gallery, .single-info{
        margin-bottom: 20px;
    }

    .single-gallery_item{
        width: 100%;
    }

    .single-term{
        width: 100%;
        flex-wrap: wrap;
    }

    .single-term li{
        font-size: 14px;
    }

    .single-list li{
        font-size: 12px;
        padding: 3px 6px;
        border-radius: 13px;
    }

    .single-excerpt, .page-content{
        font-size: 14px;
        line-height: 21px;
    }

    .single-sidebar_wrap{
        padding: 16px 12px;
    }

    .sidebar-title{
        font-size: 18px;
    }

    .sidebar-post_item{
        width: 100%;
    }

    .sidebar-post_title{
        font-size: 14px;
        line-height: 21px;
    }

    .page-content p{
        font-size: 14px;
        line-height: 21px;
    }

    .page-project-thumb{
        margin-bottom: 8px;
    }

    .page-project-customer{
        font-size: 14px;
        left: 12px;
        padding: 6px 12px;
    }

    .page-project-item{
        width: 100%;
    }

    .page-project-btn .icon{
        width: 28px;
        height: 28px;
    }

    .page-project-name{
        font-size: 14px;
        margin-bottom: 8px;
    }

    .service-header{
        gap: 12px;
        padding-bottom: 10px;
    }

    .service-item_list{
        gap: 12px;
        padding-top: 10px;
    }

    .cta-banner{
        height: 520px;
    }
    .cta-content{
        padding: 32px 20px;
    }

    .cta-footer_list{
        display: none;
    }

    .team-text{
        padding: 16px 12px;
    }

    .team-name{
        font-size: 16px;
        margin-bottom: 5px;
    }

    .team-position{
        font-size: 14px;
    }

    .team-skill li{
        font-size: 12px;
    }

    .post-info{
        gap: 10px;
    }

    .post-time{
        width: 70px;
        padding: 8px;
    }
    .post-time_date{
        font-size: 28px;
        line-height: 28px;
    }
    .post-time_year{
        font-size: 12px;
    }

    .post-title{
        font-size: 14px;
        line-height: 21px;
    }

    .re-paginate{
        padding-top: 28px;
    }

    .page-banner_img{
        height: 280px;
    }

    .page-title .section-title{
        font-size: 24px;
        margin-bottom: 2px;
    }

    .page-banner_text{
        padding-bottom: 28px;
    }
 

}