*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul, ol{
    margin: 0 ;
    padding: 0 ;
}
a{
    text-decoration: none;
}

.barshow{
  width: 60% !important;
}
.slide_bar{
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background: radial-gradient( rgba(42, 23, 255, 0.5), rgba(7, 5, 42, 0.5));
  backdrop-filter: blur(10px);
  height:100vh;
  display: flex;
  overflow: hidden;
  transition: 0.5s all;
}
.slide_bar ul{
  width: 80%;
  padding-left: 20px;
  margin-top: 100px;
}
.slide_bar ul li{
  margin-top: 20px;
  list-style: none;
}
.slide_bar ul li:hover{
 border-bottom: 2px solid white;
}
.slide_bar ul li a{
  color: white;
}
.slide_bar .time{
  width: 20%;
  display: flex;
  justify-content: center;
  padding: 20px;
  left: 0;
}
.slide_bar .time i{
  font-size: 35px;
  color: white;
}

.header{
    width: 100%;
    background-color: #07052A;
    padding: 10px;

}
.header .slidedown{
  /* position: fixed; */
  width: 100%;
  top: 0;
  left: 0;
  border: 1px solid blue;
  border-radius: 20px;
  background-color: transparent;
  backdrop-filter: blur(10px);
  animation: slideshow 0.3s forwards;
  z-index: 9999;
}
@keyframes slideshow{
  from{
    top: -150px;
  }
  to{
    top: 0;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
  }
}
.header nav .slide_box{
  display: flex;
  color: white;
  width: 35%;
  display: none;
}
.header nav .slide_box i{
  font-size: 35px;
}

.header nav{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: start;
   border: 1px solid blue;
   border-radius: 20px;
   background-color: transparent;
   backdrop-filter: blur(10px);

}
.header nav .logo{
    width: 30%;
    display: flex;
    justify-content: center;
}
.header nav .logo img{
    width: 35px;
    height: 35px;
}
.header nav ul{
    width: 35%;
    display: flex;
    padding: 6px 10px 0px 10px;

}

