
* {
  box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}


body {

  position: relative;
  margin: 0;
  font-family: Verdana,"Trebuchet MS";
  font-size: 15.5px;


}

#container {
	align:center;
}



#header {
 z-index:99;
 display: flex;
 margin: auto;
 align-items: center;
 font-family: verdana;
 font-size: 14px;
 height: 120px;
 margin-left: 70px;
 margin-right: 70px;


}

.img_logo{
 height: 85px;

}

.iso_logo{
 height: 65px;
 margin-left:18px;
}


#mobile_menu_button{
cursor: pointer;
 margin-left: auto;
 display: none;
}


#mobile_menu_button>img{
 width: 40px;
}





#pc_menu{
 margin-left:auto;
 display: flex;
}

#pc_menu>a>div{

 color:rgb(0,0,0);
 text-decoration: none;
 padding: 10px;
 line-height:30px;
 transition: background-color 0.4s, color 0.4s;
}

a{
text-decoration: none;
color: black;
}

#pc_menu>a>div:hover{
  background-color:rgb(0,0,150);
  color:rgb(255,255,255);
}

#pc_menu>a>div:hover a{
  color:rgb(255,255,255);
}


#mobile_menu{
	position: absolute;
	z-index: 100;
	width: 70%;
	height: 0;
	display: flex;
	visibility: hidden;
	overflow: hidden;
	background: white;
	flex-direction: column;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 15px;
	border-top: 5px solid rgb(1,1,189);
}


.mobile_menu_scrolldown{
  animation-name: scrolldown;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes scrolldown {
  from {
	 height:0%;
	 visibility: hidden;}
  to {
	height:16%;
	visibility: visible;}
}

.mobile_menu_srollup{
  animation-name: scrollup;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}

@keyframes scrollup {
  from {
	 height:12%;
	 visibility: visible;
	 }
  to {
	height:0%;
	visibility: hidden;
	}
}


#mobile_menu>a>div{
	display : hidden;
	padding: 20px;
	border-bottom: 1px solid rgb(240,240,240);
}

#mobile_menu>a>div:hover{
	color: rgb(0,0,160);
}



#banner{
 display:flex;


 z-index:-1;
 background-image: url("picture/pratama.jpg");
 background-repeat: no-repeat;
 background-color: white;
 background-size: cover;
 background-position: center;
 width:100%;
 height:620px;
 justify-content: center;
}



#gradient{
 display:flex;
 justify-content: center;
 width:100%;
 padding-left: 70px;
 padding-right: 70px;
 background-image: linear-gradient(to top, rgba(255,255,255,1),
rgba(255,255,255,0), rgba(255,255,255,0), rgba(255,255,255,0), rgba(255,255,255,0),
rgba(255,255,255,0), rgba(255,255,255,0), rgba(255,255,255,0), rgba(255,255,255,0));
}

@font-face {
   font-family: swis721 cn bt bold;
   src: url(swis721-cn-bt-bold_0.ttf);
}

#text{


 display:flex;
 align-items: center;
 font-size: 70px;
 font-family: swis721 cn bt bold;

 color: rgb(255,255,255);
 text-align: center;
 text-shadow: 0 0 13px rgb(0,0,0);
 animation: pop 1s;
 animation-timing-function: ease;
 transform: translate(0, -30px);
}


@keyframes pop {


  from {
	 transform: translate(0,0px);
	 opacity:0;}
  to {
	 transform: translate(0, -30px);
	 opacity:1;
	}



}



#content{
 display:flex;
 margin-left: 90px;
 margin-right: 90px;

}

#content>#left{
 flex: 50%;
 margin: 25px 25px 25px 25px;


}

#content>#right{

 flex: 50%;
 line-height: 1.5;
 margin: 25px 25px 25px 25px;

}

input[type=text], textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;

  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: arial;
  font-size: 16px;

}

input[type=button]{
  background-color: rgb(0,0,160); /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  

}

