@charset "utf-8";
@font-face {
    font-family: 'MylogoFN'; /*a name to be used later*/
    src: url('./fonts/Delighter.otf'); /*URL to font*/
}
@font-face {
    font-family: 'logoFN'; /*a name to be used later*/
    src: url('./fonts/Forgotty.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'FTitle'; /*a name to be used later*/
    src: url('./fonts/Abel.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'slideFn'; /*a name to be used later*/
    src: url('./fonts/tt1040m.ttf'); /*URL to font*/
}
@font-face {
    font-family: 'MyFont'; /*a name to be used later*/
    src: url('./fonts/Abel.ttf'); /*URL to font*/
}
@keyframes ShowIn {
    from {opacity:0}
    to {opacity:100}
}
body{
	background-color:#FFF;
	margin:0px;
	color:#666;
	font-family:'MyFont';
	width:100%;
	overflow-y:scroll;
	overflow-x:hidden;
	height:auto;
    font-size:100%;
	line-height:25px;

}

#mylang{
	position:fixed;
	z-index:999;
	right:10px;
	top:10px;
	cursor:pointer;
}
#mylang > span{
font-size:150%;
border:1px solid #000;
box-shadow:0px 0px 5px rgba(255,255,255,0.8);
}
#mylang > ul::after {
  position: absolute;
  top: -10px;
  width: 15px;
  height: 15px;
  right:10px;
  z-index:800;
  background:#666;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: " ";
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border-color 0.2s ease;
  -moz-transition: border-color 0.2s ease;
  -ms-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
#mylang ul{
	margin:0px;
	padding:0px;
	position:fixed;
	right:10px;
	opacity:0;
	top:50px;
	  z-index:999;
	visibility:hidden;
  background:#666;
  border:2px solid #fff;
  box-shadow:0px 0px 2px rgba(0,0,0,0.8);
	-webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}
#mylang .ulshow{
	visibility:visible;
	opacity:1;
}
#mylang ul li{
	list-style:none;
	display:block;
	padding:0px;
	margin:0px;
}
#mylang ul li a{
	display:block;
	color:#bbb;
	text-shadow:1px 1px 3px rgba(0,0,0,0.8);
	padding:5px 10px;
	z-index:999;
	background-color:transparent;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
#mylang ul li a:hover{
	color:#FFF;
	background-color:#000;
	  z-index:999;
}

.welcome1{
    text-shadow:0px 0px 5px rgb(255,255,255);
    color:#670b4e;
    font-size:200%;
    position:relative;
    transform: translateX(0%);
    transition: transform 1s;
}
.welcome2{
text-shadow:0px 0px 5px rgb(0,0,0);
font-size:150%;
color:#ffa1ee;
position:relative;
transform: translateX(-23%);
transition: transform 1s;
}
@keyframes slidefromLeft {
    from {left:-100%}
    to {left:0%}
}    
@keyframes slidetoLeft {
    from {left:0%}
    to {left:-100%}
}

.slideLeft{
    -webkit-animation-name: slidefromLeft; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    animation-name: slidefromLeft;
	left:0%;
	width:1000px;
	margin:0 auto;
}
.toLeft{
    -webkit-animation-name: slidetoLeft; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    animation-name: slidetoLeft;
	left:-100%;
	width:1000px;
	margin:0 auto;
	
}
.toLeft2{
    -webkit-animation-name: slidetoLeft; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    animation-name: slidetoLeft;
	left:-100%;
	width:100%;
	max-width:100%;
	margin:0 auto;
	
}
.slideLeft2{
    -webkit-animation-name: slidefromLeft; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    animation-name: slidefromLeft;
	left:0%;
	width:100%;
	max-width:100%;
	margin:0 auto;
}
@keyframes slideclose {
    from {height:100%; width:100%; opacity:1;}
    to {height:0%;width:0%; opacity:0;}
}
@keyframes slideshow {
    from {height:0%;width:0%;opacity:0;}
    to {height:100%;width:100%;opacity:1;}
}

