@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..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;
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    background-color: var(--main-bg);
    color: var(--text-cl);
}

section{
    width: 100%;
    scroll-snap-align: start;
}

footer{
    scroll-snap-align: end;
}

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: 109px;
    min-height: 100vh;
    padding-bottom: 24px;
}


.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%);
}

.full-height{
    width: 100%;
    min-height: calc(100vh - 138px);
}

.bg{
    background-size: contain;
    background-repeat: repeat-y;
    background-position: top center;
    background-attachment: fixed;
}

.section-title{
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 0;
    text-transform: uppercase;
    color: var(--heading-cl);
    line-height: 36px;
}
.section-title span{
    color: var(--o-primary);
}

.section-header{
    margin: 0 auto;
    width: 100%;
    margin-bottom: 40px;
}

.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;
}
/* --------------------------- */

.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;
}

.login-btn{
    display: inline-block;
    padding: 8px 16px;
    color: var(--heading-cl);
    font-weight: 500;
    text-transform: uppercase;
    background-color: var(--border-light);
    /* border: 1px solid var(--border); */
    /* border-radius: 20px; */
    text-align: center;
    transition: all .3s;
}
.login-btn:hover{
    background-color: var(--heading-cl);
    color: var(--border-light);
}


.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-video{
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

/* -------------------------- */

.home-overview{
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: center;
    /* background-color: white; */
    padding: 20px 52px;
    border-radius: 20px;
    /* border: 1px solid var(--border); */
}

.home-overview_center{
    width: 500px;
    height: 500px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.big-circle {

	width: 420px;
	height: 420px;
	border-radius: 50%;
	border: 1px solid var(--heading-cl);
	position: relative;

	animation: rotateCircle 25s linear infinite;

}


.center-img {

	width: 220px;
	height: 220px;
	margin: 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;
	width: fit-content;
    z-index: 2;
}

.small-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--main-bg);
	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;
    padding: 10px;
    border-radius: 50%;
    width: 115px;
    aspect-ratio: 1/1;
    /* background-color: #fff; */
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(5px);
    z-index: 1;
    display: inline-grid;
    place-items: center;
    left: 50%;
    top: 50%;
}

.orbit-text span{
    font-size: 14px;
    font-weight: 600;
    display: inline-grid;
    place-items: center;
    width: fit-content;
    animation: rotateCircleCounter 25s linear infinite;
}

.orbit-text.one {
	transform: translate(-50%, -340px);
}

.orbit-text.two {
	transform: translate(218px, -50%);
}

.orbit-text.three {
	transform: translate(-50%, 218px);
}

.orbit-text.four {
	transform: translate(-340px, -50%);
}

.home-overview_text_contain{
    height: 100%;
    width: 100%;
    border-radius: 4px;
    padding-right: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    position: relative;
}



.home-overview_list{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.home-overview_left{
    position: relative;
    width: 100%;
    padding-right: 60px;
}
.home-overview_left>.title{
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--heading-cl);
    text-align: left;
}
.home-overview_left>.desc{
    margin: 0;
    text-align: left;
}

.home-overview_left::before{
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--heading-cl);
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.home-overview_left::after{
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: var(--heading-cl);
    right: 40px;
    top: 50%;
    transform: translate(100%, -50%);
}



.home-overview_right{
    position: relative;
    width: 100%;
    padding-left: 60px;
}
.home-overview_right>.title{
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--heading-cl);
    text-align: right;
}
.home-overview_right>.desc{
    margin: 0;
    text-align: right;
}

