/* General 
--------- */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
}

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

body {
  font-family: "Kumbh Sans", sans-serif;
}

.container {
  width: 100%;
  background-color: #19a2ae;
  position: relative;
  overflow: hidden;
  height: 50%;
}

.container::before {
  content: '';
  background-image: url("images/bg-pattern-top.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -34%;
  left: -47%;
  width: 100%;
  height: 400px;
}

@media screen and (min-width: 772px) {
  .container::before {
    top: -34%;
    left: 0%;
    width: 100%;
    height: 500px;
  }
}

.container::after {
  content: '';
  background-image: url("images/bg-pattern-bottom.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -40%;
  right: -56%;
  width: 100%;
  height: 400px;
}

@media screen and (min-width: 772px) {
  .container::after {
    bottom: -40%;
    right: -56%;
    width: 100%;
    height: 500px;
  }
}

.card {
  max-width: 315px;
  border-radius: 10px;
  overflow: hidden;
  margin: 5em auto;
  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;
  z-index: 1;
}

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

.card__img {
  margin-top: -3em;
  margin-left: auto;
  margin-bottom: -3.94em;
  margin-right: auto;
  z-index: 1;
}

.card__img img {
  border-radius: 50%;
  border: 5px solid white;
}

.card__text {
  background-color: white;
}

.card__text h2 {
  margin-top: 3em;
  text-align: center;
  font-weight: 700;
  color: #2d3248;
}

.card__text h2 span {
  font-weight: 400;
  font-size: 1.3rem;
  color: #969696;
}

.card__text p {
  text-align: center;
  color: #969696;
}

.card__text-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.card__text-bottom h2 {
  margin-top: 1em;
}
/*# sourceMappingURL=style.css.map */