
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	position: relative;
	margin: 0;
	background-color: var(--main-bg-color);
	line-height: 1.6;
	font-size: 19px;
	font-weight: normal;
	font-family: 'Poppins', sans-serif;
	-webkit-font-smoothing: antialiased;
	color: var(--text-color);
	overflow-x: hidden;
}
#body-inner {
	position: relative;
	overflow: hidden;
	height: 100%;
	min-height: 100vh;
}


/* Page Transitions */

#page-transition {
	display: none;
}
body.yk-transition #page-transition {
	position: relative;
	display: block;
	z-index: 99999;
}
body.yk-transition .ptr-overlay {
	position: fixed;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--half-color);
	z-index: 1;
}
body.yk-transition .ptr-preloader {
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
}
body.yk-transition .ptr-prel-content {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	margin-top: 10px;
	color: #444;
}
.ptr-prel-image {
	max-height: 150px;
	opacity: 1;
}
body.yk-boxed .yk-wrap {
	max-width: 1282px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 15px;
	padding-right: 15px;
}
body.yk-boxed .yk-wrap .yk-wrap {
	max-width: 100%;
	padding-left: 0;
	padding-right: 0;
}

/* Magic Cursor -------------------------- */
#magic-cursor {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	width: 10px;
	height: 10px;
	pointer-events: none;
	opacity: 0;
	z-index: 99999;
}
body.yk-magic-cursor #magic-cursor {
	display: block;
}
#ball {
	position: fixed;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--text-color);
	border-style: solid;
	border-radius: 50%;
	border-color: var(--main-color-border);
	pointer-events: none;
}
/* Ball view 
============= */
#ball.ball-view {
	background-color: var(--main-color-border);
	font-size: 15px;
	font-weight: 500;
	color: var(--text-color);
	line-height: 1.2;
	text-align: center;
}
#ball .ball-view-inner {
	padding: 0 5px;
	opacity: 0;
	visibility: hidden;
	transform: scale(0);
}
#ball .ball-view-inner i {
	font-size: 19px;
}
/* Ball drag 
============= */
#ball .ball-drag {
	position: absolute;
	display: block;
	width: 100%;
	padding: 0 5px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-color);
	line-height: 1.2;
	text-align: center;
	transition: all 0.3s;
}
#ball .ball-drag::before,
#ball .ball-drag::after {
	position: absolute;
	top: 50%;
	margin-top: -5px;
	font-size: 16px;
	color: var(--text-color);
	height: 10px;
	line-height: 10px;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}
#ball .ball-drag::before {
	content: "\f060"; /* Font Awesome */
	left: 0;
	transform: translate3d(-30px, 0, 0);
	transition: all 0.25s;
}
#ball .ball-drag::after {
	content: "\f061"; /* Font Awesome */
	right: 0;
	transform: translate3d(30px, 0, 0);
	transition: all 0.25s;
}
/* Ball close 
============== */
#ball.ball-close-enabled {
	opacity: 1 !important;
}
#ball .ball-close {
	position: absolute;
	padding: 0 5px;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-color);
	line-height: 1;
	text-align: center;
}
/* Magnetic cursor
=================== */
.magnetic-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
#ball.magnetic-active {
	border-color: var(--main-color) !important;
}
/* Smooth Scroll ------------------------- */
body:not(.is-mobile).yk-smooth-scroll {
	overflow: hidden !important;
}
body:not(.is-mobile).yk-smooth-scroll #scroll-container {
	width: auto;
	height: 100vh;
	overflow: auto;
	margin: 0;
}
/* Styling scrollbar ----------------------- */
.scrollbar-track {
	background: transparent !important;
	z-index: 99999 !important;
	transition: background 0.2s ease-in-out;
}
.scrollbar-track:hover {
	background: rgba(222, 222, 222, 0.15) !important;
}
.scrollbar-thumb {
	background: #DDD !important;
	opacity: .25;
	transition: opacity 0.2s ease-in-out;
}
.scrollbar-track:hover .scrollbar-thumb {
	opacity: .5;
}
/* Header Section ------------------------ */
#yk-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--text-color);
	background-color: var(--main-header-color);
	padding-bottom: 10px;
	pointer-events: none;
	z-index: 999;
}
#yk-header.yk-header-fixed {
	position: fixed;
}
.yk-header-inner {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	width: 100%;
	padding-top: 40px;
}
body:not(.yk-boxed) .yk-header-inner,
.yk-header-inner:not(.yk-wrap) {
	padding-left: 3.5%;
	padding-right: 3.5%;
}
.yk-header-col {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
.yk-header-col:first-child {
	margin-right: auto;
}

/* Header Logo ----------------- */
.yk-logo {
	position: relative;
	margin-right: auto;
	line-height: 1;
	pointer-events: initial;
	z-index: 9;
}
.yk-logo a {
	display: inline-block;
	font-size: 21px;
	color: var(--text-color);
}
.yk-logo img {
	max-height: 58px;
}

/* Overlay menu toggle button */
#yk-ol-menu-toggle-btn-wrap {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	pointer-events: initial;
	cursor: pointer;
	z-index: 9;
}
.yk-ol-menu-toggle-btn-holder {
	float: left;
}
.yk-ol-menu-toggle-btn {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
}
.yk-ol-menu-toggle-btn span {
	position: absolute;
	display: block;
	top: 54%;
	left: 50%;
	height: 2px;
	width: 20px;
	background-color: transparent;
	transform: translate(-50%, -50%);
	transition: all 0.2s ease-in-out;
}
.yk-ol-menu-toggle-btn span::before,
.yk-ol-menu-toggle-btn span::after {
	content: "";
	position: absolute;
	display: block;
	height: 2px;
	background-color: var(--ui-color);
	transition: all 0.2s ease-in-out;
}
.yk-ol-menu-toggle-btn span::before {
	top: -4px;
	width: 20px;
}
.yk-ol-menu-toggle-btn span::after {
	top: auto;
	bottom: -4px;
	width: 14px;
}
/* Toggle button hover */
body:not(.is-mobile):not(.yk-ol-menu-open) .yk-ol-menu-toggle-btn:hover span {
	height: 6px;
	width: 6px;
	background-color: var(--ui-color);
	border-radius: 50px;
}
body:not(.is-mobile):not(.yk-ol-menu-open) .yk-ol-menu-toggle-btn:hover span::before {
	top: 0;
	width: 0;
}
body:not(.is-mobile):not(.yk-ol-menu-open) .yk-ol-menu-toggle-btn:hover span::after {
	bottom: 0;
	width: 0;
}

/* Toggle button text --------------------- */
.yk-ol-menu-toggle-btn-text-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	height: 50px;
	padding-top: 2px;
	padding-right: 5px;
}
.yk-ol-menu-toggle-btn-text {
	font-size: 16px;
	text-align: right;
	color: var(--text-color);
	float: left;
	overflow: hidden;
}
/* Toggle button text hover --------------------- */
.yk-ol-menu-toggle-btn-text .text-menu {
	position: relative;
	display: inline-block;
	text-align: right;
	transition: transform 0.3s;
}
body.yk-ol-menu-open .yk-ol-menu-toggle-btn-text .text-menu {
	display: none;
}
body:not(.is-mobile) .yk-ol-menu-toggle-btn-text .text-menu::before {
	position: absolute;
	top: 100%;
	right: 0;
	content: attr(data-hover);
}
body:not(.is-mobile) #yk-ol-menu-toggle-btn-wrap:hover .yk-ol-menu-toggle-btn-text .text-menu {
	transform: translate3d(0, -100%, 0);
}
/* Toggle button close ------------------------- */
body.yk-ol-menu-open .yk-ol-menu-toggle-btn span {
	width: 20px;
	background-color: transparent;
}
body.yk-ol-menu-open .yk-ol-menu-toggle-btn span::before {
	top: 0;
	width: 20px;
	transform: rotate(45deg);
}
body.yk-ol-menu-open .yk-ol-menu-toggle-btn span::after {
	bottom: 0;
	width: 20px;
	transform: rotate(-45deg);
}
.yk-ol-menu-toggle-btn-text .text-close {
	display: none;
}
body.yk-ol-menu-open .yk-ol-menu-toggle-btn-text .text-close {
	display: block;
}
/* Disable menu toggle button click until the animations last ------------------- */
body.olm-toggle-no-click .yk-ol-menu-toggle-btn-text,
body.olm-toggle-no-click .yk-ol-menu-toggle-btn {
	pointer-events: none;
}
/* Disable page scroll if overlay menu is open */
body:not(.yk-smooth-scroll).yk-ol-menu-open {
	overflow-y: hidden;
}

