html {
  scroll-behavior: smooth;
}


* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family:poppins ;
  text-transform: capitalize;
}
:root{
  --bg:#051622;
  --font:#deb992;
}
a{
  text-decoration: none;

}




body{
  background-color: #051622;
}

section {
  overflow: hidden;
  }

  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }


  .header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--container-color);
    z-index: 5;
    transition: .4s;
  }
  
  /*=============== NAV ===============*/
  
  @media screen and (max-width: 767px) {
    .header{
      display: block;
    }
    .nav__menu {
      position: fixed;
      bottom: 0;
      left: 0;
      background-color: #2f363e ;
      box-shadow: 0 -1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
      width: 100%;
      height: 4rem;
      padding: 0 1rem;
      display: grid;
      align-content: center;
      border-radius: 1.25rem 1.25rem 0 0;
      transition: .4s;
      z-index: 30;
    }
  }
  
  .nav__list, 
  .nav__link {
    display: flex;
  }
  
  .nav__link {
    flex-direction: column;
    align-items: center;
    row-gap: 4px;
    color: var(--font);
    font-weight: 500;
  }
  
  .nav__list {
    justify-content: space-around;
  }
  
  
  
  .nav__name {
    font-size: var(--tiny-font-size);
    /* display: none;*/ /* Minimalist design, hidden labels */
  }
  
  .nav__icon {
    font-size: 1.5rem;
  }
  
  /*Active link*/
  .active-link {
    position: relative;
    color: var(--first-color);
    transition: .3s;
  }
  
  /* Minimalist design, active link */
  /* .active-link::before{
    content: '';
    position: absolute;
    bottom: -.5rem;
    width: 4px;
    height: 4px;
    background-color: var(--first-color);
    border-radius: 50%;
  } */
  
  /* Change background header */
  .scroll-header {
    box-shadow: 0 1px 12px hsla(var(--hue), var(--sat), 15%, 0.15);
  }
  
  /*=============== MEDIA QUERIES ===============*/
  /* For small devices */
  /* Remove if you choose, the minimalist design */
  @media screen and (max-width: 320px) {
    .nav__name {
      display: none;
    }
  }
  
  /* For medium devices */
  @media screen and (min-width: 576px) {
    .nav__list {
      justify-content: center;
      column-gap: 3rem;
    }
  }
  
  @media screen and (min-width: 767px) {
    body {
      margin: 0;
    }
    .section {
      padding: 7rem 0 2rem;
    }
    .nav {
      height: calc(var(--header-height) + 1.5rem); /* 4.5rem */
    }
    .nav__img {
      display: none;
    }
    .nav__icon {
      display: none;
    }
    .nav__name {
      font-size: var(--normal-font-size);
      /* display: block; */ /* Minimalist design, visible labels */
    }
    .nav__link:hover {
      color: var(--first-color);
    }
  
    /* First design, remove if you choose the minimalist design */
    .active-link::before {
      content: '';
      position: absolute;
      bottom: -.75rem;
      width: 4px;
      height: 4px;
      background-color: var(--first-color);
      border-radius: 50%;
    }
  
    /* Minimalist design */
    /* .active-link::before{
        bottom: -.75rem;
    } */
  }
  
  /* For large devices */
  @media screen and (min-width: 1024px) {
    .container {
      margin-left: auto;
      margin-right: auto;
    }
  }

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width:90%;
  padding: 30px 0;
  margin: auto;
  /* border-bottom:  1px solid  var(--bg); */
}

.logo {
  color: #deb99d;
  font-weight: 800;
  font-size: 1.4rem;
}
#megawati{
 
}
.menu {
  display: flex;
  justify-content: center;
  align-items:center ;
}

.menu li a{
  color: #1ba098;
  margin: 0px 10px;
  font-weight: 400;
  transition: all ease 0.3s;
}
.menu li a.active,
.menu li a:hover{
  
  font-weight: 600;
}

.nav-contack-btn{
  width: 130px;
  height: 40px;
  display: flex;
  font-size: 0.85rem;
  justify-content: center;
  align-items: center;
  background-color: #deb99d;
  border-radius: 20px;
  color: #051622;
  text-transform: uppercase;
  font-weight: 500;
}

/* #home {
  background-color: #051622;
} */

.home-img img{
  /* width: 300px;
	height: 450px;
	background: #1ba098;
	border-radius: 10%; */
}

/* responsif */
@media(max-width:850px){
  .navigation{
    justify-content: space-between;
    padding: 30px 0px;
    position: relative;
  }
  .navigation .menu{
    display: block;
    position: absolute;
    left: 0px;
    top: 100%;
    background-color: #ff7373;
    width: 100%;
    padding: 0px;
    margin: 0px;
    z-index: 102;
  }
  .navigation .menu li a{
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    margin: 0px;
    padding: 30px 20px;
  }

}




footer a:not(.nav-link) {
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  
}

#contact{
  background-color: var(--bg);
}

#jokowi {
  background-color: var(--bg);
}

