.banner {
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    margin-bottom: 100px;
}
.banner-box {
    position: absolute;
    bottom: -100px;
    left: 50%;
    background: #fff;
    transform: translateX(-50%);
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    height: 180px;
    max-width: 550px;
}
.full-service {
    padding: 100px 0;
}

/* slider */
.prev-arrow, .next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}

.prev-arrow svg, .next-arrow svg {
    transition: all 0.2s ease-in-out;
    fill: #254777;
}
.prev-arrow:hover > svg, .next-arrow:hover > svg {
    fill: #000;
}
.prev-arrow {
    left: 0;
}
.next-arrow {
    right: 0;
}
.slick-slide.slick-current.slick-active:focus {
    outline: none;
}
/* responsive */
@media (max-width: 991.98px) {
    .banner img {
        max-width: 100%;
        margin: 10px auto;
    }
    .banner-box {
        height: 210px;
        width: 90%;
        padding: 20px;
    }
    .full-service img {
        margin-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    
    /* slider */
    .prev-arrow, .next-arrow {
        /* transform: translateY(-100%); */
        top: 25%;
    }
    .prev-arrow {
        left: 10px;
    }
    .next-arrow {
        right: 10px;
    }
}