/* Hide smooth scrollbar if overlay menu is open */
body.yk-smooth-scroll.yk-ol-menu-open .scrollbar-track {
	display: none !important;
}

/* Overlay Menu -------------------------------------- */
.yk-overlay-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--main-bg-color);
	visibility: hidden;
	opacity: 0;
	pointer-events: initial;
}
.yk-ol-menu-ghost {
	position: absolute;
	left: 3%;
	bottom: 5%;
	font-size: 23.5vw;
	font-weight: 600;
	color: var(--text-color);
	line-height: .7;
	opacity: .07;
	z-index: -1;
}
.yk-ol-menu-holder {
	position: relative;
	height: 100%;
	width: calc(100% + 17px);
	padding-right: 17px;
	overflow-y: scroll;
	z-index: 2;
}
.yk-ol-menu-inner {
	display: table;
	width: 100%;
	height: 100%;
	padding-left: 0;
	padding-right: 0;
}
.yk-ol-menu-content {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	height: 100%;
	padding: 120px 140px 120px 5%;
}
body:not(.yk-smooth-scroll).yk-ol-menu-open {
	overflow-y: hidden;
}
body.yk-smooth-scroll.yk-ol-menu-open .scrollbar-track {
	display: none !important;
}
.yk-ol-menu-list {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}
.yk-ol-menu-list > li {
	position: relative;
	margin-top: 10px;
	margin-bottom: 10px;
}
.yk-ol-menu-list > li:first-child {
	margin-top: 0;
}
.yk-ol-menu-list > li:last-child {
	margin-bottom: 0;
}
.yk-ol-menu-list > li > a,
.yk-ol-menu-list > li > .yk-ol-submenu-trigger > a {
	position: relative;
	display: inline-block;
	font-size: clamp(34px, 4vw, 68px);
	font-weight: 700;
	line-height: 1.2;
	color: #818181;
	transition: color 0.2s, transform 0.2s ease-in-out;
}
.yk-ol-menu-list > li.active > a,
.yk-ol-menu-list > li.active > .yk-ol-submenu-trigger > a,
.yk-ol-menu-list > li.active > .yk-ol-submenu-trigger .yk-ol-submenu-caret,
body:not(.is-mobile) .yk-ol-menu-list > li > a:hover,
body:not(.is-mobile) .yk-ol-menu-list > li > .yk-ol-submenu-trigger:hover > a,
body:not(.is-mobile) .yk-ol-menu-list > li > .yk-ol-submenu-trigger:hover .yk-ol-submenu-caret,
.yk-ol-menu-list > li > .yk-ol-submenu-trigger.yk-ol-submenu-open > a,
.yk-ol-menu-list > li > .yk-ol-submenu-trigger.yk-ol-submenu-open .yk-ol-submenu-caret {
	color: var(--text-color);
}
.yk-ol-menu-list > li.active > a,
.yk-ol-menu-list > li.active > .yk-ol-submenu-trigger > a,
body:not(.is-mobile) .yk-ol-menu-list > li > a:hover,
body:not(.is-mobile) .yk-ol-menu-list > li > .yk-ol-submenu-trigger:hover > a,
.yk-ol-menu-list > li > .yk-ol-submenu-trigger.yk-ol-submenu-open > a {
	transform: skew(-15deg, 0deg);
}
.yk-ol-submenu-wrap {
	position: relative;
}
.yk-ol-submenu-trigger {
	position: relative;
	display: inline-block;
}
.yk-ol-submenu {
	position: relative;
	color: #8a8a8a;
	display: none;
	height: auto;
	margin-left: 20px;
}
.yk-ol-menu-list > li > .yk-ol-submenu {
	margin-top: 20px;
	margin-bottom: 20px;
}
.yk-ol-submenu-list {
	padding: 0;
	list-style: none;
}
.yk-ol-submenu-list .yk-ol-submenu {
	margin-top: 10px;
	margin-bottom: 15px;
}
.yk-ol-submenu-list > li a,
.yk-ol-submenu-list > li > .yk-ol-submenu-trigger > a {
	display: inline-block;
	font-size: 19px;
	font-weight: 600;
	color: #aaa;
	padding-top: 6px;
	padding-bottom: 6px;
	transition: color 0.3s ease-in-out;
}
.yk-ol-submenu-list > li > .yk-ol-submenu-trigger.yk-ol-submenu-open > a,
.yk-ol-submenu-list > li > .yk-ol-submenu-trigger.yk-ol-submenu-open .yk-ol-submenu-caret,
.yk-ol-submenu-list > li.active > a,
.yk-ol-submenu-list > li.active > .yk-ol-submenu-trigger > a,
.yk-ol-submenu-list > li.active > .yk-ol-submenu-trigger .yk-ol-submenu-caret,
.yk-ol-submenu-list > li a:hover,
.yk-ol-submenu-list > li > .yk-ol-submenu-trigger:hover > a,
.yk-ol-submenu-list > li > .yk-ol-submenu-trigger:hover .yk-ol-submenu-caret {
	color: var(--text-color);
}
.yk-ol-submenu-caret-wrap {
	position: absolute;
	top: 60%;
	right: -40px;
	transform: translate3d(0, -50%, 0);
}
.yk-ol-submenu-caret {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	width: 40px;
	height: 40px;
	justify-content: center;
	font-size: 15px;
	color: #646464;
	cursor: pointer;
	border-radius: 100%;
	transition: opacity 0.3s ease-in-out;
	z-index: 2;
}
.yk-ol-submenu-caret:after {
	content: "\f063";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	transition: all 0.2s ease-in-out;
}
.yk-ol-submenu-trigger.yk-ol-submenu-open .yk-ol-submenu-caret::after {
	transform: rotate(180deg);
}
.yk-ol-menu-list > li li .yk-ol-submenu-caret-wrap {
	top: 50%;
	right: -40px;
}
.yk-ol-menu-list > li li .yk-ol-submenu-caret {
	font-size: 12px;
	color: #8a8a8a;
}

/* Overlay Menu Social Links ---------------------------------- */
.yk-ol-menu-social {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
	right: calc(50% - 620px);
	visibility: hidden;
	opacity: 0;
	z-index: 9991;
}
.yk-ol-menu-social > li {
	padding: 3px 0;
}
.yk-ol-menu-social > li > a {
	font-size: 19px;
	font-weight: 600;
	color: #919191;
	background-size: 0 100%;
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: linear-gradient(transparent calc(100% - 1px),currentColor 1px);
	background-image: -ms-linear-gradient(transparent 100%,currentColor 1px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1) !important;
}
.yk-ol-menu-social > li > a:hover,
.yk-ol-menu-social > li > a:focus {
	background-size: 100% 100%;
	color: var(--text-color);
}
.yk-ol-menu-social-heading {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 15px;
	color: #111;
}
#content-wrap {
	position: relative;
	overflow: hidden;
}