#home{
  background-color: var(--bg);
}

#blog {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);

}
#blog-heading{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.blog-heading span{
  color: var(--font);
   
}

.blog-heading h3{
  font-size: 2.4rem;
  color: var(--font);
  font-weight: 600;
  text-align: center;

}



.blog-container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0px;
  flex-wrap: wrap;

}
.blog-box{
  width: 350px;
  background-color: #2f363e;
  border: 1px solid var(--bg);
  margin: 20px;
}

.blog-img{
  width: 100%;
  height: auto;
}




/* baru */

#warna{
  background-color: var(--bg);
}

.blog-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-text{
  padding: 30px;
  display: flex;
  flex-direction: column;

}

.blog-text span{
  color: var(--font);
  font-size: 0.9rem;

}

.blog-text .blog-title{
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--font);

}

.blog-text .blog-title:hover{
   color: #f33c3c;
  transition:  all ease 0.3s;

}

.blog-text p{
  color: var(--font);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 3 ;
  -webkit-box-orient: vertical ;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 20px 0px;

}

.blog-text a{
  color: var(--font);
}

.tenggah{
  text-align: center;
  font-size: 22px;
}
.blog-text a:hover{
  color: #1ba098;
  transition: all ease 0.3s;
}

.container-narrow {
  max-width: 1024px;
  margin: 0 auto;
}

.text-small {
  font-size: 0.875rem;
}

.text-uppercase {
  letter-spacing: 0.05em;
}

.hover-effect {
  transition: transform .18s ease-in-out;
}

.hover-effect:hover {
  transform: translateY(-2px);
}

.marker {
  position: relative;
  display: inline;
  width: auto;
}

.marker-center {
  padding-right: 0;
}


.marker-center:after {
  bottom: -30px;
  left: 50%;
  margin-left: -60px;
}

@media (max-width: 575.98px) {
  .marker {
    padding-right: 0;
  }
  .marker:after {
    bottom: -30px;
    left: 50%;
    margin-left: -60px;
  }
}

.entry-title a {
  text-decoration: none;
}


@media (max-width:1500px) {
  .services1 .img-content img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1190px) {
  .none {
    display: none;
  }
  .display {
    display: block;
  }
  section .content{
    width: 85%;
  }
  .services1 .img-content img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1000px) {
  .home .col .content-img  img {
    display: none;
  }
  .skills {
    width: 100%;
    height: auto;
  }
  .about .about-details{
    justify-content: center;
    flex-direction: column;
  }
  .about .about-details .left{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .about-details .right{
    width: 90%;
    margin: 40px 0;
  }
  .services1 {
    width: 100%;
    height: auto;
  }
  .services .boxes .box{
    margin: 20px 0;
    width: calc(100% / 2 - 20px);
  }
}
@media (max-width: 900px) {
  .about .left img{
    height: 350px;
    width: 350px;
  }
}




/* me */
.about1{
  width: 100%;
  height: 100vh;
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  align-items: center;

}

.about1 .konten img{
  height: auto;
  width: 600px;
  max-width:100%;

}

.tulisan{
  width: 550px;
  max-width: 100%;
  padding: 0 10px;

}

.konten{
  width: 1280px;
  max-width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;

}

.tulisan h1{
  color: #ffcc74;
  font-size: 50px;
  margin-bottom: 20px;
  text-transform: capitalize;

}

.tulisan h5{
  color: #Deb99d;
  font-size: 25px;
  margin-bottom: 25px;
  text-transform: capitalize;
  letter-spacing: 2px;

}
.tulisan p{
  color: #c0c4c0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 1px;
  margin-bottom: 45px;

}

.tombol{
    background-color: #4f3dff;
    color: #ffffff;
    border: 2px solid transparent;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: bold;
}

.tombol:hover{
  transform: scale(1.2);
  background-color: transparent;
  border: 2px solid #00d5ff;
  color: black;
  transition: .4s;
  cursor: pointer;

}

@media screen and(max-width: 1180px ){
  .about1{
    width: 100%;
    height: auto;
    padding: 70px 0px;

  }
}

.image-gallery {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  grid-gap: 20px;
}

.image-gallery .image-box {
  position: relative;
  background-color: #d7d7d8;
  overflow: hidden;
}

.image-gallery .image-box:nth-child(7n + 1) {
  grid-column: span 2;
  grid-row: span 2;
}

.image-gallery .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.image-gallery .image-box:hover img {
  transform: scale(1.1);
}

.image-gallery .image-box .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fafafaf2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}

.image-gallery .image-box:hover .overlay {
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  opacity: 1;
}

.image-gallery .image-box .details {
  text-align: center;
}

.image-gallery .image-box .details .title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  position: relative;
  top: -5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-gallery .image-box .details .category {
  font-size: 18px;
  font-weight: 400;
  position: relative;
  bottom: -5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-gallery .image-box:hover .details .title {
  top: 0px;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s 0.2s ease;
}

.image-gallery .image-box:hover .details .category {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s 0.2s ease;
}

.image-gallery .image-box .details .title a,
.image-gallery .image-box .details .category a {
  color: #222222;
  text-decoration: none;
}

/* Let's make it responsive */
@media (max-width: 768px) {
  .image-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
  }

  .image-gallery .image-box:nth-child(7n + 1) {
    grid-column: unset;
    grid-row: unset;
  }
}

