/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--white-color);
}

:root{

  --body-font: 'Poppins', sans-serif;

  --big-font: 4rem;
  --h1-font: 3.6rem;
  --h2-font: 2.4rem;
  --h3-font: 2rem;
  --h4-font: 1.8rem;
  --normal-font: 1.6rem;
  --small-font: 1.4rem;
  --smaller-font: 1.3rem;

  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  --primary-color: darkgrey;
  --primary-color-hover: #800000;
  --text-color: #333;
  --text-color-light: #888682;
  --border-color: #484848;
  --white-color: #fff;
  --section-bg: #2c3034;

  --z-overlay: 10;
  --z-fixed: 100;

  --tran-0-2: 0.2s;
  --tran-0-3: 0.3s;
  --tran-0-5: 0.5s;
}

@media screen and (max-width: 990px){
:root{
  --big-font: 3.5rem;
  --h1-font: 2.4rem;
  --h2-font: 2rem;
  --h3-font: 1.8rem;
  --h4-font: 1.6rem;
  --normal-font: 1.5rem;
  --small-font: 1.3rem;
  --smaller-font: 1.2rem;
}
}

body,
button,
input{
  font-family: var(--body-font);
  font-size: var(--normal-font);
  font-weight: var(--font-regular);
  color: var(--text-color);
}

/* Reusuable CSS */
.section{
  padding: 7rem 2rem;
}
.container{
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}
.flex{
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
}

/* Navbar */
nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: darkgrey;
  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 a{
  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: darkgrey;
  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{
  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: darkgrey;
  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: darkgrey;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: darkgrey;
  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;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  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:  darkgrey;
    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);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}

/* Reusuable CSS */
.section{
  padding: 7rem 2rem;
}
.container{
  max-width: 1030px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3rem;
}

/* Home */
.home{
  height: 100vh;
  width: 100%;
  /*background-color: red;*/
}
.home .slide{
  position: relative;
  height: 100vh;
  width: 100%;
}
.home .slide::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: var(--z-overlay);
}
.home .home-img{
  height: 100%;
  width: 100%;
}
.home img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home .home-details{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: var(--z-fixed);
  transform: translate(-50%, -50%);
  display: grid;
  justify-items: center;
  width: 100%;
  row-gap: 4rem;
}
.home .homeSubtitle{
  text-align: center;
  font-size: 1rem;
  color: var(--white-color);
}
.home .homeTitle{
  text-align: center;
  font-size: 2.3rem;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
}