/* Page Header Style ----------------------------------- */
#page-header {
	position: relative;
	overflow: hidden;
	z-index: 1;
}
.page-header-inner,
body.ph-image-on.ph-bg-image-on #page-header .page-header-inner {
	width: 100%;
	padding-top: 13vw;
	padding-bottom: 10vw;
	z-index: 2;
}
body.ph-image-on #page-header .page-header-inner {
	padding-top: 16vw;
	padding-bottom: 13vw;
}
body:not(.yk-boxed) .page-header-inner,
.page-header-inner:not(.yk-wrap) {
	padding-left: 13%;
	padding-right: 13%;
}
/* Page header positions  */
#page-header.ph-center {
	text-align: center;
}
#page-header.ph-center .ph-caption {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
#page-header.ph-center .ph-caption-title-ghost {
	left: 50%;
	font-size: calc(16px + 12vw);
	transform: translate3d(-50%, 0, 0);
}
#page-header.ph-center .ph-caption-description,
#page-header.ph-center .ph-caption > p {
	margin-left: auto;
	margin-right: auto;
}
#page-header.ph-center:not(.ph-bg-image) .ph-image {
	right: 50%;
	transform: translate(50%, 0);
}
/* if class "ph-image-cropped" enabled (not for background image!) */
#page-header:not(.ph-bg-image).ph-image-cropped .ph-image-inner {
	position: relative;
	padding-bottom: 130%;
}
#page-header:not(.ph-bg-image).ph-image-cropped .ph-image-inner img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
/* Make image to background image */
#page-header.ph-bg-image .ph-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0;
	z-index: -1;
	transform: none;
	overflow: hidden;
}
.ph-image {
	position: absolute;
	top: 160px;
	right: 18vw;
	width: clamp(340px, 18vw, 800px);
	line-height: 0;
	z-index: 2;
}
.ph-image-inner {
	position: relative;
	width: 100%;
}
#page-header.ph-bg-image .ph-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	max-width: 100%;
	margin: 0;
	z-index: -1;
	transform: none;
	overflow: hidden;
}
#page-header.ph-bg-image .ph-image-inner {
	width: 100%;
	height: 100%;
}
#page-header.ph-bg-image .ph-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
#page-header.ph-bg-image .ph-video-wrap {
	padding-bottom: 0;
}
.ph-caption {
	position: relative;
}
.ph-caption-title {
	position: relative;
	font-size: clamp(38px, 5vw, 82px);
	font-weight: 600;
	line-height: 1.2;
	margin: 0;
	color: var(--text-color);
	z-index: 9;
}
.ph-caption-title-ghost {
	position: absolute;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	top: 0;
	bottom: 0;
	left: 6%;
	padding-top: 5%;
	font-size: calc(16px + 19.5vw);
	font-weight: 600;
	color: var(--text-color);
	white-space: nowrap;
	line-height: 1;
	opacity: .1;
	pointer-events: none;
	z-index: 1;
}
.ph-caption-title-ghost .phgh-text {
	display: inline-block;
	margin-right: 7vw;
}
#page-header.ph-bg-image .ph-caption-title-ghost {
	display: none;
}
.ph-caption-subtitle {
	position: relative;
	font-size: calc(15px + 0.3vw);
	font-weight: 500;
	color: var(--text-color);
	margin-bottom: 20px;
	z-index: 9;
}
.ph-caption-title + .ph-caption-subtitle {
	margin-top: 20px;
	margin-bottom: 0;
}
/* Page header size */
#page-header.ph-cap-sm .ph-caption-title {
	font-size: clamp(38px, 4vw, 68px);
}

/* Caption size lg */
#page-header.ph-cap-lg .ph-caption-title {
	font-size: clamp(38px, 6vw, 112px);
}

/* Caption size xlg */
#page-header.ph-cap-xlg .ph-caption-title {
	font-size: clamp(38px, 8vw, 142px);
}

/* Caption size xxlg */
#page-header.ph-cap-xxlg .ph-caption-title {
	font-size: clamp(38px, 10vw, 180px);
	line-height: 1;
}
.ph-caption .ph-caption-title + p,
.ph-caption .ph-caption-title-ghost + p,
.ph-caption .ph-caption-subtitle + p {
	margin-top: 30px;
}
.ph-caption > p:last-child {
	margin-bottom: 0;
}
.yk-scroll-down {
	position: absolute;
	bottom: 2%;
	left: 4%;
	z-index: 9;
}
#page-header:not(.ph-full) .yk-scroll-down {
	display: none;
}
.yk-sd-inner {
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	align-items: center;
	height: 50px;
	text-decoration: none;
	transform: rotate(-90deg);
	transform-origin: center left;
}
.yk-sd-text {
	font-size: 15px;
	font-weight: 600;
	margin-left: 10px;
	color: var(--icon-color);
}
.yk-sd-arrow {
	position: relative;
	width: 55px;
}
.yk-sd-arrow-inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--icon-color);
	animation: scroll-down-swipe-line 4s infinite;
}
@keyframes scroll-down-swipe-line {
	80% {
		transform-origin: left;
		transform: scaleX(1); 
	}
	90% {
		transform-origin: left;
		transform: scaleX(0); 
	}
	90.1% {
		transform-origin: right;
		transform: scaleX(0); 
	}
	100% {
		transform-origin: right;
		transform: scaleX(1); 
	}
}
.yk-sd-arrow::before,
.yk-sd-arrow::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	width: 12px;
	background-color: var(--icon-color);
	transition: width .3s;
}
.yk-sd-arrow::before {
	top: 0px;
	transform: rotate(-45deg);
	transform-origin: bottom left;
}
.yk-sd-arrow::after {
	bottom: 0px;
	transform: rotate(45deg);
	transform-origin: top left;
}
.yk-sd-arrow,
.yk-sd-arrow::before,
.yk-sd-arrow::after {
	height: 2px;
}
.yk-sd-inner:hover .yk-sd-arrow::before,
.yk-sd-inner:hover .yk-sd-arrow::after {
	width: 16px;
}

.ph-share {
	position: absolute;
	display: inline-block;
	right: 3.5%;
	bottom: 0;
	height: 113px;
	cursor: pointer;
	overflow: hidden;
	z-index: 999;
}
.ph-share-inner {
	
}
.ph-share-trigger {
	
}
.ph-share-text {
	font-size: 15px;
	display: inline-block;
	color: var(--text-color);
}
.ph-share-icon {
	font-size: 15px;
	color: var(--text-color);
}
.ph-share .social-buttons > ul > li a {
	font-size: 14px;
}
body.yk-light-bg-on .ph-share-text {
	color: #111;
}
body.yk-light-bg-on .ph-share-icon {
	color: #111;
	opacity: .9 !important;
}
body.yk-light-bg-on .ph-share .social-buttons > ul > li a {
	color: #111;
}
#page-content {
	
}
/* YK Section Style ----------------------------- */
.yk-section {
	position: relative;
	padding: 80px 0;
}
.yk-section-inner {
	position: relative;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	z-index: 2;
}
.yk-section-desc {
	font-size: 14px;
	font-weight: 400;
	color: var(--text-color);
	margin-bottom: 20px;
}
.yk-heading {
	margin-bottom: 40px;
}
.yk-heading-title {
	font-size: calc(24px + 1vw);
	font-weight: 600;
	color: var(--text-color);
	margin: 0;
}
.yk-heading-subtitle {
	font-size: calc(19px + 0.1vw);
	font-weight: normal;
	color: var(--main-color);
	margin: 0 0 15px 0;
}
.yk-heading-title + .yk-heading-subtitle {
	margin: 15px 0 0 0;
}
/* yk-Headings paragraph */
.yk-heading > p:first-child {
	margin-bottom: 0;
}
.yk-heading-title + p,
.yk-heading-subtitle + p {
	margin-top: 50px;
}
.yk-heading > p:last-child {
	margin-bottom: 0;
}
.yk-heading.yk-heading-stroke .yk-heading-title {
	font-weight: bold;
	font-weight: 700;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: var(--text-color);
	-webkit-text-fill-color: transparent;
}

