#top-img {
	width: 100%;
  height: auto;
}

body .section-block-parallax.light .section-block-parallax__content,
body .section-block-parallax.light .section-block-parallax__content>h3{
  color: #393339;
}

body .section-block-parallax.dark .section-block-parallax__item .section-block-parallax__image:after {
  background: -webkit-gradient(linear,left top, left bottom,color-stop(58%, transparent),to(rgba(0,0,0,1)));
  background: -o-linear-gradient(top,transparent 58%,rgba(0,0,0,1) 100%);
  background: linear-gradient(180deg,transparent 58%,rgba(0,0,0,1) 100%);
}

body .section-block-parallax.light .section-block-parallax__item .section-block-parallax__image:after {
  background: -webkit-gradient(linear,left top, left bottom,color-stop(58%, transparent),to(rgba(255,255,255,1)));
  background: -o-linear-gradient(top,transparent 58%,rgba(255,255,255,1) 100%);
  background: linear-gradient(180deg,transparent 58%,rgba(255,255,255,1) 100%);
}

@media only screen and (min-width: 960px) {
  body .section-block-parallax.dark .section-block-parallax__item:nth-child(odd) .section-block-parallax__image:after {
    background: rgb(255,255,255);
    background: -webkit-gradient(linear, right top, left top, color-stop(58%, transparent), to(rgba(0,0,0,1)));
    background: -webkit-linear-gradient(right, transparent 58%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(right, transparent 58%, rgba(0,0,0,1) 100%);
    background: linear-gradient(270deg, transparent 58%, rgba(0,0,0,1) 100%);
  }
  body .section-block-parallax.dark .section-block-parallax__item:nth-child(even) .section-block-parallax__image:after {
    background: rgb(255,255,255);
    background: -webkit-gradient(linear, left top, right top, color-stop(58%, transparent), to(rgba(0,0,0,1)));
    background: -webkit-linear-gradient(left, transparent 58%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(left, transparent 58%, rgba(0,0,0,1) 100%);
    background: linear-gradient(90deg, transparent 58%, rgba(0,0,0,1) 100%);
  }
  
  body .section-block-parallax.light .section-block-parallax__item:nth-child(odd) .section-block-parallax__image:after {
    background: rgb(255,255,255);
    background: -webkit-gradient(linear, right top, left top, color-stop(58%, transparent), to(rgba(255,255,255,1)));
    background: -webkit-linear-gradient(right, transparent 58%, rgba(255,255,255,1) 100%);
    background: -o-linear-gradient(right, transparent 58%, rgba(255,255,255,1) 100%);
    background: linear-gradient(270deg, transparent 58%, rgba(255,255,255,1) 100%);
  }

  body .section-block-parallax.light .section-block-parallax__item:nth-child(even) .section-block-parallax__image:after {
    background: -webkit-gradient(linear,left top, right top,color-stop(58%, transparent),to(rgb(255 255 255)));
    background: -o-linear-gradient(left,transparent 58%,rgb(255 255 255) 100%);
    background: linear-gradient(90deg,transparent 58%,rgb(255 255 255) 100%);
  }
}