/* About */
.tentang{
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(225, 225, 225);
}
.tentang .main img{
  height: auto;
  width: 600px;
  max-width: 100%;
}
.about-text{
  width: 550px;
  max-width: 100%;
  padding: 0 10px;
}
.tentang .main{
  width: 1280px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.tentang .about-text h1{
  color: #333;
  font-size: 38px;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.tentang .about-text h5{
  color: #333;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 25px;
  letter-spacing: 2px;
}
span{
  color: darkgrey;
}
.tentang .about-text p{
  color: #333;
  letter-spacing: 1px;
  line-height: 28px;
  font-size: 18px;
  margin-bottom: 45px;
}
button{
  background-color: darkgrey;
  color: #fff;
  border: 2PX solid transparent;
  text-decoration: none;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 17px;
  font-weight: bold;
}
button:hover{
  transform: scale(1);
  background-color: transparent;
  border: 2px solid darkgrey;
  color: darkgrey;
  transition: .4s;
  cursor: pointer;
}
button a{
  text-decoration: none;
  color: #334;
}

@media screen and (max-width: 1180px){
  .tentang{
    width: 100%;
    height: auto;
    padding: 70px 0px;
  }
}

/* statistik */
.tik .counter-up{
  background: #800000;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 0 50px;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.tik .counter-up::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.tik .counter-up .content-up{
  position: relative;
  z-index: 2;
  display: flex;
  width: 100%;
  height: 100%;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.tik .counter-up .content-up .box-up{
  width: calc(27% - 5%);
  border: 1px dashed rgba(255,255,255,0.6);
  border-radius: 5px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  color: #fff;
  flex-direction: column;
  border-radius: 5px;
}
.tik .counter-up .content-up .box-up .icon-i{
  font-size: 48px;
  color: antiquewhite;
}
.tik .counter-up .content-up .box-up .counter{
  font-size: 50px;
  color: antiquewhite;
  font-weight: 500;
  font-family: sans-serif;
}
.tik .counter-up .content-up .box-up .text-i{
  color: antiquewhite;
  font-weight: 400;
}

@media (max-width: 1036px){
  .tik .counter-up{
    padding: 50px 50px 0 50px;
  }
  .tik .counter-up .content-up .box-up{
    width: calc(100% - 2%);
    margin-bottom: 50px;
  }
}
@media (max-width: 580px){
  .tik .counter-up .content-up .box-up{
    width: 100%;
  }
}

/* berita */
*.berita{
  font-family: var(--body-font);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all .2s linear;
}
body .berita{
  background-color: #fff2f2;
}
.berita .container-b{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 25px 20px;
}
.berita .container-b .heading-b{
  font-size: 40px;
  margin-top: 30px;
  margin-bottom: 50px;
  color: #334;
}
.berita .container-b .box-container-b{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px
}
.berita .container-b .box-container-b .box-b{
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
  display: none;
}
.berita .container-b .box-container-b .box-b:nth-child(1),
.berita .container-b .box-container-b .box-b:nth-child(2),
.berita .container-b .box-container-b .box-b:nth-child(3){
  display: inline-block;
}

.berita .container-b .box-container-b .box-b .image-b{
  margin-bottom: 20px;
  overflow: hidden;
  height: 250px;
  border-radius: 5px;
}
.berita .container-b .box-container-b .box-b .image-b img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.berita .container-b .box-container-b .box-b:hover .image-b img{
  transform: scale(1.1);
}
.berita .container-b .box-container-b .box-b .content-b h3{
  font-size: 20px;
  color: #334;
}
.berita .container-b .box-container-b .box-b .content-b p{
  color: #9b9b9b;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;
}
.berita .container-b .box-container-b .box-b .content-b .btn-b{
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid #334;
  color: #334;
  font-size: 16px;
}
.berita .container-b .box-container-b .box-b .content-b .btn-b:hover{
  background-color: darkgrey;
  border-color: darkgrey;
  color: #fff;
}
.berita .container-b .box-container-b .box-b .content-b .icons-b{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #334;
}
.berita .container-b .box-container-b .box-b .content-b .icons-b span{
  font-size: 14px;
  color: #777;
}
.berita .container-b .box-container-b .box-b .content-b .icons-b span i{
  color: darkgrey;
  padding-right: 5px;
}
#load-more{
  margin-top: 20px;
  display: inline-block;
  padding: 13px 30px;
  border: 1px solid #334;
  color: #334;
  font-size: 16px;
  background-color: #fff;
  cursor: pointer;
}
#load-more:hover{
  background-color: darkgrey;
  border-color: darkgrey;
  color: #fff;
}

@media (max-width: 450px){
  .container-b .heading-b{
    font-size: 25px;
  }
  .container-b .box-container-b{
    grid-template-columns: 1fr;
  }
  .container-b .box-container-b .box-b .image-b{
    height: 200px;
  }
  .container-b .box-container-b .box-b .content-b p{
    font-size: 12px;
  }
  .container-b .box-container-b .box-b .content-b .icons-b span{
    font-size: 12px;
  }
}

/* Poliklinik */
body .poli{
  font-family:  "Poppins", sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #222;
}
.poli .main-poli{
  width: 1300px;
  margin: 100px auto;
  margin-bottom: 20px;
}
.poli .main-poli .sec-title{
  text-align: center;
  margin-bottom: 80px;
}
.poli .main-poli .sec-title h2{
  text-transform: capitalize;
  font-size: 35px;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
.poli .main-poli .sec-title h2::before{
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: darkgrey;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.poli .container-poli{
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5em;
}
.poli .menu-pol{
  font-family: sans-serif;
  font-size: 14px;
}
.poli .menu-group-heading{
  margin: 0;
  padding-bottom: 1em;
  border-bottom: 2px solid darkgrey;
}
.poli .menu-group-pol{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5em;
  padding: 1.5em 0;
}
.poli .menu-item-pol{
  display: flex;
}
.poli .menu-icons-p{
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  object-fit: cover;
  margin-right: 1.5rem;
}
.poli .menu-text-p{
  flex-grow: 1;
}
.poli .menu-item-heading{
  display: flex;
  justify-content: space-between;
  margin: 0;
  line-height: 2;
}
.poli .name-p{
  margin-right: 1.5em;
}
.poli .judul-p{
  font-size: 14px;
}

@media screen and (min-width: 992px){
  .poli .menu-pol{
    font-size: 16px;
  }
  .poli .menu-group-pol{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media only-screen and (min-width:992px) and (max-width:1200px){
  .poli .main-poli{
    width: 970px;
  }
}
@media only screen and (min-width:768px) and (max-width:991px){
  .poli .main-poli{
    width: 750px;
  }
  .poli .single-menu-poli{
    display: flex;
    align-items: center;
    margin-top: 40px;
    flex-direction: column;
  }
}
@media only screen and (max-width:767px){
  .poli .main-poli{
    width: 320px;
  }
  .poli .menu-column-pol{
    width: 100%;
    margin-bottom: 60px;
  }
  .poli .single-menu-poli{
    flex-direction: column;
  }
  .poli .sec-title img{
    width: 300px;
    height: auto;
  }
}


/* Dokter */
.dok .container-dok{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.dok .card-content-dok{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px;
}
.dok .card-dok{
  position: relative;
  background: #fff;
  max-width: 325px;
  width: 325px;
  height: auto;
  margin: 25px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
  border-radius: 10px;
  overflow: hidden;
}
.dok .card-image-dok{
  max-width: 350px;
}
.dok .card-image-dok img{
  max-width: 100%;
  height: auto;
}
.dok .card-info-dok{
  position: relative;
  color: #222;
  padding: 10px 20px 20px;
}
.dok .card-info-dok h2{
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
  text-align: center;
}
.dok .card-info-dok h3{
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 5px;
  color: #800000;
  text-align: center;
}
.dok .card-info-dok p{
  text-align: center;
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 500;
}
.dok .pagination-d{
  text-align: center;
  margin: 30px 30px 60px;
  user-select: none;
}
.dok .pagination-d li{
  display: inline-block;
  margin: 5px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 10%);
}
.dok .pagination-d li a{
  color: #fff;
  text-decoration: none;
  font-size: .7em;
  line-height: 35px;
}
.dok .previous-page, .next-page{
  background: darkgrey;
  width: 60px;
  border-radius: 45px;
  cursor: pointer;
  transition: 0.3s ease;
}
.dok .previous-page:hover{
  transform: translateX(-5px);
}
.dok .next-page:hover{
  transform: translateX(5px);
}
.dok .current-page, .dots{
  background: #ccc;
  width: 45px;
  border-radius: 50%;
  cursor: pointer;
}
.dok .active{
  background: darkgrey;
}
.dok .disable{
  background: #ccc;
}
.dok .dokter-heading{
  text-align: center;
  background: #ffebeb;
}
.dok .dokter-heading h3{
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  text-align: center;
}
.dok .dokter-heading span{
  font-size: 1.5rem;
  color: darkgrey;
  font-weight: 500;
}

@media(max-width:1250px){
  .dok .dokter-heading h3{
    font-size: 22px;
  }
  .dok .dokter-heading span{
    font-size: 18px;
  }
}


/* Artikel */
*.artikel{
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  box-sizing: border-box;
}
.artikel a{
  text-decoration: none;
}
.artikel ul{
  list-style: none;
}
body .artikel{
  margin: 0px;
  padding: 0px;
  font-family: var(--body-font);
}
#artikel{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.artikel .artikel-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.artikel .artikel-heading span{
  color: #800000;
  font-size: 18px;
}
.artikel .artikel-heading h3{
  font-size: 2rem;
  color: #333;
  font-weight: 600;
}
.artikel .artikel-container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  flex-wrap: wrap;
}
.artikel .artikel-box{
  width: 350px;
  background-color: #fff;
  border: 1px solid #ececec;
  margin: 20px;
}
.artikel .artikel-img{
  width: 100%;
  height: 100%;
}
.artikel .artikel-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.artikel .artikel-text{
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.artikel .artikel-text span{
  color: #800000;
  font-size: 0.9rem;
}
.artikel .artikel-text .artikel-title{
  font-size: 1.3rem;
  font-weight: 500;
  color: #272727;
}
.artikel .artikel-text .artikel-title:hover{
  color: #800000;
  transition: all ease 0.3s;
}
.artikel .artikel-text p{
  color: #9b9b9b;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;
}
.artikel .artikel-text a{
  color: #0f0f0f;
  font-size: 16px;
}
.artikel .artikel-text a:hover{
  color: #800000;
  transition: all ease 0.3s;
}
@media(max-width:1250px){
  .artikel .artikel-box{
    width: 300px;
  }
}
@media(max-width:1100px){
  .artikel .artikel-box{
    width: 70%;
  }
}
@media(max-width:550px){
  .artikel .artikel-box{
    margin: 20px 10px;
    width: 100%;
  }
  #artikel{
    padding: 20px;
  }
}

/* Galeri */
body .gambar{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 10px;
  padding-bottom: 65px;
}
.gambar .gambar-heading{
  padding-top: 50px;
  padding-bottom: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffebeb;
}
.gambar .wrapper-g{
  max-width: 1100px;
}
.gambar .wrapper-g .galeri{
  display: flex;
  flex-wrap: wrap;
}
.gambar .galeri span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gambar .galeri .image-g{
  padding: 7px;
  width: calc(100% / 3);
}
.gambar .galeri .image-g img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gambar .galeri .image-g:hover img{
  transform: scale(1.1);
}

@media (max-width: 1000px){
  .gambar .galeri .image-g{
    width: calc(100% / 2);
  }
}

@media (max-width: 600px){
  .gambar .galeri .image-g{
    padding: 4px;
    width: 100%;
  }
}

/* Direktur */
*.direk{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font);
}
.direk .outer{
  height: 70vh;
  background: #dedede;
  display: flex;
  justify-content: center;
  align-items: center;
}
.direk .outer .content-re{
  display: flex;
  max-width: 1000px;
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
}
.direk .content-re .image-box-r{
  height: 350px;
  width: 350px;
  border-radius: 12px;
  background: #800000;
  padding: 6px;
}
.direk .content-re .image-box-r img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
}
.direk .content-re .details-re{
  width: 58%;
  margin: 10px 0px 20px 20px;
}
.direk .details-re .job-re{
  font-size: 23px;
  font-weight: 600;
}
.direk .details-re .name-re{
  font-size: 18px;
  font-weight: 500;
  color: #800000;
}
.direk .details-re p{
  font-size: 15px;
  margin-top: 6px;
  text-align: justify;
}
.direk .content-re .details-re .media-icons-re{
  position: absolute;
  bottom: 16px;
  right: 15px;
}
.direk .details-re .media-icons-re a{
  display: inline-flex;
  margin: 0 4px;
  color: #800000;
  opacity: 0.6;
  font-size: 25px;
  text-decoration: none;
}
.direk .details-re .media-icons-re a:hover{
  opacity: 1;
}

@media (max-width: 1000px){
  .direk .content-re .image-box-r{
    height: 150px;
    width: 150px;
  }
  .direk .details-re .job-re{
    font-size: 10px;
    font-weight: 800;
  }
  .direk .details-re .name-re{
    font-size: 9px;
    font-weight: 600;
  }
  .direk .details-re p{
    font-size: 6px;
    margin-top: 6px;
    text-align: justify;
  }
  .direk .outer .content-re{
    display: flex;
    max-width: 350px;
  }
  .direk .content-re .details-re .media-icons-re{
    position: absolute;
    bottom: 4px;
    right: 8px;
  }
  .direk .details-re .media-icons-re a{
    display: inline-flex;
    margin: 0 4px;
    color: #800000;
    opacity: 0.6;
    font-size: 15px;
    text-decoration: none;
  }
  .direk .outer{
    height: 40vh;
    background: #dedede;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
  }
}

/* Footer */
*.footer{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font);
}
body .footer{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 30vh;
  flex-direction: column;
  background: #333; 
}
.footer{
  position: relative;
  width: 100%;
  height: auto;
  padding: 50px 100px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .container-f{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
}
.footer .container-f .sec{
  margin-right: 30px;
}
.footer .container-f .sec.aboutus{
  width: 40%;
}
.footer .container-f h2{
  position: relative;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 25px;
}
.footer .container-f h2:before{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #f00;
}
.footer p{
  color: #999;
  font-size: 18px;
}
.footer .sci{
  margin-top: 20px;
  display: flex;
}
.footer .sci li{
  list-style: none;
}
.footer .sci li a{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  text-decoration: none;
  border-radius: 4px;
}
.footer .sci li a:hover{
  background: #f00;
}
.footer .sci li a .fa-brands{
  color: #fff;
  font-size: 20px;
}
.footer .quickLinks{
  position: relative;
  width: 25%;
}
.footer .quickLinks ul li{
  list-style: none;
}
.footer .quickLinks ul li a{
  color: #999;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 18px;
}
.footer .quickLinks ul li a:hover{
  color: #fff;
}
.footer .contact-f{
  width: calc(35% - 60px);
  margin-right: 0 !important;
}
.footer .contact-f .info-f{
  position: relative;
}
.footer .contact-f .info-f li{
  display: flex;
  margin-bottom: 16px;
}
.footer .contact-f .info-f li span:nth-child(1){
  color: #fff;
  font-size: 20px;
  margin-right: 10px;
}
.footer .contact-f .info-f li span{
  color: #999;
  font-size: 18px;
}
.footer .contact-f .info-f li a{
  color: #999;
  text-decoration: none;
}
.footer .contact-f .info-f li a:hover{
  color: #fff;
}
.copyrightText{
  width: 100%;
  background-color: darkgrey;
  padding: 8px 100px;
  text-align: center;
  color: #fff;
  font-size: 17px;
}
.footer .contact-f a{
  color: white;
  text-decoration: none;
}
@media (max-width: 991px){
  .footer{
    padding: 40px;
  }
  .footer .container-f{
    flex-direction: column;
  }
  .footer .container-f .sec{
    margin-right: 0;
    margin-bottom: 40px;
  }
  .footer .container-f .sec.aboutus,
  .footer .quickLinks,
  .footer .contact-f{
    width: 100%;
  }
  .copyrightText{
    padding: 10px 60px;
    font-size: 14px;
  }
}

/* Layanan.php */
*.pelayanan-rs{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body .pelayanan-rs{
  background-color: var(--white-color);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pelayanan-rs .container-p{
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pelayanan-rs .container-p .card-p{
  background-color: darkgrey;
  width: 260px;
  padding: 20px;
  margin: 30px;
  justify-self: start;
}
.pelayanan-rs .container-p .card-p:hover .card-content1{
  margin-top: -60px;
}
.pelayanan-rs .container-p .card-p:hover .card-content1 .text-group1{
  top: 90px;
  opacity: 1;
}
.pelayanan-rs .container-p .card-p .card-cover{
  width: 100%;
  height: 200px;
  position: relative;
  margin-top: -60px;
  z-index: 10;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.pelayanan-rs .container-p .card-p .card-cover i{
  color: #fff;
  font-size: 90px;
}
.pelayanan-rs .container-p .card-p .cover1{
  background-color: #777;
}
.pelayanan-rs .container-p .card-p .card-content1{
  height: 200px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  margin-top: -200px;
  position: relative;
  overflow: hidden;
  transition: margin-top .3s ease-out;
}
.pelayanan-rs .container-p .card-p .card-content1 .text-group1{
  position: absolute;
  top: -80px;
  opacity: 0;
  transition: top .3s .3s ease-out;
}
.pelayanan-rs .container-p .card-p .card-content1 .text-group1 h3{
  margin-bottom: 15px;
  font-size: 15px;
  color: #fff;
}
.pelayanan-rs .container-p .card-p .card-content1 .text-group1 p{
  color: #fff;
  margin-bottom: 15px;
  font-size: 15px;
}

.title-pelayanan{
  text-align: center;
  padding-bottom: 2rem;
  text-shadow: .4rem .4rem 0 rgba(0, 0, 0, .2);
  text-transform: uppercase;
  color: darkgrey;
  font-size: 3rem;
  letter-spacing: .4rem;
  padding-top: 100px;
}

/* paket.php */
*.paket{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body .paket{
  font-size: 1rem;
  line-height: 1.65;
  font-family: var(--body-font);
  background: linear-gradient(to right, #800000 50%, darkgrey 50%);
  color: #fff;
}
.paket{
  margin-top: 30px;
}
.paket .uc__wrapper{
  height: 100vh;
  display: flex;
  justify-content: space-between;
}
.paket .uc__details{
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  padding: 0 4rem;
  align-items: flex-start;
  justify-content: center;
}
.paket .uc__art{
  flex-basis: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.paket .uc__art img{
  width: 70%;
}
.paket .title-paket{
  display: inline-block;
  font-size: 40px;
  position: relative;
  margin-bottom: 1rem;
}
.paket .title-paket::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background-color: #fff;
  width: 140px;
}
.paket .intro-paket{
  font-size: 15px;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.paket .uc__deskripksi{
  margin-bottom: 2rem;
  line-height: 1.77;
  color: #ccc;
}

@media (max-width: 1000px){
  .paket .uc__wrapper{
    height: 80vh;
    display: flex;
    justify-content: space-between;
  }
  .paket .title-paket{
    font-size: 14px;
  }
  .paket .title-paket::after{
    width: 110px;
  }
  .paket .intro-paket{
    font-size: 14px;
    justify-content: center;
  }
  .paket .uc__deskripksi{
    font-size: 14px;
  }
  .paket .uc__art img{
    width: 90%;
  }
  .paket .uc__details{
    padding: 4px;
  }
}

/* tentang.php */
*.aboutrs{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font);
}
.aboutrs{
  width: 100%;
  min-height: 120vh;
  background-color: #ddd;
}
.container-ab{
  width: 80%;
  display: block;
  margin: auto;
  padding-top: 100px;
}
.inner-section{
  float: left;
  width: 55%;
}
.img-sec{
  float: right;
  width: 40%;
}
.img-sec img{
  width: 100%;
  height: 450px;
}
.inner-section .title-ab{
  text-transform: uppercase;
  font-size: 28px;
}
.inner-section .text-ab h3{
  margin-top: 20px;
  color: #5d5d5d;
}
.inner-section .text-ab p{
  margin-top: 10px;
  font-family: var(--body-font);
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
}
.inner-section .text-ab .bh-kami{
  margin-top: 30px;
}
.inner-section .text-ab .bh-kami a{
  background-color: darkgrey;
  padding: 5px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  letter-spacing: 1.5px;
}
.inner-section .text-ab .bh-kami a:hover{
  background-color: #a52a2a;
  color: #fff;
}
@media (max-width: 1036px){
  .container-ab{
    width: 80%;
    display: block;
    margin: auto;
    padding-top: 90px;
  }
  .inner-section{
    float: none;
    width: 80%;
    display: block;
    margin: auto;
  }
  .img-sec{
    float: none;
    width: 100%;
    padding-bottom: 30px;
  }
  .img-sec img{
    width: 80%;
    height: auto;
    display: block;
    margin: auto;
  }
}
@media screen and (max-width: 768px){
  .container-ab{
      width: 80%;
      display: block;
      margin: auto;
      padding-top: 50px;
  }
  .inner-section{
      float: none;
      width: 100%;
      display: block;
      margin: auto;
  }
  .img-sec{
      float: none;
      width: 100%;
  }
  .img-sec img{
      width: 100%;
      height: auto;
      display: block;
      margin: auto;
  }
  .inner-section .text-ab{
      text-align: center;
      font-size: 19px;
  }
  .inner-section .text-ab .bh-kami{
      text-align: center;
  }
  .inner-section .title-ab h1{
    padding-top: 70px;
    font-size: 25px;
  }  
  .inner-section .text-ab h3{
    font-size: 17px;
    padding-top: 5x;
  }
  .inner-section .text-ab p{
    font-size: 15px;
  }
  .inner-section .text-ab .bh-kami a{
  padding: 7px 5px;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  }
  .img-sec img{
    width: 100%;
    height: 350px;
    padding-bottom: 40px;
  }
}

/* timeline */
*.timeline{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.timeline{
  padding-top: 40px;
  padding-bottom: 40px;
}
.timeline .container-rs{
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
}
.timeline .timeline-rs{
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline .timeline-rs ul{
  list-style: none;
}
.timeline .timeline-rs ul li{
  padding: 20px;
  background-color: darkgrey;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}
.timeline .timeline-rs ul li:last-child{
  margin-bottom: 0;
}
.timeline .timeline-content h1{
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 10px;
}
.timeline .timeline-content p{
  font-size: 12px;
  line-height: 30px;
  font-weight: 300;
}
.timeline .timeline-content .date-t{
  font-size: 15px;
  font-weight: 400;
  color: #ffebeb;
}
.timeline-judul{
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  justify-content: center;
  color: #800000;
  background-color: #ffebeb;
}

@media only screen and (min-width: 768px){
  .timeline .timeline-rs::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 2px;
    left: 50%;
    transform: translate(-50%);
    background-color: gray;
  }
  .timeline .timeline-rs ul li{
    width: 50%;
    margin-bottom: 50px;
    position: relative;
  }
  .timeline .timeline-rs ul li:nth-child(odd){
    float: left;
    clear: right;
    transform: translateX(-30px);
    border-radius: 20px 0px 20px 20px;
  }
  .timeline .timeline-rs ul li:nth-child(even){
    float: right;
    clear: left;
    transform: translateX(30px);
    border-radius: 0px 20px 20px 20px;
  }
  .timeline .timeline-rs ul li::after{
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background-color: grey;
    border-radius: 50%;
    top: 0;
  }
  .timeline .timeline-rs ul li:nth-child(odd)::after{
    transform: translate(50%, -50%);
    right: -30px;
  }
  .timeline .timeline-rs ul li:nth-child(even)::after{
    transform: translate(-50%, -50%);
    left: -30px;
  }
  .timeline .timeline-rs ul li:hover::after{
    background-color: darkgrey;
  }
}
@media (max-width: 1000px){
  .timeline-judul h1{
    font-size: 30px;
  }
}

/*Direksi = team*/
*.direksi{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font);
}
body .direksi{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
  background: #f2f3f7;
}
.container-rek{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.container-rek .card-rek{
  width: 330px;
  height: 416px;
  padding: 60px 30px;
  margin: 20px;
  background: #f2f3f7;
  box-shadow: 0.6em 0.6em 1.2em #e9d2d2,
              -0.5em -0.5em 1em #fff;
  border-radius: 20px;
}
.container-rek .card-rek .content-rek{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container-rek .card-rek .content-rek .img-rek{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  position: relative;
  margin-bottom: 10px;
  overflow: hidden;
}
.container-rek .card-rek .content-rek .img-rek img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.container-rek .card-rek .content-rek .content-rbox h4{
  color: #000000;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 1px;
}
.container-rek .card-rek .content-rek .content-rbox h5{
  color: darkgrey;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.container-jrek .jd-direk{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.jd-direk .j-direk h1{
  font-weight: var(--font-semi-bold);
  text-transform: uppercase;
  font-size: 28px;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #777;
  text-align: center;
  justify-content: center;
  color: white;
}
@media (max-width: 1000px){
  .jd-direk .j-direk h1{
    font-size: 20px;
  }
}


/*kontak.php*/
body .hubungi{
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.hubungi a{
  text-decoration: none;
}
.hubungi .social-hub a{
  padding: 20px;
  color: #7b7c7c;
  font-size: 1.1rem;
}
#hubungi{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  align-items: center;
  padding-top: 150px;
}
.hubungi .social-hub{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
}
.hubungi .social-hub a:hover{
  color: #000000;
  transition: all ease 0.3s;
}
.hubungi .hubungi-box{
  background-color: darkgrey;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 30px;
  box-shadow: 2px 0px 30px rgba(0, 0, 0, 0.1);
}
.hubungi .c-heading h1{
  font-family: var(--body-font);
  color: #e7eef3;
  font-size: 1.5rem;
  font-weight: lighter;
  margin: 0px;
  padding: 0px;
}
.hubungi .c-heading p{
  font-family: var(--body-font);
  color: #cecece;
  font-size: 0.8rem;
  font-weight: lighter;
  margin: 0px;
  padding: 0px;
  text-align: center;
}
.hubungi .c-inputs{
  margin: 15px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hubungi .c-inputs input{
  width: 250px;
  height: 45px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(251, 251, 251, 0.1);
  outline: none;
  margin: 10px 0px;
  padding: 10px;
  box-sizing: border-box;
  color: #f4f4f4;
  display: flex;
  font-size: 1rem;
}
.hubungi .c-inputs textarea{
  width: 250px !important;
  height: 200px !important;
  outline: none;
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(82, 82, 82, 1);
  color: #f4f4f4;
  padding: 10px;
  font-size: .8rem;
  box-sizing: border-box;
}
.hubungi .c-inputs button{
  width: 200px;
  height: 40px;
  background-color: #fff;
  color: darkgrey;
  border: none;
  outline: none;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  letter-spacing: 1px;
}
.hubungi .c-inputs input:focus{
  border-bottom: 1px solid rgba(252, 252, 252, 1.00);
  transition: all ease 0.5s;
}
.hubungi .c-inputs textarea:focus{
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 1.00);
  transition: all ease 0.5s;
}
.hubungi .c-inputs button:active{
  transform: scale(1.02);
}
.hubungi .map-hub{
  filter: grayscale(0.2);
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
}
/*responsive hub*/
@media(max-width:1100px){
  .hubungi .map-hub{
      display: none;
  }
}
@media(max-width:450px){
  .hubungi .social-hub{
      width: 100%;
      height: 100vh;
      box-sizing: border-box;
  }
  #hubungi{
      position: static;
      transform: translate(0,0);
      width: 100%;
      height: 100vh;
      box-sizing: border-box;
  }
}

/*FAQ*/
*.faq{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font);
}
body .faq{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #9b9b9b;
  padding: 40px;
}
.faq{
  display: flex;
  align-items: center;
  background: #fff;
}
.faq .accordion .image-box-q{
  height: 360px;
  width: 300px;
}
.faq .accordion .image-box-q img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/*berita.php*/
.b-beritaa .nb-berita a{
  text-decoration: none;
  color: white;
}

.b-beritaa.nb-berita button{
  border: none;
  outline: none;
  cursor: pointer;
}
.b-beritaa .nb-berita img, i{display: block;}
body .b-beritaa .nb-berita{
  min-height: 80vh;
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: #cecece;
  padding: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.b-beritaa .nb-berita{
  width: 100%;
  margin: auto;
  max-width: 98rem;
  padding: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-beritaa .nb-berita .berita-cardd{
  display: grid;
  grid-template-columns: 285px minmax(300px, 445px);
  max-width: 730px;
  border-radius: 10px;
  box-shadow: 6px 6px 5px hsla(0, 0%, 0%, 0.02),
              25px 25px 20px hsla(0, 0%, 0%, 0.03),
              100px 100px 80px hsla(0, 0%, 0%, 0.05);
}
.b-beritaa .nb-berita .b-image-box{
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.b-beritaa .nb-berita .berita-banner{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transition: all 0.5s ease;
}
.b-beritaa .nb-berita .berita-cardd:hover .berita-banner { transform: scale(1.1); }
.b-beritaa .nb-berita .b-content{
  background: white;
  padding: 32px 40px;
  border-radius: 0 10px 10px 0;
}
.b-beritaa .nb-berita .b-title{
  font-size: 20px;
  color: darkgrey;
  margin-bottom: 18px;
  line-height: 1.5;
}
.b-beritaa .nb-berita .b-text{
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;
}
.b-beritaa .nb-berita .b-berita-content-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.b-beritaa .nb-berita .b-author{
  display: flex;
  align-items: center;
}
.b-beritaa .nb-berita .author-avatar-b{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}
.b-beritaa .nb-berita .b-author-name{
  color: darkgrey;
  font-size: 15px;
}
.b-beritaa .nb-berita .b-pulish-date{
  color: #24292d;
  font-size: 15px;
}
.b-beritaa .nb-berita .b-share { position: relative; }
.b-beritaa .nb-berita .b-share-button{
  background: rgb(210, 210, 210);
  padding: 6px;
  border-radius: 20px;
  font-size: 20px;
  color: #222;
  transition: all 0.25s ease;
}
.b-beritaa .nb-berita .b-share-button:hover, .b-share-button.active{
  color:  rgb(210, 210, 210);
  background-color: #0f0f0f;
}
.b-beritaa .nb-berita .b-share-option{

--scale : 0;
--translateX : -50%;
--translateY : 0;


background: #334;
position: absolute;
bottom: calc(100% + 28px);
left: 50%;
transform: translate(var(--translateX), var(--translateY)) scale(var(--scale));
display: flex;
align-items: center;
gap: 12px;
padding: 17px 40px;
border-radius: 10px;
box-shadow: 0 5px 20px -5px #0003;
transform-origin: bottom;
visibility: hidden;
transition: all 0.25s ease;
}
.b-beritaa .nb-berita .b-share-option.active{
  --scale: 1;
  visibility: visible;
}
.b-beritaa .nb-berita .b-share-option::after{
  content: '';
  background: #333;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
}
.b-beritaa .nb-berita .b-share-option span{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: white;
  margin-right: 5px;
}
.b-beritaa .nb-berita .b-share-option i{ font-size:  22px ;}
.b-beritaa .nb-berita .b-share-option i:hover,
.b-title:hover,
.b-author-name:hover {filter: invert(1); }

.berhi{
  padding-top: 80px;
  text-align: center;
  background: #e9d2d2;
  font-size: 15px;
  color: #334;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .b-beritaa .nb-berita .berita-cardd{
    grid-template-columns: 1fr;
    max-width: 294px;
    overflow: hidden;
  }
  .b-beritaa .nb-berita .b-image-box, .b-content { border-radius: 0; }
  .b-beritaa .nb-berita .b-image-box { height: 180px; }
  .b-beritaa .nb-berita .b-content { padding: 30px 28px 20px; }
  .b-beritaa .nb-berita .b-title { font-size: 15px; }
  .b-beritaa .nb-berita .b-text { margin-bottom: 30px; }
  .b-beritaa .nb-berita .b-berita-content-footer { position: relative; }

  .b-beritaa .nb-berita .author-avatar-b{
    width: 35px;
    height: 35px;
  }
  
  .b-beritaa .nb-berita .b-share{
    position: static;
    z-index: 1;
  }
  .b-beritaa .nb-berita .b-share-button{ font-size: 16px; }

  .b-beritaa .nb-berita .b-share-option{
    --scale: 1;
    --translateX: 0;
    --translateY: 0;

    inset: -20px -20px;
    border-radius: 0;
    padding: 17px 30px;
    z-index: -1;
  }
  .b-beritaa .nb-berita .b-share-option.active{ --translateY:0; }

  .berhi .sec-berhi{
    font-size: 20px;
  }
}

/*post-page*/
.postb-header{
  width: 100%;
  height: 400px;
  background: #bebebe;
}
.postb-header img{
  width: 100%;
  object-fit: scale-down;
}
.postb-container{
  max-width: 800px;
  margin: auto;
  width: 100%;
  padding-bottom: 4rem;
}
.header-contentb{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4.3rem !important;
}
.back-home{
  color: darkgrey;
  font-size: 1.2rem;
  padding-top: 2rem;
}
.header-titleb{
  width: 90%;
  font-size: 1.7rem;
  color: darkgrey;
  text-align: center;
  margin-bottom: 1rem;
}
.headerb-img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}
.postb-content{
  margin-top: 19rem !important;
}
.subb-heading{
  font-size: 1.2rem;
}
.postb-text{
  font-size: 1rem;
  line-height: 1.7rem;
  margin: 1rem 0;
  text-align: justify;
}

@media screen and (max-width: 768px){
  .back-home{
    font-size: 30px;
  }
  .header-titleb{
    font-size: 25px;
  }
  .headerb-img{
    width: 100%;
    height: 330px;
  }
  .postb-content{
    margin-top: 13rem !important;
  }
  .postb-container{
    max-width: 340px;
  }
  .subb-heading{
    font-size: 20px;
  }
}

/*post-artikel*/
*.article-b::before,
*.article-b::after{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html .article-b{
  font-family: var(--body-font);
  font-size: 10px;
}
.article-b img{
  width: 100%;
}
body .article-b{
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  padding: 0 1.5rem;
}
.blog-posta{
  width: 100%;
  max-width: 48rem;
  padding: 3rem;
  background-color: #fff;
  box-shadow: 0 1.4rem 8rem rgba(0, 0, 0, .2);
  display: flex;
  align-items: center;
  border-radius: .8rem;
}
.blog_post-img{
  min-width: 20rem;
  max-width: 20rem;
  height: 15rem;
  transform: translateX(-8rem);
  position: relative;
}
.blog_post-img img{
  width: 100%;
  height: 100%;
  object-fit:cover;
  display: block;
  border-radius: .8rem;
}
.blog_post-img::before{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: .5rem .5rem 3rem 1px rgba(0, 0, 0, .05);
  border-radius: .8rem;
}
.blog_post-date span{
  display: block;
  color: darkgrey;
  font-size: 1rem;
  font-weight: 600;
  margin: .5rem 0;
}
.blog_post-title{
  font-size: 2rem;
  margin: 1.5rem 0 2rem;
  text-transform: uppercase;
  color: darkgrey;
}
.blog_post-text{
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;
}
.blog_post-cta{
  display: inline-block;
  padding: .5rem .5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .8rem;
  color: #fff;
  background-image: linear-gradient(to right, darkgrey 0%, #800000 100%);
  border-radius: .8rem;
  text-decoration: none;
}
.blog_post-cta:hover{
  background-image: linear-gradient(to right, #800000 0%, darkgrey 100%);
}
.header_title-page{
  text-align: center;
  justify-content: center;
  padding-top: 45px;
  padding-bottom: 25px;
  background-color: #e9d2d2;
  color: #334;
}
.blog_post-info a{
  text-decoration: none;
}

@media screen and (max-width: 1068px){
  .blog-posta{
    max-width: 80rem;
  }
  .blog_post-img{
    min-width: 30rem;
    max-width: 30rem;
  }
}

@media screen and (max-width: 868px){
  .blog-posta{
    max-width: 50rem;
  }
}

@media screen and (max-width: 768px){
  .blog-posta{
    padding: .8rem;
    flex-direction: column;
  }
  .blog_post-img{
    min-width: 80%;
    max-width: 60%;
    transform: translate(0, -5rem);
  }
}

/* list-artikell */
.list-artikell .nb-berita a{
  text-decoration: none;
  color: white;
}

.list-artikell .nb-berita button{
  border: none;
  outline: none;
  cursor: pointer;
}
.list-artikell .nb-berita img, i{display: block;}
body .list-artikell .nb-berita{
  min-height: 80vh;
  display: grid;
  justify-content: center;
  align-items: center;
  background-color: #cecece;
  padding: 20px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.list-artikell .nb-berita{
  width: 100%;
  margin: auto;
  max-width: 98rem;
  padding: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-artikell .nb-berita .berita-cardd{
  display: grid;
  grid-template-columns: 285px minmax(300px, 445px);
  max-width: 730px;
  border-radius: 10px;
  box-shadow: 6px 6px 5px hsla(0, 0%, 0%, 0.02),
              25px 25px 20px hsla(0, 0%, 0%, 0.03),
              100px 100px 80px hsla(0, 0%, 0%, 0.05);
}
.list-artikell .nb-berita .b-image-box{
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}
.list-artikell .nb-berita .berita-banner{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transition: all 0.5s ease;
}
.list-artikell .nb-berita .berita-cardd:hover .berita-banner { transform: scale(1.1); }
.list-artikell .nb-berita .b-content{
  background: white;
  padding: 32px 40px;
  border-radius: 0 10px 10px 0;
}
.list-artikell .nb-berita .b-title{
  font-size: 20px;
  color: darkgrey;
  margin-bottom: 18px;
  line-height: 1.5;
}
.list-artikell .nb-berita .b-text{
  font-size: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;
}
.list-artikell .nb-berita .b-berita-content-footer{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-artikell .nb-berita .b-author{
  display: flex;
  align-items: center;
}
.list-artikell .nb-berita .author-avatar-b{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
}
.list-artikell .nb-berita .b-author-name{
  color: darkgrey;
  font-size: 15px;
}
.list-artikell .nb-berita .b-pulish-date{
  color: #24292d;
  font-size: 15px;
}
.list-artikell .nb-berita .b-share { position: relative; }
.list-artikell .nb-berita .b-share-button{
  background: rgb(210, 210, 210);
  padding: 6px;
  border-radius: 20px;
  font-size: 20px;
  color: #222;
  transition: all 0.25s ease;
}
.list-artikell .nb-berita .b-share-button:hover, .b-share-button.active{
  color:  rgb(210, 210, 210);
  background-color: #0f0f0f;
}
.list-artikell .nb-berita .b-share-option{

--scale : 0;
--translateX : -50%;
--translateY : 0;


background: #334;
position: absolute;
bottom: calc(100% + 28px);
left: 50%;
transform: translate(var(--translateX), var(--translateY)) scale(var(--scale));
display: flex;
align-items: center;
gap: 12px;
padding: 17px 40px;
border-radius: 10px;
box-shadow: 0 5px 20px -5px #0003;
transform-origin: bottom;
visibility: hidden;
transition: all 0.25s ease;
}
.list-artikell .nb-berita .b-share-option.active{
  --scale: 1;
  visibility: visible;
}
.list-artikell .nb-berita .b-share-option::after{
  content: '';
  background: #333;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(45deg);
}
.list-artikell .nb-berita .b-share-option span{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: white;
  margin-right: 5px;
}
.list-artikell .nb-berita .b-share-option i{ font-size:  22px ;}
.list-artikell .nb-berita .b-share-option i:hover,
.b-title:hover,
.b-author-name:hover {filter: invert(1); }

@media screen and (max-width: 768px) {
  .list-artikell .nb-berita .berita-cardd{
    grid-template-columns: 1fr;
    max-width: 294px;
    overflow: hidden;
  }
  .list-artikell .nb-berita .b-image-box, .b-content { border-radius: 0; }
  .list-artikell .nb-berita .b-image-box { height: 180px; }
  .list-artikell .nb-berita .b-content { padding: 30px 28px 20px; }
  .list-artikell .nb-berita .b-title { font-size: 15px; }
  .list-artikell .nb-berita .b-text { margin-bottom: 30px; }
  .list-artikell .nb-berita .b-berita-content-footer { position: relative; }

  .list-artikell .nb-berita .author-avatar-b{
    width: 35px;
    height: 35px;
  }
  
  .list-artikell .nb-berita .b-share{
    position: static;
    z-index: 1;
  }
  .list-artikell .nb-berita .b-share-button{ font-size: 16px; }

  .list-artikell .nb-berita .b-share-option{
    --scale: 1;
    --translateX: 0;
    --translateY: 0;

    inset: -20px -20px;
    border-radius: 0;
    padding: 17px 30px;
    z-index: -1;
  }
  .list-artikell .nb-berita .b-share-option.active{ --translateY:0; }

  .berhi .sec-berhi{
    font-size: 20px;
  }
}

/* post-page1 */
.post-1 .header-1{
  width: 100%;
  height: 70px;
  background-color: white;
  box-shadow: 0.2px 0.2px 3px grey;
}

.flex{
  display: flex;
}

.container-2{
  width: 900px;
  margin: 0px auto;
}

.logo-1{
  width: 20%;
}

.menu-1{
  width: 80%;
  text-align: right;
}

/* vidio */
.vidio{
  width: 100%;
  padding: 50px 5vw;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
}
.vidio .container-vid video{
  width: 100%;
  height: 400px;
}
.vidio .header-vid h1{
  font-size: 15px;
  padding-bottom: 20px;
}
.vidio .header-vid h3{
  padding-bottom: 20px;
}
.vidio .header-vid span{
  font-size: 18px;
}
.vidio .header-vid p{
  font-size: 15px;
  text-align: justify;
  margin-bottom: 20px;
}
@media screen and (max-width: 1091px){
  .vidio{
    width: fit-content;
    display: grid;
    grid-template-columns: 1fr;
  }
  .vidio .container-vid video{
    width: 100%;
  }
  .vidio .header-vid{
    width: fit-content;
    display: grid;
  }
}
@media (max-width: 375px){
  .vidio{
      width: fit-content;
      display: grid;
      grid-template-columns: 1fr;
  }
  .vidio .container-vid video{
    width: 100%;
  }
  .vidio .header-vid{
    width: fit-content;
    display: grid;
  }
}