*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
 
html{
	scroll-behavior: smooth;
}
body{
  min-height: 100vh;
}
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #14a6c9;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo img{
  width: 10%;
  float: left;
}
.navbar .logo a{
  margin-left: 20px;
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }
 
nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #fff;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #3E8DA8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #fff;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  font-family: ink fee;
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}

/* Homepages start*/
.homepage{
  position: relative;
  height: 50vh;
  width: 100%;
  background: #14a6c961; 
  background-position: center;
  background-size: cover;
  
}

.homepage::before{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #14a6c961; 
}

.homepage .text{
  position: relative;
  color: #fff;
  text-align: center;
  z-index: 98;
  padding-top: 30px;
  margin-bottom: 50px;
}
.homepage .text h1{
  font-size: 3.5rem;
  font-weight: 900;
  margin-left: 15px;
  margin-bottom: 10px;
  text-align: center;
  }
.homepage a{
  padding: 15px 40px;
  border:none;
  outline: none;
  color: #fff;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  z-index: 77;
  border-radius: 12px;
}

.homepage a::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #333;
  left: 0;
  top: 0;
  border-radius: 10px;
}

.homepage a::before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffB00, #48ff00, #00ffD5, #002BFF, #ff00C8, #ff0000 );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 600%;
  z-index: -1;
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  border-radius: 10px;
  filter: blur(8px);
  animation: glowing 20s linear infinite;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
  opacity: 1;
}

@keyframes glowing{
  0% {background-position: 0 0;}
  50%{background-position: 400% 0;}
  100% {background-position: 0 0;}
}


.homepage a:hover::after{
 color: #fff;
  background: transparent;
  box-shadow: rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px #14a6c9, 0 0 10px #14a6c9;}


/* newsletter */

.newsletter .container{
	width: 100%;
}

.newsletter h1{
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5cm;
  color: skyblue;
  margin-top: 50px;
  padding-bottom: 10px;
}

.newsletter .container h2{
  font-family: sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding-top:50px;
  text-align: center;

}
.newsletter .container p{
  width: 60%;
  font-family: 'Poppins', sans-serif;
  font-size: 100%;
  color:#fff;
  line-height: 25px;
  padding: 10px 20px;
  text-align: justify;
  margin-top: 50px;
  margin-left: 270px;
  }

.newsletter .container span{
  font-family: sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-top:20px;
  color: #fff;
  text-align: center;

}

/*responsive card end*/
.newsletter .box a{
  width: 85%;
  color: #fff;
  text-decoration: none;
  text-align: center;
  background: #41c541;
  padding: 10px 30px;
  margin-left: 80px;
  border-radius: 5px;
  border: 2px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.3);
  font-size: 20px;
  transition: 0.3s;
  z-index: 1;
}
.newsletter a:hover{
  color: #41c541;
  background: rgb(255, 255, 255, 0.3);
}

.newsletter img {
  height: 70vh;
  width: 100%;
  margin-top: 10px;
  padding: 3px 3px;
  background: #fff;
}


.about, .service
  {
  padding-bottom: 100px;
}
.about p{
  color: #666;
  word-spacing: 2px;
  line-height: 25px;
}
.service {
  background-color: #f9f9f9;
}
.box{
  
  color: #1BB0A7;
}
.box:after{
  content: '';
  display: block;
  clear: both;
}
.box .col-4 {
  width: 20%;
  box-sizing: border-box;
  background: #fff;
  float: left;
  margin-left: 50px;
  text-wrap: wrap;
}
.icon {
  width: 70px;
  height: 70px;
  border: 1px solid;
  border-radius: 50px;
  text-align: center;
  line-height: 70px;
  font-size: 20px;
  margin: 0 auto;
}
.box .col-4 h4{
  font-family: sans-serif;
  font-size: 100%;
  margin: 25px 0;
  color: #1BB0A7;
  text-align: center;
}
.box .col-4 p{
  font-family: sans-serif;
  font-size: 100%;
  color: #1BB0A7;
  line-height: 30px;
  text-align: justify;
}
/* section boxes end */

/* Section boxs start */
#boxs .box {
  width: 100%;
  padding: 0 0 20px;
  justify-content: space-between;
  background: #fff;
}

#boxs .box h2{
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  padding: 20px 0;
  color: #1BB0A7;
  margin-top: 50px;
  margin-bottom: 50px;
}

