section.block-content {
  padding-left: 80px;
  padding-right: 80px;
  opacity: 0;
  -webkit-animation: 1.5s ease 1s normal forwards 1 showandsliderighttoleft;
          animation: 1.5s ease 1s normal forwards 1 showandsliderighttoleft;
}

section.block-content.light {
  color: #071E30;
  background-color: #fff;
}

section.block-content.light a {
  color: #071E30;
}

section.block-content.dark {
  color: #fff;
  background-color: #071E30;
}

section.block-content.dark a {
  color: #fff;
}

section.block-content > .content {
  width: 450px;
}

section.block-content h1 {
  font-weight: 300;
  font-size: 3.75rem;
  line-height: 3.75rem;
  -webkit-animation: 0.5s ease-out 0s 1 sliderighttoleft;
          animation: 0.5s ease-out 0s 1 sliderighttoleft;
}

section.block-content p {
  font-size: 20px;
  line-height: 1.5 !important;
}

section.block-content blockquote {
  border-left: 10px solid #32418c;
  margin: 0;
  padding: 30px;
  font-size: 16px;
  font-weight: 500;
  background-color: #f4f4f4;
  line-height: 1.5;
}

section.block-content ul li {
  position: relative;
  list-style: none;
  font-weight: 500;
  font-size: 24px;
  margin-top: 20px;
  display: block;
}

section.block-content ul li:before {
  background: url(../img/bulletpoint.svg) center center/contain no-repeat;
  position: absolute;
  content: "";
  left: -50px;
  top: 0px;
  width: 2rem;
  height: 24px;
}

section.block-content ul li > span:first-child {
  color: gray;
  display: block;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}

section.block-content ul li > span:last-child {
  display: block;
}

section.block-content a.next {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
}

section.block-content a.next span {
  display: inline-block;
  width: 60px;
  position: absolute;
  margin-top: -5px;
  height: 32px;
  /* background: red; */
  background-position: center center;
  background-image: url(../img/arrow_right.svg);
  background-repeat: no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

section.block-content a.next:hover span {
  margin-left: 15px;
}

section.block-content img {
  position: absolute;
  height: 100%;
  width: auto;
  left: 0px;
  top: 0px;
  -webkit-animation: 1s ease-in 0s 1 show;
          animation: 1s ease-in 0s 1 show;
}

@media only screen and (max-device-width: 768px) {
  section.block-content {
    padding-left: 40px;
    padding-right: 40px;
    opacity: 1;
    -webkit-animation: none;
            animation: none;
  }
  section.block-content > .content {
    width: 100%;
  }
  section.block-content h1 {
    font-size: 26px;
    line-height: 26px;
    -webkit-animation: none;
            animation: none;
  }
  section.block-content p {
    font-size: 16px;
  }
}
