.{

    margin: 0;
    padding: -10px;
}


@font-face /*perintah untuk memanggil font eksternal*/
{
  font-family: 'Aveline'; /*memberikan nama bebas untuk font*/
  src: url('../../font/Aveline Regular.otf');/*memanggil file font eksternalnya di folder nexa*/
}




body{
    font-family: sans-serif;
    overflow-x: hidden;
    background-image: url("../../gambar/bg.png");
    background-size:100%;
    background-position: center; /* Center the image */

}


/* tampilan hp*/
@media screen and (max-device-width: 480px) {
  
  .ctdp{
  
  
    display: none;
  
  }


  .col-2{

    display: none;

  }

  .col-5{

    display: none;

  }


  .col-6{

    display: none;

  }


  .col-4{

    display: none;
  }

  .saly7{

    display: none;

  }
  




  
/*AWAL CSS CROUSLE HP*/



@keyframes tonext {
  75% {
    left: 0;
  }
  95% {
    left: 100%;
  }
  98% {
    left: 100%;
  }
  99% {
    left: 0;
  }
}

@keyframes tostart {
  75% {
    left: 0;
  }
  95% {
    left: -300%;
  }
  98% {
    left: -300%;
  }
  99% {
    left: 0;
  }
}

@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}

body {
  max-width: 37.5rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  font-family: 'Lato', sans-serif;
}

* {
  box-sizing: border-box;
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
}

*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

* {
  -ms-overflow-style: none;
}

ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel {
  position: relative;
  padding-top: 75%;
  filter: drop-shadow(0 0 10px #0003);
  perspective: 100px;
}

.carousel__viewport {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  background-color: #f99;
  counter-increment: item;
}

.carousel__slide:nth-child(even) {
  background-color: #99f;
}

.carousel__slide:before {
  content: counter(item);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-40%,70px);
  color: #fff;
  font-size: 2em;
}

.carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
}

@media (hover: hover) {
  .carousel__snapper {
    animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 4s;
    animation-iteration-count: infinite;
  }

  .carousel__slide:last-child .carousel__snapper {
    animation-name: tostart, snap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__snapper {
    animation-name: none;
  }
}

.carousel:hover .carousel__snapper,
.carousel:focus-within .carousel__snapper {
  animation-name: none;
}

.carousel__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.carousel__navigation-list,
.carousel__navigation-item {
  display: inline-block;
}

.carousel__navigation-button {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #333;
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
}

.carousel::before,
.carousel::after,
.carousel__prev,
.carousel__next {
  position: absolute;
  top: 0;
  margin-top: 37.5%;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  border-radius: 50%;
  font-size: 0;
  outline: 0;
}

.carousel::before,
.carousel__prev {
  left: -1rem;
}

.carousel::after,
.carousel__next {
  right: -1rem;
}

.carousel::before,
.carousel::after {
  content: '';
  z-index: 1;
  background-color: #333;
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 4rem;
  text-align: center;
  pointer-events: none;
}

.carousel::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
}

.carousel::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
}



/*AKHIRCSS CROUSLE HP*/




  
  
  
  }

/* nAVBAR */

nav{
    display: flex;
    background-color: rgba(230, 230, 244, 0);
    justify-content: space-around;
    /* padding: 5px 0; */
    color: rgb(102, 110, 233);
    height: 50px;
    align-items: center;
    position:absolute;
    width: 100%;
    z-index: 4;




}

nav ul{

    display: flex;
    list-style: none;
    width: 25%;
    justify-content:space-between ;
}

nav ul li a{

    color: black;
    font-size: 0.8em;
    letter-spacing: 1px;
    text-decoration: none;
    left: 0;

}

nav ul li a:hover{

    color: black;
    font-weight:bold;
 

}

.icon{
width: 27px;

}

nav .logo{

    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0px;
    margin-left: 50px;
    /* sbackground-color: brown; */
    width: 35%;
    font-size: 25px;
}


