/* HEADER */
/**************************/
.hero-banner {
  background-image: url(hero-banner-img.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 26rem;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1102265a;
  
    /* Because we want header to be sticky later */
    height: 9.6rem;
    padding: 0 4.8rem;
    position: relative;
  }
  
  .logo {
    height: 2.2rem;
    text-decoration: none;
  }

  .logo:link,
  .logo:visited {
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    font-size: 2.2rem;
    font-family: "Oswald";
  }

  .andaman {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  
  /**************************/
  /* NAVIGATION */
  /**************************/
  
  .main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4.8rem;
    font-weight: bold;
  }
  
  .main-nav-link:link,
  .main-nav-link:visited {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.8rem;
    transition: all 0.3s;
  }
  
  .main-nav-link:hover,
  .main-nav-link:active {
    color: #311557;
    font-size: 2rem;
    font-weight: bold;
  }
  
  .main-nav-link.nav-cta:link,
  .main-nav-link.nav-cta:visited {
    padding: 1.2rem 2.4rem;
    border-radius: 9px;
    color: #fff;
    background-color: #311557;
  }
  
  .main-nav-link.nav-cta:hover,
  .main-nav-link.nav-cta:active {
    background-color: #3e0a82;
  }
  
  /* MOBILE */
  .btn-mobile-nav {
    border: none;
    background-color: none;
    cursor: pointer;    
    display: none;
}

.icon-mobile-nav {
    height: 4.8rem;
    width: 4.8rem;
    color: #333;
}

.icon-mobile-nav[name="close-outline"] {
    display: none;
}
  
  /* STICKY NAVIGATION */
  .sticky .header {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 8rem;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #1e053c;
    z-index: 999;
    box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
  }
  
  .sticky .section-hero {
    margin-top: 9.6rem;
  }
  
  /**************************/
  /* HERO SECTION */
  /**************************/
  
  .section-hero {
    /* background-color: #cebce7; */
    padding: 4.8rem 0 9.6rem 0;
    margin-bottom: 6rem;
  }
  
  .hero {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.6rem;
    align-items: center;
  }
  
  .hero-description {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 4.8rem;
    color: #fff;
    padding: 6%;
    background-color: #0000009c;
  }
  
  .hero-img {
    width: 100%;
    border-radius: 2rem;
    position: relative;
  }

  .hero-button {
    display: flex;
    flex-wrap: wrap;
  }
  
  .whatsapp {
    background-color: green;
    color: white;
    padding: 1.2rem;
    border-radius: 1.2rem;
    text-decoration: none;
    font-size: 2.2rem;
    margin-right: 1.2rem;
  }

  .whatsapp:link,
  .whatsapp:visited {
    background-color: green;
    color: white;
    padding: 1.2rem;
    border-radius: 1.2rem;
    text-decoration: none;
    font-size: 2.2rem;
    margin-right: 1.2rem;
  }

  .whatsapp:hover,
  .whatsapp:active {
    background-color: #fff;
    color: green;
    padding: 1.2rem;
    border-radius: 1.2rem;
    text-decoration: none;
    font-size: 2.2rem;
    margin-right: 1.2rem;
    border: 1rem solid green;
  }

  .maklumat {
    padding: 1.2rem;
    background-color: #fff;
    font-size: 2.2rem;
    color: #1C053A;
    border-radius: 1.2rem;
    text-decoration: none;
    align-self: center;
  }

  .maklumat:link,
  .maklumat:visited {
    padding: 1.2rem;
    background-color: #fff;
    font-size: 2.2rem;
    color: #1C053A;
    border-radius: 1.2rem;
    text-decoration: none;
  }

  .maklumat:hover,
  .maklumat:active {
    padding: 1.2rem;
    background-color: #1C053A;
    font-size: 2.2rem;
    color: #fff;
    border-radius: 1.2rem;
    text-decoration: none;
  }
  

  /* Section Pakej */
.section-pakej {
  padding: 2rem 0 2rem 0;
  margin-bottom: 6rem;
}
.heading-pakej {
  text-align: center;
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 5rem;
  color: #1C053A;
}

.div-pakej {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 5rem;
}

.pakej_pertama, .pakej_kedua, .pakej_ketiga {
  border: 6px double #1C053A;
  padding: 4rem 8rem;
  color: #311557;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.pakej-subheading {
  font-size: 3.6rem;
  text-align: center;
}

.pakej-list {
  font-size: 2.2rem;
  margin: 1.2rem;
}

.pakej-list li {
  margin: 1.6rem;
}

.bold {
  font-weight: bold;
}

/* Section Testimoni */
.testimoni-heading {
  text-align: center;
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 5rem;
  color: #1C053A;
}

#testimonial_area {
	padding: 6% 0;
  margin-bottom: 6rem;
}
.box-area {
	padding: 10px;
	position: relative;
	display: block;
	background: #fff;
	color: #000;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	margin: 40px 0;
}

