#home-programs .page-title.green {
    padding-left: 120px;
    margin-bottom: 25px;
}
.home-program-item {
    margin-bottom: 15px;
}
.home-program-item:last-child {
    margin-bottom: 0;
}
.home-program-item:nth-child(2n+1) .columns {
    flex-flow: row-reverse;
}
.home-program-image {
    position: relative;
    overflow: hidden;
}
.home-program-image-back {
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -o-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
.home-program-text {
    background-color: #86b646;
    color: white;
    padding: 70px 70px 100px;
    position: relative;
}
.home-program-item:nth-child(2n+1) .home-program-text {
    background-color: #db2242;
}
.home-program-title {
    font-size: 59px;
    font-weight: 600;
    margin-bottom: 20px;
}
.home-program-desc {
    line-height: 1.95;
    color: rgba(255,255,255,0.5);
}
.home-program-item:nth-child(2n+1) .home-program-desc {
    color: white;
}
.home-program-more {
    position: absolute;
    right: 70px;
    bottom: 50px;
}
/*Responsive*/
@media only screen and (min-width: 1025px) {
    .home-program-item a:hover .home-program-image-back {
        -webkit-transform: scale(1.15);
        -moz-transform: scale(1.15);
        -ms-transform: scale(1.15);
        -o-transform: scale(1.15);
        transform: scale(1.15);
    }
    .home-program-more:hover {
        text-decoration: underline;
    }
}
@media only screen and (max-width: 1600px) {
    .home-program-text {
        padding: 40px 40px 100px;
    }
    .home-program-title {
        font-size: 40px;
    }
    .home-program-more {
        right: 40px;
    }
}
@media only screen and (max-width: 1300px) {
    #home-programs .page-title.green {
        padding-left: 0;
    }
    .home-program-text {
        padding: 30px 30px 60px;
    }
    .home-program-title {
        font-size: 30px;
    }
    .home-program-more {
        right: 30px;
        bottom: 30px;
    }
}
@media only screen and (max-width: 769px) {
    .home-program-item:nth-child(2n+1) .columns {
        flex-flow: column;
    }
    .home-program-image {
        padding-top: 50%;
    }
    .home-program-title {
        font-size: 20px;
    }
}