#menu{
    z-index:998;
    margin:0px;
}
.showlogo{
    height:150px;
        -webkit-transition: height 500ms linear;
    -moz-transition: height 500ms linear;
    -o-transition: height 500ms linear;
    -ms-transition: height 500ms linear;
    transition: height 500ms linear;
}
.hidelogo{
    height:0px;
        -webkit-transition: height 500ms linear;
    -moz-transition: height 500ms linear;
    -o-transition: height 500ms linear;
    -ms-transition: height 500ms linear;
    transition: height 500ms linear;
}
.menuku{
    position:relative;
    top:50px;
    -webkit-transition: top 500ms linear;
    -moz-transition: top 500ms linear;
    -o-transition: top 500ms linear;
    -ms-transition: top 500ms linear;
    transition: top 500ms linear;
}
.menuscroll{
    top:0px;
    left:0px;
    position:fixed;
    background-image: linear-gradient(to bottom,rgb(43,131,122)0%,rgb(35,116,108)100%);
    border-bottom:1px solid #ccc;
    box-shadow:1px 1px 2px rgba(0,0,0,0.8);
    display:block;
    width:100%;
    -webkit-transition: top 500ms linear;
    -moz-transition: top 500ms linear;
    -o-transition: top 500ms linear;
    -ms-transition: top 500ms linear;
    transition: top 500ms linear;
}
.headimage{
    position:relative;
    z-index:999;
    height:100%;
    width:100%;
    left:0;
    margin:0 auto;
    background-color:#fff;
}
.makeclose{
    height:0%;
    width:0%;
    background-color:transparent;
    -webkit-transition: height 500ms linear;
    -moz-transition: height 500ms linear;
    -o-transition: height 500ms linear;
    -ms-transition: height 500ms linear;
    transition: height 500ms linear;
}
.makeshow{
    height:100%;
    width:100%;
    background-color:#ffffff;
    -webkit-transition: height 500ms linear;
    -moz-transition: height 500ms linear;
    -o-transition: height 500ms linear;
    -ms-transition: height 500ms linear;
    transition: height 500ms linear;
}
.tampilkan{
    -webkit-animation-name: ShowIn; /* Safari 4.0 - 8.0 */
    -webkit-animation-duration: 0.5s; /* Safari 4.0 - 8.0 */
    animation-name: ShowIn;
	display:inherit;
	opacity:100;
	margin:0 auto;
}
.tutupkan{
	display:none;
	opacity:0;
}

strong{
    font-size:90%;
    color:#000;
    font-weight:normal;
}

.bottompage div #sosicon{
    display: grid;
    grid-column-gap:0px;
    grid-template-columns:50px 50px 50px 50px 50px;
    margin-top:10px;
}
.bottompage div #sosicon a{
font-size:200%;
color:#ddd;
z-index:3;
}
.bottompage div #sosicon:hover{
	color:#09C;
}

.bottompage div a:hover{
	color:#fff;
}
h1,h2,h3{
    color:#670b4e;
    margin:0;
    margin-bottom:10px;
    font-family:"FTitle";
    text-align:center;
    letter-spacing:5px;
}
.logo-box{
	font-family:'MylogoFN';
	font-size:40px;
	text-transform:capitalize;
	cursor:pointer;
	color:#037569;
	position:fixed;
	top:0px;
	margin:0px;
	width:150px;
	margin-left:30px;
	padding:5px;
	z-index:999;
	background-color:#fff;
	text-align:center;
	border-radius:0px 0px 10px 10px;
	border:1px solid #FFF;
	border-top:0px;
	box-shadow:1px 1px 5px rgba(0,0,0,0.8);
	text-shadow:1px 1px 3px rgba(255,255,255,0.8);
}
.logo-box #mytext{
    display:block;
    margin-top:15px;
}
.line-grey{
	background-image:linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(200,200,200,1) 30%,rgba(200,200,200,1) 70%,rgba(255,255,255,1) 100%);
	height:1px;
	width:100%;
	margin-top:20px;
	margin-bottom:20px;
}
.line-blank{
    margin-top:20px;
    height:20px;
	margin-bottom:20px;
}
.content{
	margin:0px auto;
	max-width:100%;
	padding:10px;
	text-align:justify;

}
.content2{
	margin:0px auto;
	max-width:1000px;
	padding:10px;
	text-align:justify;
}

