:root {
  --Dark-cyan: hsl(185, 75%, 39%);
  --Very-dark-desaturated: hsl(229, 23%, 23%);
  --Dark-grayish-blue: #6a6f81;
  --Dark-gray: #969696;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: 'Kumbh Sans', sans-serif;
  background-color: red;
  background-image: url("../img/bg-pattern-top.svg"), url("../img/bg-pattern-bottom.svg");
  background-repeat: no-repeat, no-repeat;
  background-position: right 50vw bottom 50vh, left 50vw top 50vh;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  height: 100vh;
}

.header {
  background-color: var(--Dark-cyan);
  border-radius: 20px;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.315);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 8px;
  width: 320px;
}

.header-title {
  margin: 0;
  margin-top: 8px;
  margin-bottom: 5px;
  font-size: 1.8rem;
  color: var(--Very-dark-desaturated);
  text-transform: capitalize;
}

.buscador {
  background-color: var(--Dark-cyan);
  border-radius: 20px;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.315);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 15px;
  padding: 10px 0;
  width: 320px;
}

.buscador-label {
  color: var(--Very-dark-desaturated);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.buscador-input {
  color: var(--Dark-grayish-blue);
  border-radius: 16px;
  border: 3px solid var(--Dark-gray);
  font-size: 1.4rem;
  font-weight: 400;
  font-family: 'Kumbh Sans', sans-serif;
  margin-top: 2px;
  margin-bottom: 4px;
  text-align: center;
  padding: 11px 5px;
  width: 219px;
  height: 40px;
}

.buscador-btn {
  background-color: var(--Very-dark-desaturated);
  color: var(--Dark-cyan);
  margin: 2px 0 4px 0;
  padding: 11px 5px;
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 700;
  width: 219px;
  height: 40px;
}

.card {
  background-color: #eaf2e3;
  width: 320px;
  height: 369px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.315);
}

.card-header {
  width: 100%;
  display: block;
}

.card-body {
  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: 1px solid rgba(153, 153, 153, 0.383);
}

.card-body-img {
  border-radius: 50%;
  margin-top: calc(-118px - 2px);
  background-color: white;
  -webkit-box-shadow: 0px 1px 0px 3px rgba(0, 0, 0, 0.315);
          box-shadow: 0px 1px 0px 3px rgba(0, 0, 0, 0.315);
}

.card-body-subtitle {
  margin: 0;
  margin-top: 8px;
  font-size: 1.8rem;
  color: var(--Very-dark-desaturated);
  text-transform: capitalize;
}

.card-body-texto {
  color: var(--Dark-grayish-blue);
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0;
  margin-bottom: 0.5rem;
}

.card-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.card-footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 30px;
  margin: 0 30px;
}

.card-footer-social h3 {
  margin-top: 2px;
  margin-bottom: 1px;
  width: 116px;
  color: var(--Very-dark-desaturated);
  font-size: 1.4rem;
}

.card-footer-social p {
  margin-top: 2px;
  margin-left: 30px;
  color: var(--Dark-grayish-blue);
  letter-spacing: 1px;
  font-size: 1.2rem;
  font-weight: 700;
}
/*# sourceMappingURL=estilos.css.map */