.gap-top-bottom {
    padding: 70px 0;
}
.img-box img {
    width: 100%;
    /* height: auto; */
}
.text-box h4 {
    font-size: 20px;
}

/**sec2 style**/
.sec2 {
    background: #fabc00;
}
.sec2 h1 {
    color: white;
}
.item-img {
    position: relative;
    transition: all ease-in-out 0.5s;
}
.hover-box {
    position: absolute;
    bottom: -100%;

    width: 100%;
    height: 100%;
    xtransition: all ease-in-out 0.5s;
    opacity: 0;
}
.hover-box ul {
    padding-left: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}
.hover-box ul li {
    color: gold;
    font-size: 30px;
}

.text-box-2 h4 {
    color: white;
}
.text-box-2 p samp {
    color: red;
}
/***hover**/
.item-box:hover .hover-box {
    opacity: 1;
    bottom: 0;
}
