body {
    min-height: 75rem;
    font-family: 'IBM Plex Mono', monospace;
}

.cover-container {
    max-width: 42em;
}

.hero-container {
    height: 100vh;
    background-color: transparent;
}

.detail-me p {
  line-height: 23px;
  margin-bottom: 30px;
  letter-spacing: 1px;
}



.album-content {
    padding-left: 25px;
    padding-right: 25px;
}

.album-caption h4 {
    text-align: center;
    margin-top: 15px;
}

.album-image {
    max-width: 250px;
    height: auto;
    border-radius: 10%;
    box-shadow: darkslategrey;
}

.footer-text {
    font-size: smaller;
}

.about-skill {}

.about-skill img {
    max-width: 75px;
    height: auto;
    padding-top: 20px;
}

.skill-icon-blue {
    filter: invert(61%) sepia(22%) saturate(685%) hue-rotate(158deg) brightness(92%) contrast(93%);
}


.btn-blue {
    background-color: #659dbd;
    border-color: #659dbd;
}

.btn-blue:hover {
    background-color: rgba(50, 103, 133, 0.747);
    border-color: rgba(50, 103, 133, 0.747);
}

.btn-orange {
    background-color: #e8a87c;
    border-color: #e8a87c;
}

.btn-orange:hover {
    background-color: #ce8250f6;
    border-color: #ce8250f6;
}

.btn-red {
    background-color: #e27d60;
    border-color: #e27d60;
}

.btn-red:hover {
    background-color: #ca5839;
    border-color: #ca5839;
}

.socialmedia {
    display: flex;
    justify-content: center;
}

.socialmedia a{
    margin-left: 15px;
    font-size: 35px;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: #45505b;
    color: #fff;
    transition: 0.3s;
}
.socialmedia a:hover{
  color: #73ade4;
  background-color: #1c2125;
}

.text-blue {
    color: #659dbd;
}

.text-orange {
    color: #e8a87c;
}

.text-red {
    color: #e27d60;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #659dbd;
    border-top-color: #fff;
    border-bottom-color: #fff;
    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);
    }
  }

  /*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  margin: 0 25px 0 25px;
}

.portfolio .portfolio-item {
    margin-bottom: 30px;
  }
  .portfolio .portfolio-img {
    max-width: 300px;
    height: auto;
    border-radius: 20px;
  }
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    background: #fff;
    border-radius: 50px;
    padding: 2px 15px;
  }
  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #272829;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
  }
  .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: #0563bb;
  }
  .portfolio #portfolio-flters li:last-child {
    margin-right: 0;
  }
  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
    border-radius: 20px;
  }
  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #d7dce1;
    border-left: 3px solid #d7dce1;
    transition: all 0.5s ease 0s;
    z-index: 9994;
  }
  .portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #d7dce1;
    border-right: 3px solid #d7dce1;
    transition: all 0.5s ease 0s;
    z-index: 9994;
  }
  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #45505b;
    font-weight: 600;
  }
  .portfolio .portfolio-wrap .portfolio-info p {
    color: #45505b;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
  }
  .portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
  }
  .portfolio .portfolio-wrap .portfolio-links a {
    color: #45505b;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
  }
  .portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #148af9;
  }
  .portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
  }
  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
  }
  .portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
  }
  .portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Details
  --------------------------------------------------------------*/
  .portfolio-details {
    padding-top: 40px;
  }
  .portfolio-details .portfolio-details-slider img {
    width: 100%;
  }
  .portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #0563bb;
  }
  .portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #0563bb;
  }
  .portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(69, 80, 91, 0.08);
  }
  .portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
  }
  .portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
  }
  .portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
  }
  .portfolio-details .portfolio-description {
    padding-top: 30px;
  }
  .portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  .portfolio-details .portfolio-description p {
    padding: 0;
  }

  /*--------------------------------------------------------------
  # Skills Section
  --------------------------------------------------------------*/
.skills {
  display: block;
}
  .skills-nav li a {
    display: block;
    text-decoration: none;
  }
  .skills-nav li{
    float: left;
    margin-right: 25px;
  }
  .skills-nav ul{
    list-style-type: none;
    margin-bottom: 0 !important;
  }

  .skills-detail svg {
    height: 40px;
    width: auto;
    fill: #D6D2D2;
    transition: 0.3s;
  }
  .skills-detail svg:hover {
    fill: #659dbd;
}

.project-details {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 25px;
  padding-right: 25px;
  width: 100%;
}

.project-details h4 {
  margin-bottom: 0;
}

.project-details hr {
  margin-top: 5px;
  margin-bottom: 40px;
}

.project-details .detail-items p {
  margin-bottom: 0;
  font-size: 15px;
}

.project-details .detail-items p span {
  color: #89dee2;
}

.project-details .detail-software {
  margin-top: 0px;
}

.project-details .detail-software img {
  max-height: 30px;
  width: auto;
  filter: saturate(70%);
}
.project-details .detail-software img:hover {
  filter: saturate(120%);
}
#tooltip {
  background-color: #333;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
}