/*
	Theme Name: ThemeTwentyOne
	Theme URI: /
	Description: LP WordPress Theme
	Version: 21.0.0
	Author: Mystery Guest
	Author URI: /

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font-size:18px;
	background:#000000;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#e8e545;
	text-decoration:none;
}

main a {
	color:#e8e545;
}

a:hover, a h1:hover {
	color:#ff7f00;
	transition: all linear .5s;
	-webkit-transition: all linear .5s;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.bg{
	-webkit-background-size:cover;-moz-background-size:cover;-o-background-size:cover;background-size:cover;
	padding:10px 0;
}
/* wrapper */
.container {
	width: 100%;
    max-width:1060px;
	margin:0 auto;
	position:relative;
}
.one-shadow{
	-webkit-box-shadow: 0 5px 15px -6px black;
	   -moz-box-shadow: 0 5px 15px -6px black;
	        box-shadow: 0 5px 15px -6px black;
}

.top-shadow{
	-webkit-box-shadow: 0 -5px 15px -6px black;
	   -moz-box-shadow: 0 -5px 15px -6px black;
	        box-shadow: 0 -5px 15px -6px black;
}

.bezel{
	border: 1px solid #26302f;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding: 10px;
}
/* header */
.header {
	display: flex;
	padding:35px 0;
	position: static;
	font-size: 18px;
}
/* logo */
.logo {
	width:100%;
	height:auto;
	text-align: center;
}
.logo img, .banner, .w-100 {
	width:100%;
}
.logo img{
	max-width: 250px;
}

.marquee {
	position: relative;
	width: 100vw;
	max-width: 100%;
	height: 25px;
	overflow-x: hidden; 
}
  
  .track {
	position: absolute;
	top:2px;
	white-space: nowrap;
	will-change: transform;
	animation: marquee 10s linear infinite;
  }
  
  @keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
  }

  @-webkit-keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
  }

