html, body, h1, dl, dt, dd {
  margin: 0;
  padding: 0;
  line-height: 1;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
}
.bottom .bottom__container {
  padding: 0 20px;
}
.bottom .bottom__image {
  max-width: 100%;
  margin: 30px 0;
}
.bottom .bottom__tag {
  display: inline-block;
  background: #f60a52;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
}
.bottom .bottom__subtitle {
  margin-bottom: 8px;
}
.bottom .bottom__description {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.bottom .bottom__link {
  display: block;
  background: #f60a52;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  margin: 0 auto;
  width: 150px;
  text-align: center;
  transition: 0.4s;
  margin-bottom: 50px;
}
.bottom .bottom__link:hover {
  background: #505358;
}
.bottom .scroll {
  padding-top: 60px;
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #f60a52;
  font-weight: bold;
}
.bottom .scroll__inner {
  position: absolute;
  top: 0;
  right: 10px;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 3px solid #f60a52;
  border-bottom: 3px solid #f60a52;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1s infinite;
  animation: sdb 1s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% { -webkit-transform: rotate(-45deg) translate(0, 0); }
  20% { -webkit-transform: rotate(-45deg) translate(-10px, 10px); }
  40% { -webkit-transform: rotate(-45deg) translate(0, 0); }
}
@keyframes sdb {
  0% { transform: rotate(-45deg) translate(0, 0); }
  20% { transform: rotate(-45deg) translate(-10px, 10px); }
  40% { transform: rotate(-45deg) translate(0, 0); }
}

.bottom .image__list {
  margin: 0 auto;
  max-width: 500px;
  padding: 0 10px;
}
.bottom .image__listitem {
  width: 50%;
}
.bottom .description__link {
  display: block;
  background: #f60a52;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  margin: 30px auto 0;
  text-align: center;
  transition: 0.4s;
}

@media screen and ( min-width : 960px ) {
  .bottom .bottom__container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }
  .bottom .bottom__box {
    display: flex;
    max-width: 600px;
    width: 100%;
    justify-content: space-between;
  }
  .bottom .bottom__inBox {
    width: calc(( 100% - 30px ) / 2 );
  }
  .bottom .image__list {
    max-width: 800px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .bottom .image__listitem {
    width: calc(( 100% - 20px * 4 ) / 5 );
  }
  
}









