.section-blocks {
  padding: 0;
  position: relative;
  margin: 7rem 0;
}
.section-blocks .background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--black);
}
.section-blocks .background img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blocks .container {
  position: relative;
}
.section-blocks .container img.heading-icon {
  width: 30px;
  margin: 0 auto 25px;
  display: block;
}
.section-blocks .container h1, .section-blocks .container h2 {
  max-width: 600px;
  margin: 0 auto 25px;
  text-align: center;
  font-size: 3.5em;
}
.section-blocks .container .text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.75em;
}
.section-blocks .container > .buttons {
  display: block;
  margin: 75px auto 0;
}
.section-blocks .container > .buttons .button {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto 20px;
}
.section-blocks .container > .buttons .button:last-child {
  margin-bottom: 0;
}
.section-blocks .container .blocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 20px;
  width: 100%;
}
.section-blocks .container .blocks:not(:first-child) {
  margin-top: 50px;
}
.section-blocks .container .blocks .block {
  padding: 30px;
  background-color: #fff;
  width: calc(25% - 15px);
  aspect-ratio: 0.6;
  color: var(--black);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.section-blocks .container .blocks .block .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-blocks .container .blocks .block .background img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-blocks .container .blocks .block .background:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 150%;
  transition: all 0.5s;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0) 30%);
}
.section-blocks .container .blocks .block .content {
  position: absolute;
  height: 50%;
  width: 100%;
  top: 100%;
  left: 0;
  transition: all 0.5s;
  color: var(--white);
  padding: 0 30px;
}
.section-blocks .container .blocks .block .content .top {
  position: absolute;
  top: -150px;
  left: 30px;
  right: 30px;
  transition: all 0.5s;
}
.section-blocks .container .blocks .block .content .icon img {
  height: 45px;
  width: auto;
  display: block;
}
.section-blocks .container .blocks .block .content h3 {
  font-size: 1em;
  font-weight: 400;
  text-align: left;
  margin-top: 15px;
  line-height: 1.2em;
}
.section-blocks .container .blocks .block .content .text {
  text-align: left;
  line-height: 1.5em;
  margin-bottom: 0;
  transition: all 0.3s;
}
.section-blocks .container .blocks .block .content .text *:first-child {
  margin-top: 0;
}
.section-blocks .container .blocks .block .content .text *:last-child {
  margin-bottom: 0;
}
.section-blocks .container .blocks .block .content .list {
  margin-top: 20px;
}
.section-blocks .container .blocks .block .content .list .item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  grid-gap: 15px;
  margin-bottom: 10px;
}
.section-blocks .container .blocks .block .content .list .item img {
  width: 20px;
  margin-top: 2px;
}
.section-blocks .container .blocks .block .content .list .item p {
  width: calc(100% - 35px);
  margin: 0;
}
.section-blocks .container .blocks .block .content p.link {
  margin: 20px 0 0;
  color: var(--primary);
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
}
.section-blocks .container .blocks .block .content:not(:has(.icon)) .top {
  top: -100px;
}
.section-blocks .container .blocks .block .content:not(:has(.icon)) h3 {
  font-size: 1.2em;
}
.section-blocks .container .blocks .block:hover .background:after {
  top: 0;
  background-image: linear-gradient(to bottom, rgba(var(--secondary-rgb), 0.65), rgba(var(--secondary-rgb), 1));
}
.section-blocks .container .blocks .block:hover .content {
  top: 50%;
}
.section-blocks .container .blocks .block:hover .content .top {
  top: unset;
  bottom: 100%;
}
.section-blocks[options~=wide-3] .container .blocks .block {
  width: calc(33% - 14px);
  max-height: 400px;
}
.section-blocks[options~=overlay-primary] .container .blocks .block:hover .background:after {
  background-image: linear-gradient(to bottom, rgba(var(--primary-rgb), 0.65), rgba(var(--primary-rgb), 1));
}

