
/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.nav {
  position:fixed;
  top:130px;
  right:0px;
  width:50px;
  height:50vh;
  background:#222;
  z-index:2;
}
.nav span {
  display:block;
  font-size:10px;
  color:#fff;
  font-weight:600;
  text-transform:uppercase;
  margin-top:10px;
  align-items: center;
}
.nav i.fhoto {
  font-size:10px;
  color:#eee;
  position: relative;
  margin-block: 2px;
}

.nav .nav-item {
  position:relative;
  width:100%;
  text-align:center;
}
.nav .main-item,
.nav .sub-item {
  padding:15px 0px;
  background:#222;
}
.nav .nav-item .sub-items {
  position:absolute;
  top:0px;
  right:-900px;
  width:max-content;
  z-index:-1;
  transition:all 300ms ease-in-out;
}
.nav .sub-items .sub-item {
  float:left;
  width:100px;
 
}
.nav .main-item:hover,
.nav .sub-item:hover {
  background:#7fc123;
  cursor:pointer;
}

.nav .nav-item:hover .sub-items {
  right:50px;
}
.news-container {
  
  font-size: 16px;
  background: #080909;
  color: #cb73fb;
  padding: 10px 30px;
  box-shadow: 0 4px 4px -8px rgb(0, 51, 98);
  border-radius: 50px;
  overflow: hidden;
 
}

.news-container::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 14px;
  background: linear-gradient(transparent, #003262);
}

.news-container .news-heading {
  font-weight: bold;
  width: 150px;
  background: #080809;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid #fff;
  font-family: "Poppins", sans-serif;
}

.news-container .news {
  position: relative;
  
  
}

.news-container .news-single {
  color: #fff;
  width: 700px;
  font-size: 13px;
  text-decoration: none;
  font-weight: normal;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-8px);
  transition: all 400ms ease;
  pointer-events: none;
}

.news-container .news-single.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.member {
  background: #f3f6dd;
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 50px;
  text-align: center;
}

.member .pic {
  overflow: hidden;
  width: 120px;
  height: 120px;
  border-radius: 70%;
  margin: 0 auto 20px auto;
}

.member .pic img {
  transition: ease-in-out 0.3s;
}

.member:hover img {
  transform: scale(1.1);
}

.member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #36343a;
}

.member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b5b3ba;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a4a0dd;
}

.member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.member .social a:hover {
  background: #de1717;
}

.member .social a+a {
  margin-left: 8px;
}
@media (max-width: 476px) {
  
  
  .news-container .news-heading {
    font-size:8px;  

 
  border-right: 1px solid #fff;
  font-family: "Poppins", sans-serif;
  }
  
  .news-container .news-single {
    font-size: 8px;

    overflow: hidden; white-space: nowrap; z-index:99;
  }
  
  .member {
    background: #f3f6dd;
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 5px;
    border-radius: 50px;
    text-align: center;
  }
  
  .member .pic {
    overflow: hidden;
    width: 20px;
    height: 20px;
    border-radius: 70%;
    margin: 0 auto 2px auto;
  }
  
  .member .pic img {
    transition: ease-in-out 0.3s;
  }
  
  .member:hover img {
    transform: scale(1.1);
  }
  
  .member h4 {
    font-weight: 700;
    margin-bottom: 1px;
    font-size: 10px;
    color: #36343a;
  }
  
  .member span {
    display: block;
    font-size: 8px;
    padding-bottom: 2px;
    position: relative;
    font-weight: 500;
  }
  
  .member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 1px;
    background: #b5b3ba;
    bottom: 0;
    left: 20%;
    transform: translateX(-20%);
  }
  
  .member p {
    margin: 2px 0 0 0;
    font-size: 8px;
  }
  
  .member .social {
    margin-top: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .member .social a {
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 10px;
    height: 10px;
    background: #a4a0dd;
  }
  
  .member .social a i {
    color: #fff;
    font-size: 8px;
    margin: 0 2px;
  }
  
  .member .social a:hover {
    background: #de1717;
  }
  
  .member .social a+a {
    margin-left: 2px;
  }
  .balatas {
    width: 20px;
    height: 20px;
    background-color: #dbd034; /* Warna latar belakang bulatan */
    border-radius: 50%; /* Membuat bentuk bulatan */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff; /* Warna teks angka */
 }
  
.anka {
    /* Atur properti teks sesuai kebutuhan */
    font-weight: bold;
    text-align: center;
 }
}
.balatas {
    width: 70px;
    height: 70px;
    background-color: #dbd034; /* Warna latar belakang bulatan */
    border-radius: 50%; /* Membuat bentuk bulatan */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    color: #fff; /* Warna teks angka */
 }
  
.anka {
    /* Atur properti teks sesuai kebutuhan */
    font-weight: bold;
    text-align: center;
 }
 marquee {
  font-family: “Roboto Condensed”;
  }