.header nav .icon{
    width: 30%;
    display: flex;
    justify-content: end;
}
.header nav ul li{
   list-style: none;
   margin-left: 20px;
}
.header nav ul li a{
    text-decoration: none;
    color: white;
    font-size: 16px;
}
.header nav ul li a:hover{
    text-decoration: none;
    color:#19008A;
}
.header nav .icon a{
    padding: 8px 30px; 
    border-radius: 20px;
    background-color: rgb(9, 5, 71);
    font-size: 12px;
    color: white;
    border: 1px solid blue;
    overflow: hidden;
    position: relative;
    z-index: 1;

}
.header nav .icon a::after{
    width: 200px;
    height: 60px;
    top: -3px;
    left: -80px;
    background: radial-gradient( #2a17ff, #07052A);
    content: '';
    position: absolute;
    z-index: -1;
    transition: all 0.5s;
}
.header nav .icon a:hover::after{
   margin-left: 60px;
}
.home{
    width: 100%;
    background: radial-gradient( #100A4F, #07052A);
    /* position: fixed; */
}
.home .home-content{
    display: flex;
    color: white;
}
.home .content{
    width: 50%;
    padding: 30px;
}
.home .content p{
    font-size: 16px;
}
.home .content h5{
    font-size: 30px;
    margin-top: 50px;
}
.home .content h1{    
    font-size: 52px;
}
.home .content .icon-box{
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 50px;
}
.home .content .icon-box .icon{
    width: 50px;
    height: 50px;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.home .content .icon-box .icon::after{
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgb(255, 255, 255);
    content: '';
    border-radius: 50px;
    z-index: -1;
    transform: scale(0);
    transition: all 0.2s;
}
.home .content .icon-box .icon:hover::after{
    transform: scale(1);
}
.icon-box .icon i{
    font-size: 20px;
    transition: all 0.3s;
    color: white;
}
.icon-box .icon:hover i{
    color: rebeccapurple;
    transform: scale(1.5);
}
.icon-box button{
    padding: 15px 30px  ;
    background-color: rgb(9, 5, 71);
    border-radius: 50px;
    border: 1px solid white;
    color: white;
}
.icon-box button a{
    color: white;
}
.home .image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}
.image .image-box{
    width: 450px;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(8deg);
    transition: all 0.3s;
}
.image .image-box:hover{
    transform: rotate(0deg);
    box-shadow: 0px 0px 10px #2601cd;
    
}
.image .image-box:hover img{
    transform: scale(1.1);

}
.image .image-box img{
  transition: all 0.3s ease-in-out;
    width: 100%;
}
.work{
  padding-top: 30px;
    width: 100%;
    background: radial-gradient( #100A4F, #07052A);
}
.work-content{
    width: 100%;
    color: white;
}
.work-content button{
    padding: 8px 35px;
    background-color: #2601cd;
    border-radius: 20px;
    color: white;
    border: none;
    font-size: 20px;
}
/* .work-content h1{
    margin-top: 20px;
    border-radius: 20px;
}
.work-content select{
  padding: 10px 30px;
  border-radius: 10px;
  outline: none;
} */

.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
.my-projects {
    padding-bottom: 190px !important;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
  }
  .graphic-content{
    width: 100%;
    margin-top: 30px;
  } 
  .my-skills{
    width: 100%;
    padding: 60px 0px;
    background: radial-gradient( #100A4F, #07052A);
    color: white;
  }
  .my-skills .skills-box{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

  }
   .skills-box .skills{
    padding: 20px;

  }
   .skills-box .skills h1{
    font-size: 22px;
    margin-top: 10px;

  }
   .skills-box .skills .skills-icon{
    width: 200px;
    padding:60px  20px;
    border: 1px solid #2601cd;
    border-radius: 20px;

  }
   .skills-box .skills .skills-icon:hover{ 
    box-shadow: 0px 0px 10px #2601cd ;
    border: 1px solid #2601cd;


  }
   .skills-box .skills .skills-icon img{
    width: 60px;
    height: 60px;
    transition: all 0.3s;
    filter: grayscale(100%);
  }
   .skills-box .skills .skills-icon:hover img{
    transform: scale(1.9);
    filter: grayscale(0%);
  }
  .educations{
    width: 100%;
    background: radial-gradient( #100A4F, #07052A);

  }
  .educations h1{
    color: white;

  }
  .educations .education-part{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.educations .education-part .education{
        width: 49%;
        padding: 20px;
        border: 1px solid #2601cd;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
        margin-top: 20px;
  }
.educations .education-part .education:hover{
        box-shadow: 0px 0px 10px #2601cd ;
  }
 .education a{
        padding: 6px 15px;
        background-color: rgb(8, 0, 62);
        color: rgb(255, 255, 255);
        border-radius: 10px;
        border: 1px solid  #2601cd ;
  }
 .education h1{
        font-size: 22px;
        margin-top: 10px;
    color: rgb(255, 255, 255);

  }
 .education h5{
    color: rgb(145, 145, 145);
        font-size: 18px;
        margin-top: 10px;
  }
  .contacts{
    width: 100%;
    background: radial-gradient( #100A4F, #07052A);
    padding-bottom: 50px;
  }
  .contact {
   width: 100%;
   display: flex;
  }
  .contact .form{
    width: 80%;
    background: radial-gradient( #110591, #07052A);
    padding: 20px;
    border-radius: 20px;
    margin-top: 55px;
  }
  .contact .form:hover{
    box-shadow: 0px 0px 10px #2601cd ;
    border: 1px solid blue;
  }
  .contact .form h1{
    color: white;
  }
  .form input{
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    margin-top: 10px;
    border-radius: 20px;

  }
  .form textarea{
    height: 200px;
    width: 100%;
    padding: 20px;
    border: none;
    outline: none;
    margin-top: 10px;
    border-radius: 20px;
  }

  .form button{
    padding: 10px 30px;
    background-color: #07052A;
    border: 1px solid blue;
    color: white;
    border-radius: 20px;
    margin-top: 20px;
    
  }
  .contact .con-content{
    width: 50%;
    padding: 30px;
    margin-top: 55px;
  }
  .contact .con-content .cont-box{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .cont-box .icon{
    width: 50px;
    height: 50px;
    background-color: #2601cd;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  .cont-box .icon i{
    font-size: 22px;
    
  }
  .cont-box .icon-content{
    width: 80%;
    color: white;
    
  }


  .footer {
    width: 100%;
    background-color: #07052A;
  }
  .footer p {
   color: white;
   font-size: 16px;
   margin: 0;
   padding: 20px;
    }






@media (min-width:768px) and (max-width:991px){
  .header nav .logo{
    justify-content: end;
  }
}




@media(max-width:767px){
    .header nav .logo img{
        width: 30px;
        height: 30px;
    }
    .header nav {
      margin-left: -23px;
      position: fixed;
      z-index: 999;
    }
    .header nav ul{
      display: none;
    }

    .header nav .icon a{
      padding: 8px 15px; 
  
  }
    .header nav .slide_box{
      display: block;
    }
    .sho_ul{
      display: block !important;
    }
    .home .content{
        width: 100%;
        margin-top: 20px;
    }
    .home-content{
        flex-direction: column;
    }
    .home .content h5{
        font-size:20px;
        margin-top: 30px;
    }
    .home .content p{
        font-size: 14px;
    }
    .home .content h1{
        font-size: 30px;
    }
    .home .image{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: -20px;
    }
    .icon-box a {
        padding: 10px;
        
    }
    .home .content .icon-box .icon {
        width: 25px;
        height: 25px;
    }
    .home .content .icon-box .icon i {
        font-size: 16px;
    }
    .skills-box .skills{
        padding: 15px;
    
      }
       .skills-box .skills h1{
        font-size: 16px;
        margin-top: 10px;
    
      }
       .skills-box .skills .skills-icon{
        width: 100px;
        padding:20px  15px;
        border-radius: 20px;
    
      }
      .education h1{
        font-size: 14px;
        margin-top: 10px;
  }
      .education h5{
        font-size: 10px;
        margin-top: 10px;
  }
      .education a{
        font-size: 10px;
  }
  .contact {
    flex-direction: column;
   }
  .contact .form{
    width: 100%;
  }
  .contact .con-content{
    width: 100%;
    padding: 30px;
  }

  .header .slidedown{
    left: 22px;
  }
  .icon-box button {
    padding: 3px 10px;
   
}
.footer p {
    font-size: 8px;

   }
   .home .content .icon-box{
    gap: 8px;
   }
}




/* Chat for whatsapp */
.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
}

#whatsapp-chat {
  box-sizing: border-box !important;

  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  left: 30px;
  overflow: hidden;
  z-index: 99;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}
a.blantershow-chat {
  /*   background: #009688; */
  background: #fff;
  color: #404040;
  position: fixed;
  display: flex;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 25px;
  left: 30px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}
a.blantershow-chat svg {
  transform: scale(1.2);
  margin: 0 10px 0 0;
}
.header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}
.header-chat h3 {
  margin: 0 0 10px;
}
.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.info-avatar {
  position: relative;
}
.info-avatar img {
  border-radius: 100%;
  width: 50px;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}
a.informasi:hover {
  background: #f1f1f1;
}
.info-chat span {
  display: block;
}
#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}
#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}
#get-label,
#get-nama {
  color: #fff;
}
span.my-number {
  display: none;
}
/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 40px;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
}

a#send-it {
  width: 30px;
  font-weight: 700;
  padding: 10px 10px 0;
  background: #eee;

  svg {
    fill: #a6a6a6;
    height: 24px;
    width: 24px;
  }
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
  & span {
    background: #e2e2e2;
    color: #333;
    font-size: 14.2px;
    line-height: 1.7;
    border-radius: 10px;
    padding: 15px 20px;
    display: inline-block;
  }
}

.start-chat .blanter-msg {
  display: flex;
}
#get-number {
  display: none;
}
a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}

@keyframes ZpjSY {
  0% {
    background-color: rgb(182, 181, 186);
  }
  15% {
    background-color: rgb(17, 17, 17);
  }
  25% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }
  25% {
    background-color: rgb(17, 17, 17);
  }
  35% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }
  35% {
    background-color: rgb(17, 17, 17);
  }
  45% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}
@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }
}
.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}
.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: rgb(230, 221, 212);
  position: relative;
  &::before {
    display: block;
    position: absolute;
    content: "";
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    z-index: 0;
    opacity: 0.08;
    background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
    
  }
}

.dAbFpq {
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: rgb(255, 255, 255);
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
  position: relative;
  display: flex;
}

.ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: rgb(158, 157, 162);
  animation-name: ZpjSY;
}

.dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: rgb(182, 181, 186);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}

.kAZgZq {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
  &::before {
    position: absolute;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    top: 0px;
    left: -12px;
    width: 12px;
    height: 19px;
  }
}

.bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
}

.cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}
