.home-main {
    margin: -10px -60px -80px;
}
.home-main-top {
    height: 60vh;
    display: flex;
}
.home-main-top-left {
    width: 65%;
}
.home-main-top-right {
    width: 35%;
    position: relative;
    overflow: hidden;
}
.home-main-bottom {
    height: 40vh;
    display: flex;
}
.home-main-bottom > div {
    width: 25%;
    position: relative;
    overflow: hidden;
}
.home-main-bottom img, .home-main-top-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.home-main-bottom > div:before, .home-main-top-right:before {
    content: "";
    background-image: url(../../../img/frontend/home-overlay.png);
    position: absolute;
    left: -1px;
    right: -1px;
    top: -1px;
    bottom: -1px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    opacity: 0.6;
    z-index: 1;
}

.home-main-captions {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.home-main-captions h4 {
    font-weight: 700;
    margin: 10px 0 0;
    position: relative;
    bottom: 0;
    color: #fff;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.home-main-captions h4:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    background: #ffffff;
    max-width: 90px;
    height: 3px;
    margin: 0 auto;
}
.home-main-captions p {
    margin: 10px 0 0;
    color: #e8eaf1;
    position: relative;
    opacity: 0;
    top: -10px;
    transform: scale(0);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.home-main-bottom > div:hover img, .home-main-top-right:hover img {
    transform: scale(1.1);
}
.home-main-bottom > div:hover h4, .home-main-top-right:hover h4 {
    color: #f5ca2a;
    bottom: 10px;
}
.home-main-bottom > div:hover p, .home-main-top-right:hover p {
    opacity: 1;
    transform: scale(1);
}



@media only screen and (min-width:100px) and (max-width:767px)
{


.home-main-top {
    display: block;
    height: auto;
}
.home-main-top-left {
    width: 100%;
    height: 210px;
    margin: 5px 0 25px;
}
.home-main-top-right {
    width: auto;
    margin: 15px 0 0;
}
.home-main-bottom {
    display: block;
    height: auto;
}
.home-main-bottom > div {
    width: 100%;
    margin: 15px 0 0;
}
.home-main {
    margin: 0;
}
.home-main-captions p {
    transform: scale(1);
    opacity: 1;
    top: 0;
}


}