/* If "text-gray" is used */
.yk-heading.yk-heading-stroke .yk-heading-title.text-gray {
	-webkit-text-stroke-color: #a2a2a2;
}
/* If Firefox */
body.is-firefox .yk-heading.yk-heading-stroke .yk-heading-title {
	-webkit-text-stroke-width: 2px;
}
.yk-heading.yk-heading-xsm .yk-heading-title {
	font-size: calc(24px + 0.1vw);
	font-weight: 600;
}
.yk-heading.yk-heading-xsm .yk-heading-subtitle {
	font-size: calc(13px + 0.1vw);
}
/* yk-Headings positions ----------------------------------- */
/* position center */
.yk-heading.yk-heading-center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
/* yk-Headings sizes */
.yk-heading.yk-heading-xsm .yk-heading-title {
	font-size: calc(24px + 0.1vw);
	font-weight: bold;
	font-weight: 600;
}
.yk-heading.yk-heading-xsm .yk-heading-subtitle {
	font-size: calc(13px + 0.1vw);
}
/* size sm */
.yk-heading.yk-heading-sm .yk-heading-title {
	font-size: calc(24px + 0.5vw);
	font-weight: bold;
	font-weight: 600;
}
.yk-heading.yk-heading-sm .yk-heading-subtitle {
	font-size: calc(15px + 0.1vw);
}
/* size lg */
.yk-heading.yk-heading-lg .yk-heading-title {
	font-size: calc(20px + 1vw);
	line-height: 1.3;
}
.yk-heading.yk-heading-lg .yk-heading-subtitle {
	font-size: calc(16px + 0.1vw);
	font-weight: bold;
	font-weight: 500;
}
/* size xlg */
.yk-heading.yk-heading-xlg .yk-heading-title {
	font-size: calc(24px + 3vw);
	line-height: 1.2;
}
.yk-heading.yk-heading-xlg .yk-heading-subtitle {
	font-size: calc(21px + 0.2vw);
	font-weight: bold;
	font-weight: 500;
}
/* size xxlg */
.yk-heading.yk-heading-xxlg .yk-heading-title {
	font-size: calc(24px + 4.5vw);
	line-height: 1.2;
}
.yk-heading.yk-heading-xxlg .yk-heading-subtitle {
	font-size: calc(21px + 0.3vw);
	font-weight: bold;
	font-weight: 500;
}

.yk-image {
	overflow: hidden;
}
/* Home Page Style CSS ========================================== */
.yk-portfolio-slider {
	position: relative;
	width: 100%;
	background-color: var(--main-bg-color);
}
.yk-portfolio-slider .swiper {
	height: 100vh;
}
.yk-portfolio-slider .swiper-slide {
	position: relative;
	overflow: hidden;
	background-color: #000;
}
.yk-portfolio-slider-item {
	position: relative;
	height: 100%;
}
img.yk-psi-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
video.yk-bg-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}
.yk-portfolio-slider-item::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
	visibility: hidden;
	background-color: #000;
	transition: 0.5s ease-in-out;
	z-index: 9;
}
.swiper-slide-prev .yk-portfolio-slider-item::after,
.swiper-slide-next .yk-portfolio-slider-item::after {
	opacity: 7;
	visibility: visible;
}
.yk-portfolio-slider-caption {
	position: absolute;
	top: 60%;
	left: 0;
	width: auto;
	max-width: 1000px;
	margin: 0px 2% 0 15%;
	color: #fff;
	pointer-events: none;
	transform: translate3d(0, -50%, 0);
	z-index: 998;
}
.yk-portfolio-slider-caption a {
	pointer-events: initial;
}
.yk-ps-caption-title {
	margin: 0;
	font-size: clamp(48px, 5vw, 82px);
	font-weight: bold;
	font-weight: 600;
	line-height: 1.2;
}
.yk-ps-caption-title a {
	display: inline;
	color: #FFF;
}
body:not(.yk-magic-cursor) .yk-ps-caption-title a {
	background-repeat: no-repeat;
	background-image: -o-linear-gradient(transparent calc(100% - 3px),currentColor 3px);
	background-image: linear-gradient(transparent calc(100% - 3px),currentColor 3px);
	background-image: -ms-linear-gradient(transparent 96%,currentColor 3px);
	transition: 0.6s cubic-bezier(.215,.61,.355,1);
	background-size: 0 96%;
}
body:not(.yk-magic-cursor) .yk-ps-caption-title a:hover {
	background-size: 100% 96%;
	color: currentColor;
}
.yk-ps-caption-category {
	margin: 0 0 24px 0;
	font-size: calc(13px + 0.2vw);
	font-weight: 500;
}
.yk-portfolio-slider-caption.psc-center {
	top: 50%;
	left: 50%;
	width: 90%;
	margin: 0;
	padding-left: 15px;
	padding-right: 15px;
	text-align: center;
	transform: translate(-50%, -50%);
}
.yk-portfolio-slider-caption.psc-stroke .yk-ps-caption-title {
	font-weight: bold;
	font-weight: 700;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: #FFF;
	-webkit-text-fill-color: transparent;
}
.yk-portfolio-slider-navigation {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	bottom: 26px;
	left: 50%;
	width: 340px;
	height: 60px;
	z-index: 1;
	transform: translate3d(-50%, 0, 0);
}
.yk-ps-nav-prev,
.yk-ps-nav-next {
	position: absolute;
	top: 0;
	z-index: 20;
}
.yk-ps-nav-prev {
	left: 0;
}
.yk-ps-nav-next {
	right: 0;
}
.yk-ps-nav-arrow {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	font-size: 20px;
	color: #FFF;
	cursor: pointer;
	outline: none;
}
body:not(.yk-magic-cursor) .yk-ps-nav-arrow:hover {
	opacity: .5;
}

.yk-ps-nav-arrow.yk-ps-nav-arrow-disabled {
	/* opacity: .5; */
	cursor: auto;
	pointer-events: none;
}

.yk-portfolio-slider .swiper-button-lock {
	display: none;
}
.yk-ps-nav-pagination {
}
.yk-portfolio-slider .swiper-pagination-lock {
	display: none;
}
.yk-ps-nav-pagination-bullets {
	font-size: 0;
}
.yk-ps-nav-pagination-bullets .swiper-pagination-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: transparent;
	margin: 8px;
	opacity: 1;
	border-radius: 100%;
	border: 2px solid #fff;
}
.yk-ps-nav-pagination-bullets .swiper-pagination-bullet-active {
	background: #FFF;
	opacity: 1;
}
.yk-ps-nav-pagination-bullets-dynamic {
	position: absolute;
	left: 50%;
	transform: translate3d(-50%, 0, 0);
	white-space: nowrap;
	overflow: hidden;
	font-size: 0;
}
.yk-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative;
	transition: .2s transform, .2s left;
}
.yk-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(.66);
}
.yk-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.33);
}
.yk-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(.66);
}
.yk-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.33);
}
.yk-ps-nav-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}
.yk-ps-nav-pagination-fraction {
	position: relative;
	font-size: 14px;
	font-weight: 500;
	color: #FFF;
	line-height: 1;
}
.yk-ps-nav-pagination-fraction .swiper-pagination-current {
	position: relative;
	top: -4px;
}
.yk-ps-nav-pagination-fraction .swiper-pagination-total {
	position: relative;
	bottom: -4px;
}
/* Portfolio slider pagination progressbar */
.yk-ps-nav-pagination-progressbar {
	position: absolute;
	left: 90px;
	right: 90px;
	width: auto;
	max-width: 100%;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.3);
}
.yk-ps-nav-pagination-progressbar .swiper-pagination-progressbar-fill {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF;
	transform: scale(0);
	transform-origin: left top;
}


/* About Page Style ========================================= */
.yk-introduction-section {
	position: relative;
	background-color: var(--half-color);
}
.text-md p {
	margin-bottom: 20px;
}
aside {
	display: block;
}
.counter_number {
	font-size: calc(30px + 0.5vw);
	font-family: 'Syne', sans-serif;
	font-weight: 400;
	line-height: 1;
}
.counter_label {
	margin-top: 5px;
	color: #888888;
	font-size: calc(14px + 0.2vw);
	line-height: 1.5;
}
.yk-highlight-title {
	border: 0px;
}
.yk-highlight-title strong {
	display: block;
	font-size: 80px;
	line-height: 80px;
	font-weight: bold;
	color: rgba(191, 191, 191, 0.3);
	text-transform: uppercase;
}
.yk-highlight-title span {
	display: block;
	font-size: 24px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.yk-highlight-title.bdr-right {
	border-right: 10px;
	border-style: solid;
	border-color: #ff7800;
}
.square-shape {
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.square-shape:before {
	width: 800px;
	height: 800px;
	position: absolute;
	content: "";
	border: 40px solid rgba(20, 103, 179,0.1);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: 1;
	right: -700px;
	bottom: -300px;
}
.yk-image.yk-fixed-height img {
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 50% 50%;
}
.yk-vm-main-title {
	font-size: calc(16px + 1vw);
	line-height: 1.4;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--text-color);
	margin-bottom: 30px;
}
.yk-vm-main-title span {
	font-weight: 700;
}
.yk-vm-side-title {
	margin-bottom: 30px;
}
.vm-title h4 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 20px;
	color: var(--main-color-border);
}
.vm-title p {
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 20px;
	color: var(--main-color);
	text-align: justify;
}

