/* --** Reset CSS **-- */
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #747474;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background: #fff;
}
ul,
ol {
  margin: 0 0 10px 25px;
}
ol {
  list-style: square;
}
ul {
  list-style: circle;
}
ol:after,
ul:after {
  content: "";
  display: block;
  line-height: 0;
  clear: both;
  overflow: hidden;
  height: 0;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}

/* <<< People data >>> */
.People_data {
  width: 100%;
  height: 100vh;
  background: #46afe8;
}
.People_data .mid {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.People_data .content {
  width: 500px;
}
.People_data h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}
.People_data h2 a {
  font-size: 15px;
  color: #fff;
  background: #f39a6e;
  border-radius: 20px;
  padding: 10px 20px;
  float: right;
  display: inline-block;
}
.People_data ul {
  list-style: none;
  margin: 15px 0 0;
}
.People_data li {
  margin: 0 0 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
    rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}
.People_data li .left {
  background: #6dce89;
  padding: 0;
  display: flex;
  align-items: center;
  border-radius: 10px 0 0 10px;
  justify-content: center;
}
.People_data li .left span {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
}
.People_data li .right {
  padding: 0;
}
.People_data li h3 {
  font-size: 20px;
  color: #000;
  padding: 7px 14px;
  text-transform: capitalize;
}
.People_data li h3 em {
  font-style: normal;
  font-weight: 600;
}
.People_data li h3:first-child {
  background: #d1e6f9;
  border-radius: 0 10px 0 0;
}
