*{
    margin :0  ;
    padding :0  ;
    text-decoration: none;
}





.lock-scroll {
    overflow : hidden;
}

body {

  background-color: white;
  font-size: 17px;
font-family: "Noto Sans JP", sans-serif;
  
}

/*footer*/
.footer {
    display: grid;
    place-content: center;
    width: 100%;
    height: 70px;
    background-color: red;
    color: white;
    font-size: 1em ;
    margin-top: 40px;

}





/*navigation*/
.menu {
  display: grid;
  grid-template-columns: 1fr 2fr;
  width: 100%;
   text-align: center;
  align-items: center;
  background-color: red;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 40px;
  }
  
  .menu .brand {
      text-align: center;
      height: 80px;
  }
  .menu .brand img{
      height:100%;
      width: auto;
  }
  
  .menu .brand h1{
      opacity: 0%;
  }
  
  .menu ul{
      font-weight: 400;
      letter-spacing: 0.4px;
      margin-top: -9px;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      place-content: center;
      gap : 20px;
      height: 70px;
  }
  .menu li{
     
     
  }
  .menu a{
      display : block;
      color: white;
      text-decoration: none;
     font-weight: bold;
      padding: 5px;
      font-size: 0.8em;
  }
  .dropdown {
      float: center;
      overflow: hidden;
    }
    
    .dropdown .dropbtn {
      cursor: pointer;
  
      padding: 5px;
  
      font-size: 0.8em;
      border: none;
      outline: none;
      color: white;
      background-color: inherit;
      font-family: inherit;
      letter-spacing: inherit;
      margin: 0;
    }
    
    
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #f9f9f9;
      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: #ddd;
    }
    
    .show {
      display: block;
    }
    .dropbtn{
      line-height: 10px;
      letter-spacing: -3px;
      font-weight: bolder;
      background-color: #11056b00;
      color: white;
      padding: 0px;
      margin: 0px;
      border: none;
      cursor: pointer;
      width: 100%;
      margin-right: 35px;
    }
  
/*hamburger menu*/
.menu-toggle{
  display: none;
  flex-direction : column;
  justify-content: space-between;
  height:25px;
  position : relative;
  z-index: 999;
}

.menu-toggle span {
  display:block;
  width: 28px;
  height : 3px;
  background: white;
  border-radius: 3px;
  transition : all 0.5s;
}

.menu-toggle input {
  display: block;
  position : absolute;
  background-color: black;
  width: 40px;
  height: 28px;
  left: -5px;
  top : -5px;
  cursor : pointer;
  opacity :0;
  z-index: 2;
}
/*fasilitas*/
h2{
  font-size: 1.1em;
}
.wrap{
    display: flex;
    flex-wrap: wrap;
  min-width: 300px;
  max-width: 1080px;
  padding: 20px;
  margin: auto;
  gap: 20px;
  justify-content: center;
}

.isi{
    position: relative;
    background-color: white;
    height: 10.5em;
    width: 17em;
    border: solid 0px #d7d7d7;
    border-radius: 5px;
    overflow: hidden;
}
.isi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.judul {
    position: absolute;
    top: 38%;
    font-weight: bold;
    text-align: center;
    font-size: 1.3em;
    font-style: italic;
    width: 100%;
    color: white;
    padding-bottom: 10px;
    padding-top: 8px;
    background-color: rgba(53, 53, 53, 0.393);
}
/*Modal*/


  
  .column {
    float: left;
    width: 17em;
    height: 10.5em;
    border-radius: 5px;
    overflow: hidden;
  }
  .column img {
    object-fit: cover;
}

    .wrapbawah{
        display: flex;
        justify-content: center;
    }
    h2{
        width: 80%;
        margin: auto;
        
    }
  /* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: black;
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;  }
  .mySlides{
    height: 400px;
    text-align: center;
  }
  .mySlides img{
    max-height: 100%;
    min-height: 100%;
    max-width: 100%;
  }
  
  /* The Close Button */
  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  .mySlides {
    display: none;
  }
  
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 35%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  img {
    margin-bottom: -4px;
  }
  
  .caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
  }
  
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }  


/*resposive breakpoint*/
@media  ( max-width: 1080px){
    body{
        font-size: 16px;

    }
 .menu{
     display: grid;
     grid-template-columns: 1fr 2fr;
     align-items: center;
    }
 .menu .brand {
    font-size: 1.1em;
    color : #333;

 }
 .menu-toggle{
    display:grid;
    gap: 8px;
    justify-content:flex-end; 
    margin-right: 50px;
}

.menu-toggle img {
    height: 50px;
    width : 50px;
}

.menu ul {
    display: flex;
    position: absolute;
    left :0;
    height: 100vh;
    top :0;
    background-color: rgba(187, 0, 0, 0.841);
    width : 60%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 1;
    transform: translateX(-100%);
    opacity :0;
    transition: all 1s;
}

.menu ul.slide {
    opacity : 1;
    transform: translateY(0);

}
 

}
@media  (max-width: 768px){
    body{

    }
    .menu{
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr 1fr));
        order : -1;    
    }
 
.menu-toggle{
    display:grid;
    gap: 8px;
    justify-content:flex-end; 
    margin-right: 50px;
}

.menu-toggle img {
    height: 50px;
    width : 50px;
}

.menu ul {
    display: flex;
    position: absolute;
    left :0;
    height: 100vh;
    top :0;
    background-color: #133250f1;
    width : 60%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    z-index: 1;
    transform: translateX(-100%);
    opacity :0;
    transition: all 1s;
}

.menu ul.slide {
    opacity : 1;
    transform: translateY(0);

}

}

@media ( max-width : 600px){

    body{
        font-size: 14px;


    }
    .menu{
        display: grid;
        order : -1;
        justify-content: center;
    }
    .menu .brand {
        margin-left: 20px;
    }
    .awalan {
        display: none;
    }
    .menu-toggle{
        display:grid;
        gap: 8px;
        justify-content:flex-end; 
        margin-right: 30px;
    }

    .newskanan >*{
        margin : 10px;
        align-items: center;
       }
   
}
/*Hamburger Menu ANimation*/
.menu-toggle span:nth-child(2){
    transform-origin : 0 0;
}
.menu-toggle span:nth-child(4){
    transform-origin: 0 100%;
}
.menu-toggle input:checked ~ span:nth-child(2){
    background-color: white;
    transform: rotate(45deg) translate(-1px, -1px);
}

.menu-toggle input:checked ~ span:nth-child(4){
    background-color: white;
    transform: rotate(-45deg) translate(-1px, 0);
}

.menu-toggle input:checked ~ span:nth-child(3){
   opacity : 0;
   transform: scale(0);
}