/* - 8 column - 4 column split blocks */
@media all and (min-width: 801px) {
  #home-top-content > .width-limiter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #home-top-content > .width-limiter > :first-child {
    width: 66.66%;
  }
  #home-top-content > .width-limiter > :last-child {
    width: 33.34%;
  }  
}

@media all and (max-width: 1250px) {
  #home-top-content > .width-limiter {
    width: 100%;
  }
}

.top-content-caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.top-content-caption .caption-bg {
  background-color: rgba(255,255,255,.7);
  padding-top: 3px;
  padding-bottom: 3px;
}
.top-content-caption .caption-bg p {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 0px;
}
/* Add full background to right */
#home-top-content {
  position: relative;
}

@media all and (max-width: 800px) {
  #home-top-content .width-limiter > div:last-of-type {
    background-image: url(/assets/templates/main/images/bgs/bg-blog.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 300px;
  }
}
@media all and (max-width: 450px) {
  #home-top-content .width-limiter > div:last-of-type {
    height: 200px;
  }
  .top-content-caption .caption-bg p {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media all and (min-width: 801px) {
  #home-top-content .width-limiter > div:last-of-type {
    position: relative;
    z-index: 2;
    background-image: none;
    background-color: transparent;
  }
  #home-top-content:after {
    content: '';
    width: 33.34%;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-image: url(/assets/templates/main/images/bgs/bg-blog.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media all and (min-width:801px) and (max-width: 900px) {
  #home-top-content:after {
    width: 40%;
  }
  #home-top-content > .width-limiter > :first-child {
    width: 60%;
  }
  #home-top-content > .width-limiter > :last-child {
    width: 40%;
  }
}

@media all and (min-width: 1271px) {
  #home-top-content:after {
    width: calc(((100% - 1250px)/ 2) + 417px);
  }
}