@media (max-width: 1150px) {
  .section-blocks .container .blocks .block:hover .content {
    top: 25%;
  }
}
@media (max-width: 1000px) {
  .section-blocks .container .blocks .block {
    aspect-ratio: 0.8;
  }
}
@media (max-width: 900px) {
  .section-blocks .container h1, .section-blocks .container h2 {
    font-size: 2.75em;
  }
  .section-blocks .container .blocks .block {
    width: calc(50% - 10px);
    display: flex;
    align-items: flex-end;
  }
  .section-blocks .container .blocks .block .background:after {
    top: 0;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgb(0, 0, 0));
  }
  .section-blocks .container .blocks .block .content {
    top: 0 !important;
    overflow-y: auto;
    position: relative;
    padding: 0;
    height: auto;
    max-height: 100%;
  }
  .section-blocks .container .blocks .block .content .top {
    position: relative;
    top: unset !important;
    left: unset;
    right: unset;
  }
}
@media (max-width: 800px) {
  .section-blocks[options~=wide-3] .container .blocks .block {
    width: calc(50% - 10px);
  }
}
@media (max-width: 700px) {
  .section-blocks .container h1, .section-blocks .container h2 {
    font-size: 2.5em;
  }
  .section-blocks .container .blocks .block {
    width: 100%;
    max-height: 400px;
  }
}
@media (max-width: 500px) {
  .section-blocks[options~=wide-3] .container .blocks .block {
    width: 100%;
  }
  .section-blocks .container .blocks .block {
    max-height: 500px;
  }
}
/*

Options - Background Primary

*/
.section-blocks[options~=background-primary] {
  background-color: var(--primary);
  margin: 0;
  padding: 7rem 0;
}
.section-blocks[options~=background-primary] .container {
  color: var(--white);
}

/*

Options - Background Secondary

*/
.section-blocks[options~=background-secondary] {
  background-color: var(--secondary);
  margin: 0;
  padding: 7rem 0;
}
.section-blocks[options~=background-secondary] .container {
  color: var(--white);
}

/*

Options - Header inline

*/
.section-blocks[options~=header-inline] .container {
  display: flex;
  align-items: flex-end;
  grid-gap: 50px;
  flex-wrap: wrap;
}
.section-blocks[options~=header-inline] .container .heading {
  width: calc(50% - 10px);
  position: relative;
  z-index: 1;
}
.section-blocks[options~=header-inline] .container .heading :is(h1, h2) {
  text-align: left;
  margin-bottom: 0;
  max-width: unset;
}
.section-blocks[options~=header-inline] .container .text {
  margin-top: 20px;
  max-width: unset;
  width: 100%;
  text-align: left;
}
.section-blocks[options~=header-inline] .container .text *:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=header-inline] .container .blocks {
  margin-top: 0;
  justify-content: flex-start;
  margin-top: -350px;
}
.section-blocks[options~=header-inline] .container .blocks .block {
  width: calc(50% - 10px);
  aspect-ratio: unset;
  height: 350px;
}
.section-blocks[options~=header-inline] .container .blocks .block.block-hidden {
  visibility: hidden;
}

