:root {
  --bs-light-rgb: 240,240,240; /* .text-light, .bg-light */
  --bs-light-rgb-alt: 158, 158, 158; /* dark-mode .text-light, .bg-light */
  --bs-dark-rgb:33,37,41;
  --bs-dark-rgb-alt:59,59,59;
}

body {
  min-height: 100vh;
}

.circle-progress-container {
  display: grid;
  grid-template-columns: repeat(2, 70px);
  gap: 2.5rem;
  margin: auto auto;
  justify-content: center;
  text-align: center;
}

.circle-progress-container .box {
  width: 100%;
}

.circle-progress-container .box h4 {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
}

.circle-progress-container .box .chart {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: .9rem;
  line-height: 70px;
  height: 70px;
}

.circle-progress-container .box canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.captcha {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.card-container {
  max-width: 85%;
  margin-left: auto;
  margin-right: auto;
}

.card-body {
  padding: 7px;
  justify-content: space-evenly;
}

.card-body a {
  margin: 3px 3px;
}

.header .lead {
  max-width: 620px;
}


.gallery-item {
  width: 200px;
  padding: 5px;
}

.navbar-nav a {
  padding: 13px 0px;
  border-bottom: 2px solid darkgray;
}

a.active {
  font-weight: bolder;
}

.profile-info img {
  border-radius: 50%;
  max-width: 200px;
}
.profile-info-aside img {
  border-radius: 50%;
  max-width: 250px;
}

.about-me-image-container img {
  max-width: 90%;
}

.about-me-image-container {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.personal-info-container {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.info-category-list, .info-detail-list {
  list-style: none;
  padding: 0;
}

.info-category {
  font-weight: bolder;
  text-align: start;
}

.info-detail {
  text-align: end;
}

form {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.profile-info-aside {
  display: none;
}

.skill-progress-container {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.software-skill-container {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.my-info-container h2, .my-skills-container h2 {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 575px) {
  .software-skill-container {
    text-align: center!important;
  }

  .personal-info-text {
    font-size: .625rem;
  }
}

@media screen and (min-width: 992px) { 
  .carousel {
      margin-bottom: 4rem;
    }
    
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
    
  .carousel-item {
    height: 36rem;
    top: 0rem;
  }

  body {
    margin-left: auto;
    margin-right: auto;
  }

  aside {
    min-height: 100vh;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  }

  .navbar-nav {
    width: 70%;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }    

  form {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-info-aside {
    display: block;
  }

  .desktop-hide {
    display: none;
  }

  .personal-info-container {
    max-width: 70%;
  }

  .circle-progress-container {
    grid-template-columns: repeat(4, 70px);
    justify-content: center;
  }

  .card-container {
    max-width: 100%;
  }

  .card-body a {
    margin: 7px 15px;
  }

}