/**
* Template Name: Personal - v2.5.1
* Template URL: https://bootstrapmade.com/personal-free-resume-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root{
  --bg-opacity: rgba(255,255,255,0.5);
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #040404;
  color: #fff;
  position: relative;
  background: transparent;
}
body.hidden-scrolling{
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  background: #040404 url("../img/bg.jpg") top right no-repeat;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  z-index: -1;
}

@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: #18d26e;
}

a:hover {
  color: #35e888;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

.outer-shadow{
  box-shadow:0 5px 5px black;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}

#header * {
  transition: ease-in-out 0.3s;
}

#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

#header h1 a, #header h1 a:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  line-height: 1;
  display: inline-block;
  padding:10px;
}

#header h2 {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}

#header h2 span {
  color: #fff;
  border-bottom: 2px solid #18d26e;
  padding: 6px;
  background: rgba(0, 0, 0, 0.4);
}

#header img {
  padding: 0;
  margin: 0;
}

#header .social-links {
  margin-top: 40px;
  display: flex;
}

#header .social-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

#header .social-links a:hover {
  background: #18d26e;
}


@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }
  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }
  #header .social-links {
    margin-top: 15px;
  }
  #header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  margin-top: -450px;
  margin-left: 57%;
}

.nav-menu ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  text-shadow:3px 3px 3px black;
}

.nav-menu li + li {
  margin-left: 30px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: white;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.nav-menu a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #18d26e;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  width: 25px;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #fff;
  text-decoration: none;
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
  border: 2px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #18d26e;
  text-decoration: none;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(9, 9, 9, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: black;
}

#header.header-top .social-links, #header.header-top h2 {
  display: none;
}

#header.header-top h1 {
  margin-right: auto;
  font-size: 36px;
}

#header.header-top .container {
  display: flex;
  align-items: center;
}

#header.header-top .nav-menu {
  margin: 0;
}

@media (max-width: 768px) {
  #header.header-top {
    height: 60px;
  }
  #header.header-top h1 {
    font-size: 18px;
  }
  .header-tops .navigator-Portpolio .logo-ds{
    max-width: 13%;
    max-height: 13%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 0;
  transition: ease-in-out 0.4s;
  z-index: 2;
}

section.section-show {
  top: 100px;
  bottom: auto;
  opacity: 1;
  padding-bottom: 45px;
}

section .container {
  background: rgba(0, 0, 0, 0.9);
  padding: 30px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  section {
    top: 120px;
  }
  section.section-show {
    top: 80px;
  }
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h5 {
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #18d26e;
  font-family: "Poppins", sans-serif;
}
.section-title h5::after {
  content: "";
  width: 200px;
  height: 1px;
  display: inline-block;
  background: #4ceb95;
  margin: 4px 10px;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #4ceb95;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

@media (max-width: 768px) {
  .section-title h5{
    line-height: 1px;
    margin: 0 0 10px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
  }
  .section-title h5::after{
    content: "";
    width: 100px;
    height: 1px;
    display: inline-block;
    background: #4ceb95;
    margin: 4px 10px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-me .content h3 {
  font-weight: 700;
  font-size: 26px;
  color: #18d26e;
}


.about-me .content ul {
  list-style: none;
  padding: 0;
}

.about-me .content ul li {
  padding-bottom: 10px;
}

.about-me .content ul i {
  font-size: 20px;
  padding-right: 2px;
  color: #18d26e;
}

.about-me .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px;
  color: #18d26e;
  border-radius: 50px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #fff;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 50px;
  display: block;
  background: none;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: rgba(255, 255, 255, 0.15);
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #18d26e;
}

/*--------------------------------------------------------------
# Interests
--------------------------------------------------------------*/
.interests .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  transition: ease-in-out 0.3s;
}

.interests .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.interests .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
  color: #fff;
}

.interests .icon-box:hover {
  background: rgba(255, 255, 255, 0.12);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 65px;
  border-radius: 50%;
  margin: -50px 0 0 30px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.12);
}