/* Scrolling Text ========================================== */
.yk-section.bg-section {
	overflow: hidden;
	padding-top: 110px !important;
	padding-bottom: 110px !important;
}

.yk-scrolling-text {
	display: flex;
	position: relative;
	width: 100%;
	pointer-events: none;
	overflow-x: hidden;
	overflow-y: visible;
}

.yk-scrolling-text + .yk-scrolling-text {
	margin-top: 18px;
}

.yk-scrolling-text-inner {
	display: inline-block;
	font-size: clamp(58px, 6vw, 120px);
	line-height: 0.95;
	font-weight: 600;
	color: var(--text-color);
	padding-left: 2vw;
	white-space: nowrap;
	animation-name: yk_scrolling_text;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-play-state: running;
	will-change: transform;
}

.yk-scrolling-text-inner::after {
	content: attr(data-text);
	display: inline-block;
	padding-left: 4vw;
}

@keyframes yk_scrolling_text {
	0% {
		transform: translate3d(0, 0, 0);
	}
	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

.yk-scrolling-text.scr-text-reverse .yk-scrolling-text-inner {
	animation-direction: reverse;
}

.yk-scrolling-text.scr-text-stroke {
	padding-top: 18px;
	padding-bottom: 22px;
}

.yk-scrolling-text.scr-text-stroke .yk-scrolling-text-inner {
	line-height: 1.18;
	font-weight: 700;
	color: transparent;
	-webkit-text-stroke-width: 1.2px;
	-webkit-text-stroke-color: var(--text-color);
	-webkit-text-fill-color: transparent;
	paint-order: stroke fill;
}

/* =========================================================
   KNC Journey Timeline - Slick Reference Style
========================================================= */
.yk-journey-slick-section {
	position: relative;
	padding-top: 100px;
	padding-bottom: 120px;
	background-color: var(--half-color);
	overflow: hidden;
}

.yk-journey-slick-wrap {
	position: relative;
	display: grid;
	grid-template-columns: 310px 1fr;
	align-items: center;
	gap: 80px;
	padding-bottom: 50px;
	background-color: var(--half-color);
	color: var(--text-color);
	overflow: visible;
}

.yk-journey-slick-left,
.yk-journey-slick-right {
	position: relative;
	min-width: 0;
}

/* Left Timeline Slider */
.yk-journey-timeline-content {
	position: relative;
	height: 576px;
	overflow: hidden;
}

.yk-journey-timeline-content .slick-list {
	height: 576px !important;
	overflow: hidden;
}

.yk-journey-timeline-content .slick-track {
	height: auto !important;
}

.yk-journey-timeline-content .slick-slide {
	display: flex !important;
	align-items: center;
	height: 144px !important;
}

.yk-journey-timeline-item {
	position: relative;
	display: flex !important;
	align-items: center;
	width: 100%;
	height: 144px;
	cursor: pointer;
}

.yk-journey-timeline-item img {
	width: auto;
	height: 100%;
	max-height: 144px;
	object-fit: cover;
	display: block;
}

.yk-journey-timeline-item img.yk-ruler-show,
.yk-journey-timeline-item.slick-current img.yk-ruler-fade {
	display: none;
}

.yk-journey-timeline-item img.yk-ruler-fade,
.yk-journey-timeline-item.slick-current img.yk-ruler-show {
	display: block;
}
html[data-theme="dark"] .yk-ruler-show {
	content: url("../media/timeline/ruler.png");
}
.yk-journey-icon {
	position: relative;
	display: block;
	margin-left: 32px;
	font-size: clamp(64px, 5.8vw, 96px);
	font-weight: 700;
	letter-spacing: -3px;
	line-height: 1;
	color: rgba(0, 0, 0, 0.28);
	transition: color 0.35s ease, text-shadow 0.35s ease;
}

.yk-journey-timeline-item.slick-current .yk-journey-icon {
	color: var(--text-color);
}

.yk-journey-timeline-item.slick-current .yk-journey-icon::after {
	content: "";
	position: absolute;
	left: calc(100% + 35px);
	top: 50%;
	width: 180px;
	height: 1px;
	background-color: var(--main-color-border);
	transform: translateY(-50%);
	transition: width 0.35s ease;
}

/* Right Content Slider */
.yk-journey-timeline-images {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.yk-journey-content-slide {
	position: relative;
}

.yk-journey-content-card {
	position: relative;
	min-height: 582px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.yk-journey-content-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(255,255,255,0.92), rgba(255,255,255,0.72)),
		rgba(255,255,255,0.35);
	z-index: 1;
}
html[data-theme="dark"] .yk-journey-content-card::before {
	background:
		linear-gradient(90deg, rgba(0,0,0,0.88), rgba(0,0,0,0.62)),
		rgba(0,0,0,0.35);
}
.yk-journey-text {
	position: relative;
	max-width: 760px;
	padding: 80px 90px;
	z-index: 2;
}

.yk-journey-year-label {
	display: inline-block;
	margin-bottom: 28px;
	font-family: 'Syne', sans-serif;
	font-size: clamp(70px, 7vw, 120px);
	font-weight: 700;
	letter-spacing: -5px;
	line-height: 0.9;
	text-transform: uppercase;
	color: var(--main-color-border);
}

.yk-journey-text h3 {
	margin: 0 0 24px;
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 600;
	line-height: 1.3;
	color: var(--text-color);
}

.yk-journey-text p {
	max-width: 720px;
	margin: 0;
	font-size: 17px;
	line-height: 1.8;
	color: var(--main-color);
}
html[data-theme="dark"] .yk-journey-text h3 {
	color: #ffffff;
}
html[data-theme="dark"] .yk-journey-text p {
	color: rgba(255,255,255,0.78);
}
/* Controls */
.yk-journey-control {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 16px;
	margin-top: 34px;
}

.yk-journey-arrow {
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(128, 128, 128, 0.35);
	border-radius: 50%;
	color: var(--text-color);
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
}

.yk-journey-arrow:hover {
	border-color: var(--main-color-border);
	background-color: var(--main-color-border);
	color: #fff;
}

.yk-journey-fraction {
	margin-left: 10px;
	font-family: 'Syne', sans-serif;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--main-color);
}

.yk-journey-current {
	color: var(--text-color);
}

/* Dark Theme */
html[data-theme="dark"] .yk-journey-slick-section,
html[data-theme="dark"] .yk-journey-slick-wrap {
	background-color: var(--half-color);
}

html[data-theme="dark"] .yk-journey-icon {
	color: rgba(255,255,255,0.32);
}

html[data-theme="dark"] .yk-journey-timeline-item.slick-current .yk-journey-icon {
	color: #ffffff;
}

html[data-theme="dark"] .yk-journey-fraction {
	color: var(--text-color-2);
}

/* Responsive */
@media screen and (max-width: 1399px) {
	.yk-journey-slick-wrap {
		grid-template-columns: 260px 1fr;
		gap: 60px;
	}

	.yk-journey-timeline-item.slick-current .yk-journey-icon::after {
		width: 110px;
		left: calc(100% + 28px);
	}
}

