@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root{
    --white-color:#fff ;
    --dark-color: #222;
    --body-bg-color: #fff;
    --section-bg-color: #202834;
    --navigation-item-hover-color: #3b5378 ;

    --text-shadow:0 5px 25px rgba(0,0,0,0.1) ;
    --box-shadow:0 5px 25px rgb(0 0 0 /20%) ;


    --scroll-bar-color: #fff;
    --scroll-thumb-color: #282f4e;
    --scroll-thumb-hover-color: #454f6b;
}

*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}
body,html{
   background-color: rgb(255, 255, 255);
  
    height: 100%;
    margin: 0;
    padding: 0;
  justify-content: center;
  align-items: center;
}

header{
    z-index: 999;
    position: fixed;
    width: 100%;
    height: calc(5rem + 1rem);
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    transition: 0.5s ease;
    transition-property: height,background;
}

/* scroll bar */
::-webkit-scrollbar{
    width: 11px;
    background-color: var(--scroll-bar-color);
}
::-webkit-scrollbar-thumb{
    width: 100%;
    background: var(--scroll-thumb-color);
    border-radius: 2em;
}
::-webkit-scrollbar-thumb:hover{
    background: var(--scroll-thumb-hover-color);

}
header .nav-bar{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 200px;
    transition: 0.3s ease;
}