.home-overview_right::before{
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: var(--heading-cl);
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.home-overview_right::after{
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background-color: var(--heading-cl);
    left: 40px;
    top: 50%;
    transform: translate(-100%, -50%);
}

/* ------------------------- */

.section-header_control{
    display: flex;
    width: fit-content;
    gap: 16px;
    align-items: center;
}

.section-nav{
    display: inline-grid;
    width: 32px;
    height: 32px;
    place-items: center;
    color: var(--heading-cl);
    border: 1px solid var(--border);
    color: var(--heading-cl);
    /* border-radius: 8px; */
    transition: all .3s;
}
.section-nav:hover{
    background-color: var(--heading-cl);
    color: white;
}

.platform{
    width: 100%;
}
.platform-list{
    width: 100%;
}

.platform-item{
    width: 100%;
    /* border: 1px solid var(--border); */
    background-color: white;
    /* border-radius: 10px; */
    padding: 10px;
    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-contain{
    width: 100%;
    padding: 40px;
    /* border: 1px solid var(--border); */
    background-color: white;
    /* border-radius: 20px; */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service-view{
    width: 100%;
    display: flex;
    gap: 20px;
    /* border: 1px solid var(--border); */
    /* border-radius: 10px; */
    background-color: var(--main-bg);
}

.service-view_img{
    width: calc(60% - 10px);
    aspect-ratio: 16/9;
    margin: 0;
    overflow: hidden;
    /* border-radius: 10px 0 0 10px; */
    position: relative;
    z-index: 1;
}
.service-view_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* .service-view_img::before{
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100px;
    background: linear-gradient(90deg,rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 1) 60%, rgba(247, 247, 247, 1) 100%);
} */

.service-view_content{
    width: calc(40% - 10px);
    height: 100%;
    padding: 20px;
    padding-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:32px;
}

.service-view_content_header{
    display: flex;
    gap: 12px;
    align-items: center;
}
.service-view_content_header> .number{
    display: inline-grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    background: var(--o-gradient);
    font-size: 24px;
    font-weight: 700;
}
.service-view_content_header> .title{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    color: var(--heading-cl);
}

.service-view_content_desc{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    text-align: center;
}

.service-view_content_btn{
    display: inline-block;
    text-transform: uppercase;
    color: var(--heading-cl);
    font-weight: 600;
    border: 1px solid var(--border);
    padding: 7px 12px;
    /* border-radius: 22px; */
    transition: all .3s;
}
.service-view_content_btn:hover{
    color: white;
    background-color: var(--heading-cl);
}

.service-list{
    flex: 1;
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.service-list::before{
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    right: 0;
    width: 40px;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.66) 50%, rgba(255, 255, 255, 1) 100%);;
}

.service-item{
    width: 100%;
    border: 1px solid transparent;
    background-color: var(--main-bg);
    /* border-radius: 10px; */
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.service-item:hover,
.service-item.active{
    border: 1px solid var(--border);
    background-color: white;
}

.service-item>.number{
    width: 36px; height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    border: 1px solid var(--border);
    font-size: 18px;
    font-weight: 700;
    transition: all .3s;
}
.service-item>.title{
    font-size: 16px;
    flex: 1;
    font-weight: 500;
    margin-bottom: 0;
    transition: all .3s;
    color: var(--heading-cl);
    text-align: center;
}
.service-item:hover>.number,
.service-item.active>.number{
    background-color: var(--heading-cl);
    color: white;
}

.service-option{
    width: 360px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.service-nav_left,
.service-nav_right{
    display: inline-grid;
    place-items: center;
    color: white;
    width: 36px;
    height: 36px;
    font-size: 16px;
    /* border-radius: 8px; */
    cursor: pointer;
    transition: all .3s;
    background-color: var(--heading-cl);
}

.service-nav_left:hover,
.service-nav_right:hover{
    background-color: var(--text-cl);
}

.service-view-all{
    display: inline-block;
    color: white;
    background-color: var(--heading-cl);
    padding: 8px 20px;
    /* border-radius: 8px; */
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s;
}
.service-view-all:hover{
    background-color: var(--text-cl);
    color: white;
}

.view-all_btn{
    display: inline-block;
    border: 1px solid var(--border);
    color: var(--heading-cl);
    padding: 7px 20px;
    /* border-radius: 8px; */
    text-transform: uppercase;
    font-weight: 600;
    transition: all .3s;
}
.view-all_btn:hover{
    background-color: var(--heading-cl);
    color: white;
}

/* ---------------------- */
.project-list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.project-item{
    width: calc(33.33% - 16px);
    height: 400px;
    position: relative;
    cursor: pointer;
    background-color: white;
    transition: all .3s;
}
.project-item:hover{
    box-shadow: var(--shadow-lg);
}
.project-item:nth-child(-n+2){
    width: calc(50% - 12px);
}

.project-item:nth-child(even){
    background-color: var(--border);
}

.project-thumb{
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 180px;
    aspect-ratio: 1/1;
    margin-bottom: 0;
    transition: all .3s;
    border-radius: 10px;
    overflow: hidden;
}
.project-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.project-overlay{
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-overlay_header{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.project-customer{
    width: 100%;
    margin-bottom: 0;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-cl);
}
.project-name{
    width: 100%;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading-cl);
    font-size: 16px;
}

.project-item:hover .project-thumb{
    border-radius: 0;
    aspect-ratio: unset;
    width: unset;
    inset: 0;
}

.project-item:hover .post-btn{
    color: white;
}
.project-item:hover .post-btn_icon{
    color: var(--heading-cl);
    background-color: white;
}
/* --------------------------- */

.customer-list{
    /* flex: 1; */
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0 40px;
    justify-content: center;
    gap: 8px;
}

.customer-item{
    width: calc(12.5% - 7px);
    background-color: white;
    aspect-ratio: 16/9;
    padding:30px;
    display: flex;
    align-self: center;
    justify-content: center;
}
.customer-img{
    width: 100%;
    aspect-ratio: 5/1;
    overflow: hidden;
    margin-bottom: 0;
}
.customer-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.customer-label_btn{
    display: inline-block;
    padding: 10px 16px;
    background: var(--o-gradient);
    color: white;
    font-size: 16px;
    font-weight: 600;
    width: fit-content;
    /* border-radius: 18px; */
    transition: all .3s;
}
.customer-label_btn:hover{
    background: var(--heading-cl);
    color: white;
}
/* ------------------------ */

.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{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.post-main{
    width: calc(33.33% - 12px);
}

.post-item{
    background-color: white;
    position: relative;
    transition: all .3s;
}
.post-item:hover{
    box-shadow: var(--shadow-lg);
}

.post-main>.post-item{
    width: 100%;
}

.post-main .post-thumb{
    width: 100%;
    height: 574px;
    margin-bottom: 0;
    overflow: hidden;
}
.post-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.post-overlay{
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.post-main .post-overlay{
    background: 
        linear-gradient(0deg,rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.5) 20%, 
        rgba(255, 255, 255, 0) 50%, 
        rgba(255, 255, 255, 0.5) 80%, 
        rgba(255, 255, 255, 0.7) 100%);
}

.post-overlay_header{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.post-cate{
    margin-bottom: 0;
    width: 100%;
    font-weight: 500;
}

.post-title{
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-cl);
    margin-bottom: 0;
}

.post-date{
    width: 100%;
    display: flex;
    gap: 6px;
    margin-bottom: 0;
    font-weight: 500;
}

.post-btn{
    display: inline-block;
    width: fit-content;
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--heading-cl);
    font-size: 16px;
    font-weight: 600;
    transition: color .3s;
}
.post-btn:hover{
    color: var(--o-primary);
}
.post-btn:hover .post-btn_icon{
    background-color: var(--o-primary);
}


.post-btn_icon{
    width: 36px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background-color: var(--heading-cl);
    color: white;
    transition: all .3s;
    font-size: 16px;
}


.post-list{
    width: calc(66.66% - 12px);
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.post-list .post-item{
    width: calc(33.33% - 16px);
}

.post-list .post-item:nth-child(-n+2){
    width: calc(50% - 12px);
}

.post-list .post-thumb{
    width: 100%;
    height: 275px;
    margin-bottom: 0;
}

.post-list .post-item:nth-child(even){
    background-color: var(--border);
}
/* ------------------------------ */
.main-footer{
    background-color: white;
}

.footer-head{
    padding: 24px 0;
    /* border-top: 1px solid var(--border); */
    border-bottom: 1px solid var(--border);
}

.footer-head_contain{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo{
    margin-bottom: 0;
    width: 100%;
    max-width: 430px;
}
.footer-logo img{
    width: 100%;
}

.footer-cta{
    width: fit-content;
    gap: 16px 60px;
    display: flex;
    align-items: center;
}

.footer-cta_text{
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--text-cl);
    text-transform: uppercase;
}


.footer-body{
    padding: 24px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-body_label{
    width: 100%;
    max-width: 430px;
    min-height: 100%;
    flex-shrink: 0;
    background-size: contain;
    background-repeat: repeat-y;
    background-position: top center;
}

.footer-body_contain{
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
    max-width: 820px;
}

.footer-menu_col_sm{
    width: calc(20% - 16px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-menu_col_md{
    width: calc(30% - 16px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.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;
}

.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);
}

/* ------------------------------ */
@media only screen and (max-width: 1367px){
    .customer-list{
        gap: 6px;
    }
    .customer-item{
        width: calc(100% / 6 - 5px);
    }

    .footer-cta{
        flex: unset;
        width: 100%;
        justify-content: space-between;
    }

    .footer-body_label{
        width: calc(100% - 845px);
    }

}



@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{
        flex-wrap: wrap;
        gap: 40px;
        padding: 40px 40px;
    }
    .home-overview_center{
        order: 1;
        width: 100%;
        padding: 40px 0;
    }
    .home-overview_list{
        order: 2;
        width: 100%;
        flex-direction: row;
        gap: 40px;
        flex: unset;
    }

    .home-overview_left,
    .home-overview_right{
        padding-left: 0;
        padding-right: 0;
    }
    .home-overview_left .title,
    .home-overview_right .title,
    .home-overview_left .desc,
    .home-overview_right .desc{
        text-align: left;
    }
    .home-overview_left::before,
    .home-overview_right::before,
    .home-overview_left::after,
    .home-overview_right::after{
        display: none;
    }

    .service-view_img{
        width: calc(50% - 10px);
        aspect-ratio: 5/3;
    }
    .service-view_img::before{
        width: 50px;
    }
       
    .service-view_content{
        gap: 12px;
        width: calc(50% - 10px);
    }

    .service-view_content_header> .number{
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .service-view_content_header> .title{
        font-size: 16px;
    }
    .service-view_content_desc{
        font-size: 14px;
    }

    .project-item{
        width: calc(50% - 12px);
    }
    .project-item:first-child{
        width: 100%;
    }

    .project-item:not(:first-child) .project-overlay{
        gap: 12px;
        justify-content: start;
    }

    .customer-list{
        gap: 10px;
    }
    .customer-item{
        width: calc(20% - 8px);
    }

    .post-list,
    .post-main{
        width: calc(50% - 12px);
    }

    .post-main .post-thumb{
        height: 648px;
    }

    .post-list .post-item{
        width: calc(50% - 12px);
    }
    .post-list .post-item:nth-child(-n+2){
        width: calc(50% - 12px);
    }

    .post-overlay{
        gap: 12px;
    }

    .post-list .post-thumb{
        height: 200px;
    }

    .post-list .post-overlay{
        padding: 16px;
    }

    .post-list .post-btn{
        font-size: 14px;
    }
    .post-list .post-btn_icon{
        font-size: 14px;
        width: 26px;
    }

    .footer-head_contain{
        justify-content: center;
        text-align: center;
    }

    .footer-body_label{
        display: none;
    }


}


@media only screen and (max-width: 821px){
    .overview-st{
        overflow-x: hidden;
    }

    .service-view{
        flex-wrap: wrap;
    }

    .service-view_img,
    .service-view_content{
        width: 100%;
    }

    .service-view_img{
        aspect-ratio: 2/1;
        /* border-radius: 10px 10px 0 0; */
    }
    .service-view_img::before{
        display: none;
    }

    .service-view_content{
        height: unset;
        padding: 20px 40px 40px 40px;
    }

    .service-list, .service-option{
        width: 100%;
        flex: unset;
    }

    .service-item{
        padding: 6px 12px;
    }

    .service-item>.number{
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    .service-item>.title{
        font-size: 14px;
    }

    .customer-list{
        gap: 12px;
    }
    .customer-item{
        padding: 18px;
        width: calc(25% - 9px);
    }

    html{
        scroll-behavior: unset;
        scroll-snap-type: unset;
    }

    section{
        scroll-snap-align: unset;
    }

    .site-st{
        min-height: unset;

    }
    
    .platform-text{
        min-height: 220px;
    }

    .full-height{
        min-height: unset;
    }

    .post-list,
    .post-main{
        width: 100%;
    }

    .post-main .post-thumb{
        height: unset;
        aspect-ratio: 5/3;
    }

}



@media only screen and (max-width: 481px){
    .main-wrapper{
        padding: 0 16px;
    }

    .main-header_contain{
        padding: 16px 0;
    }

    .site-st{
        padding-top: 68px;
        min-height: unset;
        
    }

    .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{
        font-size: 18px;
    }

    .section-header{
        margin-bottom: 20px;
    }

    .home-overview{
        padding: 16px;
        gap: 16px;
        /* border-radius: 10px; */
    }

    .big-circle{
        width: 290px;
        height: 290px;
    }
    .center-img{
        width: 120px;
        height: 120px;
    }

    .orbit-text.one {
        transform: translate(-50%, -265px);
    }

    .orbit-text.two {
        transform: translate(160px, -50%);
    }

    .orbit-text.three {
        transform: translate(-50%, 160px);
    }

    .orbit-text.four {
        transform: translate(-280px, -50%);
    }

    .home-overview_list{
        flex-wrap: wrap;
        gap: 16px;
    }

    .home-overview_left,
    .home-overview_right{
        width: 100%;
    }

    .section-header_control{
        gap: 12px;
    }

    .section-nav{
        width: 28px;
        height: 28px;
    }
    
    .sub-title{
        font-size: 14px;
    }

    .platform-text{
        text-align: left;
    }

    .service-contain{
        padding: 0;
        /* border-radius: 10px; */
        background-color: transparent;
    }

    .service-view{
        gap: 0;
        /* border: 1px solid var(--border); */
        /* border-radius: 20px; */
        overflow: hidden;
        background-color: white;
    }

    .service-view_img{
        aspect-ratio: 5/3;
    }

    .service-view_content{
        align-items: start;
        padding: 16px 12px;
    }

    .service-view_content_header> .number{
        width: 30px;
        height: 30px;
    }

    .service-view_content_desc{
        text-align: left;
    }

    .service-list::before{
        display: none;
    }

    .service-item{
        border: 1px solid var(--border);
        padding: 10px 12px;
    }

    /* .service-item:hover,
    .service-item.active{
        border-color: var(--heading-cl);
    } */

    .view-all_btn{
        padding: 6px 12px;
    }

    .project-item{
        width: 100%;
        height: 220px;
    }

    .project-item .post-btn{
        font-size: 14px;
    }

    .project-item .post-btn_icon{
        font-size: 14px;
        width: 26px;
    }

    .project-item:nth-child(-n+2){
        width: 100%;
    }

    .project-item:not(:first-child) .project-overlay{
        justify-content: space-between;
    }

    .project-overlay{
        padding: 16px;
    }

    .project-thumb{
        right: 16px;
        bottom: 16px;
        width: 120px;
    }

    .customer-list{
        gap: 12px;
        padding: 0 12px;
    }
    .customer-item{
        padding: 30px;
        width: calc(50% - 6px);
    }

    .footer-cta{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-cta_text{
        font-size: 18px;
    }

    .footer-menu_col_sm{
        width: calc(40% - 12px);
    }
    .footer-menu_col_md{
        width: calc(60% - 12px);
    }
    .footer-option_col{
        width: 100%;
    }

    .footer-foot{
        flex-wrap: wrap;
        gap: 12px
    }

    .post{
        gap: 12px;
    }

    .post-main .post-thumb{
        aspect-ratio: 1/1;
    }

    .post-list .post-item{
        width: 100%;
    }
    .post-list .post-item:nth-child(-n+2){
        width: 100%;
    }

    .post-list .post-thumb{
        height: 180px;
    }

    .post-list .post-overlay,
    .post-main .post-overlay{
        padding: 16px;
    }

    .post-list .post-btn,
    .post-main .post-btn{
        font-size: 14px;
    }
    .post-list .post-btn_icon,
    .post-main .post-btn_icon{
        width: 26px;
    }

}