#skills{
  background-color: var(--bg) !important;
}

#font1 {
  color: var(--font);
}



.our-service{
  margin-top: 100px;
}

.title1{
  margin-bottom: 100px;
}

.title1 h2{
  position: relative;
  font-size: 500;
  color: var(--font);
}

.title1 h2::before{
  content:'' ;
  position: absolute;
  left: 44%;
  bottom: -10px;
  width: 131px;
  height: 4px;
  background: #1ba098;
}

.services-wrapper{
  padding: 30px;
  background:#2f363e;
  transition: .4s;
}

.services-wrapper:hover{
  box-shadow: 5px 25px 40px 0 rgba(0, 0, 0, 0.15);
  transform: translateY(-20px );

}

.services-wrapper{
 margin-top: 15px;
}

.services-img{
  text-align: center;

}

.services-img img{
  width: 25%;
}


.services-content1 h4{
  text-align: center;
  margin: 15px 0;
  color: var(--font);
  font-size: 18px;
  font-weight: 500;

}

.services-content1 p{
  color: var(--font);
  font-size: 17px;

}

.services-content1 a{
  text-align: center;
  display: block;
  text-decoration: none;
  font-size: 17px;
  color: #4f3dff;

}



/* faq */
#jki{
  max-width: 800px;
  margin: 5vh auto;
  padding: 20px;
}

.faq-text h1{
  font-size: 2.5em;
  font-weight: 400;
  margin-bottom: 40px;
  color: #707070;
}

.faq-text h2{
  font-size: 1.1em;
  font-weight: 400;
  color: #5e5d5d;
}

.faq{
  padding: 20px 30px;
  border: 1px solid rgba(0 0 0 / .1);
  border-radius: 5px;
  color: #979797;
  position: relative;
  line-height: 1.5em;
  margin-top: 15px;
}

.faq .faq_text{
  width: 90%;
}

.btn1{
  color: #5e5d5d;
  position: absolute;
  right: 25px;
  top: 35px;
  font-weight: 400;
  font-size: 1.4em;
  cursor: pointer;
}

/* Hide p tags */
.faq.open h2{
  color: #00848f;
}

.faq p{
  display: none;
  font-weight: 300;
}

.faq.open p{
  display: block;
}
.faq.open .btn{
  color: #00848f;
}



/* time line */
.timeline-section{
	background-color: var();
	min-height: 100vh;
	padding: 100px 15px;
}
.timeline-items{
	max-width: 1000px;
	margin:auto;
	display: flex;
	flex-wrap: wrap;
	position: relative;
}
.timeline-items::before{
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	background-color: #2f363e;
	left: calc(50% - 1px);
}
.timeline-item{
	margin-bottom: 40px;
	width: 100%;
	position: relative;
}
.timeline-item:last-child{
	margin-bottom: 0;
}
.timeline-item:nth-child(odd){
    padding-right: calc(50% + 30px);
	text-align: right;
}
.timeline-item:nth-child(even){
    padding-left: calc(50% + 30px);
}
.timeline-dot{
	height: 16px;
	width: 16px;
	background-color: #eaa023;
	position: absolute;
	left: calc(50% - 8px);
	border-radius: 50%;
	top:10px;
}
.timeline-date{
	font-size: 18px;
	color: #eaa023;
	margin:6px 0 15px;
}
.timeline-content{
    background-color: #2f363e;
	padding: 30px;
	border-radius: 5px;
}
.timeline-content h3{
    font-size: 20px;
	color: #ffffff;
	margin:0 0 10px;
	text-transform: capitalize;
	font-weight: 500;
}
.timeline-content p{
    color: #c8c8c8;
	font-size: 16px;
	font-weight: 300;
	line-height: 22px;
}

/* responsive */
@media(max-width: 767px){
	.timeline-items::before{
		left: 7px;
	}
	.timeline-item:nth-child(odd){
		padding-right: 0;
		text-align: left;
	}
	.timeline-item:nth-child(odd),
	.timeline-item:nth-child(even){
		padding-left: 37px;
	}
	.timeline-dot{
		left:0;
	}
}

/* media */
/* .client {
  margin-top: -1px;
  margin-left: -1px;
  
}
.client img {
  opacity: 0.7;
  height: 250px;
  width: 250px;
} */
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f1f6fe;
}

.counts .count-box i {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #106eea;
  color: #fff;
  width: 56px;
  height: 56px;
  line-height: 0;
  border-radius: 50px;
  border: 5px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #062b5b;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}
.clients {
  padding: 15px 0;
  text-align: center;
}

.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
}

.clients img:hover {
  transform: scale(1.15);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgb(23, 23, 23);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
