/*!
* PT. IMAJIKU CIPTA MEDIA
* Copyright 2019-2024 IMAJIKU.
*/

/* =Main Variables Styles
------------------------------------------------------------ */
:root {

	/*color body text*/
	--hc-color-brand-1: #062776;

	/*color body text*/
	--hc-color-heading-title: #062776;
	--hc-color-heading-body: #4A5565;
	--hc-color-heading-desc: #4A5565;

	/*color button*/
	--hc-color-button: #062776;
	--hc-color-button-hover: #041C51;
	--hc-color-button-border: #062776;

	/*Font Family 1 main*/
	--hc-font-family-1: "Montserrat", sans-serif;

	/*Font Family 2*/
	--hc-font-family-2: "Plus Jakarta Sans", sans-serif;

}

/* =CSS RESET : reset default browser style
-------------------------------------------------------------*/
html,
body {
	background-color: var(--hc-color-white);
	scroll-behavior: smooth;
	/* 	position: relative; */
}

body {
	color: var(--hc-color-heading-body);
	font-size: 1rem;
	font-family: var(--hc-font-family-2);
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
}

figure {
	margin: 0;
	width: 100%;
	height: 100%;
}

/* =FONT-FAMILY
------------------------------------------------------------ */
/*NOTE : contert extention .otf from https://www.font2web.com*/

/*@font-face {
	font-family: 'MyWebFont';
	src: url('../fonts/webfont.eot');
	src: url('../fonts/webfont.eot?#iefix') format('embedded-opentype'),
	url('../fonts/webfont.woff2') format('woff2'),
	url('../fonts/webfont.woff') format('woff'),
	url('../fonts/webfont.ttf')  format('truetype'),
	url('../fonts/webfont.svg#svgFontName') format('svg');
}*/

/* =HYPERLINK
------------------------------------------------------------ */
a {
	color: var(--hc-color-button);
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

a:link {
	color: var(--hc-color-button);
	text-decoration: none;
}

a:visited {
	color: var(--hc-color-button);
	text-decoration: none;
}

a:hover {
	color: var(--hc-color-button-hover);
	text-decoration: none;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

a:hover,
a:active {
	outline: none;
}

a:focus,
a:focus-visible {
	outline: none;
}

:focus {
	outline: none;
}

/* link variant animation */
a.hc-link {
	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;
	background-size: 0 100%;
	border: none;
	opacity: 1;
	text-decoration: none;
}

a.hc-link:hover,
a.hc-link:focus {
	background-size: 100% 100%;
	opacity: 1;
}


/* =TYPOGRAPHY
-------------------------------------------------------------*/
.underline {
	text-decoration: underline !important;
	text-decoration-color: var(--hc-color-heading-body) !important;
}

.strikethrough {
	font-weight: 400 !important;
	line-height: 1 !important;
	text-decoration: line-through !important;
	text-decoration-color: var(--hc-color-heading-body) !important;
}

.link-underlined {
	display: inline;
	position: relative;
	border: none;
	cursor: pointer;
}

.link-underlined::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 3px;
	width: 100%;
	height: 2px;
	background-repeat: no-repeat;
	background-image: linear-gradient(to right, rgba(159, 4, 38, 1) 45%, rgba(159, 4, 38, 0.3) 55%);
	background-size: 220% 100%;
	background-position: 100% 50%;
	transition: all 0.6s ease-in-out;
	-webkit-transition: all 0.6s ease-in-out;
	-moz-transition: all 0.6s ease-in-out;
}

.link-underlined:hover::before {
	background-position: 0% 50%;
}

.hc-border {
	border: 1px solid;
}

/* =LIST
------------------------------------------------------------ */
.hc-list-unstyled {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* card list aligment */
.hc-list-alignment {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	column-gap: 10px;
}

.hc-list-alignment-img {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.hc-list-alignment-desc {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.hc-list-alignment-desc h3,
.hc-list-alignment-desc h4,
.hc-list-alignment-desc h5,
.hc-list-alignment-desc h6,
.hc-list-alignment-desc p {
	margin-bottom: 0;
}


/* =POST (article)
-------------------------------------------------------------*/
/* article handle by cms */
.hc-post-content-by-cms {
	position: relative;
}

/* custom style article */
.hc-post-content {
	position: relative;
}

.hc-post-content a {
	overflow-wrap: break-word;
	-webkit-overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-word-wrap: break-word;
	word-break: break-all;
	-webkit-word-break: break-all;
}

.hc-post-content a:hover {
	text-decoration: underline;
}

.hc-post-content blockquote {
	border-left: 5px solid var(--hc-color-gray-400);
	background-color: var(--hc-color-gray-50);
	padding: 10px 15px 10px;
	margin-right: 1rem;
	margin-left: 1rem;
	line-height: 1.6;
	font-weight: 500;
}

/* component post */
.hc-post-heading {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}

.hc-post-heading-title {
	font-size: 48px;
	font-weight: 700;
	font-family: var(--hc-font-family-1);
	line-height: 1.2;
	margin-bottom: 0;
	text-align: center;
	color: var(--hc-color-black);
}

.hc-post-heading-meta {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.hc-post-heading-meta-date {
	font-size: 16px;
	font-weight: 400;
	font-family: var(--hc-font-family-1);
	line-height: 1;
	margin-bottom: 0;
	text-align: center;
	color: var(--hc-color-black);
}

.hc-post-heading-tag {
	display: flex;
	position: relative;
}

.hc-post-heading-tag ul {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	column-gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.hc-post-heading-tag li {
	position: relative;
}

.hc-post-heading-tag-item {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	color: var(--hc-color-brand-1);
	margin: 0;
	min-width: 40px;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	padding: 6px 15px 6px;
	background-color: #E7EDF6;
}

/*share network*/
.hc-post-heading-share {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	column-gap: 15px;
	border-radius: 35px;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	min-height: 70px;
	padding: 5px 25px 5px;
}

.hc-post-heading-share-label {
	color: var(--hc-color-gray-600);
	font-size: 14px;
	line-height: 1;
	font-weight: 500;
	margin: 0;
}

.hc-post-heading-share ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	row-gap: 5px;
	column-gap: 15px;
}

.hc-post-heading-share li,
.hc-post-heading-share li a {
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

.hc-post-heading-share li span {
	width: 24px;
	height: 24px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

.hc-post-heading-share li span:hover {
	opacity: 0.8;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}

.hc-post-heading-cover {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	overflow: hidden;
}

.hc-post-heading-cover img {
	display: flex;
	width: 100%;
	height: auto;
	object-fit: contain;
	object-position: center;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
}