@charset "UTF-8";

.bg-gradient-primary-to-secondary {
  background: #1e30f3;
  background: linear-gradient(135deg, #1e30f3 0%, #e21e80 100%);
}

.text-gradient {
  background: -webkit-linear-gradient(315deg, #1e30f3 0%, #e21e80 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.feature {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  width: 3rem;
  font-size: 1.5rem;
}

.profile {
  position: relative;
  height: 75vw;
  width: 75vw;
  border-radius: 5vw;
  margin-top: 5vw;
  max-height: 40rem;
  max-width: 40rem;
}

.profile .profile-img {
  height: 80vw;
  max-height: 45rem;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.profile .dots-1 {
  position: absolute;
  width: 3vw;
  right: 1.5vw;
  top: 4vw;
}

.profile .dots-1 svg {
  fill: #fff;
}

.profile .dots-2 {
  position: absolute;
  width: 3vw;
  right: -4vw;
  top: 6.05vw;
}

.profile .dots-2 svg {
  fill: #1e30f3;
}

.profile .dots-3 {
  position: absolute;
  width: 3vw;
  left: 1.5vw;
  bottom: 6.05vw;
}

.profile .dots-3 svg {
  fill: #fff;
}

.profile .dots-4 {
  position: absolute;
  width: 3vw;
  left: -4vw;
  bottom: 4vw;
}

.profile .dots-4 svg {
  fill: #1e30f3;
}

.eduction .table-responsive::-webkit-scrollbar {
  display: none;
}

@media (min-width: 576px) {
  .profile {
    height: 60vw;
    width: 60vw;
  }

  .profile .profile-img {
    height: 65vw;
  }

  .profile .dots-1 {
    width: 3vw;
    right: 1.5vw;
  }

  .profile .dots-2 {
    width: 3vw;
    right: -4vw;
  }

  .profile .dots-3 {
    width: 3vw;
    left: 1.5vw;
  }

  .profile .dots-4 {
    width: 3vw;
    left: -4vw;
  }


}

@media (min-width: 768px) {
  .profile {
    height: 50vw;
    width: 50vw;
  }

  .profile .profile-img {
    height: 55vw;
  }

  .profile .dots-1 {
    width: 3vw;
    right: 1.5vw;
  }

  .profile .dots-2 {
    width: 3vw;
    right: -4vw;
  }

  .profile .dots-3 {
    width: 3vw;
    left: 1.5vw;
  }

  .profile .dots-4 {
    width: 3vw;
    left: -4vw;
  }
}

@media (min-width: 992px) {
  .profile {
    height: 40vw;
    width: 40vw;
  }

  .profile .profile-img {
    height: 45vw;
  }

  .profile .dots-1 {
    width: 1.5vw;
    right: 0.75vw;
  }

  .profile .dots-2 {
    width: 1.5vw;
    right: -2vw;
  }

  .profile .dots-3 {
    width: 1.5vw;
    left: 0.75vw;
  }

  .profile .dots-4 {
    width: 1.5vw;
    left: -2vw;
  }
}

@media (min-width: 1200px) {
  .profile {
    height: 35vw;
    width: 35vw;
  }

  .profile .profile-img {
    height: 40vw;
  }

  .profile .dots-1 {
    width: 1.5vw;
    right: 0.75vw;
  }

  .profile .dots-2 {
    width: 1.5vw;
    right: -2vw;
  }

  .profile .dots-3 {
    width: 1.5vw;
    left: 0.75vw;
  }

  .profile .dots-4 {
    width: 1.5vw;
    left: -2vw;
  }
}

.step {
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 40px;
}

.progresscontainer {
  width: 100%;
}

.progressbar {
  counter-reset: step;
}

.progressbar li {
  list-style: none;
  display: inline-block;
  width: 30.33%;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #ddd;
  border-radius: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  background-color: #fff;
}

.progressbar li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  top: 15px;
  left: -50%;
  z-index: -1;
}

.progressbar li:first-child:after {
  content: none;
}

.progressbar li.active {
  color: #62bd62;
}

.progressbar li.active:before {
  border-color: #62bd62;
  background: #62bd62;
  color: #fff;
}

.progressbar li.active+li:after {
  background-color: #62bd62;
}