.tombol img{
	margin:0 30px;
	max-height:100px;
	-o-transition: .5s all linear;
    transition: .5s all linear;
	-webkit-filter: drop-shadow(2px 2px 0 #FFF77D) drop-shadow(-2px -2px 0 #FFF77D);
    filter: drop-shadow(2px 2px 0 #FFF77D) drop-shadow(-2px -2px 0 #FFF77D);
}	

.tombol a:hover img{
	-webkit-transition: .5s all linear;
    transition: .5s all linear;
    text-transform: uppercase;
	transform: rotateX(360deg);
	-webkit-transform: rotateX(360deg);
}

.my-sliderFrame{
	width:100%;
	margin-top:10px;
	border-radius: 5px;
	border:1px solid black;
}

.my-slider img{
	width:100%;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.col-right{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width:calc(100% - 300px);
	height:60px;
	text-align: right;
}

.text-right{
	text-align:right;
}
.text-center{
	text-align:center;
}

.btn{
	display: inline-block;
	padding: 5px 12px;
    -o-transition: .1s all linear;
    transition: .1s all linear;
    text-transform: uppercase;
	text-align:center;
	border-radius: 2px !important;
	font-weight: bolder;
	vertical-align: middle;
}
.btn-primary {
	color: #000;
	background: #ffffff; /* Old browsers */
	background-image: -moz-linear-gradient(top, #ffffff 0%, #969696 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#969696));
	background-image: -webkit-linear-gradient(top, #ffffff 0%,#969696 100%);
	background-image:      -o-linear-gradient(top, #ffffff 0%,#969696 100%);
	background-image:         linear-gradient(top, #ffffff 0%,#969696 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#969696',GradientType=0 );
	border: 1px solid #ffffff;
  }
  
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
	color: #000;
	background: #969696; /* Old browsers */
	background-image: -moz-linear-gradient(top, #969696 0%, #ffffff 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#969696), color-stop(100%,#ffffff));
	background-image: -webkit-linear-gradient(top, #969696 0%,#ffffff 100%);
	background-image:      -o-linear-gradient(top, #969696 0%,#ffffff 100%);
	background-image:         linear-gradient(top, #969696 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#969696', endColorstr='#ffffff',GradientType=0 );
	border: 1px solid #969696;
  }
  
  .btn-success {
	color: #000;
	background: #ffffff; /* Old browsers */
	background-image: -moz-linear-gradient(top, #ffffff 0%, #969696 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#969696));
	background-image: -webkit-linear-gradient(top, #ffffff 0%,#969696 100%);
	background-image:      -o-linear-gradient(top, #ffffff 0%,#969696 100%);
	background-image:         linear-gradient(top, #ffffff 0%,#969696 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#969696',GradientType=0 );
	border: 1px solid #ffffff;
  }
  
  .btn-success:hover, .btn-success:focus, .btn-success:active {
	color: #000;
	background: #969696; /* Old browsers */
	background-image: -moz-linear-gradient(top, #969696 0%, #ffffff 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#969696), color-stop(100%,#ffffff));
	background-image: -webkit-linear-gradient(top, #969696 0%,#ffffff 100%);
	background-image:      -o-linear-gradient(top, #969696 0%,#ffffff 100%);
	background-image:         linear-gradient(top, #969696 0%,#ffffff 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#969696', endColorstr='#ffffff',GradientType=0 );
	border: 1px solid #969696;
  }

.titel{
	text-align: center;
	margin:50px 0 0 0;
	padding:5px;
	font-size:20px;
	font-weight: normal;
	text-transform: uppercase;
	border:1px solid #ffb03a;
}

.bg-header{
	border: 1px solid #26302f;
	padding-bottom:5px;
}
.konten{
	margin:10px 0 0 0;
	border: 1px solid #26302f;
}
.col{
	display:flex;
	justify-content: flex-start;
	align-content: space-between;
	margin-top:30px;
}

.banner{
	position: relative;
	width:100%;
	text-align: center;
	margin-bottom: 10px;
}

.bannerTombol{
	position: absolute;
	bottom:15px;
	right:15px;
}

.box{
	border-radius: 5px;
	-webkit-box-shadow: 0 0 20px 1px rgba(255,215,0,1);
	box-shadow: 0 0 20px 1px rgba(255,215,0,1);
}

.bo{
	display: flex;
	font-size:14px;
}

.label-bo{
	width:25%;
	padding: 5px 0 5px 10px;
}

.detail-bo{
	width:75%;
	padding: 5px 10px;
	position: relative;
}

.detail-bo::before{
	position: absolute;
	content:':';
	left:0;
}

.bo-tombol{
	text-align: center;
	padding:20px;
}
.col-3{
	width: 33.3%;
	text-align: center;
}
.col-3 img{
	width:100%;
	display: inline-block;
}
.col-kiri{
	display: flex;
	align-items: stretch;
	width: 65%;
}
.col-kanan{
	padding:30px 0;
	margin-left:1%;
	width: 34%;
}

.ml10{
	margin:0 10px;
}

.ml20{
	margin-left:20px;
}

.w-100{
	padding-bottom:15px;
}
.flex{
	display: flex;
}
.flex div{
	width:50%;
}
main{
	padding:15px;
}
.img-daftar{
	margin:15px auto;
	display: block;
}
/* footer */
.footer {
	padding:15px;
}

.footer img{
	width:95%;
	max-width:900px;

}

/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media (max-width: 768px) {
	
	.header,.logo,.col-right{
		display: block;
		width:100%;
		max-width: 100%;
		text-align: center;
		height:auto;
	}

	.tombol img{
		max-height:75px;
		margin:0;
	}
	.img-daftar{
		max-width:180px;
	}
	.logo{
		margin-bottom:15px;
	}
	.logo img{
		max-width: 220px;
	}

	.col-right .text-right{
		display: block;
		text-align: center;
		margin-bottom:10px;
	}

	.ml10{
		margin:0 5px;
	}
	.banner{
		margin-bottom:5px;
	}

	.col{
		flex-direction:column;
	}

	.col-kiri, .col-kanan{
		width:100%;
	}
	.col-kanan{
		margin-top:30px;
	}
	.ctc{
		font-size:12px;
		padding: 2px 5px;
	}

	.ctc.ml20{
		margin-left:5px;
	}

	.icon-wa,.icon-lc{
		width:15px;
		height:15px;
	}
	
	.bannerTombol{
		right:5px;
		bottom:5px;
	}
}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
