@import url(https://fonts.googleapis.com/css2?family=Questrial&display=swap);
.loader.is-hidden {
  opacity: 0;
  transition: 2.7s ease-in-out;
}
.loader {
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: Questrial, Impact, sans-serif;
}
.spann {
  position: absolute;
  display: inline-block;
  padding: 15px 30px;
  color: #00fff6;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  font-size: 30px;
  overflow: hidden;
  transition: 0.2s;
}
.spann span.is-loading {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00fff6);
  animation: 1s infinite forwards moveRight;
}
.spann span.is-loading:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #00fff6);
  animation: 1s infinite forwards moveDown;
}
.spann span.is-loading:nth-child(3) {
  bottom: 0;
  right: -100%;
  background: linear-gradient(270deg, transparent, #00fff6);
  animation: 1s infinite forwards moveLeft;
}
.spann span.is-loading:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #00fff6);
  animation: 1s infinite forwards moveUp;
}
@keyframes moveRight {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
@keyframes moveLeft {
  from {
    right: -100%;
  }
  to {
    right: 100%;
  }
}
@keyframes moveUp {
  from {
    bottom: -100%;
  }
  to {
    bottom: 100%;
  }
}
@keyframes moveDown {
  from {
    top: -100%;
  }
  to {
    top: 100%;
  }
}
.wrapper {
  padding-top: 2rem;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.wrapper .box {
  min-height: 33vh;
  background: #112240;
  width: calc(33% - 10px);
  padding: 25px;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: 250ms linear;
}
.wrapper .box p {
  color: #fff;
  font-size: 1.2rem;
}
.wrapper .box i.quote {
  font-size: 1.4rem;
  color: #5ff1d0;
}
.wrapper .box .content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
}
.box .info .name a {
  color: #ccd6f6;
  font-weight: 600;
  font-size: 1.5rem;
}
.box .info .job {
  font-size: 1.5rem;
  font-weight: 500;
  color: #5ff1d0;
}
.box .info .stars {
  margin-top: 2px;
}
.box .info .stars i {
  color: #ccd6f6;
}
.box .content .image {
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #ccd6f6;
  border-radius: 50%;
}
.content .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #ccd6f6;
}
.box:hover .content .image img {
  border-color: #ccd6f6;
}
@media (max-width: 1045px) {
  .wrapper .box {
    width: calc(50% - 10px);
    margin: 10px 0;
    min-height: 22vh;
  }
}
@media (max-width: 702px) {
  .wrapper .box {
    width: 100%;
  }
  .job {
    font-size: 10px;
  }
}
.test {
  margin-top: 2rem;
  min-height: 50vh;
}
.text .heading {
  margin-left: 2rem;
}
.bs {
  margin-top: 1.7rem;
}
.wrapper {
  min-height: 40vh;
}
.wrapper .box:hover {
  min-height: 36vh;
}
.image .slide-in .from-right #anchor {
  transition: 1s ease-in-out;
}
.cicle i {
  z-index: 99;
}