a{
text-decoration:none;
color:#06C;
cursor:pointer;
}
a:hover{
	color:#000;
    -webkit-transition: color 500ms linear;
    -ms-transition: color 500ms linear;
    transition: color 500ms linear;
    
}
input,select{
	border:1px solid #cccccc;
	border-radius:5px;
	background-color:#FFF;
	padding:5px;
}
.table-header{
	font-size:100%;
	color:#fff;
}
.left-side{
	float:left;
	width:450px;
	margin-right:30px;
}
.right-side{
	float:right;
	width:450px;
	margin-left:30px;
}
.block-table{
	margin-top:30px;
	padding:10px;
	color:#fff;
	overflow:hidden;
}
.block-table strong , .block-table h3{
    color:#fffec7;
    font-style:normal;
}
.block-table div{
    position:relative;
    width:calc(50% - 20px);
    margin:10px;
    margin-top:20px;
    float:left;
    text-align:justify;
    z-index:10;
}
#block_green {
    position: relative;
    text-align: center;
    padding: 12px;
    height:auto;
    margin-top:60px;
    margin-bottom:60px;
} 
#block_green:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index:1;
    background: #156952;
    box-shadow:0px 0px 10px rgba(0,0,0,0.8);
    transform: skew(0deg, 3deg);
}
#block_green:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index:0;
    background: #298169; 
    transform: skew(0deg, -3deg);
}


