.animate-img{
    position: relative;
    overflow: hidden;
}
.animate-img:hover img{
    transform: scale(1.1);
    transition: 0.5s;
}

.cruise-grid .cruise-grid-wrapper .image-sec>a:after,
.flights-grid .flights-grid-wrapper .image-sec>a:after,
.hotel-grid .hotel-grid-wrapper .image-sec>a:after{
    position: absolute;
    top: 0;
    left: 0px;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-color: #01b7f2;
    content: '';
    transition: 0.5s all;
    margin: 10px;
    transform: translateX(-100%);
}

.cruise-grid .cruise-grid-wrapper .image-sec>a:before,
.flights-grid .flights-grid-wrapper .image-sec>a:before,
.hotel-grid .hotel-grid-wrapper .image-sec>a:before{
    position: absolute;
    top: 50%;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: "Flaticon";
    font-weight: 900;
    content: "\f168";
    pointer-events: none;
    z-index: 9000;
    transition: 0.5s all;
    transform: translate(-100%, -50%);
    left: 0;
    right: 0;
    text-align: center;
    line-height: 0.5;
}

.cruise-grid .cruise-grid-wrapper:hover .image-sec>a:after,
.cruise-grid .cruise-grid-wrapper:hover .image-sec>a:before,
.flights-grid .flights-grid-wrapper:hover .image-sec>a:after,
.flights-grid .flights-grid-wrapper:hover .image-sec>a:before,
.hotel-grid .hotel-grid-wrapper:hover .image-sec>a:after,
.hotel-grid .hotel-grid-wrapper:hover .image-sec>a:before{
    opacity: 1;
    transform: translateX(0%);
}

.hotel-grid .hotel-grid-wrapper.car-grid .image-sec{
    height: 160px;
    width: 100%;
    background-color: #fff;
}
.hotel-grid .hotel-grid-wrapper.car-grid .image-sec img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.our-work-sec .work-sec .text-wrapper{
    width: 100%;
    background: 0 0;
    background: linear-gradient(to bottom,transparent,#000);
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 1;
    padding: 100px 20px 20px 20px;
}

.text-custom-white {
    color: #ffffff;
}

.no-margin {
    margin: 0;
}

.our-work-sec .work-sec .text-wrapper h2{
    text-transform: uppercase;
    transform: translateY(20px) translateZ(0);
    transition: all .3s cubic-bezier(.77,0,.175,1);
}
.our-work-sec .work-sec .text-wrapper p{
    opacity: 0;
    transform: translateY(20px) translateZ(0);
    transition: all .3s cubic-bezier(.77,0,.175,1);
}
.our-work-sec .work-sec:hover .text-wrapper h2{
    transform: translateY(-5px) translateZ(0);
}
.our-work-sec .work-sec:hover .text-wrapper p{
    opacity: .8;
    transition-delay: .2s;
    transform: translateY(0) translateZ(0);
}

.our-work-sec .work-sec.first-box{
    height: calc(100% - 10px);
}

.section-padding {
    padding: 80px 0;
}

.section-padding-top{
    padding-top:80px;
}
.section-padding-bottom{
    padding-bottom:80px;
}

.our-work-sec .row{
    margin: 0 -5px;
}
.our-work-sec .row>div{
    padding: 0 5px 10px;
}

.footer>.container>.row>div:last-child .footer-box{
    margin-bottom: 0;
}

.image-fit{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}