.testimonials .testimonial-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px 30px;
  color: #fff;
}
.testimonials .testimonial-item h3 span{
  font-size: 14px;
  color: #18d26e;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 30px;
}
.testimonials .testimonial-item .credential-id{
  font-size: 11px;
  font-style: italic;
  margin-left: 30px;
  margin-top: -15px;
  color: #999;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.25);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.testimonials .owl-dot.active {
  background-color: #18d26e !important;
}

@media (max-width: 768px) {
  .testimonials {
    margin: 30px 10px;
  }
}
 
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: rgba(204, 204, 204, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #18d26e;
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: '';
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  transition: all .3s ease-out 0s;
  transform: translateZ(-1px);
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #fff;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #18d26e;
  border-color: #18d26e;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #18d26e;
}

.services .icon-box:hover .icon::before {
  background: #35e888;
}

.services .icon-box:hover h4 a, .services .icon-box:hover p {
  color: #fff;
}
 
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  padding: 20px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.contact .info-box i.bx {
  font-size: 24px;
  color: #18d26e;
  border-radius: 50%;
  padding: 14px;
  float: left;
  background: rgba(255, 255, 255, 0.1);
}

.contact .info-box h3 {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  margin: 10px 0 8px 68px;
}

.contact .info-box p {
  padding: 0;
  color: #fff;
  line-height: 24px;
  font-size: 14px;
  margin: 0 0 0 68px;
}

.contact .info-box .social-links {
  margin: 5px 0 0 68px;
  display: flex;
}

.contact .info-box .social-links a {
  font-size: 18px;
  display: inline-block;
  color: #fff;
  line-height: 1;
  margin-right: 12px;
  transition: 0.3s;
}

.contact .info-box .social-links a:hover {
  color: #18d26e;
}

.contact .php-email-form {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  transition: 0.3s;
  color: #fff;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.11);
}

.contact .php-email-form input::-webkit-input-placeholder, .contact .php-email-form textarea::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input::-moz-placeholder, .contact .php-email-form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input:-ms-input-placeholder, .contact .php-email-form textarea:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input::-ms-input-placeholder, .contact .php-email-form textarea::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input::placeholder, .contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #18d26e;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #15bb62;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Credits
--------------------------------------------------------------*/
.credits {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 15px;
  text-align: left;
  font-size: 13px;
  color: #fff;
  z-index: 999999;
}

@media (max-width: 770px) {
  .credits {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.9);
  }
}

.credits a {
  color: #18d26e;
  transition: 0.3s;
}

.credits a:hover {
  color: #fff;
}

/*--------------------------------------------------------------
# Credits2
--------------------------------------------------------------*/
.credits2 {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  padding-bottom: 1.5%;
  margin-right: 2%;
  text-align: right;
  font-size: 35px;
  color: #18d26e;
  z-index: 999999;
}

.credits2 i{
  background-color: #040404;
  border-radius: 50%;
  padding: 10px;
  border: 2px solid #18d26e;
}

.credits2 a {
  color: #18d26e;
  transition: 0.4s;
}

.credits2 a:hover {
  font-size: 50px;
	transition: 0.4s;
  color: #fff;
}

.credits2 i:hover{
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.4s;
}

@media (max-width: 770px){
  .credits2{
    padding-bottom: 9%;
    margin-right: 5%;
    font-size: 25px;
  }
}



/* -----------------
Resume Download
----------------- */
.resume_download_link{
  text-align: right;
  margin-top: -5px;
  font-size: 15px;
}
.can-download-resume{
  position: absolute;
  font-size: 14px;
}

.separator-resume-dowload{
  align-items: center;
  justify-content: center;
  margin-top: -1%;
  height: 1px;
  width: 100%;
  background-color: #4ceb95;
}

.section-resume-isi .section-title-resume h2 {
  font-size: 14px;
  padding: 0;
  line-height: 1px;
  margin: 0 0 10px 0;
  letter-spacing: 1px;
  color: #4ceb95;
}
.section-resume-isi .section-title-resume h2 i{
  font-size: 25px;
}
.section-resume-isi .section-title-resume h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #4ceb95;
  margin: 4px 10px;
}

