* {
    margin: 0;
    padding: 0;
	font-family: 'DM Sans', sans-serif;
}

body{
    height: 100vh; 
    background-color: #ffffff;
}

.services{
    background-color: #4787ce;
}

.services h1, .services p, .services a, .services ul li{
    color: #ffffff;
}

.service a:hover{
    color: #000000;
}

.services img{
    border-radius:20px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    width: 28%;
    padding: 10px;
    margin: 10px;
}

.services img:hover {
    scale: 1.1;
}

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

a:hover{
    color: #4787ce;
}

.previous {
  background-color: #f3f3f3;
  color: black;
  font-size: 28px;
  font-weight: bold;
  margin-right: 60px;
  padding: 0px 10px;
  border-radius:10px;
}

.nextpageok {
    background-color: #cee5ff;
    color: black;
    font-size: 28px;
    font-weight: bold;
    padding: 0px 15px;
	border-radius:10px;
}

/* HEADER*/
header{
    position: fixed;
    padding: 2vh 20vh;
    width: 100%;
    box-sizing: border-box;
    background-color: #f3f3f3;
    z-index: 101;
    box-shadow: 0 24px 24px 0 rgba(0,0,0,.1);
}

.navbar{
    height: 7vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: bold 16px sans-serif;
}

.navbar .logo{
    width:15%
}

.navbar .links {
    display: flex;
    gap: 2rem;
    list-style: none;
    padding: 14px 16px;
}

.navbar img {
    width:80%
}
.navbar .toggle_btn{
    color: rgb(0, 0, 0);
    font-size: 32px;
    cursor: pointer;
    display: none;
}

.action_btn{
    background-color: #4787ce;
    color: white;
    margin-left: 0px;
	margin-right: 50px;
	padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius:10px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: scale 0.2 ease;
    text-align: left;
    
}

.action_btn:hover {
    scale: 1.05;
    color: rgb(0, 0, 0);
}

.action_btn:active {
    scale: 0.95;
}



/*DROPDOWN MENU HP*/
.dropdown_menu{
    display: none;
    position: relative;
    height: 0;
    background: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open{
    width: 85%;
	padding-left: 10px;
	margin-top: 20px;
	margin-bottom: 0px;
    height: 1000px;
}

.dropdown_menu ul li{
     list-style: none;
}

.dropdown_menu ul li .dropdown_phone{
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font: bold 24px sans-serif;
}
   
.dropdown_menu ul li a{
    padding: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: justify;
    font-size: 22px;
    font-weight: bold;
}
/*table*/

tr, td{
    border-bottom: 2px solid #4787ce;
}

th{
    background-color: #4787ce;
}

table, tr, td, th {
  padding: 10px;
  text-align: left;
  font: 'DM Sans', 16px;
  border-collapse: collapse;
}

/*DROPDOWN MENU BGSCREEN*/
.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: bold 16px;  
  border: none;
  outline: none;
  color: black;
  /*padding: 14px 16px;*/
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropbtn:hover {
  background-color: #cee5ff;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f3f3f3;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #cee5ff;
}

.dropdown_phone:hover .dropdown-content,
.dropdown:hover .dropdown-content {
  display: block;
}

/*SLIDER FOTO*/
/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
}


/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}



/*footer*/

footer {
    position: relative;
    bottom: 0;
}

.footer .footone{
    background-color: #eeeeee;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    font: bold 16px sans-serif;
    padding: 30px 60px 20px 30px;
    margin-top: 20px;
}

.footer .foottwo{
    background-color: #f3f3f3;
    box-sizing: border-box;
    width: 100%;
}

.footzero .marquee {
  background-color: #4787ce;
  box-sizing: border-box;
  font-size: 28px;
  font-weight: bold;
  width: 100%;
  height: 40px;
  overflow-x: hidden;
}

.footzero .marquee .track {
  white-space: nowrap;
  will-change: transform;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-80%); }
}