nav .contact {
    width: 35%;
    text-align: right;
    margin-right: 50px;
}


nav .contact a {
   text-decoration: none;
   background-color: #FFAD33;
   padding: 10px;
   border-radius: 3px;
   font-size: 12px;
   color: white;
   margin-right: 20px;

}


/* humberger menu */

.menu-toggle{
display: none;
flex-direction: column;
height: 20px;
justify-content: space-between;
position: relative;

} 

.menu-toggle input{
    position:absolute;
    width: 40px;
    height: 28px;
    opacity: 0;
    left: -10px;
    top: -5px;
    cursor: pointer;
    z-index: 2;

}

/* humberger 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){

    transform: rotate(45deg) translate(-1px, -1px);
}

.menu-toggle input:checked ~ span:nth-child(4){

    transform: rotate(-45deg) translate(-1px ,0);
}

.menu-toggle input:checked ~ span:nth-child(3){

    transform: scale(0);

}


.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: rgb(47, 66, 236);
 border-radius: 3px;
 transition: all 0.5s;

}

/* rePONSIVE BREAK POINT */


/* UKURAN TABLET */

@media screen and (max-width:768px) {

    nav ul{
        width:20%;
    }
    
}


/* UKURAN hp */



@media screen and (max-width:576px) {
    
    .menu-toggle{

        display: flex;
    }
    

    nav ul{
      position:absolute;
      right:0!important;
      top: 0;
      height: 100vh;
      width :100px;
      flex-direction: column;
      align-items: center;
      background-color: rgba(230, 230, 244, 0.962);
      justify-content: space-evenly;
      z-index: -1;
      transform: translateX(100%);
      transition: all 1s;
      opacity: 0;
    }

    nav ul.slide{
        opacity: 1;

        transform: translateX(0);
    }

}



/* css crousle */