/* Day tours start */
section{
  padding-top: 10px;
  float: left;
}
.section-title{
  text-align: center;
}
.section-title h1{
  font-size: 2rem;
  padding-top: 20px;
  margin-bottom: 50px;
  color: #333333e3;
}
.section-title p{
  margin-top: 50px;
  font-size: 25px;
  color: #fff;
  text-align:center;
  background: linear-gradient(to bottom, #19adb5, #19adb5);
  padding: 10px 10px;
  width: 100%;
}

section .cards{
  margin-top: 50px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: 80px;
  
}
section .card {
  width: calc(100% / 3 - 70px);
  text-align: center;
  list-style: none;
  background: #fff;
  padding: 10px 10px;
  border-radius: 5px;
  box-shadow: 0 7px 7px grey;
  margin-left: 35px;
  margin-bottom: 40px;
  float: left;
 
}
section .card img{
  height: 240px;
  width: 100%;
  padding-top: 0;
  border-radius: 0px 0px 0 0;
  
}
section .card h1{
  font-size: 20px;
  color: #f1750b;
  margin-top: 20px;
  text-align: left;
  margin-bottom: 20px;
}
section .card p{
  margin-bottom: 20px;
  line-height: 25px;
  font-family: sans-serif;
  font-size:15px;
  text-align: justify;
  color: #333333e3;
  
  }
section .card  a{
  font-family: sans-serif;
  text-align: center;
  font-size: 15px;
  color: #fff;
  float: right;
  padding: 5px 10px;
  margin-top: -10px;
  margin-right: 10px;
  border-radius: 3px;
  background-color:#11bce5;
  text-decoration: none;
  border-bottom: 3px solid #14a6c9;
  text-shadow: 0px 0px #f3c129f2;
}
section .card a:hover{
  color: #11bce5;
  background: white;
  box-shadow: 0 0 10px #11bce5, 0 0 10px #f3c129f2;
  transition-delay: 0s; 
  padding: 5px 5px 5px 5px;
  margin-left: 10px;
}
/* Day tours end */

/* About */
.about .company-info{
  margin-top: 30px;

}
.about .row{
  margin: 0 10px;
}
.about h2{
  margin: 100px;
}
.about h3{
  font-size: 25px;
  margin: 30px 0 10px;
  color: #333333e3;
}
.about ul{
  padding-left:20px;
}

/* Contact */

.contact .row{
  justify-content: space-between;
  margin: 60px 50px 90px;

} 

.contact .row .col{
  padding: 0 10px;
  width: calc(100% / 2 - 50px);
  float: left;

}
.contact .row .col p{
  color: #7a7a7a;
  margin-bottom: 10px;
}
.contact .row .col p i{
  margin-right: 10px;
}
.contact form input{
  width: 100%;
  height: 45px;
  margin-bottom: 20px;
  padding: 0 15px;
  border: 1px solid #bfbfbf;
  outline: none;

}

.contact form textarea{
  outline: none;
  resize: none;
  padding: 15px;
  width: 100%;
  height: 150px;
  border: 1px solid #bfbfbf;
}
.contact form button{
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 17px;
  color: #fff;
  border: none;
  background: #333;
  transition: 0.2s;
  cursor: pointer;
}
.contact form select{
  width: 100%;
  height: 45px;
  margin-bottom: 20px;
  padding: 0 15px;
  border: 1px solid #bfbfbf;
  outline: none;
}
.contact form button:hover{
  background: #525252;
}

/* media icon */
.media-icons{
  margin-top: 50px;
  text-align: center;
  
}
.media-icons h1{
  margin-top: 50px;
  color: #333333e3;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 700;
}
.media-icons li{
  display: inline-block;
  text-align: center;
  padding-right: 10px;
  
}
.media-icons i{
  color: #333333e3;
  font-size: 25px;
}
.media-icons i:hover{
  color: #f18930;
} 
/* akhir dari media icon */

/* payment-icon end*/
.payment-icons h1{
  color: #333333e3;
  text-align: left;
  margin-top: 50px;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 700;
}
.payment-icons img{
  width: 30%;
  margin-left: 20px;
  text-align: center;
  border-radius: 5px 5px;
}
/* payment-icon end*/

/* footer */
.footer{
  background: #333;
  padding: 20px 0;
  margin-top: 50px;
}
.footer span{
  color: #fff;
}

#menu-toggler, #hamburger-btn{
  display: none;
}

.bg-loader{
  background-color: #eee;
  position: fixed;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bg-loader .loader{
  width: 100px;
  height: 100px;
  border: 3px solid #fff;
  border-radius: 50%;
  border-top-color:#1BB0A7;
  border-right-color:#1BB0A7;
  border-bottom-color:#1BB0A7;
  animation: puterin .5s linear infinite;
}

@keyframes puterin{
  100%{
    transform: rotate(360deg);
  }
}

@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }
   nav .navbar .logo img{
    height: 15%;
    width: 15%;
    }
  nav .navbar .logo a{
    float: left;
    font-size: 25px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #3E8DA8;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;
 
}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
 
  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }

.homepage .text h1{
  font-size: 1.7rem;
  margin-top: 65px;
}
.homepage p{
  font-size: 20px;

}
.newsletter .box p{
  width: 100%;
  margin-left: 0px;
}
.box .col-4 {
  width: 100%;
  margin-left: 0px;
  padding-left: 20px;
  padding-right: 20px;
  }
.box .col-4 p{
  padding-bottom: 50px;
}
.newsletter h1{
  margin-top: -10px;
}
.homepage{
  margin-bottom: 50px;
}
section .card {
  width: 115%;
  margin-left: -40px;
   
}
.contact .row .col{
  padding: 0 10px;
  width: 125%;
  margin-bottom: 50px;
}
.payment-icons h1{
  font-size: 25;
  margin-bottom: 0px;
}
.payment-icons img{
  width: 80%;
}
.newsletter img {
  height: 37vh;
  width: 100%;
}
.newsletter .container p{
 margin-left: 0px;
 width: 100%;
  }
}

@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}