.box-area .content {
	color: #262626;
}


#testimonial_area .owl-nav {
	position: absolute;
	top: 50%;
	width: 100%;
}
#testimonial_area .owl-prev, #testimonial_area .owl-next {
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #311557;
	border-radius: 50%;
	text-align: center;
	background: #fff;
	position: absolute;
}
#testimonial_area .owl-prev {
	left: -60px;
	top: -30px;
}
#testimonial_area .owl-next {
	right: -60px;
	top: -30px;
}
@media only screen and (max-width: 991px) {
	.owl-nav {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.box-area {
		text-align: center;
	}
	.owl-nav {
		display: none;
	}
}

/* Section Servis */
.servis {
  padding-bottom: 6rem;
  margin-bottom: 6rem;
}

.servis-heading {
  text-align: center;
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 5rem;
  color: #1C053A;
}

.div-servis {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.div-servis-child {
  width: 30rem;
  align-items: center;
  border: 2px solid #1C053A;
  padding: 1rem;
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.servis-img {
  width: 28rem;
}

.servis-child-head {
  font-size: 1.8rem;
  color: #000;
}

.servis-child-text {
  font-size: 1.6rem;
  color: #1C053A;
  text-align: left;
  justify-content: center;
  align-items: center;
}

/* Section Location */
.section-location {
  margin-bottom: 5rem;
}

.heading-location {
  text-align: center;
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 5rem;
  color: #1C053A;
}

.location-map {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.map {
  text-decoration: none;
  color: #fff;
  font-size: 3rem;
  background-color: #1e053c;
  padding: 2rem;
  border-radius: 2rem;
}

.map-link:link,
.map-link:visited {
  text-decoration: none;
  color: #fff;
}

/* Footer */
.section-footer {
  overflow: hidden;
  text-align: center;
}

.footer {
  margin: 1% 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}


.logo-footer:link,
.logo-footer:visited {
  text-decoration: none;
  color: #1C053A;
  font-size: 2rem;
  font-family: "Oswald";
}

.logo-footer:active,
.logo-footer:hover {
  text-decoration: none;
  color: #1C053A;
  font-family: "Oswald";
}

.logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sm-logo {
  display: inline-block;
  height: 2.4rem;
  width: 2.4rem;
  padding-left: 1rem;
  padding-right: 1rem;
  
}

.sm-logo-link:visited,
.sm-logo-link:link {
  text-decoration: none;
  color: #1C053A;
}

.email-col {
  font-size: 1.6rem;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #1C053A;
}

.motto-col {
  font-size: 1.6rem;
  color: #1C053A;
}

.other-pages {
  font-size: 120%;
  width: 100%;
  background-color: #cebce7;
  padding: 0 2% 2% 2%;
  border: 1px solid #000;
}

/* Photos Page */
.photo {
  background-color: #cebce7;
  padding: 2%;
}

.back {
  display: inline-block;
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #1C053A;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  text-decoration: none;
}


.back:link,
.back:visited {
  display: inline-block;
  padding: 1rem;
  margin-bottom: 2rem;
  background-color: #1C053A;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: all 1s;
}

.back:hover,
.back:active {
  display: inline-block;
  padding: 1.2rem;
  margin-bottom: 2rem;
  background-color: #1C053A;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.div-photo {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-evenly;
  gap: 1rem;
}

.photo-img {
  width: 30rem;
}



