/* fonts */
@font-face {
  font-family: 'Poppins Regular';
  font-weight: normal;
  font-style: normal;
  src: url('fonts/poppins-regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins Regular';
  font-weight: bold;
  src: url('fonts/poppins-bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins Bold';
  font-weight: bold;
  src: url('fonts/poppins-bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Poppins Medium';
  src: url('fonts/poppins-medium.ttf') format('truetype');
}

/* reset */
* {
  font-family: 'Poppins Regular', serif;
  font-size: 18px;
  line-height: 26px;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

header {
  background: #ca2229;
  padding: 32px 0;
  text-align: center;
}

header > img {
  max-width: 340px;
}

header .info .hashtag {
  background: #fff;
  color: #ca2229;
  display: inline-block;
  font-family: 'Poppins Bold', serif;
  line-height: 27px;
  margin: 24px 0 15px;
  padding: 0 27px;
}

header .info p {
  color: #fff;
  margin: auto;
  max-width: 352px;
}

header .info .social {
  margin-top: 27px;
}

header .info .social a {
  display: inline-block;
  margin: 0 10px;
}

section {
  background: #ca2229;
  height: 358px;
  position: relative;
  text-align: center;
}

section h1 {
  color: #fff;
  font-family: 'Poppins Medium', sans-sarif;
  font-size: 35px;
  margin-bottom: 15px;
}

section h1 br {
  display: none;
}

section .mobile {
  max-width: 352px;
  width: 100%;
}

section .desktop {
  display: none;
}

footer {
  padding: 23px;
  text-align: center;
}

footer strong {
  color: #ca2229;
}

@media screen and (min-width: 1024px) {
  header:after {
    clear: both;
    content: '';
    display: table;
  }

  header > img {
    float: left;
    padding: 80px 0 0 5vw;
    max-width: 35%;
  }

  header .info {
    float: right;
    margin-right: 14.6%;
  }

  header .info p {
    max-width: 460px;
  }

  section {
    height: 569px;
  }

  section h1 {
    font-size: 5.3vw;
    line-height: 7vw;
    margin-left: 5vw;
    padding-top: 135px;
    text-align: left;
  }

  section h1 br {
    display: block;
  }

  section img.mobile {
    display: none;
  }

  section img.desktop {
    display: block;
    right: 78px;
    position: absolute;
    bottom: 0;
    width: 625px;
  }

  footer p {
    margin: auto;
    max-width: 836px;
  }
}