.carousel {
    position: relative;
    top: -27px;
   margin-left: -50%;
  

  }
  
  .carousel__item {
    width: 600px;
    background: rgba(250, 250, 250, 0);
    /* padding: 1em; */
    font-family: "Quicksand", sans-serif;
    font-weight: bold;
    font-size: 2em;
    color: #0c0c0c;
    display: none;
  }
  
  .carousel__item--selected {
    display: block;
  }
  
  .carousel__nav {
    width: 100%;
    /* padding: 20px 0; */
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
  }
  
  .carousel__button {
    width: 10px;
    height: 10px;
    display: inline-block;
    background: rgba(37, 36, 36, 0.2);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .carousel__button--selected {
    background: rgba(0, 0, 0, 0.5);
  }


  /* fade crousle */


  .fade {
    animation-name: fade;
    animation-duration: 2s;
  }
  @keyframes fade {
    from {opacity: .5}
    to {opacity: 1}
  }

  /* isi crousle  */

  .split {
    display: flex;
    width: 100%;
  }
  
  .col-1 {
    /* background-color: rgb(194, 194, 40); */
    flex: 1;
    width: 30%;
  }
  
  .col-2 {
    /* background-color: orange; */
    flex: 1;
  }

  .imgbaner{
    width:100%;
    height: 100%;
    margin-top: -80px;
    margin-bottom: 30px;

  }

  .isiban{
  
    /* justify-content: center; */
    align-items: center;
    height: 100%;
    margin: 50px;
  }

  .find{
  
    color: #FFAD33;
    font-family: 'Aveline';
    font-size: 50px;
    width: 100%;
    display: flex;
    margin-top: 35%;

  }

  .youare{

    font-family: "Secular One", sans-serif;
    font-weight: 400;
    width: 100%;
    font-weight: bold;
    font-size: 40px;
    width: 100%;
    margin-bottom: 7px;
  }

  .get{

    text-decoration: none;
   background-color: #3366FF;
   padding: 15px;
   border-radius: 3px;
   font-size: 17px;
   color: white;
  }

  .gt{

    margin-top: 30px;
  }

  .jabaran{

    font-family: "Jura", sans-serif;

  }


  .explore{

    background-color: white;
    border-radius: 10px;
    /* margin: 30px; */
    padding: 15px;
    /* font-weight: bold; */
    font-size: 40px;
    width: 90%;
    margin-right: 30px;
    
  }


  .row{

    background-color: #77737315;
    border-radius: 10px;
    padding-right: 30px;
    padding-left: 0%;
    padding-bottom: 30%;
    margin: 30px;
  }

  .prd{
    color:#3366FF;
    font-weight: bold;
    font-size: 60px;
    margin-top: -1px;
    font-weight: 800px;
  }

  .saly{

    width: 125px;
    height: 125px;
    left: -100px;
 
  }


  .col-3 {
   width: 35%;
  }
  
  .col-4 {
    /* background-color: orange; */
    flex: 1;
  }


  .explore2{

    background-color: white;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 10px;

    margin-top: 125px;
    margin-left: 30px;
    margin-right: 10px;


  }

  .titleexplore{

    font-size: 35px;
    font-family: "Secular One", sans-serif;

  }

  .devisi{

    text-align: justify;
  }

  .see{

    cursor: pointer;
    border: 1px solid #3366FF;
    background-color: transparent;

    color: #3366FF;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 13px;
    padding-bottom: 13px;
    font-weight: bold;


    text-decoration: none;
    border-radius: 50px;



  }

  .boxsee{

    margin-top: 30px;
  }


  .bookmation{

    margin-top: -100px;
    margin-left: 30px;
    width: 100%;
    height: 210px;
  }

  .book{

    margin-top: -150px;
  }

  .boxsee:hover{

    .fa-shake{

      margin-left: 5px;
      
    transition-duration: 0.5s;
    transition-timing-function: linear;
      
      
    }
   
  }

  .bgcrousle{

  /* background-image: url("gambar/Rectangle.png");  */
   width: 25%;
    background-color: #2da0fe80;
    right: 0%;
    height: 650px;
    top: -10px;
    position: absolute;

    padding-top: 25px;


  }


  .putih{

    background-color: white;
    height: 500px;
    margin-top: 50px;
    margin-left: -45%;

    width: 300px;
    border-radius: 10px;
  }

  .imgbaner:hover{
    animation: shake 0.5s;

    animation-iteration-count: infinite;

  }

  @keyframes shake {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
  }

.imgrotate{

   width:100%;
   height:100%;
  }


  .imgrotatevvvv:hover{
  
    rotate: 0deg;
    transition-duration: 0.3s;
    transition-timing-function: linear;

    width: 100%;
    margin-top: 0px;
    margin-left: 0px;


    
  }





 
 
 

  .divcol4{

    margin: 30px;
  }

  .seeall{

    text-decoration: none;
    margin-bottom: 20px;
    color:#3366FF;
    font-weight: bold;
  }

  .seeall:hover{

    .fa-shake{

      margin-left: 5px;
    }
      margin-left: -5px;
    
  }


  .box{

    background-color: white;
    width: 170px;
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
    float:left;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 5px;
    margin-bottom: 25px;


  }


  .box:hover{

    background-color: white;
    width: 170px;
    height: 250px;
    border-radius: 25px;
    overflow: hidden;
    float:left;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 5px;
    margin-bottom: 25px;


  }

  .titlebox{
    background-color:#3366FF;
    color: white;
    margin-top: -45px;
    position : relative;
    width: 100%;
    height: 50px;
    font-weight: bold;
     padding: 5px; 
     font-family: "Poppins";



  }

  .titlebox2{
    background-color:#3366FF;
    color: white;
    margin-top: 0px;
    position : relative;
    width: 100%;
    height: 200px;
    font-weight: bold;
     padding: 10px; 
     font-family: "Poppins"!important;
  }

  .litlebox{

    background-color: rgb(8, 31, 243);
    width: 20px;
    height: 20px;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    border-radius: 5px;
    font-weight: bold;
    color: #fefeff;
    margin-top: -25px;
    margin-left: 90px;

    font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;


  }




.hal{
      font-size: 9px;
      color: #585252;
    }


    .col-5{

      width: 50%;
      background-color: rgba(181, 186, 192, 0.301);
      height: 360px;

      padding: 100px;
      
    

    }


    .col-6{

      width: 50%;
      background-color: rgba(181, 186, 192, 0.301);


    }

    .idical5{
      

    margin-top: 50%;


    
    }



    .contactus{

      font-weight: bold;
      font-size: 50px;
     
    }

    .email{

      font-weight: bold;
      
      margin-top: 20px;

    }


    .atas{

      margin-top: 0px;
    }

    .isicontac{

      margin-top: 0px;
    }

    .isiemail{

      margin-top: 0px;
    }

    .gettoch{

      background-color: rgba(255, 255, 255, 0.356);
      margin: 30px;
      padding: 30px;
      border-radius: 15px;
      border:solid 1px white;
     
    }

    .git{

      font-weight: bold;
    }

    .input{

      width: 90%;
      height: 40px;
      border:1px solid white;
      border-radius: 10px;
      margin-top: 10px;
      padding-left: 20px;
      margin-right: 20px;
    }

    .splitget{

      margin: 10px;

    }

    .textarea{

      width: 90%;
      height: 100px;
      border:1px solid white;
      border-radius: 10px;
      margin-top: 10px;
      padding-left: 20px;
      padding-top: 20px;

    }


    .submit{
      text-decoration: none;
      background-color: #FFAD33;
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 15px;
      padding-bottom: 15px;

      border-radius: 10px;
      font-size: 12px;
      color: white;
      border: #FFAD33;
      font-weight: bold;
      padding-top: 15px;
      letter-spacing: 1px;

    }

    .saly7{

      margin-top: -460px;
    }



    .hijab{

      background-color: #eeeef100;
     
      width: 170px;
      margin-top: -290px;
      position: absolute;
      height: 250px;
    }


    .lib{

      width: 100%;
      text-align: center;
      margin-left: 15px;

    }

  .judul{

    font-size: 9px;

  }

.linkback{
  font-weight: bold;
  text-decoration: none;
  color: #0c0c0c;
  z-index: 1px;

}

.back{

  padding: 17px;

}

.jarakback{

  margin-right: 8px;
}

.imagelogin{

  margin-left: -190px;
  margin-right: -190px;
  position: relative;
}

.gblogin{
  margin-top: -110px;
  
}


.logolg{

  color:#3366FF ;
  font-weight: bold;
}


.bg{
  font-family: sans-serif;
  overflow-x: hidden;
  background-image: url("../../gambar/v904-nunny-012 1.png")!important;
  background-position: center; /* Center the image */
 width: 100%;
 height: 100%;;
margin-bottom:-20% ;
margin-top: -10px;
margin-left: -10px;
}


.singin{

  background-color: rgba(255, 255, 255, 0.356); */
  margin: 30px;
  padding: 40px;
  border-radius: 40px;
  border:solid 1px white;
  margin-left: 110px;
  margin-right: 110px;
  margin-bottom: 110px;
 
}


.col-singin {
  /* background-color: rgb(194, 194, 40); */
  flex: 1;
  width: 30%!important;
}


.titlelogo{


  box-shadow: #3366FF;
  text-shadow: 2px 2px 4px #9189d8;
  font-weight: bold;
  margin-top: 90px;
  font-size: 25px;
  font-family: "Poppins", sans-serif;

}

.jbrn{
  font-family: "Jura", sans-serif;
  margin-bottom: 40px;;
}

.titeleform{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #0c0c0c;
  font-size: 12px;
  margin-top: 10px!important;
}

.margintitleform{

  margin-top: 1px!important;
}

.gantipassword{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #3366FF;
  font-size: 12px;
  right: 0px!important;
}

.btn{


  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Poppins", sans-serif;


}

.btnblue{

  background-color: #3366FF;
  color: white;
  border-color: #3366FF;
}

.gantipasword{

  text-align: right;
  margin-right: 25px;
  margin-top: -20px;
}



.signin{

  font-family: "Secular One", sans-serif;
  font-weight: 400;
  width: 100%;
  font-weight: bold;
  width: 100%;
  margin-bottom: 7px;
}
 


.divsign{

  font-family: "Secular One", sans-serif;
  font-weight: 400;
  width: 100%;
  font-weight: bold;
  font-size: 55px;
  width: 100%;
  margin-bottom: 7px;
}

.kesignup{

  font-weight: bold;
}

.noaccount{

  text-align: left;
  margin-right: 25px;
  margin-top: 0px;
  margin-bottom: 80px;
}

.colorsignup{
  color: #3366FF;

}



.putihlogin{

  background-color: white;
  height: 500px;
  margin-top: 100px;
  margin-left: -45%;

  width: 300px;
  border-radius: 10px;
}


.marginleft{

  margin-left: -10px;
}

.marginbottom{

  margin-bottom: -10px!important;
}


.imagesaly{

  width: 120%;

  margin-top: -120px;;
  margin-left: 50px;
  position: relative;

}


.titlelogosingin{


  box-shadow: #3366FF;
  text-shadow: 2px 2px 4px #9189d8;
  font-weight: bold;

  font-size: 25px;
  font-family: "Poppins", sans-serif;

}

.bg50{

  width: 300px;
  position: absolute;


}

.bgbiru{

  background-color: #7c90ca44;
  width: 67%;
  height: 190%;
  margin-bottom: -120%;
  margin-top: -900px;

}


.bgbiruterang{

  background-color: rgba(164, 173, 197, 0.137);
 

}


.titleprofile{


  box-shadow: #030303;
  text-shadow: 2px 2px 4px #9189d8;
  font-weight: bold;
 
  font-size: 45px;
  font-family: "Poppins", sans-serif;
  margin-top: -35px;

}


.bulat{
  width: 140px;
  height: 140px;
  background-color: white;
  border-radius: 50%;
  padding: 7px;
  border-style: solid;
  border-color: #3366FF;
  border-width: 1px;
  margin-top: 50px;
}


.bulat2{
  width: 100%;
  height: 100%;
  background-color: rgba(31, 19, 19, 0.973);
  border-radius: 50%;
}

.nama{

  margin-top: 20px;
  color:#3366FF ;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;

}

.skol{

  font-family: "Poppins", sans-serif;
  font-size: 12px;

}


.emailprofil{

  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color:#3366ff7a;

}


.btnsigout{

  font-size: 10px;
  text-decoration: none;
  font-weight: bold;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-radius: 10px;
}

.margin{
  margin-top: 30px;

}



.pop{

  background-color: rgba(255, 255, 255, 0.925); */
  margin: 30px;
  padding: 40px;
  border-radius: 10px;
  border:solid 1px white;
  width: 70%;
  margin-top: 20%;
  margin-left: -170px;

 
}


.gif{

  width: 60%;
  margin-bottom: -45px;
}



.bgprofil{
  width: 100%;
  background-color: #ebe3e3da;
 
  background-image: url("../../gambar/bgprofil.png")!important;
}


.sukses{
  width: 450px;
  background-color:white;

  height: 300px;
  border-radius: 30px;
  text-align: center;
  position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}


.center{
  text-align: center;

}

.border{

  background-color: #1940b4;
  padding: 5px;
  border-radius: 50%;
  color: white;

}





/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #f7ebeb;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 50%; /* Could be more or less, depending on screen size */
  border-radius: 30px;

}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}