.custom_file_upload {
    border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
    display: inline-block;
    
	padding: 12px 20px;
	margin: 8px 0;
   
	font-family: arial;
	font-size: 15px;
	color: gray;
}


input[type="file"] {
	 cursor: pointer;
	position: absolute;
    opacity: 0;
	height:40px;
}		


#err_message{
color: red;
font-family: arial;
font-size: 14px;
}


#content_2{
 display:flex;
 margin-top: 10vh;
 margin-left: 90px;
 margin-right: 90px;
  border: 5px solid rgb(0,0,160);


}

#content_2>#left{

 flex: 50%;
 margin: 25px 25px 25px 25px;

}

#content_2>#right{
 flex: 50%;
 line-height: 1.5;
 margin: 25px 25px 25px 25px;


}

#content_2>#right>p{
 letter-spacing: 0px;

}

#content_2>#right>h1{
font-size: 28px;
letter-spacing: 1px;
margin: 0;

}




.modal{
	position: fixed;
	display:none;
	z-index: 1;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	overflow: auto;

}

.modal-content {
  margin: auto;
  padding: 0;
  width: 90%;
  	border: 5px red solid rgb(255,255,255);
}

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 200%;
 

}

.close:hover, .close:focus{
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.gallery_slide{
	display:none;
	text-align: center;
	height: 100vh;
}

.img_container{
display:flex;
justify-content: center;
align-items: center;
height: 90vh;
}

.slide_number{
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;

  top: 0;
}

.prev,
.next {
	  cursor: pointer;
	  position: absolute;
	  top: 50%;
	  width: auto;
	  padding: 16px;
	  margin-top: -2em;
	  color: white;
	  
	  font-size: 130%;
	  transition: 0.6s ease;
	  


}

.next {
	right: 0;

}


#caption{
	text-align: center;
	font-size: 12px;
	color: white;
}
.slide_potrait{
	pointer-events: none;
	width:35%;
}

.slide_landscape{
	pointer-events: none;
	width: 65%;

}




h1, h2{
font-family: swis721 cn bt bold;
color: rgb(0,0,160);
}





 #bottom_content{
 display:flex;
 align-items: center;
 margin-top:70px;
 padding-left: 90px;
 padding-right: 90px;
 }

 
 

 #bottom_content>#left{
 background: url("picture/bottom_pic.jpg");
 background-repeat: no-repeat;
 background-size: 100% 100%;
 width: 50%;
 height: 230px;
  transform: translate(15px,0);
}

 #bottom_content>#right{
 display:flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 background-color: rgb(0,0,160);
 font-size: 28px;
 font-weight: 600;
 font-family: swis721 cn bt bold;
 color:white;
 text-align: center;
 width: 50%;
 height: 230px;
 transform: translate(-15px,30px);
}

 #bottom_content>#right>div{


 }


#call_us{
 transform: translate(0,10px);
 font-size: 24px;
 color: white;
 letter-spacing: 2px;
 padding: 5px;
 background: rgb(150,150,150);
 width: 120%;

}


#call_us:hover {
 background: rgb(255,255,255);
 color: rgb(0,0,150);

 }






#footer{
 display: flex;
 margin-top: 50px;
 align-items: center;
 font-family: verdana;
 font-size: 12px;
 height: 150px;
 padding-left: 90px;
 padding-right: 90px;

}

#footer>#footer_menu{
 display: flex;
}

#footer_menu>div{
 color:rgb(0,0,0);
 text-decoration: none;
 text-align:center;
 margin-right: 20px;
 line-height:30px;
}

#footer_menu>div:hover a{
 color: rgb(0,0,150);
}

#footer_text{
margin-left: auto;
 text-align:center;

}






