@font-face {
    font-family: 'MyFont'; /*a name to be used later*/
    src:url(../fonts/Segan.ttf); /*URL to font*/
}
* {
  box-sizing: border-box;
  font-family: 'MyFont';
}
html,body,div,ol,ul,li{
margin:0;
padding:0;
border:0;
font-size:100%;
font:inherit;
vertical-align:baseline;
}
body {
  background-color: #fff;
  font-family: 'MyFont';
  font-size:100%;
}
#menuku{
	position:absolute;
	float:right;
	right:80px;
	margin-top:80px;
}
#container {
  position:absolute;
  top:0px;
  left:0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color:#0c0c0c;
}

#slides {
  position: relative;
  width: 100%;
  height: 100%;
}
#slides .slide {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
#slides .slide .title {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 20px;
  z-index: 2;
  padding-top: 5px;
  font-family: "MyFont", sans-serif;
  font-size: 5em;
  color: white;
  overflow: hidden;
}
#slides .slide .title .title-text {
  display: block;
  -webkit-transform: translateY(1.2em);
          transform: translateY(1.2em);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
#slides .slide .slide-partial {
  position: absolute;
  width: 50%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
#slides .slide .slide-partial img {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}
#slides .slide .slide-left {
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
#slides .slide .slide-left img {
  top: 0;
  right: 0;
  -o-object-position: 100% 50%;
     object-position: 100% 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
#slides .slide .slide-right {
  top: 0;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
#slides .slide .slide-right img {
  top: 0;
  left: 0;
  -o-object-position: 0% 50%;
     object-position: 0% 50%;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#slides .slide.active .title .title-text {
	text-shadow:1px 1px 5px #000000;
  -webkit-transform: translate(0);
          transform: translate(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
#slides .slide.active .slide-partial, #slides .slide.active .slide-partial img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#slide-select {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  color: white;
}
#slide-select li {
  position: relative;
  cursor: pointer;
  margin: 0 5px;
}
#slide-select .fa {
  font-size: 1.25em;
  line-height: 1.25em;
}
#slide-select .fa.prev:hover {
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
#slide-select .fa.next:hover {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
#slide-select .selector {
  height: 14px;
  width: 14px;
  border: 2px solid white;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
}
#slide-select .selector.current {
  background-color: white;
}
.content{
	position:absolute;
	background-color:#fff;
	top:100%;
	width:100%;
	max-width:100%;
}
.block-grey{
	margin:0px auto;
	background-color:#24231e;
	border-top:10px solid #1a1a17;
	padding:20px;
	color:#FFF;
}
.block-blue{
	margin:0px auto;
	text-align:center;
	background-color:#045142;
	border-top:10px solid #024849;
	line-height:150%;
	padding:20px;
	color:#FFF;
	margin-top:50px;
}
.block-grey #mymenu{
    display: grid;
	color:#FFF;
	background-color:transparent;
	text-align:center;
    grid-column-gap: 10px;
	grid-row-gap:10px;
    grid-template-columns: 33% 33% 33%;

}
.block-grey #mymenu div{
	background-color:transparent;
	padding:10px;
	cursor:pointer;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
.block-grey #mymenu div:hover{
	background-color:rgba(255,255,255,.1);
}
#logo{
	position:absolute;
	margin:10px;
	top:0px;
	left:0px;
	z-index:999;
}
h1,h2,h3,h4{
	font-weight:bold;
	margin:10px;
}
h1{
	font-size:200%;
}
h2{font-size:150%;}
h3{font-size:100%;}
#tombol{
	background-image:linear-gradient(to bottom,rgb(0,0,102,1) 0%,rgb(0,0,204) 100%);
	color:#FFF;
	text-shadow:1px 1px 2px rgb(0,0,0);
	padding:10px 15px;
	border:none;
	border-radius:10px;
	font-size:120%;
	font-weight:bold;
	box-shadow:none;
	cursor:pointer;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
