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

/* =CSS Reset : reset default browser style
-------------------------------------------------------------*/
html ,body{
	background: #ffffff;
	position: relative;
}
body{
	overflow-x: hidden;
}

body {
	color: #666666;
	font-size: 16px;
	/*line-height: 24px;*/
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
}

button, input, optgroup, select, textarea{
	font-weight: 300;
}

figure{
	margin: 0;
	width: 100%;
	height: 100%;
}
.underline{
	text-decoration: underline;
	text-decoration-color: #f98341;
}
.strikethrough  {
	text-decoration: line-through;
	text-decoration-color: #f98341;
}

/* =Hyperlink
------------------------------------------------------------ */
a{
	color: #01449f;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
a:link {
	color: #01449f; 
	text-decoration: none;
}
a:visited {
	color: #01449f; 
	text-decoration: none;
}
a:hover {
	color: #6E87C0;
	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: 0 0;
}
a:focus{
	outline: 0;
}
:focus {
    outline: none;
}

/* =Font-Family
------------------------------------------------------------ */

/* =Typography
------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6 { 
	font-weight: 700; 
}
p {}
h1 { 
	font-size: 45px; 
}
h2 { 
	font-size: 35px; 
}
h3 { 
	font-size: 30px; 
}
h4 { 
	font-size: 25px; 
}
h5 { 
	font-size: 20px; 
}
h6 { 
	font-size: 15px; 
}

/* =Color
------------------------------------------------------------ */
.clr-blue{
	color: #01449f;
}
.clr-grey{
	color: #f8f9fa;
}


/*background*/
.bg-clr-blue{
	background-color: #01449f;
}
.bg-clr-grey{
	background-color: #f8f9fa;
}


/* =list
------------------------------------------------------------ */
ul ,ol {
	padding-left: 15px;
	color: #333333;
}
.list-unstyled {
	padding: 0; 
	margin-top: 0;
	margin-bottom: 1rem;
	list-style: none;
}
.list-style-circle {
	list-style-type: circle;
}
.list-style-square {
	list-style-type: square;
}