@charset "UTF-8";
/* CSS Document */
/* common */
html, body {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  font-family: Roboto;
  line-height: 1.6;
}
a:hover {
	opacity: 0.7;
	transition-duration: 0.3s;
}
.bg-blue {
  background-color: #32c8dc;
}
.bg-round {
  width: 100%;
  margin-bottom: -10px;
}
.wrapper {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 70px;
}
h2 {
  display: inline-block;
  margin: 0 auto;
}
h3 {
  color: #008caa;
}
.h2-brown {
  color: white;
  background-color: #5f4934;
  padding: 0 30px;
  border-radius: 20px;
}
header {
  padding: 30px;
  margin: 0;
  position: relative;
}
.header-btn {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 500;
}
.hero {
  padding: 0;
  margin: 0;
  position: relative;
}
h1 {
  display: flex;
}
.h2-cam {
  display: block;
  text-align: center;
  margin-bottom: -80px;
  position: relative;
  z-index: 100;
  max-width: 502px;
  width: 90%;
  height: auto;
}
.h2-cam img {
  width: 100%;
  height: auto;
}
.campaign p {
  font-size: 1.2em;
}
.presents-area {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.presents-card {
  background-color: #cceeec;
  text-align: left;
  padding: 5px 20px 5px 0px;
  border-radius: 10px;
  display: flex;
  width: 45%;
  margin: 1%;
}
.banner {
  margin-top: 70px;
}
footer {
  text-align: center;
  padding-bottom: 30px;
}
/* Responsive */
@media (max-width: 980px) {
  .hero-left {
    width: 55%;
    height: auto;
  }
  .hero-right {
    width: 45%;
    height: auto;
  }
  .hero-left img, .hero-right img {
    width: 100%;
    height: auto;
  }
  .campaign-img {
    width: 100%;
    height: auto;
  }
  .presents-card {
    width: 100%;
    margin: 1%;
  }
  .banner {
    width: 90%;
    margin: 30px auto 0;
  }
  .banner img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 720px) {
  h1 {
    display: block;
  }
  .hero-left {
    width: 100%;
    height: auto;
  }
  .hero-right {
    width: 100%;
    height: auto;
  }
  h2 {
    font-size: 1.2em;
  }
}