.home-main-section {
    background: url('../images/go-01c.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.home-main-section .call-to-action {
    width: 55vw;
    max-width: 680px;
    min-width: 720px;
    padding-top: 40vh;
    margin: 0 auto;
    align-self: flex-end;
    align-items: center;
}

.home-main-section .title {
    font-size: calc(14px + 3vw);
    text-align: center;
}

.home-main-section .img-wrapper {
    flex-grow: 1;
    flex-direction: column;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
}

.home-main-section .sample-image {
    background-image: url('../images/sample-image.jpg');
    flex-grow: 1;
    max-height: 70vh;
    min-width: 40vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
}

.home-page-item-1 {
    position: absolute;
    width: 25vw;
    height: 25vw;
    border-radius: 50%;
    background-color: rgb(188, 58, 128, .1);
    bottom: 5vw;
    left: 5vw;
    z-index: -1;
}

.home-page-item-2 {
    position: absolute;
    width: 25vw;
    height: 25vw;
    border-radius: 50%;
    background-color: rgb(52, 87, 178, .1);
    top: 15vh;
    left: 30vw;
    z-index: -1;
}

.home-page-item-3 {
    position: absolute;
    overflow: hidden;
    width: 45vw;
    height: 45vw;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.home-page-item-3::before {
    content: '';
    transform: translate(40%, 40%);
    position: absolute;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: rgb(52, 87, 178, .1);
}

/* from animate.css */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@keyframes slideInUp {
    from {
      transform: translate3d(0, 100%, 0);
      visibility: visible;
    }
  
    to {
      transform: translate3d(0, 0, 0);
    }
  }
  
  .slideInUp {
    animation-name: slideInUp;
  }
/* *** */  

@media (max-width: 720px) {
    .home-main-section {
        /* background: url('../images/go-01c.jpg'); */
        background: url('../images/go-01-e02.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        min-height: 740px !important;
    }

    .home-main-section .call-to-action {
        width: 80vw;
        min-width: 280px;
        margin: 0;
        margin-left: auto;
        margin-right: auto;
        padding-top: 50vh;
        align-self: flex-end;
    }

    .home-main-section .covers-image {
        margin-top: 2rem;
        height: 30vh;
        width: auto;
    }

    .home-main-section .img-wrapper {
        display: none;
    }

    .button {
        margin-top: 0;
    }
}

@media (max-height: 680px) and (min-width: 720px) {
    .home-main-section {
        background: url('../images/go-01d.jpg');
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        min-height: auto;
    }

    .home-main-section .call-to-action {
        padding-top: 0;
        padding-left: 35vw;
        width: 80vw;
        max-width: 1000px;
        align-self: center;
        align-items: flex-start;
    }

    .home-main-section .title {
        text-align: left;
    }

    .title {
        font-size: 30px;
        margin-bottom: .5rem;
    }

    .subtitle {
        margin-bottom: .75rem;
    }

    .button {
        margin-top: 0;
    }
}