.eprofil{

font-weight: bold;
text-decoration: underline;
margin-top: 30px;


}


.bulatedit{
  width: 100px;
  height: 100px;
  background-color: white;
  border-radius: 50%;
  padding: 7px;
  border-style: solid;
  border-color: #3366FF;
  border-width: 1px;
  margin-top: 30px;
  
}

.col-ebul{
  width: 150px;

}

.coleditname{

  width: 100%;
  margin-left: 30px;

} 

.trasparan{

  color: transparent;
  visibility: hidden;
}

.bluelogo{

  color: #3366FF;
  font-weight:bolder;
  margin-top: 0px;
  margin-left: 20px;

}

.serachleft{

  right: 10px!important;
  position: absolute;
  border: #8080802f;
  height: 25px;
  font-size: 13px;
  background-color: rgba(255, 253, 253, 0.014);
  margin-top: -5px;
}

.simbolserachleft{

  right: 185px!important;
  position: absolute;
  margin-top: 0px;

}

.group{

  background-color: #0000003d;

  width: 200px;
  height: 40px;
  margin-left: 40px;
  border-radius: 50px;
  padding: 4px;
}

.latest{

 width: 90px;
 height: 100%;
  background-color: white;
  border-radius: 50px 50px 50px 50px;
  font-family: "Poppins", sans-serif;

  
}

