@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap");
:root {
  --primary-clr1: #19a2ae;
  --primary-clr2: #2d3248;
  --primary-clr3: #6a6f81;
  --neutral-clr1: #969696;
  --fs1: Rem(18);
  --ff1: 'Kumbh Sans', sans-serif;
  --fw1: 400;
  --fw2: 700;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100vh;
  background: var(--primary-clr1);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: var(--fs1);
  font-family: var(--ff1);
  line-height: 1em;
  color: var(--primary-clr2);
}

body img.bg-body {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

body img.bg-body.bg-top {
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
}

body img.bg-body.bg-bottom {
  -webkit-transform: translate(35%, 50%);
          transform: translate(35%, 50%);
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: 100%;
  max-width: 21.9375rem;
  max-height: 23.125rem;
  border-radius: 0.9375rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 23.5rem) {
  .card {
    max-width: 20.625rem;
  }
}

.card > *:nth-child(1),
.card > *:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.card .top-pattern {
  background: url("/images/bg-pattern-card.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.card .profile {
  background: white;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.0625rem solid var(--neutral-clr1);
}

.card .profile img.avatar {
  position: relative;
  width: 5.625rem;
  height: 5.625rem;
  border-radius: 50%;
  border: 0.3125rem solid white;
  margin-top: -3.125rem;
  margin-bottom: 1.5rem;
}

.card .profile .light {
  color: var(--primary-clr3);
}

.card .profile .name {
  font-weight: var(--fw2);
  margin-bottom: 1rem;
}

.card .profile .name span {
  font-weight: var(--fw1);
  margin-left: 0.375rem;
}

.card .profile .location {
  font-size: 0.875rem;
}

.card .social {
  width: 100%;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.75rem 2.25rem;
}

.card .social * {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card .social .number {
  font-weight: var(--fw2);
  margin-bottom: 0.3125rem;
}

.card .social .desc {
  font-size: 0.75rem;
  letter-spacing: 0.09375rem;
}
/*# sourceMappingURL=style.css.map */