.block-table2{
	margin-top:30px;
	max-width:100%;
	width:100%;
	height:auto;
	overflow:hidden;
}
.block-table2 div{
    position:relative;
    width:calc(50% - 40px);
    margin-left:10px;
    margin-top:20px;
    padding:10px;
    top:0;
    font-size:90%;
    float:left;
}
.phonenow{
    background-image:linear-gradient(to bottom,rgba(145,67,124)0%,rgba(114,28,91)100%);
    background-color:#670b4e;
    letter-spacing:1px;
    margin-bottom:30px;
    margin-top:20px;
    padding:5px 10px;
    border-radius:10px;
    color:#fff;
    margin-right:10px;
    overflow:hidden;

}
.bottompage{
    padding:10px 0px;
    color:#ffffff;
    width:100%;
    height:230px;
    margin:0 auto;
    position:relative;
    z-index:10;
    background: #156952;
}
.mybottompage{
    position:relative;
    width:100%;
    height:auto;
    left:0;
    z-index:0;
}
.mybottompage:before { content: ''; position: absolute; right: 0; bottom:-290px; height: 340px; width: 100%; background: #156952; transform: skew(0deg, -2deg); z-index:1; }
.mybottompage:after { content: ''; position: absolute; right: 0; bottom:-290px; height: 340px; width: 100%; background: #298169; transform: skew(0deg, 2deg); z-index:0; }

.announce{
    background-image:linear-gradient(to top,rgb(250,250,250)0%,rgb(220,220,220)100%);
    padding:10px;
    margin-top:40px;
    text-align:center;
    max-width:100%;
    border:1px solid #ddd;
}
.announce .textblock{
   background-color:#ffc600;
   color:#000;
   padding:10px;
}

#selyear{
    padding:10px 15px;
    margin-right:10px;
    background-color:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    -webkit-transition: background-color 500ms linear;
    -moz-transition: background-color 500ms linear;
    -o-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
    
}
#selyear:hover{
    background-color:#ddd;

}
.title{
    color:#670b4e;
    margin:0;
    margin-top:35px;
    margin-bottom:5px;
    font-family:"FTitle";
    font-size:100%;
    letter-spacing:3px;
    font-weight:bold;
    text-transform:capitalize;
}
.title2{
    color:#670b4e;
    margin:0;
    margin-top:10px;
    margin-bottom:5px;
    font-family:"FTitle";
    letter-spacing:3px;
    font-weight:bold;
    text-transform:capitalize;
}
#title2{
    color:#0a3c53;
    margin:0;
    margin-bottom:5px;
    font-family:"FTitle";
    text-align:center;
    letter-spacing:3px;
}
input[type='submit']{
    border:1px solid #fff;
    background-image:linear-gradient(to bottom,rgb(10,60,83)0%,rgba(25,94,111)100%);
    padding:10px 15px;
    color:#fff;
    font-weight:bold;
    border-radius:10px;
    box-shadow:1px 1px 5px rgba(0,0,0,0.8);
}
.next{
    background-color:rgba(17,124,128,.8);
    padding:25px;
    color:#fff;
    margin-top:20px;
    text-transform:Uppercase;
    position:relative;
    z-index:0;
    padding-bottom:80px;
}
.next a{
    padding:5px 15px;
    color:#fff;
    font-weight:bold;
    text-shadow:1px 1px 1px rgb(0,0,0);
    text-transform:Uppercase;
    background-image:linear-gradient(to bottom,rgb(100,100,100)0%,rgb(200,200,100)100%);
    border-radius:10px;
    border:1px solid #117c80;
    box-shadow:0px 0px 3px rgba(255,255,255,0.5);
    position:relative;
    right:10px;
    top:-5px;
    float:right;
    margin:0px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
.next a:hover{
     background-image:linear-gradient(to top,rgb(200,200,200)0%,rgb(220,220,100)100%);
     color:#000;

}
.spacetop{
    height:200px;
    position:relative;
    top:-90px;
}
.spacetop:before { content: ''; position: absolute; bottom: 0; right: 0; height: 100%; width: 100%; background: #1c6a62; transform: skew(0deg, -3deg); z-index:0; }
.spacetop:after { content: ''; position: absolute; bottom: 30px; right: 0; height: 100%; width: 100%; background: #2b837a; transform: skew(0deg, -3deg); z-index:1}

.footer{
    max-width:100%;
    padding:20px;
    text-align:center;
    color:#ccc;
    background-image:linear-gradient(to bottom,rgb(50,50,50)0%,rgb(40,40,40)100%);
    font-family:70%;
    letter-spacing:5px;
    position:relative;
    z-index:100;
    padding-bottom:40px;

}
.office{
    position:relative;
    width:40%;
    left:10px;
    top:0px;
    float:left;
    font-size:80%;
}
.map{
    position:relative;
    width:300px;
    right:10px;
    top:0px;
        float:right;
        text-align:right;
}
.destbottom{
    float:left;
    text-align:left;
    margin-left:20px;
    padding-top:10px;
}
.destbottom ul{
    margin:0px;
}
.destbottom li{
    margin-top:5px;
}
.destbottom ul li a{
    color:#ffffff;
    -webkit-transition: color 500ms linear;
    -moz-transition: color 500ms linear;
    -o-transition: color 500ms linear;
    -ms-transition: color 500ms linear;
    transition: color 500ms linear;
}
.destbottom ul li a:hover{
    color:#ff9900;
}
.activities{
    max-width:100%;
    overflow-x: hidden;
    overflow-y: hidden;
    height:300px;
    position:relative;
    margin:0 auto;
    line-height:normal;
}
.parallax{
    background:url(https://www.neomicruise.com/images/bg_activities.jpg) no-repeat center bottom fixed;
    height:300px;
    background-size:100%;
    background-repeat:no-repeat;
    transition: 0s linear;
    transition-property: background-position;
}
.activity{
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    position:relative;
    float:left;
    margin-right:4px;
    margin-left:4px;
    margin-top:30px;
    width:24%;
    max-height:210px;
    height:210px;
    text-align:center;
    color:#ff6600;
    text-shadow:1px 2px 2px rgba(0,0,0,0.8);
    background-repeat:no-repeat;
    overflow:hidden;
    border-radius:10px;
     background-size:100%;
     background-position:center;
    border:1px solid #fff;
}

 .activity:hover{
    background-size:120%;
     box-shadow:0px 0px 5px rgba(0,0,0,0.8);
     border:1px solid #ccc;
     -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
 .activity i{
     display:block;
     position:relative;
     bottom:0px;
     background-color:rgba(255,255,255,0.8);
     padding:5px;
 }
 .activity b{
     display:none;
     background-color:rgba(0,0,0,0.5);
     height:0%;
     opacity:0;
     max-width:100%;
     text-shadow:0px 1px 3px rgba(0,0,0,1);
     color:#fff;
     font-size:65%;
     padding:5px;
     font-family:"tahoma";
     letter-spacing:normal;
     overflow:hidden;
     font-weight:normal;
     font-style:normal;
     position:absolute;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
 }
.activity  b strong{
    color:#fff;
    font-weight:bold;
    font-size:110%;
}
 .activity:hover b{
     display:block;
     height:100%;
     opacity:1;
 }
.juduldes{
    display:block;
    padding:10px;
}
.juduldes .judul{
    text-align:center;
    padding:15px;
    color:#000;
    display:block;
    margin:0;
    font-family:"logoFN";
    font-size:120%;
    letter-spacing:5px;
    cursor:pointer;
    font-weight:bold;
    background-image:linear-gradient(to bottom,#ccc 0%,#ddd 100%);
         -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.juduldes .judul:hover{
    color:#670b4e;
}
.juduldes .judul::after{
  position: absolute;
  width: 8px;
  height: 8px;
  margin-left:20px;
  margin-top:5px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  content: "";
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.juduldes .judul:hover::after{
  margin-top:10px;
}
.juduldes #sembunyi{
    padding:10px;
    text-align:justify;
    font-weight:normal;
    color:#333;
     display:block;
     position:relative;
     overflow:hidden;
    font-style:normal;

}
.juduldes .desshow{
    display:block;
    overflow:hidden;
    line-height:25px;
    height:100%;
    transform:scaleY(1);
    transform-origin:top; 
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

.juduldes .deshide{
    display:block;
    overflow:hidden;
    transform:scaleY(0);
    line-height:0px;
    height:0;
    transform-origin:top; 
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

.juduldes .desshow2{
    display:block;
    overflow:hidden;
    height:100%;
    transform:scaleY(1);
    transform-origin:top; 
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.mailgrid{
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: auto auto;
}
#banner{
    display: grid;
    grid-column-gap: 10px;
    grid-template-columns: auto auto;
}
#banner a{
    display:block;
}
#banner a img{
    width:100%;
}
.juduldes .deshide2{
    display:none;
    height:0;
    overflow:hidden;
    transform:scaleY(0);
    transform-origin:top; 
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.tombol{
    position:relative;
    padding: 10px 30px;
    font-size:90%;
    background-image:linear-gradient(to bottom,#0f33aa 0%,#1b48dc 100%);
    color:#fff;
    border:0px;
    bottom:10px;
    text-shadow:1px 1px 1px rgb(0,0,0);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.tombol:hover{
    background-image:linear-gradient(to top,#0f33aa 0%,#1b48dc 100%);
    color:#ff0;
}

.map iframe{
    width:300px;
}
.form_contact{
    display:block;
    margin-top:20px;
}
.form_contact b{
    display:block;
    width:100%;
    background-image:linear-gradient(to bottom,#cdcdcd 0%,#dddddd 100%);
    padding:10px;
}
.form_contact input[type="text"], .form_contact input[type="tel"], .form_contact input[type="email"], .form_contact textarea{
    display:block;
    width:100%;
    padding:10px;
    max-width:100%;
    font-size:100%;
    color:#666;
}

.form_submit{
    display:block;
    margin-top:20px;
    text-align:center;
}
.form_submit .tombol{
    border:1px solid #999;
    padding:10px 0px;
    margin:0 auto;
    border-radius:10px;
    background-image:none;
    position:relative;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}

.form_submit input[type="submit"]{
    position:relative;
    padding: 10px 20px;
    font-size:100%;
    background-image:linear-gradient(to bottom,#0f33aa 0%,#1b48dc 100%);
    color:#fff;
    border:0px;
    text-shadow:1px 1px 1px rgb(0,0,0);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.form_submit input[type="submit"]:hover{
    background-image:linear-gradient(to top,#0f33aa 0%,#1b48dc 100%);
    color:#ff0;
}
.form_submit #tombol:disabled{
    background-image:linear-gradient(to top,#ccc 0%,#cdcdcd 100%);
    color:#999;
}
.form_submit .tombol:hover{
    padding:15px;
}
.error_input{
    border:1px solid #ff0000;
    background-color:#ffecec;
}
#notifku{
    width:100%;
    height:100%;
    position:fixed;
    top:0px;
    z-index:999;
    background-color:rgba(0,0,0,0.8);
}
.tampilNotif1{
    display:block;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.tutupNotif{
    display:none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
#sukses{
    text-align:center;
    padding:10px;
    margin:0 auto;
    width: 300px;
    height:250px;
    margin-top:200px;
    background-color:#bfebb3;
    border:1px solid #2a6a19;
    border-radius:10px;
    color:#000;
    font-size:100%;
}
#gagal{
    text-align:center;
    padding:10px;
    margin:0 auto;
    width: 300px;
    height:250px;
    margin-top:200px;
    background-color:#f2cccc;
    border:1px solid #a62424;
    border-radius:10px;
    color:#000;
    font-size:100%;
}
.tutupkan{
    display:none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.tampilkan{
    display:block;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.content2 #gridme{
    width:calc(50% - 40px);
    padding:5px;
    margin:10px;
    float:left;
    margin-bottom:20px;
}
.content2 .gridme{
    display: grid;
    margin-bottom: 30px;
    grid-column-gap: 30px;
    grid-template-columns: auto auto;
}
.gridme2{
	width:100%;
    display: grid;
    grid-column-gap:30px;
    grid-template-columns:auto auto;
    margin-top:10px;
}
.gridme3{
	width:100%;
    display: grid;
    grid-column-gap:30px;
    grid-template-columns:30% 30% 30%;
    margin-top:10px;
}
.trip_price{
	width:23%;
	display:inline-table;
	background-position:right bottom;
	background-repeat:no-repeat;
	background-size:80%;
	text-shadow:0px 0px 3px rgba(255,255,255,1);
	margin:10px;
	height:auto;
	overflow:hidden;
	font-size:90%;
	text-align:center;
	border:1px solid #ddd;
	border-radius:10px;
	color:#000;
	background-color:#e6f0f9;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.trip_price:hover{
		box-shadow:1px 1px 5px rgba(0,0,0,.8);
		background-size:100%;

}
.trip_price strong{
	display:block;
	text-shadow:none;
	background-color:#4e7c96;
	color:#fff;
	padding:10px;
	font-size:90%;
	font-weight:bold;
}
.trip_price b{
	color:#881059;
}
.trip_price .price b{
	display:block;
	font-size:200%;
	color:#039;
}
.trip_price button{
	display:block;
	width:100%;
	margin-top:20px;
	background-color:#06C;
	color:#FFF;
	font-weight:bold;
	padding:10px;
	border:1px solid #06C;
	cursor:pointer;
}
#wa-chat{
    position:fixed;
    right:5px;
    background:#0dc143;
    padding:10px;
    bottom:5px;
    margin-bottom:0px;
    z-index:400;
    border:2px solid #fff;
    box-shadow:0px 0px 3px rgba(0,0,0,0.8);
    border-radius:10px;
    opacity:0.3;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
#wa-chat:hover{
    opacity:1;
}
#wa-chat i{
    color:#fff;
    font-size:250%;
    line-height:normal;
    margin:0px;
    margin-top:-3px;
    padding-left:3px;
}
#zoomimage > a > img{
    cursor:pointer;
    border:3px solid #fff;
    box-shadow:1px 1px 3px rgba(0,0,0,0.8);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
#zoomimage > a > img:hover{
    cursor:pointer;
    box-shadow:0px 0px 3px rgba(0,0,0,0.8);
}
#zoomimage > a{
    margin:10px;
}
#zoomimage > a[data-value]::before{
    content:attr(data-value);
    position:absolute;
    margin-left:3px;
    margin-top:3px;
    border-radius:0px 0px 10px 0px;
    z-index:300;
    background:rgba(0,0,0,0.5);
    color:#fff;
    padding:10px;
}
#myzoom{
    position:fixed;
    overflow:hidden;
    margin:0px auto;
    top: 50%; right: 50%;
    transform: translate(50%,-50%);
    max-width:1000px;
    background:#fff;
    border-radius:10px;
    max-height:99%;
    max-width:99%;
    z-index:999;
    border:5px inset #fff;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
#myzoom > img{
    border:0px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.zoomme{
    display:block;
    border:1px solid #333;
    box-shadow:1px 2px 5px rgba(0,0,0,0.8);
    opacity:1;
}
.unzoom{
    opacity:0;
    display:none;
    border:0px;
    box-shadow:none;
}

#mypopup{
	position:fixed;
	transform:translate(-50%,-50%);
	left:50%;
	top:50%;
	padding:0px;
	margin:0px;
	overflow:hidden;
	max-height:100%;
	max-width:100%;
	background-color:rgba(0,0,0,.5);
	z-index:9999;
	font-family: 'MyFont';
	color:#333;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
#mypopup #tampilpopup{
	transform:translate(-50%,-50%);
	left:50%;
	top:50%;
	font-family: 'MyFont';
	width:50%;
	max-height:100%;
	overflow:auto;
	max-width:50%;
	background-color:#FFF;
	color:#333;
	padding:20px;
	box-shadow:1px 2px 5px rgba(0,0,0,.8);
	position:relative;
	border-radius:10px;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
#mypopup #close{
    right:0px;
    top:0px;
	position:absolute;
	font-size:200%;
	color:#F00;
	text-align:center;
	font-weight:bold;
	cursor:pointer;
}

.hide{
    opacity:0;
	height:0%;
	width:0%;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}
.show{
    opacity:1;
	width:100%;
	height:100%;
	-webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    transition: all 500ms ease;
}

.question{
    display:block;
    padding:10px;
    background:#fff;
    position:relative;
    margin-top:20px;
    border:1px solid #999;
}
.question judul{
    display:block;
    color:#000;
    font-size:20px;
    font-weight:bold;
    cursor:pointer;
}
.answer{
    display:block;
    margin:0 auto;
    padding:10px;
    position:relative;
    background:#fff;
    color:#000;
    border-top:0px;
    margin-top:20px;
    margin-bottom:20px;
}
@media screen and (max-width: 1000px) {
body{font-size:200%; padding:5px; line-height:40px;}
input[type="text"]{width:100%; display:block; font-size:150%;}
.content,.content2{padding:10px; max-width:100%; margin:0 auto; left:0px;}
.block-table div,.block-table2 div{
    width:100%;
    display:block;
    max-width:100%;
}
.juduldes .desshow{
    line-height:40px;
}
.spacetop{
    background-color:transparent;
    margin-top:180px;
}
.makeclose{
    height:0%;
    width:0%;
    background-color:transparent;
    -webkit-transition: height 500ms linear;
    -moz-transition: height 500ms linear;
    -o-transition: height 500ms linear;
    -ms-transition: height 500ms linear;
    transition: height 500ms linear;
}
.makeshow{
    height:100%;
    width:100%;
    background-color:transparent;
    -webkit-transition: height 500ms linear;
    -moz-transition: height 500ms linear;
    -o-transition: height 500ms linear;
    -ms-transition: height 500ms linear;
    transition: height 500ms linear;
}
.headimage,.makeshow{
    left:5px;
        background-color:transparent;
}
.trip_price{
	width:100%;
	display:block;
	margin:0px;
	margin-top:20px;
	background-position:right bottom;
	background-repeat:no-repeat;
	background-size:80%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
.trip_price:hover{
		box-shadow:1px 1px 5px rgba(0,0,0,.8);
		background-size:100%;
		border:none;

}
.content2 .gridme{
    display: block;
}
.trip_price strong{
	display:block;
	text-shadow:none;
	background-color:#4e7c96;
	color:#fff;
	padding:10px;
	font-size:90%;
	font-weight:bold;
}
.trip_price b{
	color:#881059;
}
.trip_price .price b{
	display:block;
	font-size:150%;
	color:#039;
}
.trip_price button{
	display:block;
	width:100%;
	margin-top:20px;
	background-color:#06C;
	color:#FFF;
	font-weight:bold;
	font-size:150%;
	padding:10px;
	border:1px solid #06C;
	cursor:pointer;
}
.content2 #gridme{
    display:block;
    margin-top:30px;
    float:none;
    width:auto;
}
.gridme3{
	width:100%;
    display: block;
    grid-column-gap:30px;
    grid-template-columns:auto;
    margin-top:10px;
}
#animated2{
    left:5px;
}
.animated{
    max-width:100%;
}
.parallax,.activities{
    height:auto;
    overflow:auto;
    background-image:linear-gradient(to bottom,#fff 0%, #cdcdcd 100%);
}
.activity{
width:100%;
display:block;
float:none;
border-radius:0px;
background-position:center;
opacity:0.8;
}
.activity:hover{
   opacity:1;
    -webkit-animation-name: none; /* Safari 4.0 - 8.0 */
    animation-name: none;
}

.welcome1,.welcome2{
	width:100%;
	position:relative;
	margin:0 auto;
	left:0;
	color:#670b4e;
	text-shadow:0px 0px 2px rgba(255,255,255,1);
	top:0px;
	z-index:0;
	text-align:center;
transform:none;
}
.welcome1{
    color:#670b4e;
}
.welcome2{
color:#670b4e;
}
.next{
    text-align:center;
}
.next a{
float:none;
top:0px;
margin-top:20px;
display:block;
text-align:center;
    
}

#banner{
    display: block;
    margin-bottom:20px;
    padding:10px;
}
#banner a{
    display:block;
    width:100%;
}
#banner a img{
    width:100%;
}

.menuku{
    position:absolute;
    display:block;
    width:100%;
    top:0px;
    background-color:#2b837a;
    left:5px;
}
.spacetop{
    height:5px;
}
.office,.map,.destbottom{
    float:none;
    position:relative;
    text-align:center;
    display:block;
    width:100%;
}
.bottompage{
    height:auto;
}
.headimage{
    background-color:transparent;
    height:100%;
}
.destbottom{
    margin:0px;
}
.destbottom ul li{
    list-style:none;
}
.map iframe{
    width:90%;
}
.block-table2, .block-table2 div{
    width:100%;
    max-width:100%;
    display:block;
    padding:0px;
    float:none;
    position:relative;
    left:0px;
}
.content2 img{
    max-width:100%;
    height:auto;
}
.spacetop::before{
    display:none;
}
.spacetop:after{
    display:none;
}
#wa-chat{
    opacity:1;
}
.mailgrid{
    display: block;
}
.bottompage div #sosicon{
    width:50%;
    margin:0px auto;
    display: grid;
    grid-column-gap:0px;
    grid-template-columns:100px 100px 100px 100px;
    margin-top:10px;
    text-align:center;
}

.question judul{
    font-size:2vh;
}
.answer{
        font-size:2vh;
}
}