.lbllatest{

  margin-top: -30px;
  position: absolute;
  margin-left: 15px;
  color: #3366FF;
  font-weight: bold;
  font-family: "Poppins", sans-serif;

}

.popular{

  padding-top: 9px;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  color:#585252;
  font-weight: bold;


}


.kanan{

  right: 10px!important;
  position: absolute;
}


.men{

  margin: 10px;
  text-decoration: none;
  color: #4e4c4cb7;

}


.men:hover{

  color: #6588f0;
  
font-weight: bold;
}

.bodylib{
  margin-top: 50px;
  text-align: center!important;
  width: 95%;
}


.bg{
  background-image: url("../../gambar/bgdetail.png")!important;
background-size:105%;

}


.boxdetail{

  background-color: rgb(119, 46, 46);

 /* width: 420px;*/

/*height: 600px; */

  width: 300px;

  height: 400px;

  border-radius: 25px;
  overflow: hidden;
  margin-left: 10%;
  margin-top: 100px;
  margin-bottom: 250px;


}

.transwhite{
  background-color: rgba(250, 249, 249, 0.493); 
  width:52%;
  margin-left: 300px;
  height: 500px;
  border-radius: 50px 50px 50px 50px;

  margin-top: -720px;
  border: white;
  border-style:inherit;
  padding-left: 15%;
  padding-top: 3%;
  text-decoration: none;
  color: #030303;
}