@media screen and (max-width: 991px) {
	.yk-journey-slick-wrap {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.yk-journey-timeline-content,
	.yk-journey-timeline-content .slick-list {
		height: auto !important;
	}

	.yk-journey-timeline-content .slick-slide {
		height: 84px !important;
	}

	.yk-journey-timeline-item {
		height: 84px;
	}

	.yk-journey-timeline-item img {
		height: 64px;
		max-height: 64px;
	}

	.yk-journey-icon {
		margin-left: 20px;
		font-size: 48px;
	}

	.yk-journey-timeline-item.slick-current .yk-journey-icon::after {
		display: none;
	}

	.yk-journey-content-card {
		min-height: 460px;
	}

	.yk-journey-text {
		padding: 64px;
	}
}

@media screen and (max-width: 575px) {
	.yk-journey-slick-section {
		padding-top: 70px;
		padding-bottom: 80px;
	}

	.yk-journey-timeline-content .slick-slide {
		height: 70px !important;
	}

	.yk-journey-timeline-item {
		height: 70px;
	}

	.yk-journey-timeline-item img {
		height: 54px;
		max-height: 54px;
	}

	.yk-journey-icon {
		margin-left: 14px;
		font-size: 40px;
	}
	.yk-journey-year-label {
		font-size: 58px;
		letter-spacing: -3px;
		margin-bottom: 22px;
	}
	.yk-journey-icon {
		font-size: 46px;
		letter-spacing: -2px;
	}
	.yk-journey-content-card {
		min-height: 420px;
	}

	.yk-journey-text {
		padding: 42px 28px;
	}

	.yk-journey-text h3 {
		font-size: 24px;
	}

	.yk-journey-text p {
		font-size: 14px;
		line-height: 1.7;
	}

	.yk-journey-control {
		justify-content: flex-start;
	}

	.yk-journey-arrow {
		width: 46px;
		height: 46px;
	}

	.yk-journey-fraction {
		font-size: 13px;
	}
}





/* Core Team Section Style CSS ====================================== */
/* ==========================================
   Boss Section
========================================== */
.yk-partner-section {
	position: relative;
	padding: 120px 0 0;
	background: #000;
	overflow: hidden;
}
.yk-partner-bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.yk-partner-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Overlay mask */
.yk-partner-overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background: rgba(0,0,0,0.92);
}
.yk-partner-section .yk-wrap {
	position: relative;
	z-index: 3;
}
.yk-partner-image {
	display: flex;
    align-items: flex-end;  /* stick to bottom */
    justify-content: center;
    height: 100%;
}
.yk-partner-image img {
	max-width: 100%;
	object-fit: contain;
}
.yk-partner-content {
	color: #fff;
	padding-left: 30px;
}
.yk-partner-name {
	font-size: calc(26px + 2vw);
	font-weight: 700;
	margin-bottom: 10px;
}
.yk-partner-role {
	display: block;
	color: #f27123;
	font-size: calc(10px + 1vw);
	font-weight: 600;
	margin-bottom: 20px;
}
.yk-partner-social {
	display: flex;
	gap: 18px;
	margin-bottom: 25px;
}
.yk-partner-social a {
	color: #fff;
	font-size: 16px;
	transition: 0.3s;
}
.yk-partner-social a:hover {
	color: #f47c20;
}
.yk-partner-text {
	font-size: 15px;
	line-height: 1.8;
	color: rgba(255,255,255,0.75);
	margin-bottom: 20px;
}
.yk-partner-info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px 30px;
	font-size: 14px;
	color: rgba(255,255,255,0.85);
}
.yk-partner-info strong {
	color: #f27123;
}

/* Ceretificate Section Style CSS ================================ */
.yk-certificate-section {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
}
.yk-crt-link {
	position: relative;
	display: block;
}
.cert-list {
	margin-left: 30px;
}
.cert-list li {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

/* Client Logo Section Style CSS ========================================= */
.yk-clients {
	position: relative;
	background-color: var(--half-color);
}
.yk-logo-wall {
	margin: 0;
	padding: 0;
	margin-left: 2px;
	overflow: hidden;
}
.yk-logo-wall:after {
	content: "";
	clear: both;
	display: table;
}
.yk-logo-wall > li {
	position: relative;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	justify-content: center;
	float: left;
	width: 20%;
	margin-left: -2px;
	margin-bottom: -2px;
	border-width: 0 0 1px 1px;
	border-style: solid;
	border-color: #2e2e2e;
}
.yk-logo-wall > li:before {
	content: "";
	display: block;
	padding-bottom: 100%;
}
.yk-logo-wall > li .cursor-alter {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
}
.yk-logo-wall > li img {
	transform: scale(1);
	transition: transform .3s, opacity .3s;
	opacity: 0.7;
}
.yk-logo-wall > li:hover img {
	opacity: 1;
	transform: scale(1.1);
}
.yk-logo-wall .yk-client-dark {
	display: block;
}
.yk-logo-wall .yk-client-light {
	display: none;
}
.yk-logo-wall.cl-col-5 > li {
	width: 16.666667%;
}
.yk-logo-wall.cl-col-4 > li {
	width: 25%;
}
.yk-logo-wall.cl-col-3 > li {
	width: 33.33333%;
}
.yk-logo-wall.cl-col-2 > li {
	width: 50%;
}


/* Service Page Style CSS =================================================================== */
.yk-service-section {
	position: relative;
	background: var(--section-color);
}
.yk-section-slider-images {
    overflow: hidden;
    padding: 10px 0 100px;
}
.yk-slider-images .swiper-slide {
    height: auto;
}
.yk-figure-service {
    background: var(--main-bg-color);
}
.yk-no-gutters > * {
    padding: 0;
}
.yk-overflow-hidden {
    overflow: hidden;
    position: relative;
}
.yk-service-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 560px;
}
.yk-slider-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.yk-figure-service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 80px 70px;
}
.yk-service-heading {
    font-size: calc(20px + 1.5vw);
    line-height: 1;
    font-weight: 500;
    margin: 0 0 28px;
    text-transform: uppercase;
}
.yk-service-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color-2);
	margin: 0;
}
.yk-figure-service-footer {
    width: 100%;
    margin-top: 60px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.yk-small-caps {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color-2);
    margin-bottom: 12px;
}
.yk-service-value {
    margin: 0;
    font-size: calc(16px + 1vw);
    line-height: 1.1;
    font-weight: 500;
}
.arrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
	cursor: pointer;
	outline: none;
}
.arrow .svg-circle {
  width: 60px;
  height: 60px;
}
.arrow .circle {
  stroke: rgba(128, 128, 128, 0.5);
  stroke-width: 1px;
}
.arrow:hover .arrow__pointer {
  background-color: var(--arrow-color);
}
.arrow:hover .circle {
  stroke: var(--arrow-color);
}
.arrow:hover .arrow__triangle {
  border-color: transparent transparent transparent var(--arrow-color);
}
.js-arrow:hover .arrow__pointer {
  transform: scaleX(0.3) translateX(24px);
  width: 100% !important;
}
.js-arrow:hover .arrow__triangle {
  transform: translate(calc(-50% + 6px), -50%);
}
.arrow__pointer {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(128, 128, 128, 0.5);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transform-origin: right center;
}

.arrow__triangle {
  display: inline-block;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent rgba(128, 128, 128, 0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
/* Pagination dots */
.yk-slider-services-footer {
    margin-top: 34px;
    padding-top: 8px;
}
.yk-slider-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}
.yk-slider-footer-current,
.yk-slider-footer-total {
    flex: 0 0 80px;
    max-width: 80px;
}
.yk-slider-footer-current {
    justify-content: flex-start;
    text-align: left;
}
.yk-slider-footer-total {
    justify-content: flex-end;
    text-align: right;
}
.yk-slider-footer-dots {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.yk-slider-counter,
.yk-slider-total {
    font-size: 20px;
	font-weight: 200;
    line-height: 1;
    white-space: nowrap;
	color: var(--yk-service-counter-color);
}
.js-yk-slider-counter-current .swiper-wrapper {
    display: flex;
    align-items: center;
}
.js-yk-slider-counter-current .swiper-slide {
    width: auto !important;
}
.yk-slider-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 2px;
}
.yk-slider-dot {
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
}
.yk-dot-svg {
    width: 22px;
    height: 22px;
    transform: rotate(-90deg);
    overflow: visible;
    display: block;
	transition: opacity 0.3s ease;
}
.yk-dot-bg {
    fill: none;
    stroke: var(--yk-service-dot-ring);
    stroke-width: 2;
}
.yk-dot-progress {
    fill: none;
    stroke: var(--yk-service-dot-progress);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 176;
    stroke-dashoffset: 176;
}
.yk-slider-dot::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--yk-service-dot-bg);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.yk-slider-dot-active::after {
    background: var(--yk-service-dot-active);
}
.yk-slider-dot .yk-dot-svg {
    opacity: 0;
    visibility: hidden;
}
.yk-slider-dot-active .yk-dot-svg {
    opacity: 1;
    visibility: visible;
}
/* Drag button */
.js-yk-slider-images {
    position: relative;
}

.yk-drag-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 72px;
    height: 72px;
    border: 1px solid rgba(128, 128, 128, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 30;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(3px);
}