.nav-close-btn, .nav-menu-btn{
    display: none;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown1 {
  position: relative;
  display: inline-block;
}

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

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

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

.dropdown-content a:hover{
 background-color: blue;
 color: white;
 border-radius: 20%;
 width: 100%;
}



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

.dropdown-content1 a {
  color: white;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

.dropdown:hover .dropdown-content1 {
  display: block;
}

.dropdown-content1 a:hover{
 background-color: blue;
 color: white;
 border-radius: 20%;
 width: 100%;
}
nav.sticky{
    height: calc(2.5rem + 1rem);
    background: linear-gradient(to right,#4d1403,#0628c2);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar {
  color:white;
}

.nav-bar .logo{
    color:var(--white-color);
    font-size: 1.8em;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-shadow: var(--text-shadow);
}

.navigation .nav-items a{
    color: var(--white-color);
    font-size: 1em;
    text-decoration: none;
    text-shadow: var(--text-shadow);
}

.navigation .nav-items a i{
    display:none;
}
.navigation .nav-items a:not(:last-child){
    margin-right: 45px;
}

.home{
    min-height: 100vh;
   
    

}

.bg-slider{
    z-index: 777;
    position: relative;
    width: 100%;
    min-height: 100vh;
    
}
.swiper-slide .img{
    width: 100%;
    min-height: 100vh;
}
/* .bg-slider .swiper-slide{
    position: relative;
    width: 100%;
    height: 100vh;
} */

.bg-slider .swiper-slide img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    background-position: center;
    background-size: cover;
    pointer-events: none;
}

.swiper-slide .text-content{
    position: absolute;
    color: var(--white-color);
    top: 25%;
    margin: 0 200px;
    transition: 0.3s ease;
}

.swiper-slide .text-content .title{

    font-size: 4em;
    font-weight: 700;
    text-shadow: var(--text-shadow);
    margin-bottom: 20px;
    transform: translateY(-50px);
    opacity: 0;
}
.swiper-slide-active .text-content .title{
   transform: translateY(0);
   opacity: 1;
   transition: 1s ease;
   transition-delay: 0.3s ;
   transition-property: transform,opacity;
}
.swiper-slide .text-content .title span{

    font-size: 0.3em;
    font-weight: 300;

}
.swiper-slide .text-content p{
    max-width: 700px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: bluer(10px);
    text-shadow: var(--text-shadow);
    padding: 20px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    box-shadow: var(--box-shadow);
    transform: translateX(-80px);
    opacity: 0;

}

.swiper-slide-active .text-content p{
transform:translateX(0) ;
opacity: 1;
transition: 1s ease;
transition-delay: 0.3s;
transition-property: transform,opacity;

}

.swiper-slide .text-content .read-btn{

border: none;
outline: none;
background-color: var(--white-color);
color: var(--dark-color);
font-size: 1em;
font-weight: 500;
padding: 8px 25px;
display: flex;
align-items: center;
margin-top: 40px;
border-radius: 10px;
cursor: pointer;
transform: translateX(-80px);
opacity: 0;
}

.swiper-slide-active .text-content .read-btn{


transform: translateX(0);
opacity: 1;
transition: 1s;
}

.swiper-slide .text-content .read-btn i{
    font-size: 1.6em;
    transition: 0.3s ease;

}

.swiper-slide .text-content .read-btn:hover i{

transform: translate(5px);
}
.thumbs-container img{
 width: 50px;
 height: 35px;
 margin: 0 5px;
 border-radius: 5px;
 cursor: pointer;
}
.bg-slider-thumbs{
    z-index: 777;
    position: absolute;
    bottom: 7em;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.thumbs-container{
    background: rgba(255,255,255,0.1);
    backdrop-filter: 10px 3px;
    border-radius: 10px;
    border-bottom:  1px solid rgba(255,255,255,0.1);
    border-right:  1px solid rgba(255,255,255,0.1);
    box-shadow: var(--box-shadow);
}

.media-icons{
    z-index:999;
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 90px;
}
.media-icons a{
    color:var(--white-color);
    font-size: 1.7em;
    margin: 10px 0;
}

@media screen and(max-width:1100px){
    /* header .nav-bar{
        padding: 0 50px;
    }
  */
    .section{
        padding: 25px 50px;
    }

    .media-icons{
       display: none;
    }

    .swiper-slide .text-content{
        position: absolute;
        top: 25%;
        color: var(--white-color);
        transition: 0.3s ease;
    }
    .bg-slider-thumbs{
       bottom: 3em;
    }
    .nav-menu-btn{
      font-size: 100px;
    }
}

@media screen and (max-width:785px){
    header .nav-bar{
        padding: 25px 20px;
    }

    .section{
        padding: 25px 20px;
    }

    .media-icons{
    display: none;
    }
   
    .swiper-slide .text-content{
        margin: 0 70px 0 20px;
    }
    .swiper-slide .text-content .title{
        font-size: 3em;
    }
    .swiper-slide .text-content .title span{
        font-size: 0.35em;
    }
    .swiper-slide .text-content p{
        font-size: 0.9em;
    }
    .nav-menu-btn{
        display: block;
        color: var(--white-color);
        font-size: 1.5em;
        cursor: pointer;
    }
    .nav-close-btn{
        display: block;
        color:black;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 1.3em;
        margin: 10px;
        cursor: pointer;
        transition: 0.3s ease;
    }
.navigation{
    z-index:999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease;
}
.navigation.active{
    visibility: visible;
    opacity: 1;
}
.navigation.active .nav-items{
   transform: translateY(0);
}
.navigation .nav-items{
    position: relative;
    background: var(--white-color);
    width: 400px;
    max-width: 400px;
    display: grid;
    place-content: center;
    margin: 20px;
    padding: 40px;
    border-radius: 20px ;
    box-shadow: var(--box-shadow);
    transform: translateY(-200px);
    transition: 0.3s ease;
}

.navigation .nav-items a{
    color: var(--dark-color);
    font-size: 1em;
    margin: 15px 50px;
    transition: 0.3s ease;
}
.navigation .nav-items a i{
    display: inline-block;
    font-size: 1.3em;
    margin-right: 5px;
}
}

.choose_container{
    position: relative;
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}
img {
    display: flex;
    width: 100%;
  }
.choose_container .choose_bg{
    position: absolute;
    top: 1rem;
    left: 60%;
    transform: translateX(-3rem);
    max-width: 300px;
    opacity: 0.4;
    z-index: -1;
}

.choose_grid{
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap:2rem 1rem;
}

.choose_card span{
    display: inline-block;
    margin-bottom: 0.5rem;
    padding: 5px 10px;
    font-size:1.25rem;
    background-color: #cad8d8;
    border-radius: 100%;
    
}
.choose_card span:hover{
    transform: scale(1.1); 
    transition: transform 0.3s ease;
}

.choose_card h4{
    margin-bottom:1rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: sans-serif;
    color: rgb(83, 70, 70);
}

.choose_card p{
    color:rgb(105, 86, 86);
}

.choose_image img{
    max-width: 400px;
    margin-top: 100px;
    margin-left: 300px;
    /* border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.2); */
}

.blog {
    background-color:white;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
    margin-right: 20px;
    margin-left: 20px;
    
  }
  
  .blog__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  
  .blog__card img {
    margin-bottom: 1rem;
    border-radius: 10px;
    box-shadow: #222;
    width:300px;
    height: 200px;
  }
  
  .blog__card > div {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .blog__card div span {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  
  .blog__card div span i {
    margin-right: 5px;
    font-size: 1rem;
    color: var(--primary-color);
  }
  
  .blog__card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .blog__card p {
    color: var(--text-light);
    text-align: left;
  }
  .blog__grid a {
    text-decoration: none;
    color: black;
  }

  .galery{
    /* min-height: 100vh; */
    padding-bottom: 100px;
    width: 100%;
    background: white;
  
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
   
  }
  .galery:hover{
    transform: scale(1.0);

  }

  .galery .control-kata h1{
   
    text-align: center;
  }
  .galery .image-conteiner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .galery .image-conteiner .image{
     height: 250px;
     width: 350px;
     overflow: hidden;
     border: 15px solid #fff;
     box-shadow: 0 3px 5px rgba(0,0,0 .3);
     margin: 20px;
  }
  .galery .image-conteiner .image img{
height: 100%;
width: 100%;
object-fit: cover;  
}

.galery .image-conteiner .image:hover img{
 transform: scale(1.4);
}


.card {
    
    background: #ffffff;
    border-radius: 20px;
    padding: 5px 5px;
    box-shadow: 0 0 10px #ccc;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .card .image {
    width: 150px;
    height: 150px;
    padding: 3px;
    border: 3px solid blueviolet;
    background: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
  }
  .card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  .card h3 {
    text-align: center;
  }
  .card p {
    color: orange;
    text-align: center;
  }
  .swiper-container {
    position: relative;
     width: 100%;
    margin-left: 60px;
    margin-right: 60px;
    margin-top: 60px;
    justify-content: center;
    align-items: center;
    padding-bottom:200px ;
  }
  .swiper {
    margin: 0 auto;
    cursor: grab;
  }
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px #ccc;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }
  .swiper-button-next:hover {
    transform: scale(1.2) translateX(80%);
  }
  .swiper-button-prev:hover {
    transform: scale(1.2) translateX(-80%);
  }
  .swiper-button-next {
    transform: translateX(100%);
  }
  .swiper-button-prev {
    transform: translateX(-100%);
  }
  .swiper-pagination {
    transform: translateY(200%);
  }
  .swiper-pagination-bullet {
    background: #fff;
    width: 15px;
    height: 15px;
  }

  .footer{
    width: 100%;
    position: relative;
    min-height: 100px;
    background: linear-gradient(to right,#4d1403,#0628c2);
    color:#fff;
    padding:20px 50px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
    align-items: center;
    justify-content: center;
  }

   .row  {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content:space-between;
  }

  .col{
    flex-basis: 25%;
    padding-top: 10px;
  } 
  .logo{
    width: 300px;
    height: 80ox;
  }
  .col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative
  }

  .email-id{
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
   
  }
  .col p{
    padding: 5px;

  }
  .col a{
    list-style: none;
    margin-bottom: 12px;
    color: white;
    text-decoration: none;
  }
  .col a:hover{
    color:red;
    cursor: pointer;
  }
  .underline {
    width: 20%;
    height: 5px;
    left: 0;
    top: 25px;
    border-radius: 3px;
    background: #767676;
    overflow: hidden;
}

.underline span {
    width: 15px;
    left: 10px;
    height: 100%;
    background-color: white;
    animation: moving 2s linear infinite;
    display: block;
}

@keyframes moving {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(100px);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(20px);
    }
    100% {
        transform: translateX(0);
    }
}

.choose_image img {
    animation: slideRight 3s infinite;
}
@media screen and (max-width: 900px) {
.choose_container img{
  display: none;
}

}
@media screen and (max-width: 900px) {
 
  .blog .blog__card img{
    width: 100%;
    margin-left: 0;
    min-height: fit-content;
    
    
  }
  .blog .beritagambar{
    width: 100%;
  }
  .section__container1{
    margin-left: 0;
    margin-right: 600px;
  }
  .blog__grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-left: 0;
    width: 100%;
  }
}
.imaps{
  width:300px;
   height:200px;
}
@media screen and (max-width: 900px) {
.imaps{
width: 300px;
height: 100px;
}
}

.iconkut{
  display: flex;
  padding-top: 80px;
}
.iconkut p{
  font-size: 40px;
}

.detail_berita{
  display: flex;
  margin-top:100px ;
  margin-left: 70px;
  margin-right: 70px;
}
.detail_isi{
  width: 70%;
  margin-top:100px ;

}
.populer{
  width: 30%;
}
.warnaku{
  background-color: blue;
  top: 0;
}

.vertical-hr {
  height: 100vh; /* Sesuaikan tinggi garis tegak */
  width: 0;
  border: 1px solid #ccc; /* Warna dan ketebalan garis */
  margin: 0 20px; /* Jarak antara garis dan konten */
  display: inline-block;
}

.populer {
  display: flex;
  flex-direction: column; 
  align-items: center;
  margin-top: 100px; 
  margin-bottom: 60px;
}

.cardi {

  align-items: center; 
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
 justify-content: center;
  width: 200px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 90px;
}
.cardi img {
  width: 150px; 
  height: 150px; 
  position: absolute;
  border-radius: 4px;
  border-radius: 50%;
  transform: translate(10%,-50%);
}
.cardi .huruf{
 margin-top: 100px;
}
.cardi .huruf p{
font-weight: bold;
}

.cardi h3,
.cardi p {
  margin: 0;
}
 .populer a{
   cursor: pointer;
   list-style: none;
   text-decoration: none;
}
.populer h2{
  margin-top: 0;
  margin-bottom: 90px;
}

@media screen and (max-width: 900px) {

.populer{
  display: none;
}
.detail_berita {
  width: 100%;
}
.detail_berita img{
   height: 300px;
}
}

.pengumuman{
  margin-top: 200px;
  margin-left: 300px;
  margin-right: 300px;

}
.pengumuman h2{
  margin-bottom: 15px;
}
.pengumuman .card-body {
  text-align: left;
margin-bottom: 5px;
  margin-left: 50px;
  margin-right: 50px;

}
.pengumuman .card-body p{
  text-align: left;
  margin-bottom: 5px;
}

@media screen and (max-width: 900px) {

.pengumuman{
  width: 100%;
  left: 0;
  right: 0;
  align-items: center;
}
}
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.navbar-scrolled {
  background-color: blue; 
}


.bagiberita
{
  display: flex;
  margin-left: 20px;
  margin-right: 20px;
}
.beritagambar{
  width: 50%;
  margin-top: 30px;
  width: 600px;
  height: 800px;
}
.beritagambar img
{
  margin-top: 50px;
}
.section__container1{
  width: 50%;
  margin-left: 200px;
}

@keyframes rightslide {
  0% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(20px);
  }
  100% {
      transform: translateX(0);
  }
}

.beritagambar img {
  animation: rightslide 3s infinite;
}

@media screen and (max-width:900px) {
  .blog .bagiberita .beritagambar {
    width: 5%;
margin-top: 0;
  }
 
  .choose_content{
    width: 100%;
  margin-top: 20px;
  }


  .section__container1{
    width: 100%;
    max-width: none;
  }
  .section__container1 img{
    
     height: 100px;

  } .blog{
    width: 100%; 
   text-align: center;
   justify-content: start;
   
   }
  
}
/* 
//section header */
.homem{
  height: 100vh;
  position: relative;

}
.homem .rowkap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-right: 10px;
  margin-left: 10px;
}

.homem .rowkap .content {
  flex: 1 1 100%; 
  max-width: 400px; 
}

.homem .rowkap .books-slider {
  flex: 1 1 100%; 
  text-align: center;
  margin-top: 12rem;
  overflow: hidden; 

}

.homem .rowkap .books-slider a img {
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.5); 
  object-fit: cover;
  height: auto;
  max-width: 100%;
  margin-left: 5px;
  margin-top: 20px;
  transition: transform 0.3s ease-in-out; /* Efek hover yang lebih halus */
}
#video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.homem .rowkap .books-slider a:hover img {
  transform: scale(0.9);
}

.homem .rowkap .books-slider .stand {
  width: 100%;
  margin-top: -17rem;
}

/* Menerapkan media query untuk responsivitas */
@media screen and (min-width: 667px) {
  .homem .rowkap .content {
      flex: 1 1 40%; /* Mengatur lebar content pada layar berukuran besar */
      max-width: none; /* Menghapus batasan lebar maksimal */
  }
.homem .rowkap .books-slider a img{
   display:hidden;
}
  .homem .rowkap .books-slider {
      flex: 1 1 10%; 
  }
}