@media only screen and (max-width: 500px){

	#header{
	 height: 90px;
     margin-left:20px;
	 margin-right:20px;
	}

	.img_logo{
	 height: 65px;
	}

	.iso_logo{
	 height: 45px;
	 margin-left:10px;
	}

	#mobile_menu_button{
	 margin-left: auto;
	 margin-right: -5px;
	}

	#mobile_menu_button>img{
	 width: 35px;
	}

	@keyframes scrolldown {
	  from {
		 height:0%;
		 visibility: hidden;}
	  to {
		height:14%;
		visibility: visible;}
	}

	@keyframes pop {
	  from {
		 transform: translate(0,10px);
		 opacity:0;}
	  to {
		 transform: translate(0,-30px);
		 opacity:1;
		}
	}
	
	#banner{
	 background-position: bottom;
	 background-size: 600px;
	 height: 300px;
	}

	#gradient{
	 height: 300px;
	}
	
	#text{
	 font-size: 35px;
	}

	#content{
     margin-left:15px;
	 margin-right:15px;
	 margin-top: 25px;
	 margin-bottom: 25px;
	 flex-flow: column;
	}

	#content>#left{
	 margin: 0px;
	 font-size: 13px;
	}
	
	h1{
	font-size: 28px;
	}

	#content>#right{
     font-size: 15px;
	 margin: 0px;
	}

		
	#content_2{
	 display:flex;
	 margin-top: 5vh;
	 margin-left: 15px;
	 margin-right: 15px;
	 border: 5px solid rgb(0,0,160);
  	 flex-flow: column;
	}

	#content_2>#left{
	 flex: 50%;
	 margin: 0;
	}
	
	#content_2>#left>iframe{
	 height: 300px;
	}
	
	#content_2>#right{
	 font-size: 13px;
	 flex: 50%;
	 line-height: 1.5;
	 margin: 15px;
	}
		
	#content_2>#right>h1{
	 font-size: 34px;
	}
	
	 #bottom_content{
	 margin-top:0px;
	 padding-left: 40px;
	 padding-right: 40px;
	 flex-flow: column;
	 }

	 #bottom_content>#left{
	  width: 100%;
	  height: 150px;
	  transform: translate(0,0);
	}

	 #bottom_content>#right{
	 display:flex;
	 flex-direction: column;
	 padding: 5px;
	 font-size: 22px;
	 font-weight: 600;
	 width: 100%;
	 height: 150px;
	 transform: translate(0px,0px);
	}

	#call_us{
	 transform: translate(0,5px);
	 font-size: 20px;
	 letter-spacing: 2px;
	 padding: 5px;
	 width: 100%;
	}

	#footer{
	 flex-flow:column;
	 height: 300px;
	  padding-left: 0px;
	  padding-right: 0px;
	}

	#footer_menu{
	 flex-flow:column;
	 margin-top: 30px;
	 font-size: 15px;
	}

	#footer_text{
	 margin: auto;
	 font-size: 11px;
	}



}



@media screen and (min-width: 768px) and (orientation: portrait){


	#header{
	margin-left: 40px;
	margin-right: 40px;
	}

	#banner{
	 background-position: center;
	 background-size: cover;
	 height: 350px;
	}

	#gradient{
	 height: 351px;
	}

	@keyframes pop {
	  from {
		 transform: translate(0,-10px);
		 opacity:0;}
	  to {
		 transform: translate(0,0px);
		 opacity:1;
		}
	}

	#text{
	 font-size: 35px;
	}
	
	#content{
	margin: 40px;
	}
	
	#content>#left{
	 font-size: 14px;
	 flex: 40%;
	 margin: 5px;
	}

	#content>#right{
	 font-size: 14px;
	 margin: 5px;
	}

	#content_2{
	margin: 40px;
	}
	
	#content_2>#left{
	 font-size: 14px;
	 flex: 60%;
	 margin: 5px;
	}

	#content_2>#right{
	 padding: 10px;
	 font-size: 14px;
	 margin: 5px;
	}
	
	#content_2>#left>iframe{
	 height: 350px;
	}

	#bottom_content>#left{
	  height: 150px;
	}


	 #bottom_content>#right{
	 padding: 5px;
	 font-size: 23px;
	 font-weight: 600;
	 height: 150px;
	}



	#call_us{
	 font-size: 20px;
	 letter-spacing: 2px;
	 width: 100%;
	}


	#footer{
	 flex-flow:column;
	}

	#footer_menu{
	 margin-top: 30px;
	}

	#footer_text{
	 margin: auto;
	 margin-top: 30px;
	}






}