.yk-drag-indicator span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: inherit;
}

.yk-drag-indicator.is-active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Dark mode support if your section is dark */
.yk-section-slider-images.dark-section .yk-drag-indicator,
.dark-mode .yk-drag-indicator {
    border-color: rgba(255, 255, 255, 0.25);
}

.yk-section-slider-images.dark-section .yk-drag-indicator span,
.dark-mode .yk-drag-indicator span {
    color: #fff;
}
@media screen and (max-width: 991px) {
  .arrow {
    width: 36px;
    height: 36px;
  }
  .arrow .svg-circle {
    width: 36px;
    height: 36px;
  }
  .arrow .arrow__pointer {
    width: 50% !important;
    right: 20px;
  }
  .arrow .arrow__triangle {
    top: 50%;
    border-width: 4px 0 4px 6px;
  }
  .arrow .circle {
    stroke-width: 2px;
  }
}

/* Service Page Style CSS======================================================================= */
.project-list {
	position: relative;
	counter-reset: pli-counter;
}
.project-list.pli-cropped .pli-image img,
.pli-video {
	width: 100%;
	height: 32vw;
	object-fit: cover;
	object-position: 50% 50%;
}
.project-list-item {
	position: relative;
	display: block;
	margin-left: 35%;
	margin-right: 17%;
	margin-bottom: 12%;
}
.project-list-item:last-child {
	margin-bottom: 0;
}
.pli-image,
.pli-video {
	position: relative;
	z-index: 2;
}
.project-list.pli-cropped .pli-image img,
.pli-video video {
	width: 100%;
	height: 32vw;
	object-fit: cover;
	object-position: 50% 50%;
}
.pli-caption.pli-caption-back .pli-title {
	color: var(--main-color-border);
}
.pli-categories-wrap {
	position: relative;
	margin-bottom: 24px;
}
.pli-category {
	position: relative;
	display: inline-block;
	font-size: calc(13px + 0.1vw);
	color: #fff;
	line-height: 1.6;
}
.pli-category ~ .pli-category {
	margin-left: -4px;
}
.pli-category ~ .pli-category:not(:empty)::before {
	content: ", ";
}
.pli-category ~ .pli-category ~ .pli-category ~ .pli-category {
	visibility: hidden;
	width: 0;
}
.pli-category ~ .pli-category ~ .pli-category ~ .pli-category ~ .pli-category {
	display: none;
}
.pli-category + .pli-category + .pli-category + .pli-category::before {
	content: "...";
	margin-left: 5px;
	visibility: visible;
}
.pli-title {
	font-size: calc(16px + 3.5vw);
	font-weight: 600;
	line-height: 1.2;
	color: #fff;
	margin: 0;
}
.pli-caption.pli-caption-front .pli-title {
}
.pli-caption.pli-caption-back .pli-title {
	color: var(--main-color-border);
}
.pli-counter {
	position: absolute;
	top: 8%;
	left: -30%;
	pointer-events: none;
}
.pli-counter::before {
	counter-increment: pli-counter 1;
	content: "" counter(pli-counter, decimal-leading-zero);
	display: block;
	line-height: 1;
	font-size: calc(17px + 7vw);
	font-weight: 500;
	color: var(--text-color);
	opacity: 1;
	z-index: -1;
}




/* Single Project Page Style CSS =========================================== */
.yk-single-project .ph-category {
	color: #ffffff;
}
.yk-single-project .ph-caption-title {
	color: #ffffff;
}
.project-info-list {
	position: relative;
	z-index: 9;
}
.project-info-list > ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.project-info-list > ul > li {
	position: relative;
	display: inline-block;
	max-width: 350px;
	width: 100%;
	vertical-align: top;
	padding: 0px 30px 0px 0px;
	margin: 15px 25px 15px 0;
}
.project-info-list > ul > li:last-child {
	margin-right: 0;
	padding-right: 0;
}
.project-info-list > ul > li::after {
	position: absolute;
	display: block;
	content: "";
	top: 24px;
	right: 0;
	width: 1px;
	height: 60px;
	margin-top: -18px;
	background-color: var(--yk-line-color);
}
.project-info-list > ul > li:last-child::after {
	display: none;
}
.project-info-list .pi-list-heading {
	font-size: clac(17px + 0.1vw);
	font-weight: normal;
	margin-bottom: 5px;
	opacity: .7;
}
.project-info-list .pi-list-cont {
	font-size: calc(17px + 0.1vw);
}
/* Single Project Video Section */
.yk-project-video-gallery {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.yk-project-video-link {
	display: block;
	position: relative;
	width: 100%;
}
.yk-project-preview-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.yk-project-video-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.35);
	pointer-events: none;
	z-index: 1;
}
.yk-project-video-wrap .yk-project-preview-video {
	transition: transform 0.8s ease;
}
.yk-project-video-link:hover .yk-project-preview-video {
	transform: scale(1.035);
}
/* Single Project Video Section */
.yk-project-video-gallery,
.yk-project-video-link,
.yk-project-video-inner,
.yk-project-video-wrap {
	position: relative;
	display: block;
	width: 100%;
	height: 70vh;
	min-height: 0;
	overflow: hidden;
}
.yk-project-video-wrap {
	margin: 0;
	padding: 0;
}
.yk-project-preview-video {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: transform 0.8s ease;
}
.yk-project-video-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.38);
	pointer-events: none;
	z-index: 1;
}
.yk-project-video-link:hover .yk-project-preview-video {
	transform: scale(1.035);
}
.yk-gallery {
	position: relative;
}
.yk-gallery-item {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}
.ykgr-height {
	position: relative;
	padding-bottom: 35%;
}
body.yk-boxed .yk-wrap .ykgr-height {
	padding-bottom: 60%;
}
.yk-grid[class*="ykgr-layout-"] .ykgr-height {
	padding-bottom: 60%;
}
.yk-grid.ykgr-layout-2 .ykgr-height {
	padding-bottom: 65%;
}
.yk-grid.ykgr-not-cropped:not([class*="ykgr-layout-"]) .ykgr-height:not(.yk-gallery-video-wrap):not(.pgi-video-wrap), 
.yk-grid.ykgr-layout-2.ykgr-not-cropped .ykgr-height:not(.yk-gallery-video-wrap):not(.pgi-video-wrap), 
.yk-grid.ykgr-layout-3.ykgr-not-cropped .ykgr-height:not(.yk-gallery-video-wrap):not(.pgi-video-wrap), 
.yk-grid.ykgr-layout-4.ykgr-not-cropped .ykgr-height:not(.yk-gallery-video-wrap):not(.pgi-video-wrap) {
	padding-bottom: 0 !important;
	line-height: 0 !important;
}
.yk-gallery-image {
	position: relative;
}
/* Career Page Style ======================================== */
.career-opportunity-section {
	background: var(--half-color);
}
.career-opportunity-heading {
	margin-bottom: 50px;
}
.career-opportunity-heading h2 {
	font-size: 52px;
	font-weight: 700;
	color: var(--text-color);
	margin-bottom: 12px;
}
.career-opportunity-heading p {
	font-size: 18px;
	color: var(--text-color);
	margin: 0 auto;
}
.career-opportunity-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
}
.career-card {
	background: var(--white-color);
	border-radius: 32px;
	padding: 34px 30px 30px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.career-card-alt {
	background: var(--card-color);
}
/*
.career-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}
*/
.career-type {
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
	color: var(--text-color);
	margin-bottom: 18px;
	text-transform: uppercase;
}
.career-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--text-color);
	margin-bottom: 22px;
}
.career-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	background: var(--half-color);
	border-radius: 50px;
	padding: 8px 10px;
	margin-bottom: 26px;
}
.career-card-alt .career-meta {
	background-color: var(--white-color);
}
.career-meta span {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	font-weight: 400;
	color: var(--icon-color);
	gap: 8px;
}
.career-meta i {
	color: var(--main-color-border);
}
.career-desc {
	font-size: 17px;
	line-height: 1.8;
	color: #2f2f2f;
	margin-bottom: 28px;
}
.career-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 155px;
	padding: 15px 28px;
	background: #1cc56e;
	color: #fff;
	border-radius: 14px;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}
