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

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

	/*color body text*/
	--hc-color-brand-1: #2F6B3F;
	--hc-color-brand-2: #C2A552;

	/*color body text*/
	--hc-color-heading-title: #02081c;
	--hc-color-heading-body: #101828;
	--hc-color-heading-desc: #475467;
	--hc-color-text: #525252;

	/* Main/Identity Color Palette  */
	--hc-color-primary-50: #e8f6eb;
	--hc-color-primary-100: #b9e2c1;
	--hc-color-primary-200: #97d5a3;
	--hc-color-primary-300: #68c17a;
	--hc-color-primary-400: #4ab560;
	--hc-color-primary-500: #1da338;
	--hc-color-primary-600: #1a9433;
	--hc-color-primary-700: #157428;
	--hc-color-primary-800: #105a1f;
	--hc-color-primary-900: #0c4418;

	/* Main/Identity Color Palette  */
	--hc-color-secondary-50: #e8f6eb;
	--hc-color-secondary-100: #b9e2c1;
	--hc-color-secondary-200: #97d5a3;
	--hc-color-secondary-300: #68c17a;
	--hc-color-secondary-400: #4ab560;
	--hc-color-secondary-500: #1da338;
	--hc-color-secondary-600: #1a9433;
	--hc-color-secondary-700: #157428;
	--hc-color-secondary-800: #105a1f;
	--hc-color-secondary-900: #0c4418;

	/*color button*/
	--hc-color-button: #2F6B3F;
	--hc-color-button-hover: #295b36;
	--hc-color-button-border: #0466C8;

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

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

	/* Whatsapp background color */
	--color-whatsapp: #25d366;
}

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

body {
	color: var(--hc-color-text);
	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;
	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;
}

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;
}

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

.strikethrough {
	font-weight: 400 !important;
	line-height: 1 !important;
	text-decoration: line-through !important;
	text-decoration-color: var(--hc-color-text) !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;
}


/* =ARTICLE
------------------------------------------------------------ */
.hc-article-note {}