.linewhite{
  width: 1px;
  height: 50%;
  background-color: rgb(250, 250, 250);
}

.bookicon{

  width:15px;
  height:15px;
  padding: 5px;
  background-color: white;
  border-radius: 50%;
 

  margin-left: -10px;
  position: absolute;
  color: orange;

}

.isidetail{

  margin-left: 70px;
  height: 90%;
  background-color: #ffffff00;
  margin-top: -26%;
  width: 90%;
}

.haldetail{

font-size: 12px;
margin-top: 30px;

}

.authors{

  margin-top: 30px;
}

.publisher{

  margin-left: 100px;
}

.description{

  text-align: justify;
  margin-right: 50px;
  text-decoration: none!important;
  height: 30%;
  background-color: #3366ff00;
  overflow: auto;
  display: flex;
  flex-direction: column-reverse;
}


.classmg30{
margin-top: 60px;

}











/*untuk layar device berukuran kecil*/
@media screen and (min-width: 450px) {
   .light_blue, .green {
       width: 50%
   }


  }
/*untuk layar device berukuran sedang*/
@media screen and (min-width: 550px) {

  .bodylib{
    margin-left: 5%;}
    
}

/*untuk layar device berukuran besar*/
@media screen and (min-width: 800px) {
  .bodylib{
    margin-left: 5%;}
}





















 



  


   

  