@media screen and (min-width: 550px) and (max-width: 900px) and (orientation: landscape){
	#header {
	 margin: auto;
	 align-items: center;
	 font-size: 14px;
	 height: 100px;
	 padding-left: 40px;
	 padding-right: 40px;
	}

	.img_logo{
	 height: 75px;
	}

	.iso_logo{
	 height: 55px;
	 margin-left:18px;
	}

	#mobile_menu>a>div{
		padding: 15px;
		border-bottom: 1px solid rgb(240,240,240);
	}
	
	#banner{
	 background-position: center;
	 background-size: cover;
	 height: 300px;
	}

	#text{
	 font-size: 35px;
	}
	

	#content{
     margin-left:30px;
	 margin-right:30px;
	 margin-top: 20px;
	}

	#content>#left{
	 margin: 0px;
	 font-size: 13px;
	 flex: 40%;
	}

	#content>#right{
	 font-size: 13px;
	 padding: 0px;
	 margin: 0px;
	}

	#bottom_content{
     margin-top: 20px;
	 margin-left: 50px;
	 margin-right: 50px;
	}
	
	#content_2{
	 display:flex;
	 margin-top: 5vh;
	 margin-left: 30px;
	 margin-right: 30px;
	}

	#content_2>#left{
	 flex: 50%;
	 margin: 0;
	}
	
	#content_2>#left>iframe{
	 height: 300px;
	}
	
	#content_2>#right{
	 font-size: 13px;
	 flex: 50%;
	 line-height: 1.5;
	 margin: 15px;
	}
		
	#content_2>#right>h1{
	 font-size: 25px;
	 letter-spacing: 1px;
	}
	

	#bottom_content>#left{
     width: 100%;
	 height: 150px;
	}

	 #bottom_content>#right{
	 padding: 10px;
	 font-size: 21px;
	 font-weight: 600;
	 width: 100%;
	 height: 150px;
	}

	#call_us{
	 font-size: 20px;
	 letter-spacing: 2px;
	 width: 100%;
	}

	#footer{
	 margin-top: 30px;
	 font-size: 9px;
	 height: 100px;
	 padding-left: 40px;
	 padding-right: 40px;
	}

	#footer_menu>div{
	 cursor: pointer;
	 color:rgb(0,0,0);
	 text-decoration: none;
	 text-align:center;
	 margin-right: 15px;
	 line-height:30px;
	}

	#footer_text{
	 margin-left: auto;
	 text-align: center;
	}

}



@media screen and (min-width: 1024px) and (max-width: 1200px) and (orientation: landscape){

	#pc_menu{
	 font-size: 12px;
	}

	#banner{
	 background-position: center;
	 background-size: cover;
	 height: 400px;
	}

	#gradient{
	 height: 401px;
	}

	#text{
	 font-size: 45px;
	}
	
	#content>#left{
	 margin: 0;
	  padding: 15px;
	  flex: 50%;
	}
	
	#content>#right{
	 margin: 0;
	 padding: 15px;
	 flex: 50%;
	}
	
	#content_2>#left{
	 margin: 0;
	  padding: 15px;
	  flex: 50%;
	}
	
	#content_2>#right{
	 margin: 0;
	 padding: 15px;
	 flex: 50%;
	}
	
	#content_2>#left>iframe{
	 height: 350px;
	}
	


}


@media only screen and (max-width: 999px){


	#mobile_menu_button{
	 display: inline;
	}

	#pc_menu{
	 display: none;
	}

}

@media only screen and (max-width:500px){

}