.section-resume-isi .head-content-resume h5{
  font-size: 17px;
  font-family: "Poppins", sans-serif;
}
.section-resume-isi .head-content-resume h5 span{
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  color: #4ceb95;
}
.section-resume-isi .head-content-resume p{
  margin-top: -8px;
  font-size: 14px;
  color: #dcdcdc;
}
.section-resume-isi .head-content-resume p a{
  font-style: italic;
  text-decoration: underline;
  font-size: 14px;
  color: blue;
}
.section-resume-isi .head-content-resume p span{
  font-style: italic;
}

.marque-you-can-dowload{
  font-style: italic;
  font-size: 13px;
}

@media (max-width: 770px) {
  .resume_download_link{
    text-align: center;
    margin-top: 0;
    font-size: 15px;
  }
  .can-download-resume{
    text-align: center;
    position: relative;
    font-size: 13px;
  }
}


/* -----------------
Gallery Image Project SlideShow
----------------- */
.carousel-inner img {
  width: 100%;
  height: 100%;
}
.slideshow_container{
  width: 100%;
  margin: 0 auto;
}
.text_slide_show_project{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -o-transform: translate(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
}
@media (max-width: 992px) {
  .text_slide_show_project{
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .text_slide_show_project{
    font-size: 11px;
  }
}
@media (max-width: 450px) {
  .text_slide_show_project{
    font-size: 9px;
  }
}

/* -----------------
Gallery Image Project Category
----------------- */
.portfolio-filter-project{
  padding: 0 15px;
  margin-top: -2px;
  margin-bottom: 1%;
  flex: 0 0 100%;
  max-width: 100%;
  text-align: center;
}
.portfolio-filter-project-short-by{
  font-size: 15px;
  margin-top: 1%;
  text-align: center;
}
.portfolio-filter-item{
  border: 1px solid rgb(255, 255, 255);
  display: inline-block;
  margin: 0 5px 10px;
  padding: 5px 10px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 16px;
  transition: all 0.3s ease;
}
.portfolio-filter-item:hover:not(.active){
  opacity: 0.6;
  color: rgb(55, 186, 55);
}
.portfolio-filter-project .portfolio-filter-item.active{
  color: rgb(55, 186, 55);
  font-weight: bold;
  text-transform: capitalize;
  font-size: 16px;
  transition: all 0.3s ease;
}
.project .portfolio-item{
  padding: 15px;
}
.project .portfolio-item.hide{
  display: none;
}
.project .portfolio-item.show{
  display: block;
  animation: fadeInTop 0.5 ease;
}
.project .portfolio-item-details{
  display: none;
}
.project .portfolio-item-image img{
  border-radius: 5px;
  width: 100%;
  transition: all 0.5s ease;
}
.project .portfolio-item-inner:hover .portfolio-item-image img{
  transform: translateY(-10px);
}
.project .portfolio-item-image{
  position: relative;
}
.project .portfolio-item-image .view-project{
  display: none;
}
.portfolio-item-inner .portfolio-item-title{
  font-size: 15px;
  color: rgb(255, 255, 255, 0.3);
}

@media (max-width: 770px) {
  .portfolio-filter-project{
    padding: 0 15px;
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  .portfolio-filter-item{
    border: 1px solid rgb(255, 255, 255);
    display: inline-block;
    margin: 4px 3px;
    padding: 4px 10px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 9px;
    transition: all 0.3s ease;
  }
  .portfolio-filter-item:hover:not(.active){
    opacity: 0.6;
    color: rgb(55, 186, 55);
  }
  .portfolio-filter-project .portfolio-filter-item.active{
    color: rgb(55, 186, 55);
    font-weight: bold;
    text-transform: capitalize;
    font-size: 12px;
    transition: all 0.3s ease;
  }
  .portfolio-filter-project-short-by{
    font-size: 9px;
    margin-bottom: 4px;
    text-align: center;
  }
}

/* -------------
Portfolio Popup
--------------- */
.portfolio-popup{
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.portfolio-popup.open{
  visibility: visible;
  opacity: 1;
}
.portfolio-popup .pp-loader{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1005;
  background-color: var(--bg-opacity);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;

}
.portfolio-popup .pp-loader.active{
  visibility: visible;
  opacity: 1;
}
.portfolio-popup .pp-loader div{
  height: 40px;
  width: 40px;
  border: 3px solid #4ceb95;
  border-radius: 50%;
  border-right: 3px solid transparent;
  animation: spin 0.8s linear infinite;
}
.portfolio-popup .pp-details{
  max-width: 1350px;
  width: calc(80% + 30px);
  margin: auto;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.portfolio-popup .pp-details.active{
  opacity: 1;
}
.portfolio-popup .pp-details-inner{
  padding: 30px 0;
}
.portfolio-popup .pp-title{
  padding: 0 15px;
  margin-left: -15px;
}
.portfolio-popup .pp-title h2{
  font-size: 28px;
  color: rgb(245, 245, 245);
  text-transform: capitalize;
  font-weight: 600;
  margin: 0 0 5px;
}
.portfolio-popup .pp-title p{
  font-size: 14px;
  font-weight: 600;
  color: rgb(150, 150, 150);
  margin: 0 0 15px;
  border-bottom: 1px solid rgb(100, 100, 100);
  padding-bottom: 10px;
}
.portfolio-popup .pp-title p span{
  font-weight: 400;
  text-transform: capitalize;
}
.portfolio-popup .pp-project-details h3{
   font-size: 20px;
   font-weight: 600;
   color: rgb(245, 245, 245);
   margin: 0 0 15px;
   text-transform: capitalize;
}
.portfolio-popup .description{
  flex: 0 0 60%;
  max-width: 60%;
  padding: 0 15px;
}
.portfolio-popup .description p{
  font-size: 16px;
  color: rgb(181, 181, 181);
  line-height: 26px;
  margin: 0;
}
.portfolio-popup .info{
  flex: 0 0 40%;
  max-width: 40%;
  padding: 0 15px;
}
.portfolio-popup .info ul li{
  display: block;
  margin-bottom: 10px;
  margin-left: -25px;
  color: rgb(233, 233, 233);
  font-size: 16px;
  font-weight: bold;
}
.portfolio-popup .info ul li span{
  color: rgb(181, 181, 181);
  font-weight: 400;
}
.portfolio-popup .info ul li a{
  color: #4ceb95;
}
.portfolio-popup .info ul li:last-child{
  margin-bottom: 0;
}
.keterangan-gambar li:last-child{
  margin-bottom: 0;
}
.portfolio-popup .separator{
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  height: 1px;
  width: 85%;
  background-color: #4ceb95;
}
.portfolio-popup .pp-img{
  max-width: 100%;
  width: auto;
  height: auto;
  padding: 10px;
  border-radius: 5px;
}
.portfolio-popup .pp-main{
  min-height: 100vh;
  max-width: 1350px;
  width: 85%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-popup .pp-main-inner{
  padding: 70px 0 50px;
  position: relative;
}
.portfolio-popup .pp-project-details-btn{
  position: absolute;
  left: 0;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 15px;
  top: 15px;
  height: 40px;
  line-height: 40px;
  transition: all 0.3s ease;
  color: rgb(46, 46, 46);
  opacity: 0.5;
  background-color: #fff;
}
.portfolio-popup .pp-project-details-btn:hover{
  opacity: 1;
}
.portfolio-popup .pp-project-details-btn i{
  margin-left: 4px;
}
.portfolio-popup .pp-project-details-btn::after{
  border-radius: 30px;
}
.portfolio-popup .pp-close{
  position: absolute;
  right: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  top: 15px;
  text-align: center;
  line-height: 35px;
  font-size: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgb(46, 46, 46);
  opacity: 0.5;
  background-color: #fff;
}
.portfolio-popup .pp-close:hover{
  opacity: 1;
}
.portfolio-popup .pp-close::after{
  border-radius: 50%;
}
.portfolio-popup .pp-counter{
  text-align: right;
  right: 2%;
  line-height: 40px;
  bottom: 5px;
  font-size: 14px;
  color: #4ceb95;
}
.portfolio-popup .pp-prev, .portfolio-popup .pp-next{
  position: fixed;
  top: 50%;
  height: 40px;
  width: 40px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 1010;
  color: rgb(255, 255, 255);
  transition: all 0.3s ease;
  opacity: 0.5;
}
.portfolio-popup .pp-prev:hover, .portfolio-popup .pp-next:hover{
  opacity: 1;
}
.portfolio-popup .pp-prev i, .portfolio-popup .pp-next i{
  line-height: 40px;
}
.portfolio-popup .pp-prev{
  transform: rotate(180deg);
}
.portfolio-popup .pp-prev{
  left: 17px;
}
.portfolio-popup .pp-next{
  right: 15px;
}
@media (max-width: 770px){
  .portfolio-popup .pp-details{
    margin-bottom: -4%;
  }
  .portfolio-popup .pp-title h2{
    font-size: 18px;
    color: rgb(245, 245, 245);
    text-transform: capitalize;
    font-weight: 600;
    margin: 0 0 5px;
  }
  .portfolio-popup .pp-title p{
    font-size: 10px;
    font-weight: 600;
    color: rgb(150, 150, 150);
    margin: 0 0 15px;
    border-bottom: 1px solid rgb(100, 100, 100);
    padding-bottom: 10px;
  }
  .portfolio-popup .pp-project-details h3{
    font-size: 13px;
    font-weight: 600;
    color: rgb(245, 245, 245);
    margin: 0 0 7px;
    text-transform: capitalize;
  }
  .portfolio-popup .description p{
    font-size: 11px;
    color: rgb(181, 181, 181);
    line-height: 15px;
    margin: 0;
  }
  .portfolio-popup .info ul li{
    display: block;
    margin-bottom: 5px;
    margin-left: -35px;
    color: rgb(233, 233, 233);
    font-size: 12px;
    font-weight: bold;
  }

	.portfolio-popup .pp-prev, .portfolio-popup .pp-next{
    position: fixed;
    top: 50%;
    height: 40px;
    width: 40px;
    text-align: center;
    font-size: 13px;
    z-index: 1010;
    color: rgb(255, 255, 255);
    transition: all 0.3s ease;
    opacity: 0.5;
  }
  .portfolio-popup .pp-prev:hover, .portfolio-popup .pp-next:hover{
    opacity: 1;
  }
  .portfolio-popup .pp-prev i, .portfolio-popup .pp-next i{
    line-height: 40px;
  }
  .portfolio-popup .pp-prev{
    transform: rotate(180deg);
  }
  .portfolio-popup .pp-prev{
    left: 1px;
  }
  .portfolio-popup .pp-next{
    right: 1px;
  }

  .portfolio-popup .pp-project-details-btn{
    position: absolute;
    left: 0;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 500;
    padding: 0 10px;
    top: 20px;
    height: 20px;
    line-height: 20px;
    transition: all 0.3s ease;
    color: rgb(46, 46, 46);
    opacity: 0.5;
    background-color: #fff;
  }
  .portfolio-popup .pp-project-details-btn:hover{
    opacity: 1;
  }
  .portfolio-popup .pp-project-details-btn i{
    margin-left: 4px;
  }
  .portfolio-popup .pp-project-details-btn::after{
    border-radius: 30px;
  }

  .portfolio-popup .pp-close{
    position: absolute;
    right: 0;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    top: 20px;
    text-align: center;
    line-height: 17px;
    font-size: 15px;
    transition: all 0.3s ease;
    color: rgb(46, 46, 46);
    opacity: 0.5;
    background-color: #fff;
  }
  .portfolio-popup .pp-close:hover{
    opacity: 1;
  }
  .portfolio-popup .pp-close::after{
    border-radius: 50%;
  }

  .portfolio-popup .pp-counter{
    text-align: right;
    right: 2%;
    margin-top: -10px;
    line-height: 15px;
    bottom: 5px;
    font-size: 11px;
    color: #4ceb95;
  }
}


.portfolio-item-image .details{
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.portfolio-item-image .details h2{
	text-align: center;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 300;
	margin-top: 70px;
	transition: 0.4s;
	transition-property: transform;
}

.portfolio-item-image .details h2 span{
	font-weight: 900;
}

.portfolio-item-image:hover .details h2{
	transform: translateY(-30px);
	transition: 0.6s;
  background-color: rgb(0, 0, 0, 0.6);
}

.portfolio-item-image .details p{
	margin: 30px 30px 0 30px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	opacity: 0;
	transition: 0.6s;
	transition-property: opacity, transform;
  background-color: rgb(0, 0, 0, 0.6);
}

.portfolio-item-image:hover .details p{
	opacity: 1;
	transform: translateY(-40px);
}

.keterangan-image-popup{
  list-style: none;
  color: rgb(233, 233, 233);
  font-size: 16px;
}

@media (max-width: 1080px){
	.portfolio-item-image{
		flex: 100%;
		max-width: 480px;
	}
}
@media (max-width: 770px){
	.portfolio-item-image .details p{
		font-size: 14px;
	}
  .portfolio-item-image .details h2{
    font-size: 24;
  }
  .keterangan-image-popup{
    list-style: none;
    color: rgb(213, 213, 213);
    font-size: 9px;
    margin: 0;
    margin-left: -17%;
  }
  .keterangan-image-popup .row .col-md-6{
    max-width: 50%;
  }
}

/*--------------------------------------------------------------
# Certificates
--------------------------------------------------------------*/
.certificates .certificate-item {
  box-sizing: content-box;
  min-height: 320px;
}

.certificates .certificate-item .certificate-img {
  max-width: 65px;
  max-width: 65px;
  min-width: 65px;
  min-height: 65px;
  border-radius: 50%;
  margin: -50px 0 0 30px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.12);
}

.certificates .certificate-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0 5px 30px;
  color: #fff;
}
.certificates .certificate-item h3 span{
  font-size: 14px;
  color: #18d26e;
}

.certificates .certificate-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 0 30px;
}
.certificates .certificate-item .credential-id{
  font-size: 11px;
  font-style: italic;
  margin-left: 30px;
  margin-top: -15px;
  color: #999;
}

.certificates .certificate-item .quote-icon-left, .certificates .certificate-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.25);
  font-size: 26px;
}

.certificates .certificate-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.certificates .certificate-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.certificates .certificate-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.certificates .certificate-item p .link-sertif{
  font-size: 14px;
  color: #a0a0a0;
}
.certificates .certificate-item p .link-sertif:hover{
  text-decoration: underline;
  color: #ffffff;
  font-size: 15px;
}

.certificates .owl-nav, .certificates .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.certificates .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.certificates .owl-dot.active {
  background-color: #18d26e !important;
}

@media (max-width: 768px) {
  .certificates {
    margin: 30px 10px;
  }
}

/*----- keterngan-projet-bawah -------*/
.project .container .portfolio-items .keterngan-projet-bawah{
  margin: 0 auto;
  font-style: italic;
  font-size: 13px;
  text-align: right;
  color: #9b9b9b;
}

/*------ btn-email-gambar ----*/
.contact .container .btn-email-gambar{
  margin-top: 4%;
  text-align: center;
}

.contact .container .btn-email-gambar .gambar{
  margin: 0 auto;
  width: 500px;
  max-width: 100%;
  border-radius: 8px;
  transition: all 0.4s;
}

.contact .container .btn-email-gambar .gambar:hover{
  transform: scale(1.08);
  transition: all 0.4s;
}

/*----------- Alert success send email ----------*/
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
.alert-success-email{
  margin: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  background: #b7ff9b;
  padding: 10px 50px 10px 40px;
  min-width: 400px;
  position: absolute;
  right: 0;
  top: 10px;
  overflow: hidden;
  border-radius: 4px;
  border-left: 8px solid #4CAF50;
}
.alert-success-email.hide-alert-email{
  animation: hide_slide 1s ease forwards;
}
@keyframes hide_slide {
  0%{
    transform: translateX(-10px);
  }
  40%{
    transform: translateX(0%);
  }
  80%{
    transform: translateX(-10%);
  }
  100%{
    transform: translateX(100%);
  }
}
.alert-success-email .icofont-check-circled{
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #4CAF50;
  font-size: 30px;
}

.alert-success-email .msg{
  padding: 0 20px;
  font-size: 15px;
  color: #4CAF50;
}
.alert-success-email .close-btn-alert-email{
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: #9fff79;
  padding: 20px 18px;
  cursor: pointer;
  transition: 0.3s;
}

.alert-success-email .close-btn-alert-email:hover{
  background: #83ff52;
  transition: 0.3s;
}
.alert-success-email .close-btn-alert-email .icofont-close{
  color: #4CAF50;
  font-size: 22px;
  line-height: 40px;
}