/*!
* PT. IMAJIKU CIPTA MEDIA
* Copyright 2019-2021 IMAJIKU.
*/

/* = GENERAL
-------------------------------------------------------------*/
.bg-secret-blue{
	background-image: url('../images/layouts/bg-secret-blue.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
}
.bg-secret-grey{
	background-image: url('../images/layouts/bg-secret-grey.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
}

/* =SLIDER SWIPER
-------------------------------------------------------------*/
.xwiper{}
.xwiper .swiper-wrapper {
	transition-timing-function: linear;
	-webkit-transition-timing-function: linear;
	-moz-transition-timing-function: linear;
}
.xwiper .swiper-slide{
	width: auto;
}
/* button arrow */
.xwiper-button-next::after, 
.xwiper-button-prev::after{
	content: '';
	display: none;
}
.xwiper-button-next,
.xwiper-button-prev{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	margin: 0;
	width: 60px;
	height: 100%;
	cursor: pointer;
	opacity: 0;
}
.xwiper-button-next{
	right: 0;
	background-image: linear-gradient(to left, #2b2b2b, rgba(43,43,43,1));
}
.xwiper-button-prev{
	left: 0;
	background-image: linear-gradient(to right, #2b2b2b, rgba(43,43,43,1));
}
.xwiper-button-prev .nav-circle-box,
.xwiper-button-next .nav-circle-box{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	background-color: #009BBD;
	text-align: center;
	border: 1px solid #009BBD;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	-webkit-box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	-moz-box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	transform: scale(0.5);
	opacity: 0;
}
.xwiper-button-prev i,
.xwiper-button-next i{
	font-size: 20px;
	color: var(--white);
}
.xwiper:hover .xwiper-button-prev,
.xwiper:hover .xwiper-button-next{
	opacity: 0.8;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.xwiper:hover .xwiper-button-prev .nav-circle-box,
.xwiper:hover .xwiper-button-next .nav-circle-box{
	transform: scale(1);
	opacity: 1;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}

/* button custom variant history */
.xwiper-minibtn-next::after, 
.xwiper-minibtn-prev::after{
	content: '';
	display: none;
}
.xwiper-minibtn-next,
.xwiper-minibtn-prev{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	position: absolute;
	top: 0;
	margin: 0;
	width: 60px;
	height: 100%;
	cursor: pointer;
	background-color: var(--grey-50);
	opacity: 1 !important;
}
.xwiper-minibtn-next{
	right: 0;
}
.xwiper-minibtn-prev{
	left: 0;
}
.xwiper-minibtn-prev .nav-circle-box,
.xwiper-minibtn-next .nav-circle-box{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border: 2px solid var(--color-2);
	background-color: var(--white);
	text-align: center;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	-webkit-box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	-moz-box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	transform: scale(0.8);
	opacity: 0.7;
}
.xwiper-minibtn-prev i,
.xwiper-minibtn-next i{
	font-size: 20px;
	color: var(--color-2);
}
.xwiper:hover .xwiper-minibtn-prev,
.xwiper:hover .xwiper-minibtn-next{
	opacity: 1;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.xwiper:hover .xwiper-minibtn-prev .nav-circle-box,
.xwiper:hover .xwiper-minibtn-next .nav-circle-box{
	transform: scale(1);
	opacity: 1;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}

/* = HERO
-------------------------------------------------------------*/

/* = CARD
------------------------------------------------------------ */
/* card wall */
.card-wall-box{
	display: block;
	width: 100%;
	position: relative;
}
.card-wall{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: auto;
	height: 300px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.card-wall-img{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.card-wall-img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-wall:hover .card-wall-img img {
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	filter: brightness(60%);
	-webkit-filter: brightness(60%);
	-moz-filter: brightness(60%);
	object-fit: cover;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
.card-wall-desc{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 15px;
	z-index: 5;
	transform: translate(0%,56%);
	transition-duration: 0.3s;
	transition-timing-function: ease;
}
.card-wall:hover .card-wall-desc{
	justify-content: flex-end;
	transform: translate(0%,0%);
	transition-delay: 0.2s;
	transition-duration: 0.6s;
	transition-timing-function: ease-in-out;
}
.card-wall-title{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	width: 100%;
	min-height: 100px;
	overflow: hidden;
	margin-bottom: 10px;
}
.card-wall-title h4{
	font-size: 24px;
	font-weight: 500;
	font-family: var(--font-family-1);
	line-height: 1.2;
	color: var(--white);
	margin-bottom: 0;
}
.card-wall-caption {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	min-height: 130px;
	overflow: hidden;
}
.card-wall:hover .card-wall-caption{
	min-height: 60px;
}
.card-wall-caption p{
	font-size: 14px;
	font-weight: 400;
	font-family: var(--font-family-2);
	line-height: 1.4;
	color: var(--white);
	margin-bottom: 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;	
	opacity: 0;
}
.card-wall:hover .card-wall-caption p{
	transition: all 2.5s ease;
	-webkit-transition: all 2.5s ease;
	-moz-transition: all 2.5s ease;		
	opacity: 1;
}
.card-wall-action{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin-top: 10px;
}
/* variant 2 - heigh */
.card-wall.variant-portrait {
	height: 400px;
}
.card-wall.variant-portrait .card-wall-desc{
	transform: translate(0%,65%);
	transition-duration: 0.3s;
	transition-timing-function: ease;	
}
.card-wall.variant-portrait:hover .card-wall-desc{
	transform: translate(0%,0%);
	transition-delay: 0s;
	transition-duration: 0.6s;
	transition-timing-function: ease-in-out;		
}
.card-wall.variant-portrait:hover .card-wall-caption p{
	transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;		
	opacity: 1;
}
/* card event */
.card-plain-box {
	display: block;
	position: relative;
	width: 100%;
}
.card-plain {
	display: flex;
	width: 100%;
	justify-content: flex-start;
	flex-direction: column;
	position: relative;
	background-color: var(--white);
	border: 1px solid var(--white);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;	
}
.card-plain-img {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.card-plain-img [data-aspect-ratio] {
	background-color: transparent;
}
.card-plain-img img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-plain:hover .card-plain-img img {
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	filter: brightness(60%);
	-webkit-filter: brightness(60%);
	-moz-filter: brightness(60%);
	object-fit: cover;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
.card-plain-desc {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	padding: 15px;
}
.card-plain-desc-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-overflow: ellipsis;
	margin-bottom: 15px;
}
.card-plain-desc-text h4,
.card-plain-desc-text h4 a{
	font-size: 20px;
	color: var(--color-text-1);
	font-weight: 600; 
	line-height: 1.2;
	font-family: var(--font-family-1);
	margin-bottom: 10px;
}
.card-plain-desc-text h4:hover,
.card-plain-desc-text h4 a:hover{
	color: var(--color-3);
}
.card-plain-desc-text p {
	color: var(--color-text-1);
	font-size: 14px;
	line-height: 1.2;
	margin-bottom: 0;
}
.card-plain-meta {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
.card-plain-meta p{
	font-size: 12px;
	font-weight: 400;
	line-height: 1;
	color: var(--color-text-1);
	white-space: nowrap;
	margin-bottom: 10px;
}
.card-plain-meta i{
	color: var(--color-text-1);
}
.card-plain-action {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	width: 100%;
	margin-top: 10px;
}
/* variant-horizontal */
.card-plain.variant-horizontal{
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	border-color: var(--grey-300);
	min-height: 230px;
}
.card-plain.variant-horizontal .card-plain-img{
	align-items: stretch;
	width: 350px;
}
.card-plain.variant-horizontal .card-plain-desc{
	padding: 10px 25px 10px;
	justify-content: center;
	flex: 1;
	width: auto;
}

/* card mate */
.card-mate-box{
	display: block;
	width: 100%;
	position: relative;
}
.card-mate{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 400px;
	margin: 0 auto;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.card-mate-img{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.card-mate-img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-mate:hover .card-mate-img img {
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	filter: brightness(60%);
	-webkit-filter: brightness(60%);
	-moz-filter: brightness(60%);
	object-fit: cover;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
.card-mate-desc{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 20px 15px 20px;
	z-index: 5;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,1) 96%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,1) 96%);
	background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,1) 96%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-mate:hover .card-mate-desc{
	padding-bottom: 40px;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-mate-desc h4{
	font-size: 22px;
	font-weight: 500;
	font-family: var(--font-family-1);
	line-height: 1.2;
	color: var(--white);
	margin-bottom: 10px;
	text-align: center;
}
.card-mate-desc h5{
	font-size: 20px;
	font-weight: 500;
	font-family: var(--font-family-1);
	line-height: 1.2;
	color: var(--white);
	margin-bottom: 10px;
	text-align: center;
}
.card-mate-desc p{
	font-size: 16px;
	font-weight: 400;
	font-family: var(--font-family-2);
	line-height: 1.4;
	color: var(--white);
	margin-bottom: 0;
	text-align: center;
}

/* card brand */
.card-brand-box{
	display: block;
	position: relative;
	width: 100%;
}
.card-brand{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	padding: 45px 0 25px;
	width: 100%;
}
.card-brand-img{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: calc(100% - 60px);
	height: 80px;
	background-color: var(--white);
	border: 1px solid var(--grey-300);
	padding: 10px 20px 10px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50% , 0%);
}
.card-brand-img img{
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 40px;
	margin: 0 auto;
}
.card-brand-desc{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	min-height: 180px;
	padding: 55px 15px 30px;
	background-color: var(--grey-200);
	border: 1px solid var(--grey-300);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-brand-desc h4{
	font-size: 20px;
	font-weight: 500;
	font-family: var(--font-family-1);
	line-height: 1;
	color: var(--color-text-1);
	margin-bottom: 10px;
	text-align: center;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-brand-desc p{
	font-size: 14px;
	font-weight: 400;
	font-family: var(--font-family-2);
	line-height: 1.4;
	color: var(--color-text-1);
	margin-bottom: 0;
	text-align: center;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-brand-action{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	transform: scale(0.6);
	-webkit-transform: scale(0.6);
	-moz-transform: scale(0.6);	
	opacity: 0;
	visibility: hidden;
}
.card-brand:hover{}
.card-brand:hover .card-brand-desc{
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	border-color: var(--color-2);
	background-color: var(--color-2);
}
.card-brand:hover .card-brand-desc h4,
.card-brand:hover .card-brand-desc p{
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;	
	color: var(--white);
}
.card-brand:hover .card-brand-action{
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);	
}

/* card lite */
.card-lite-box{
	display: block;
	width: 100%;
	position: relative;
}
.card-lite{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 350px;
	margin: 0 auto;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	overflow: hidden;
	position: relative;
}
.card-lite-mark{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	position: absolute;
	top: 15px;
	right: 15px;
	width: 50px;
	height: 50px;
	z-index: 6;
}
.card-lite-mark img{
	display: block;
	width: 100%;
	height: auto;
	margin: 0 auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.img-mark-360{
	opacity: 1;
	visibility: visible;
}
.img-mark-360-hover{
	opacity: 0;
	visibility: hidden;
}
.card-lite:hover .img-mark-360{
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;	
	opacity: 0;
	visibility: hidden;
}
.card-lite:hover .img-mark-360-hover{
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;	
	opacity: 1;
	visibility: visible;
}
.card-lite-img{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.card-lite-img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	margin: 0 auto;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-lite:hover .card-lite-img img {
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
	filter: brightness(60%);
	-webkit-filter: brightness(60%);
	-moz-filter: brightness(60%);
	object-fit: cover;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
}
.card-lite-desc{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	position: relative;
	padding: 20px 15px 20px;
	z-index: 5;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,1) 96%);
	background: -webkit-linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,1) 96%);
	background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(0,0,0,1) 96%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#000000",GradientType=1);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-lite:hover .card-lite-desc{
	padding-bottom: 40px;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}
.card-lite-desc h4{
	font-size: 22px;
	font-weight: 500;
	font-family: var(--font-family-1);
	line-height: 1.2;
	color: var(--white);
	margin-bottom: 5px;
	text-align: left;
}
.card-lite-desc h5{
	font-size: 18px;
	font-weight: 500;
	font-family: var(--font-family-1);
	line-height: 1.2;
	color: var(--white);
	margin-bottom: 0;
	text-align: left;
}

/* = Search
------------------------------------------------------------ */
.searching-category-box{
	display: flex;
	position: relative;
}
.nav-tabs.searching-category{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	row-gap: 10px;
	column-gap: 10px;
	border-bottom: none;
}
.nav-tabs.searching-category li{
	width: 100%;
}
.nav-tabs.searching-category .nav-link{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	padding: 10px 15px 10px;
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	color: var(--color-2);
	border-color: var(--color-2);
	background-color: var(--white);
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.nav-tabs.searching-category .nav-item.show .nav-link, 
.nav-tabs.searching-category .nav-link.active{
	color: var(--white);
	background-color: var(--color-button-2);
	border-color: var(--color-button-2);
}
/* card for search */
.card-kinet-box{
	display: flex;
	position: relative;
	width: 100%;
}
.card-kinet{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
	width: 100%;
	background-color: var(--white);
	border: 1px solid var(--grey-300);
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
.card-kinet-img{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	overflow: hidden;
	width: 15%;
	height: auto;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
.card-kinet-img img{
	display: block;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	object-fit: cover;
	object-position: center;
}
.card-kinet-desc{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	flex: 1;
	padding: 10px 15px 10px;
}
.card-kinet-tag{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
	row-gap: 5px;
	column-gap: 5px;
}
.card-kinet-tag li{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 1;
	padding: 3px 8px 3px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	background-color: var(--grey-100);
	color: var(--grey-600);
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
}
.card-kinet-tag li:hover{
	opacity: 0.8;
	transition: all 0.6s ease-in-out;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
}
.card-kinet-caption{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}
.card-kinet-caption h4{
	font-size: 16px;
	font-weight: 500;
	font-family: var(--font-family-1);
	line-height: 1.2;
	color: var(--color-text-1);
	margin: 5px 0 5px;
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;	
}
.card-kinet:hover .card-kinet-caption h4{
	color: var(--color-button-1);
	transition: all 0.6s ease-in-out;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;	
}
.card-kinet-caption p{
	font-size: 13px;
	font-weight: 400;
	font-family: var(--font-family-2);
	line-height: 1.4;
	color: var(--color-text-3);
	margin-bottom: 0;
}
.card-kinet-info{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
}
.card-kinet-info p{
	font-size: 11px;
	font-weight: 400;
	font-family: var(--font-family-2);
	line-height: 1.2;
	color: var(--color-text-3);
	margin-bottom: 0;
}

/* = HOME
------------------------------------------------------------ */
.wedo-category{}
.wedo-category-list{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	row-gap: 15px;
	column-gap: 15px;
}
.wedo-category-list li{
	display: flex;
	flex-basis: calc(100%/6);
	flex-grow: 1;
	flex-shrink: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.wedo-category-list li:hover{
	flex-basis: 300px;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;
}

/* = ABOUT
------------------------------------------------------------ */
.section-backdrop{
	display: flex;
	position: relative;
	width: 100%;
	padding: 50px 0 50px;
	background: rgb(12,29,107);
	background: -moz-linear-gradient(90deg, rgba(12,29,107,1) 40%, rgba(255,255,255,1) 40%);
	background: -webkit-linear-gradient(90deg, rgba(12,29,107,1) 40%, rgba(255,255,255,1) 40%);
	background: linear-gradient(90deg, rgba(12,29,107,1) 40%, rgba(255,255,255,1) 40%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0c1d6b",endColorstr="#ffffff",GradientType=1);
}
.purpose-container{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	padding: 20px;
	position: relative;
}
.purpose{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	position: relative;
}
.purpose-label{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	margin-bottom: 15px;
}
.purpose-label img{
	display: block;
	width: 40px;
	height: auto;
	margin-right: 10px;
}
.purpose-label h4{
	font-size: 30px;
	font-weight: 600;
	font-family: var(--font-family-1);
	line-height: 1;
	color: var(--color-2);
	margin-bottom: 0;
}
.purpose-content{
	display: flex;
	position: relative;
	width: 100%;
	padding-left: 60px;
}
.purpose-content p{
	font-size: 16px;
	font-weight: 400;
	font-family: var(--font-family-2);
	color: var(--text-color-3);
	margin-bottom: 0;
}
.purpose-list{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	list-style: disc;
	margin: 0;
	padding: 0;
	row-gap: 15px;
}
.purpose-list li{}

/* our history */
.section-about-history{
	overflow: hidden;
}
.beam-layer{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	width: 100%;
	padding: 0 20px 0;
}
.beam-layer:hover{
	cursor: pointer;
}
.beam-layer-line{
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--grey-500);
	margin: 0 auto;
	position: absolute;
	bottom: 10px;
	left: 0;
	z-index: 1;
}
.beam{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	position: relative;
	z-index: 5;
	width: 75px;
	height: 90px;
}
.beam-label{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 35px;
	background-color: var(--grey-50);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;	
	padding: 5px 12px 5px;
}
.beam-label h4{
	font-size: 18px;
	font-weight: 600;
	line-height: 1;
	color: var(--grey-700);
	font-family: var(--font-family-1);
	margin-bottom: 0;
	text-align: center;
}
.beam-marker{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
	height: 50px;
	overflow: hidden;
}
.beam-marker-line{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2px;
	height: 28px;
	background-color: var(--grey-500);
}
.beam-marker-circle{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 22px;
	height: 22px;
	border: 2px solid var(--grey-500);
	background-color: var(--grey-500);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	text-align: center;
}
.beam-marker-circle i{
	display: block;
	font-size: 10px;
	line-height: 1;
	margin: 0 auto;
	color: var(--grey-500);
}

.swiper-slide-thumb-active .beam-label{
	background-color: var(--color-3);
}
.swiper-slide-thumb-active .beam-label h4{
	color: var(--white);
}
.swiper-slide-thumb-active .beam-marker-line{
	background-color: var(--color-3);
}
.swiper-slide-thumb-active .beam-marker-circle{
	border-color: var(--color-3);
	background-color: var(--white);
}
.swiper-slide-thumb-active .beam-marker-circle i{
	color: var(--color-3);
}

/* card history info */
.history-info{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items:stretch;
	width: 100%;
	position: relative;
}
.history-info-img{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 50%;
}
.history-info-img img{
	display: block;
	width: 100%;
	height: auto;
}
.history-info-desc{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	flex: 1;
	padding: 3%;
}
.history-info-desc h4{
	font-size: 34px;
	font-weight: 600;
	font-family: var(--font-family-1);
	line-height: 1;
	color: var(--color-2);
	margin-bottom: 10px;
}
.history-info-desc h5{
	font-size: 18px;
	font-weight: 600;
	font-family: var(--font-family-1);
	line-height: 1;
	color: var(--color-3);
	margin-bottom: 10px;
}
.history-info-desc p{
	font-size: 16px;
	font-weight: 400;
	font-family: var(--font-family-2);
	color: var(--text-color-3);
	margin-bottom: 0;
}

/* = EVENT
------------------------------------------------------------ */
.aside-stage{}
.stage{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	position: relative;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	padding: 20px;
}
.stage-title{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 40px;
}
.stage-title h1,
.stage-title h2,
.stage-title h3,
.stage-title h4{
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-1);
	font-family: var(--font-family-1);
	margin-bottom: 0;
	text-align: left;
}
.stage-item{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.stage-item-img{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 30px;
}
.stage-item-img i{
	font-size: 20px;
	color: var(--color-1);
}
.stage-item-desc{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	flex: 1;
}
.stage-item-desc p{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-text-3);
	font-family: var(--font-family-2);
	margin-bottom: 0;
	text-align: left;
}

/* = BRAND
------------------------------------------------------------ */
.section-brand-intro{
	display: flex;
	align-items: center;
	min-height: 300px;
}
.brand-intro-tag-box{
	display: flex;
	position: relative;
}
.brand-intro-tag{
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: auto;
	min-width: 120px;
	min-height: 35px;
	padding: 5px 15px 5px;
	border: 1px solid var(--grey-300);
	background-color: var(--grey-100);
	border-radius: 25px;
	-webkit-border-radius: 25px;
	-moz-border-radius: 25px;
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;	
}
.brand-intro-tag i{
	font-size: 14px;
	color: var(--color-2);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;		
}
.brand-intro-tag p{
	font-size: 14px;
	line-height: 1;
	font-weight: 400;
	margin-bottom: 0;
	color: var(--color-2);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;		
}
.brand-intro-tag:hover{
	border-color: var(--color-button-1);
	background-color: var(--white);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;	
}
.brand-intro-tag:hover i,
.brand-intro-tag:hover p{
	color: var(--color-button-1);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;	
}
.brand-intro-logo{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 230px;
	height: 100px;
	padding: 10px 15px 10px;
	border: 1px solid var(--grey-200);
	background-color: var(--white);
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
}
.brand-intro-logo img{
	display: block;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
}

/* = PRODUCT
------------------------------------------------------------ */
.productflat-box{
	display: block;
	width: 100%;
	position: relative;
	margin: 0 auto;
}
.productflat-name-product{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.productflat-name-product h1,
.productflat-name-product h2,
.productflat-name-product h3{
	font-size: 32px;
	font-weight: 600;
	line-height: 1.2;
	color: var(--color-text-2);
	font-family: var(--font-family-1);
	margin-bottom: 0;
	text-align: left;
}
.productflat-name-brand{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
.productflat-name-brand h5{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-text-3);
	font-family: var(--font-family-2);
	margin-bottom: 0;
	text-align: left;
}
.productflat-desc-label{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	margin-bottom: 15px;
}
.productflat-desc-label h4{
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
	color: var(--color-text-3);
	font-family: var(--font-family-1);
	margin-bottom: 0;
	text-align: left;
}
.productflat-desc{
	position: relative;
}

/* = CONTACT
------------------------------------------------------------ */
.contact-box-blue{
	background-color: var(--color-2);
	color: var(--white);
}
.contact-box-blue .title-primary h1,
.contact-box-blue .title-primary h2,
.contact-box-blue .title-primary h3,
.contact-box-blue .title-primary h4,
.contact-box-blue .title-primary h5{
	color: var(--white);
}

.contactlist-box{
	display: flex;
	width: 100%;
	position: relative;
	margin: 30px 0 15px;
}
.contactlist{
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	row-gap: 15px;
}
.contactlist li{
	display: flex;
	width: 100%;
}
.hocontact-box{
	display: flex;
	width: 100%;
	position: relative;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transform: scale(1);
	-webkit-transform: scale(1);
	-moz-transform: scale(1);	
}
.hocontact-box:hover{
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;	
	transform: scale(1.02);
	-webkit-transform: scale(1.02);
	-moz-transform: scale(1.02);
}
.hocontact{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	min-height: 100px;
	padding: 15px;
	background-color: var(--color-1);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	-webkit-box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);
	-moz-box-shadow: 0 .125rem .25rem rgba(0,0,0,.075);	
}
.hocontact .hocontact-desc{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex: 1;
	padding-right: 10px;
}
.hocontact .hocontact-desc h4{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	color: var(--white);
}
.hocontact .hocontact-action{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	width: 130px;
	column-gap: 20px;
	padding-left: 15px;
	position: relative;
}
.hocontact .hocontact-action:before{
	content: "";
	display: block;
	width: 1px;
	height: 50px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%,-50%);
	background-color: var(--white);
}
.hocontact .hocontact-action .btn-action-hocontact{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	color: var(--color-text-2);
	background-color: var(--white);
	border: 1px solid var(--color-text-2);
	font-size: 23px;
	line-height: 1;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;	
}
.hocontact .hocontact-action .btn-action-hocontact:hover{
	color: var(--white);
	background-color: var(--color-3);
	border-color: var(--color-3);
	transition: all 0.6s ease;
	-webkit-transition: all 0.6s ease;
	-moz-transition: all 0.6s ease;	
}

/* = Panoramic
------------------------------------------------------------ */
.panoramic-box{
	height: 100vh;
}
.panoramic-preview{
	display: flex;
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.panoramic-box canvas{
	width: 100%;
}