@import url(normalize.css);
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");

:root {
  --text-primary: #007765;
  --text-secondary: #fff;
}

/* *{padding: 0;margin: 0;border: 0;} */
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
p {
  margin-block-end: 1.25em;
}

html,
body {
  font-family: Roboto, sans-serif;
  box-sizing: border-box;
  height: 100vh;
  width: 100vw;
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}
h1,
h2,
h3 {
  text-align: center;
  margin: 0;
}

h2 {
  font-weight: 500;
  font-size: 64px;
  line-height: 75px;
  padding: 48px 0 16px;
  color: var(--text-primary);
}

.container {
  box-sizing: border-box;
  max-width: 1219px;
  margin: 0 auto;
  padding: 0 55px;
}

/** Header */
.site-header {
  position: fixed;
  background-color: var(--text-primary);
  z-index: 2;
  width: 100%;
  height: 84px;
}
.header {
  height: 84px;
}

.logo {
  display: inline-block;
  width: 30%;
  padding: 20px 0 0px;
  margin: 0;
  float: left;
}

.header-navigation {
  float: right;
}

.header-navigation ul {
  margin-top: 29px;
}

.header-navigation li,
.header-navigation span {
  display: inline-block;
  font-size: 24px;
  line-height: 28px;
  color: var(--text-secondary);
}
.header-navigation span {
    margin: 0 8px;
}

.header-navigation li:hover {
  color: #00d8b8;
  transition: 0.5s ease;
}

/** MAIN */

main {
    position: relative;
    top: 84px;
    width: 100%;
}

/** Jumbotron */

.jumbotron {
  padding: 160px 0;
  background-image: url(images/image-8.png);
  background-size: cover;
  background-position: center center;
}
.jumbotron-massage {
  margin: auto auto;
  font-style: normal;
  font-weight: 500;
  font-size: 72px;
  color: var(--text-secondary);
  line-height: 84px;
  text-align: center;
}

/** THE PROBLEM */

.the-problem {
  min-height: 719px;
  background: #eee;
}
.info {
    padding-bottom: 40px;
}

.info p {
  margin-top: 0;
  font-weight: normal;
  font-size: 32px;
  line-height: 37px;
}

/** HERO BLOCK */

.hero {
  padding: 128px 0;
  background-image: url(images/image-9.png);
  background-size: cover;
  background-position: center;
}

.hero-message {
  font-style: italic;
  font-weight: 500;
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  color: var(--text-secondary);
  max-width: 893px;
  margin: 0 auto;
}

/**PPC */

.ppc {
    min-height: 604px;
}
.coin {
  display: flex;
  padding-bottom: 0;
  /* align-items: baseline; */
}

.coin img {
  margin-right: 48px;
}

/* The Team */

.the-team {
  min-height: 845px;
  background: #eeeeee;
}

.the-team-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-around;
}

.member-card {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-self: center;
  width: 33%;
  height: 50%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.member-card > a,
.member-card > span {
  text-align: center;
}

.member-card > span {
  font-style: italic;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
}

.member-card h5 {
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  color: var(--text-primary);
  margin-top: 10px;
  margin-bottom: 0;
}

footer {
    position: relative;
    top: 84px;
  height: 176px;
  background: #333333;
}
.copyright {
  padding: 48px 285px;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: var(--text-secondary);
  max-width: 540px;
}