@media (max-width: 900px) {
  .section-blocks[options~=header-inline] .container .heading {
    width: 100%;
  }
  .section-blocks[options~=header-inline] .container .blocks {
    margin-top: 20px;
    justify-content: center;
  }
  .section-blocks[options~=header-inline] .container .blocks .block {
    width: 100%;
    max-width: 500px;
  }
  .section-blocks[options~=header-inline] .container .blocks .block.block-hidden {
    display: none;
  }
  .section-blocks[options~=header-inline] .container .blocks .block .content .top {
    top: unset;
  }
}
/*

Options - Theme columns

*/
.section-blocks[options~=theme-columns] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-columns] .container .blocks .block {
  width: 33.3%;
  aspect-ratio: unset;
  flex: unset;
  display: block;
  padding: 30px 50px;
  transition: all 0.3s;
}
.section-blocks[options~=theme-columns] .container .blocks .block:not(:nth-child(3n)) {
  border-right: 1px solid var(--black);
}
.section-blocks[options~=theme-columns] .container .blocks .block:last-child {
  border-right: 0;
}
.section-blocks[options~=theme-columns] .container .blocks .block .background {
  position: relative;
  background-color: unset;
  height: unset;
}
.section-blocks[options~=theme-columns] .container .blocks .block .background::after {
  display: none;
}
.section-blocks[options~=theme-columns] .container .blocks .block .background img.image {
  width: 75px;
  height: auto;
  margin: 0 auto 20px;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content {
  position: relative;
  top: unset;
  width: unset;
  height: unset;
  color: unset;
  padding: 0;
  text-align: center;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content h3 {
  position: relative;
  bottom: unset;
  left: unset;
  right: unset;
  font-weight: 300;
  font-size: 1em;
  text-align: center;
  transition: unset;
  margin-top: 0;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content h3:not(:last-child) {
  font-weight: 500;
}
.section-blocks[options~=theme-columns] .container .blocks .block .content .text {
  transition: unset;
  text-align: center;
}
.section-blocks[options~=theme-columns] .container .blocks a.block:hover {
  border: 1px solid var(--primary);
}
.section-blocks[options~=theme-columns] .container .blocks a.block:hover .content {
  color: var(--primary);
}
.section-blocks[options~=theme-columns][options~=darkmode] .container .blocks .block {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: unset;
}
.section-blocks[options~=theme-columns][options~=darkmode] .container .blocks .block .content {
  color: var(--white);
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-columns] .container .blocks .block {
    padding: 30px 20px;
  }
}
@media (max-width: 820px) {
  .section-blocks[options~=theme-columns] .container .blocks .block {
    width: 50%;
  }
  .section-blocks[options~=theme-columns] .container .blocks .block:not(:nth-child(3n)) {
    border-right: 0;
  }
  .section-blocks[options~=theme-columns] .container .blocks .block:not(:nth-child(2n)) {
    border-right: 1px solid var(--black);
  }
  .section-blocks[options~=theme-columns] .container .blocks .block:last-child {
    border-right: 0;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-columns] .container .blocks .block {
    width: 100%;
    border-right: 0 !important;
  }
  .section-blocks[options~=theme-columns] .container .blocks .block:not(:last-child) {
    border-bottom: 1px solid var(--black);
  }
}
/*

Options - Theme wireframes

*/
.section-blocks[options~=theme-wireframes] .container .blocks {
  grid-gap: 0;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block {
  border: 1px solid var(--black);
  width: 33.3%;
  margin-top: -1px;
  margin-left: -1px;
  aspect-ratio: unset;
  flex: unset;
  display: block;
  padding: 30px 50px;
  transition: all 0.3s;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .background {
  position: relative;
  background-color: unset;
  height: unset;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .background::after {
  display: none;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .background img.image {
  width: 60px;
  height: auto;
  margin: 0 auto 20px;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .content {
  position: relative;
  top: unset;
  width: unset;
  height: unset;
  color: unset;
  padding: 0;
  text-align: center;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .content h3 {
  position: relative;
  bottom: unset;
  left: unset;
  right: unset;
  font-weight: 300;
  font-size: 1em;
  text-align: center;
  transition: unset;
  margin-top: 0;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-wireframes] .container .blocks .block .content .text {
  transition: unset;
  text-align: center;
}
.section-blocks[options~=theme-wireframes] .container .blocks a.block:hover {
  border: 1px solid var(--primary);
}
.section-blocks[options~=theme-wireframes] .container .blocks a.block:hover .content {
  color: var(--primary);
}
.section-blocks[options~=theme-wireframes][options~=darkmode] .container .blocks .block {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: unset;
}
.section-blocks[options~=theme-wireframes][options~=darkmode] .container .blocks .block .content {
  color: var(--white);
}

@media (max-width: 1000px) {
  .section-blocks[options~=theme-wireframes] .container .blocks .block {
    padding: 30px 20px;
  }
}
@media (max-width: 820px) {
  .section-blocks[options~=theme-wireframes] .container .blocks .block {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .section-blocks[options~=theme-wireframes] .container .blocks .block {
    width: 100%;
  }
}
/*

Options - Theme cards

*/
.section-blocks[options~=theme-cards] .container {
  max-width: 1000px;
}
.section-blocks[options~=theme-cards] .container .blocks {
  grid-gap: 20px;
}
.section-blocks[options~=theme-cards] .container .blocks .block {
  width: calc(50% - 10px);
  aspect-ratio: unset;
  flex: unset;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 5px;
  background-color: var(--gray);
}
.section-blocks[options~=theme-cards] .container .blocks .block .background {
  position: relative;
  height: 250px;
  background-color: unset;
  width: 100%;
}
.section-blocks[options~=theme-cards] .container .blocks .block .background img {
  border-radius: 15px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .background:after {
  display: none;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content {
  width: 100%;
  position: relative;
  top: unset;
  width: unset;
  height: unset;
  color: unset;
  text-align: center;
  padding: 30px;
  transition: all 0.2s;
  flex: 1;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content:has(.button) {
  padding: 30px 30px 125px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content .top {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content .top .icon {
  margin-bottom: 20px;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content h3 {
  position: relative;
  bottom: unset;
  left: unset;
  right: unset;
  margin-top: 0;
  margin-bottom: 15px !important;
  color: var(--primary);
  font-size: 1.4em;
  transition: unset;
  font-weight: 700;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content h3:last-child {
  margin-bottom: 0;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content .text {
  transition: unset;
}
.section-blocks[options~=theme-cards] .container .blocks .block .content .button {
  position: absolute;
  bottom: 20px;
  left: 30px;
  right: 30px;
}
.section-blocks[options~=theme-cards] .container .blocks a.block:hover {
  text-decoration: none;
}
.section-blocks[options~=theme-cards] .container .blocks a.block:hover .background:before {
  top: 0;
}
.section-blocks[options~=theme-cards] .container .blocks a.block:hover .content {
  color: var(--primary);
}
.section-blocks[options~=theme-cards][options~=darkmode] .container .blocks .block {
  background-color: rgba(255, 255, 255, 0.1);
}
.section-blocks[options~=theme-cards][options~=darkmode] .container .blocks .block .content {
  color: var(--white);
}
.section-blocks[options~=theme-cards][options~=theme-cards-large-headers] .container .blocks .block .content .top .icon img {
  height: 60px;
}
.section-blocks[options~=theme-cards][options~=theme-cards-large-headers] .container .blocks .block .content .top h3 {
  font-size: 3em;
}

@media (max-width: 800px) {
  .section-blocks[options~=theme-cards] .container .blocks {
    justify-content: center;
  }
  .section-blocks[options~=theme-cards] .container .blocks .block {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 800px) {
  .section-blocks[options~=theme-cards] .container .blocks .block {
    max-height: unset;
  }
}
@media (max-width: 500px) {
  .section-blocks[options~=theme-cards][options~=theme-cards-large-headers] .container .blocks .block .top h3 {
    font-size: 2.4em;
  }
  .section-blocks[options~=theme-cards] .container .blocks .block .content:has(.button) {
    padding: 30px 30px 150px;
  }
}
/*

Options - Theme Color Blocks

*/
.section-blocks[options~=color-blocks] .container .blocks .block {
  position: relative;
  aspect-ratio: unset;
  width: calc(50% - 10px);
  padding: 40px 30px;
}
.section-blocks[options~=color-blocks] .container .blocks .block:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--white);
}
.section-blocks[options~=color-blocks] .container .blocks .block:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-blocks[options~=color-blocks] .container .blocks .block:nth-child(1), .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(4), .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(5), .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(8) {
  color: var(--primary);
}
.section-blocks[options~=color-blocks] .container .blocks .block:nth-child(1):after, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(4):after, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(5):after, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(8):after {
  background-color: rgba(var(--primary-rgb), 0.1);
}
.section-blocks[options~=color-blocks] .container .blocks .block:nth-child(1) .content .list .item img, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(4) .content .list .item img, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(5) .content .list .item img, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(8) .content .list .item img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(56%) saturate(748%) hue-rotate(213deg) brightness(85%) contrast(98%);
}
.section-blocks[options~=color-blocks] .container .blocks .block:nth-child(2), .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(3), .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(6), .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(7) {
  color: var(--secondary);
}
.section-blocks[options~=color-blocks] .container .blocks .block:nth-child(2):after, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(3):after, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(6):after, .section-blocks[options~=color-blocks] .container .blocks .block:nth-child(7):after {
  background-color: rgba(var(--secondary-rgb), 0.1);
}
.section-blocks[options~=color-blocks] .container .blocks .block .content {
  position: relative;
  top: unset;
  height: unset;
  width: unset;
  color: unset;
}
.section-blocks[options~=color-blocks] .container .blocks .block .content .top {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
}
.section-blocks[options~=color-blocks] .container .blocks .block .content .top .icon {
  margin-bottom: 20px;
}
.section-blocks[options~=color-blocks] .container .blocks .block .content .top .icon img {
  max-height: 30px;
}
.section-blocks[options~=color-blocks] .container .blocks .block .content .top h3 {
  font-size: 1.75em;
  font-weight: 700;
}
.section-blocks[options~=color-blocks][options~=color-blocks-4-wide] .container .blocks .block {
  width: calc(25% - 15px);
}
.section-blocks[options~=color-blocks][options~=color-blocks-all-primary] .container .blocks .block {
  color: var(--primary);
}
.section-blocks[options~=color-blocks][options~=color-blocks-all-primary] .container .blocks .block:after {
  background-color: rgba(var(--primary-rgb), 0.1);
}
.section-blocks[options~=color-blocks][options~=color-blocks-all-primary] .container .blocks .block .content {
  padding: 0;
}

@media (max-width: 900px) {
  .section-blocks[options~=color-blocks] .container .blocks .block {
    width: 100%;
    max-width: 500px;
  }
  .section-blocks[options~=color-blocks][options~=color-blocks-4-wide] .container .blocks .block {
    width: calc(50% - 10px);
  }
}
@media (max-width: 500px) {
  .section-blocks[options~=color-blocks][options~=color-blocks-4-wide] .container .blocks .block {
    width: 100%;
  }
}
/*

Options - Margin Top Negative

*/
.section-blocks[options~=negative-margin-top] {
  margin-top: -3.5rem;
}
.section-blocks[options~=negative-margin-top][options~=background-primary], .section-blocks[options~=negative-margin-top][options~=background-secondary] {
  padding-top: 0;
}
.section-blocks[options~=negative-margin-top] .container :is(h1, h2) {
  font-size: 2em;
}

/*

Scroll Animations

*/
.section-blocks.scrolled-to .block:nth-child(1) {
  animation: block1 1s forwards;
}
.section-blocks.scrolled-to .block:nth-child(2) {
  animation: block2 1.25s forwards;
}
.section-blocks.scrolled-to .block:nth-child(3) {
  animation: block3 1.5s forwards;
}
.section-blocks.scrolled-to .block:nth-child(4) {
  animation: block4 1.75s forwards;
}
.section-blocks.scrolled-to .block:nth-child(5) {
  animation: block5 2s forwards;
}
.section-blocks.scrolled-to .block:nth-child(6) {
  animation: block6 2.25s forwards;
}
.section-blocks.scrolled-to .block:nth-child(7) {
  animation: block7 2.5s forwards;
}
.section-blocks.scrolled-to .block:nth-child(8) {
  animation: block8 2.75s forwards;
}
.section-blocks.scrolled-to .block:nth-child(9) {
  animation: block9 3s forwards;
}
.section-blocks.scrolled-to .block:nth-child(10) {
  animation: block10 3.25s forwards;
}
.section-blocks.scrolled-to .block:nth-child(11) {
  animation: block11 3.5s forwards;
}
.section-blocks.scrolled-to .block:nth-child(12) {
  animation: block12 3.75s forwards;
}
.section-blocks.scrolled-to .block {
  animation: block13 4s forwards;
}

@keyframes block1 {
  from {
    margin: -50px 0 50px;
    opacity: 0;
  }
  to {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block2 {
  0%, 20% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block3 {
  0%, 33% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block4 {
  0%, 43% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block5 {
  0%, 50% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block6 {
  0%, 55% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block7 {
  0%, 60% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block8 {
  0%, 64% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block9 {
  0%, 67% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block10 {
  0%, 70% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block11 {
  0%, 72% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block12 {
  0%, 74% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}
@keyframes block13 {
  0%, 75% {
    margin: -50px 0 50px;
    opacity: 0;
  }
  100% {
    margin: 0;
    opacity: 1;
  }
}