body,
html {
  height: 100%;
}

/* The hero image */
.hero-image {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.178),
      rgba(248, 247, 247, 0.24)
    ),
    url("../assets/img/profile.JPG");

  /* Set a specific height */
  height: 80%;

  /* Position and center the image to scale nicely on all screens */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Place text in the middle of the image */
.hero-text {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  color: white;
}

.text-shadow {
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4);
}

#about_text {
  margin: 0;
  text-indent: 50px;
  text-align: justify;
  font-size: 1.8em;
}

#btn-back-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: none;
  z-index: 200;
}

/*** <--- CIRCLE STYLES ---> ***/
.wrap-circles {
  display: flex;
  min-height: 20vh;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.5rem;
}

.circle {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 2rem;
  border-radius: 50%;
  background: #ffcdb2;
  overflow: hidden;
}
.circle.per-25 {
  background-image: conic-gradient(#0a0a0a 25%, #b4b1af 0);
}
.circle.per-50 {
  background-image: conic-gradient(#0a0a0a 50%, #b4b1af 0);
}
.circle.per-75 {
  background-image: conic-gradient(#0a0a0a 75%, #b4b1af 0);
}

.circle.per-85 {
  background-image: conic-gradient(#0a0a0a 85%, #b4b1af 0);
}

.circle.per-95 {
  background-image: conic-gradient(#0a0a0a 95%, #b4b1af 0);
}
.circle.per-100 {
  background-image: conic-gradient(#0a0a0a 99%, #b4b1af 0);
}
.circle .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115px;
  height: 115px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  font-size: 1.5em;
  font-weight: 700;
  color: rgb(0, 0, 0);
}

.contact-us {
  margin-bottom: 100px;
}

footer {
  padding-top: 15px;
  height: 50px;
  color: antiquewhite;
}

footer .foot {
  color: rgb(255, 255, 255);
}