.footer .footer-left,
.footer .footer-center{
    display: inline-block;
    vertical-align: top;
    margin: 20px;
}

.footer .footer-left{
    width: 40%;
}

.footer .footer-left img{
    width: 40%;
    vertical-align: middle;
    margin-bottom: 10px;
}

.footer .footer-copyright {
    text-align: center;
    color: #0c0c0c;
    font-size: 16px;
    font-weight: normal;
    font-weight: bold;
}

.footer .footer-about {
    line-height: 20px;
    color: #0f0f0f;
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
}

.footer .footer-about span {
    display: block;
    color: #333333;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer .footer-center {
    width: 50%;
}

.footer .footer-center i {
    background-color: #4787ce;
    color: #ffffff;
    font-size: 16px;
    width: 38px;
    height: 38px;
    border-radius: 25%;
    text-align: center;
    line-height: 36px;
    margin: 15px;
    vertical-align: middle;
}

.footer .footer-center i.fa-envelope {
    font-size: 17px;
    line-height: 38px;
}

.footer .footer-center p {
    display: inline-block;
    color: #0c0c0c;
    vertical-align: middle;
    margin: 0px;
}

.footer .footer-center p span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    line-height: 2;
}

.footer .footer-center p a {
    color: #333333;
    text-decoration: none;
}

.labelweb{
	padding-top: 13vh;
    padding-bottom: 15px;
	background-color: #cee5ff;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.3); /* Ubah transparansi sesuai kebutuhan */
  color: white;
  font-size: 32px;
  padding: 10px;
  border: none;
  cursor: pointer;
  z-index: 2; /* Pastikan tombol overlay di atas gambar */
}

/* Styling untuk tombol panah kiri */
.prev {
  left: 0;
}

/* Styling untuk tombol panah kanan */
.next {
  right: 0;
}

/*BODY*/
section{
    padding-top: 2vh;
    padding-left: 15%;
	padding-right: 15%;
	padding-bottom: 2vh;
    
}

section h1 {
	margin-bottom: 20px;
	text-align: justify;
}

section h2 {
	margin-bottom: 20px;
    text-align: justify;
}

section h2 a {
    font-size: 32px;
}


section h3 {
	text-align: justify;
	margin-bottom: 20px;
}

section p{
	line-height: 1.5;
	text-align: justify;
}

section ul li{
	line-height: 1.5;
	text-align: left;
}

.linumber{
	list-style-type: number;
}

hr{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.box{
	display: flex;
	flex-direction: row;		
}

.box .col-3{
	width:100%;
	margin-right: 30px;
	margin-bottom: 30px;
}

.box .col-3 p a{
	text-decoration: none;
	color: #4787ce;
}

.card {
    box-shadow: 0 24px 24px 0 rgba(0,0,0,.1);
    transition: 0.3s;
    width: 35%;
    margin-right:30px;
	border-radius: 20px;
  }
  
.card:hover {
    box-shadow: 0 8px 16px 0 #4787ce;
  }
  
.containerphoto {
    padding: 16px 16px;
  }
  
.containerphoto img{
    width: 150px;
	border-radius: 75px;
  }
  
.card p{
       font: 16px; 
    }
    
.card h4{
       font: 42px; 
    }

.aboutprofile img{
    border-radius: 15px;
    margin-left: 0%;
    box-shadow: 0 0 24px 12px rgb(102 166 221 / 30%);
}

.aboutprofile h4{
    text-align: justify;
}

/*GALERY*/
.containergalery{
    position: relative;
    min-height: 100vh;
}

.containergalery .image-containergalery{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    padding: 10px;
}

.containergalery .image-containergalery .imagegl{
    height: 250px;
    width: 350px;
    border: 10px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    overflow: hidden;
    cursor: pointer;
}

.containergalery .image-containergalery .imagegl img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .2s linear;
}

.containergalery .image-containergalery .imagegl:hover img{
    transform: scale(1.1);
}