.career-btn:hover {
	background: #16ab5f;
	color: #fff;
}

/* Contact Page Style --------------------------------------- */
.yk-contact-info {
	font-size: 17px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.yk-contact-info > li {
	padding: 3px 0;
}
.yk-contact-info h6 {
	font-size: 21px;
	line-height: 1.4;
	font-weight: 600;
}
.yk-ci-icon {
	display: inline-block;
	margin-right: 10px;
	font-size: 80%;
}
.yk-contact-info a {
	display: inline;
	transition: color 0.2s;
}
.yk-contact-info a:hover {
	color: var(--text-color);
}
.yk-contact-info .social-buttons {
	display: inline-block;
	margin-top: 15px;
	margin-left: -17px;
}
.yk-form-filled label {
	
}
.yk-form-filled .yk-form-control {
	background-color: rgb(136 136 136 / 15%);
	color: var(--text-color);
	border: none;
}
.yk-form-filled .yk-form-control:focus {
	box-shadow: inset 0 0 0 1px rgb(136 136 136 / 60%);
}
.yk-form-filled .yk-form-control:disabled,
.yk-form-filled .yk-form-control[readonly] {
	opacity: .3;
}
.yk-number-input {
	position: relative;
	width: 100%;
}
.yk-qty-btn.yk-inc-btn,
.yk-qty-btn.yk-dec-btn {
	position: absolute;
	right: 0;
	width: 40px;
	height: 50%;
	line-height: 25px;
	background-color: #404040;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: var(--text-color);
	cursor: pointer;
	user-select: none;
	z-index: 2;
}
.yk-qty-btn.yk-inc-btn {
	top: 0;
}
.yk-qty-btn.yk-dec-btn {
	bottom: 0;
}
.yk-qty-btn.yk-inc-btn:hover,
.yk-qty-btn.yk-dec-btn:hover {
	background-color: #4c4c4c;
}
.yk-number-input button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}
.yk-number-input button:hover {
    background-color: #0056b3;
}
.yk-form-file {
	
}
.yk-btn.btn-file {
	border-radius: 10px;
}
.btn-file {
	vertical-align: middle;
}
.btn-file > * input {
	position: absolute;
	left: 50%;
	width: 1%;
	opacity: 0;
}
.yk-file-info {
	font-size: 14px;
	width: 75%;
	background-color: transparent;
	border: none;
	outline: none;
	color: #777;
	line-height: 1;
}
.yk-btn-dark {
	background-color: #292929;
}
.yk-btn-dark > *,
.yk-btn-dark > *::after {
	color: var(--text-color);
}
.yk-btn-dark:hover > * {
	color: var(--text-color);
}
.yk-form-group {
	margin-bottom: 30px;
}
.yk-form-control {
	display: block;
	font-size: 17px;
	font-weight: normal;
	width: 100%;
	background-color: transparent;
	padding: 5px 15px;
	color: var(--text-color);
	border: 1px solid rgb(136 136 136 / 65%);
	border-radius: 3px;
}
.yk-form-control:focus {
	background-color: transparent;
	color: var(--text-color);
	border-color: rgb(204 204 204 / 85%);
	outline: none;
	box-shadow: none;
}
.yk-form-control + .yk-form-control {
	margin-top: 20px;
}
.yk-form-control:disabled, .yk-form-control[readyonly] {
	background-color: rgb(176 176 176 / 6%);
	opacity: .4;
	cursor: not-allowed;
}
.yk-form-control:not(textarea):not([size]) {
	height: 56px;
}
.yk-form-text {
	display: block;
	margin-top: 5px;
	font-style: italic;
	color: #999;
}
label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 17px;
	font-weight: 500;
}
textarea,
textarea.yk-form-control {
	padding: 15px
}
/* select */
select {
	cursor: pointer;
}
select option {
	background-color: #eee;
	color: var(--text-color);
}
select option[value=""][disabled] {
  display: none;
}
select[multiple] option {
	background-color: transparent;
	color: var(--text-color);
}
select option[disabled],
select[multiple] option[disabled] {
	color: #999;
}
select:required:invalid {
	color: #999;
}
::-webkit-input-placeholder {
	color: #999 !important;
}
:-moz-placeholder {
	color: #999 !important;
}
::-moz-placeholder {
	color: #999 !important;
}
:-ms-input-placeholder {
	color: #999 !important;
}
/* range slider */
input[type=range] {
	width: 100%;
}
.plant-location-header {
	margin-bottom: 35px;
}

.plant-location-header h3 {
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--text-color);
}

.plant-location-header p {
	font-size: 18px;
	color: #7a7a7a;
	margin: 0;
}
.plant-item {
	display: flex;
	align-items: stretch;
	background: var(--half-color);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
	min-height: 250px;
	height: 100%;
}
.plant-map {
	flex: 0 0 45%;
	max-width: 45%;
	position: relative;
	overflow: hidden
}
.plant-map img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	inset: 0;
	-webkit-transition: all 0.25s;
	-moz-transition: all 0.25s;
	-ms-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
}
.zoom-slow img {
	-webkit-transition: all 10s;
	-moz-transition: all 10s;
	-ms-transition: all 10s;
	-o-transition: all 10s;
	transition: all 10s;
}
.zoom-slow:hover img {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);	
	-o-transform: scale(2);	
	-ms-transform: scale(2);	
	transform: scale(2);
}
.plant-info {
	flex: 0 0 55%;
	max-width: 55%;
	padding: 32px 34px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.plant-label {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #7f7f7f;
	margin-bottom: 12px;
}
.plant-info h4 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-color);
	margin: 0 0 24px;
}

/* Page Navigation bottom style =================================== */
.yk-page-nav {
	position: relative;
}
.yk-pn-link {
	position: relative;
	display: -webkit-inline-flex;
	display: -moz-inline-flex;
	display: -ms-inline-flex;
	display: -o-inline-flex;
	display: inline-flex;
	max-width: 100%;
	text-decoration: none;
	overflow: hidden;
}
.yk-pn-title,
.yk-pn-hover-title {
	display: block;
	font-size: clamp(48px, 7vw, 129px);
	font-weight: 600;
	line-height: 1.4;
	transition: transform .5s cubic-bezier(0.51, 0.57, 0.17, 1);
}
.yk-pn-title {
	position: relative;
	color: #666;
	transform: translate3d(0, 0, 0);
}
.yk-pn-hover-title {
	position: absolute;
	max-width: 100%;
	color: var(--ui-color);
	white-space: nowrap;
	transform: translate3d(0, 100%, 0);
	overflow: hidden;
	text-overflow: ellipsis;
}
.yk-pn-subtitle {
	font-size: calc(19px + 0.1vw);
	margin-top: 5px;
	color: var(--ui-color);
}
.yk-page-nav.yk-pn-center {
	text-align: center;
}
.yk-page-nav.yk-pn-center .yk-pn-hover-title {
	left: 50%;
	transform: translate3d(-50%, 100%, 0);
}




/* Footer Style css --------------------- */
#yk-footer {
	position: relative;
	font-size: 14px;
	width: 100%;
	z-index: 2;
}
.yk-footer-inner {
	position: relative;
}
body:not(.yk-boxed) .yk-footer-inner,
.yk-footer-inner:not(.yk-wrap) {
	padding-left: 3.5%;
	padding-right: 3.5%;
}
#yk-footer a {
	font-size: 14px;
	color: var(--text-color);
}
#yk-footer.footer-absolute a {
	color: #fff;
}
#yk-footer .yk-btn {
	margin-top: 3px;
	margin-bottom: 3px;
}
#yk-footer .yk-copyright {
	color: var(--icon-color);
}
#yk-footer .yk-copyright a {
	color: var(--icon-color);
}
#yk-footer .yk-copyright a:hover {
	color: var(--main-color);
}
#yk-footer .yk-copyright .yk-btn-link {
	font-weight: normal;
}
#yk-footer .yk-copyright.text-gray .yk-btn-link > * {
	color: var(--icon-color);
}
#yk-footer .yk-copyright.text-gray:hover .yk-btn-link .yk-btn-icon {
	
}
#yk-footer .yk-copyright.yk-cr-mb {
	display: block;
}
#yk-footer .yk-copyright.yk-cr-sm {
	display: none;
}

