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

body {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 500px;
  height: 100%;
  font-size: 18px;
  font-family: 'Kumbh Sans';
  font-weight: 400;
  background-color: #19a2ae;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.background-top {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("images/bg-pattern-top.svg");
  width: 67.917vw;
  height: 35vw;
  overflow: hidden;
  background-position: -19.8vw -35.5vw;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}

.background-bottom {
  position: absolute;
  bottom: 0;
  right: 0%;
  background-image: url("images/bg-pattern-bottom.svg");
  width: 67.917vw;
  height: 67.917vw;
  overflow: hidden;
  background-position: 15.8vw 44vw;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
}

main {
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

main section {
  position: relative;
  top: 0;
  left: 0;
  width: 22rem;
  height: 23.5rem;
  border-radius: 1rem;
  background-color: white;
  -webkit-box-shadow: 0px 0px 6rem -2.5rem #2d3248;
          box-shadow: 0px 0px 6rem -2.5rem #2d3248;
}

main section .cardPatern {
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  background-image: url("images/bg-pattern-card.svg");
  width: 100%;
  height: 8.8rem;
  overflow: hidden;
  background-position: 0px 0px;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: -1;
  z-index: 0;
}

main section .person {
  position: relative;
  top: 5.4rem;
  left: 0;
  width: 100%;
  height: 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;
}

main section .person .img_box {
  width: 6.5rem;
  height: 6.5rem;
  border: .25rem solid white;
  border-radius: 100px;
}

main section .person .img_box img {
  width: 6rem;
  height: 6rem;
  border-radius: 100px;
}

main section .person .name {
  position: relative;
  top: 1.6rem;
  left: 0rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

main section .person .name h2 {
  color: #2d3248;
  font-size: 1.15rem;
  margin-right: .5rem;
  font-weight: 700;
}

main section .person .name p {
  color: #6a6f81;
}

main section .person .city {
  position: relative;
  top: 2.2rem;
  left: 0;
  font-size: .9rem;
}

main section .person .city p {
  color: #6a6f81;
}

main section .person .media {
  position: relative;
  top: 3.8rem;
  left: 0;
  border-top: 1px solid #969696;
  padding-top: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 2.3rem;
  padding-right: 2.3rem;
  width: 100%;
}

main section .person .media .media_item {
  width: 5rem;
  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;
}

main section .person .media .media_item h3 {
  color: #2d3248;
  font-size: 1.25rem;
  font-weight: 700;
}

main section .person .media .media_item p {
  color: #969696;
  margin-top: .5rem;
  font-size: .7rem;
  letter-spacing: .1rem;
}

@media only screen and (max-width: 800px) {
  .background-top {
    background-image: url("images/bg-pattern-top.svg");
    width: 100vw;
    height: 90vh;
    overflow: hidden;
    background-position: -45vw -50vw;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
  .background-bottom {
    background-image: url("images/bg-pattern-bottom.svg");
    width: 150vw;
    height: 90vw;
    overflow: hidden;
    background-position: 95vw 9vw;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
  main section {
    width: 20rem;
    overflow: hidden;
  }
  main section .cardPatern {
    background-image: url("images/bg-pattern-card.svg");
    width: 110%;
    height: 10rem;
    overflow: hidden;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
    z-index: 0;
  }
}

@media only screen and (max-width: 350px) {
  .background-top {
    background-image: url("images/bg-pattern-top.svg");
    width: 100vw;
    height: 90vw;
    overflow: hidden;
    background-position: -40vw -40vw;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
  .background-bottom {
    background-image: url("images/bg-pattern-bottom.svg");
    width: 150vw;
    height: 90vw;
    overflow: hidden;
    background-position: 90vw 0vw;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
  }
  main section {
    width: 95vw;
    overflow: hidden;
  }
  main section .cardPatern {
    background-image: url("images/bg-pattern-card.svg");
    width: 120vw;
    height: 120vw;
    overflow: hidden;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: -1;
    z-index: 0;
  }
  main section .person {
    position: relative;
    top: 4rem;
    left: 0;
  }
  main section .person .name {
    position: relative;
    top: 2rem;
    left: 0rem;
  }
  main section .person .city {
    position: relative;
    top: 3rem;
    left: 0;
  }
  main section .person .media {
    position: relative;
    top: 5.5rem;
    left: 0;
    padding-top: 10vw;
    padding-left: 2vw;
    padding-right: 2vw;
  }
  main section .person .media .media_item {
    width: 33vw;
  }
}
/*# sourceMappingURL=style.css.map */