.containergalery .popup-image{
    position: fixed;
    top: 0;left: 0;
    background: rgba(0,0,0,.9);
    height: 100%;
    width: 100%;
    z-index: 102;
    display: none;
}

.containergalery .popup-image span{
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 32px;
    color: #fff;
    background-color: #9c3142;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 103;
    padding: 0vh;
}

.containergalery .popup-image img{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    border: 3px solid #fff;
    border-radius: 5px;
    width: 750px;
    object-fit: cover;
}

/*GOOGLE MAP*/
.google-map {
     padding-bottom: 50%;
     position: relative;
}

.google-map iframe {
     height: 100%;
     width: 100%;
     left: 0;
     top: 0;
     position: absolute;
}

/* RESPONSIVE CODE*/
@media screen 
 and (max-width: 969px) 
 and (min-width: 804px) {

header{
    padding: 2vh 8vh;
    }
    
.navbar img {
    width:110%
    }
}

@media screen 
 and (max-width: 844px) {
    header{
        padding: 2vh 20px;
    }
    
    .navbar{
    height: 5vh;
    }
    
    .navbar .links,
    .navbar .action_btn{
        display: none;
    }

    .navbar .toggle_btn{
        display: block;
    }

    .navbar img{
        width: 120%;
    }

    .dropdown_menu{
        display: block;
        left: 2rem;
        width: unset;
    }
    
    .dropdown-content {
      display: none;
      position: static;
    }

    a:hover{
        color: #4787ce;
    }
    
    .previous {
        margin-right: 60px;
        margin-bottom: 36px;
    }
    
    footer {
        position: static;
    }

    .footer .footer-left,
    .footer .footer-center{
        display: block;
		width: 100%;
        margin-bottom: 20px;
        margin-left: 10px;
        margin-right: 10px;
        text-align: left;
    }

    .footer .footer-center p{
		margin-right: 10px;
		margin-bottom: 20px;
        }

    .footer .footer-center i {
        margin-left: 0px;
    }

    .footer .footer-center i {
        margin-left: 0px;
    }
    
    .footer .footer-copyright {
        padding-bottom: 10px;
    }

    section{
		padding: 20px 0;
		padding-left: 10%;
		padding-right: 10%;
	}
	
	section h3 {
	text-align: justify;
	margin-bottom: 20px;
    }
    
	iframe{
		width: 50%;
	}

    .footer .footer-left img{
        width: 30%;
    }

    .labelweb{
        padding-top: 10vh;
    }

    .box{
        flex-direction: column;		
        }
        
    .previous {
        margin-right:30px;
        margin-left: 0px;
        }

    .box .col-2{
        width:75%;
        padding-bottom:10vh;
        border-width: 5px;
    }
    
    .footer .footer-center i {
        background-color: #4787ce;
        color: #ffffff;
        margin: 10px 10px 28px 10px;
        
    }

    .containergalery .popup-image img{
        width: 90%;
    }
    
    .card {
        width: 100%;
        margin-bottom:30px;
      }
      
    .card p{
       font: 14px; 
    }
    
    table tr td{
        padding: 10px;
        text-align: justify;
        font: 18px;
        border-collapse: collapse;
    }
    
    .aboutprofile img{
    margin-left: 0%;
	margin-bottom: 20px;
    }
    
    .services img{
    border-radius:10px;
    width: 80%;
    padding: 10px;
    margin: 10px;
    }


}

@media screen 
 and (max-width: 670px) 
 and (min-width: 562px) {
    .previous {
        margin-right: 150px;
        margin-left: 10px;
        }
}

@media screen 
 and (max-width: 561px) 
 and (min-width: 497px) {
    .previous {
        margin-right: 100px;
        margin-left: 0px;
        }
}

@media (max-width: 576px) {

    .navbar img{
        width: 150%;
    }
    
    .containergalery .popup-image span{
    left: 70%;
	top: 20%;
	font-size: 20px;
    }

}