#tombol:hover{
	background-image:linear-gradient(to top,rgb(0,0,102,1) 0%,rgb(0,0,204) 100%);
	color:#FF0;
	box-shadow:0px 0px 5px rgba(0,0,0,1);
}
.confirm{
	float:right; margin-top:-20px;
}
.telephone{
	display:block;
	margin-top:10px;
	font-size:130%;
	text-decoration:none;
	color:#F30;
	font-weight:bold;
}
#title{
	display:block;
	margin-top:10px;
	font-size:150%;
	text-decoration:none;
	color:#F30;
	font-weight:bold;
}
#header{
	position:relative;
	width:100%;
	top:0px;
	left:0px;
	height:200px;
	background-color:#069;
}
#content2{
	width:90%;
	text-align:center;
	margin:0 auto;
	margin-top:-100px;
}
.line-grey{
	margin:30px 0px;
	height:1px;
	overflow:hidden;
	background-image:linear-gradient(to right,transparent 0%,rgba(153,153,153,.3)20%,rgba(153,153,153,1)50%,rgba(153,153,153,.3)80%,transparent 100%);
}
#menu-left{
	text-align:center;
	margin-bottom:60px;
}
#menu-left ul{
	margin:0px;
}
#menu-left ul li{
	margin:0px;
	display:inline-block;
	margin:0px 20px;
}
#menu-left ul li a{
	display:block;
	padding:10px;
	text-decoration:none;
	border-radius:10px;
	box-shadow:1px 1px 2px rgb(0,0,0);
	padding:15px 25px;
	color:#00F;
	background-color:#FFF;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
#menu-left ul li a:hover, #menu-left ul li .active{
	box-shadow:0px 0px 2px rgb(0,0,0);
	color:#000;
	background-color:#f2f2f2;
}
.kolom{
	padding:5px 10px;
	color:#333;
	border-radius:5px;
	border:1px solid #999;
	font-size:120%;
	width:100%;
}
#form{
	width:50%;
}
#content2 .new {
  display: inline-block;
  position: relative;
}

#content2 .new img {
  display: block;
}

#content2 .new::after {
  content: attr(data-alt);
  position: absolute;
  bottom:0;
  left: 0;
  height: 1.5em;
  font-size:200%;
  width: 100%;
  background: rgba(0,0,0,0.75);
  z-index: 2;
  color:white;
  text-align: center;
  line-height: 1.5em
 }
a{
	color:#009;
	text-decoration:none;
	cursor:pointer;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
a:hover{
	color:#000;
	text-decoration:underline;
}
#tabel tr td{
	border-bottom:1px solid #999;
}
#showme{
	position:fixed;
	top:0px;
	width:80%;
	margin:0 auto;
	overflow:auto;
	z-index:9999;
	height:100%;
	background-color:#FFF;
	border:1px solid #000;
	border-radius:10px;
	box-shadow:1px 1px 5px rgba(0,0,0,.8);
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.hide{
	opacity:0;
	display:none;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
#closebutton{
	color:#fff;
	background-color:#F00;
	padding:10px;
	font-weight:bold;
	font-size:x-large;
	display:block;
	text-align:left;
	position:fixed;
	margin-left:10px;
	margin-top:10px;
}
#list{
	text-align:justify;
	width:80%;
	margin:0 auto;
}
#list #title{
	font-weight:bold;
}
#list #title span{
	font-weight:normal;
	font-style:normal;
	font-size:70%;
}
#wa-chat{
	padding:10px 10px 3px 10px;
	color:#FFF;
	background-color:#090;
	font-size:250%;
	margin:10px;
	overflow:hidden;
	border-radius:10px;
}
@media screen and (max-width: 1000px) {
body{font-size:120%;}
#showme{
	position:fixed;
	width:100%;
	left:0px;
}
#list{
	width:100%;
}
#menuku{
	position:fixed;
	float:none;
	margin-top:0px;
	left:0px;
	width:100%;
	z-index:999;
}

.block-grey #mymenu{
    display: block;
	color:#FFF;
	text-align:center;
}
.block-grey #mymenu div{
	font-size:120%;
	width:80%;
	margin:0 auto;
}
.confirm{
	display:block;
	width:100%;
	margin-top:20px;
	font-size:150%;
}
#content2{
	width:calc(100% - 20px);
	padding:10px;
	margin-top:60px;
}
#content2 img{
	width:100%;
}
#form{
	width:100%;
}
}