h1{
    color: rgb(1, 110, 255);
    font-size: 30px;
    font-weight: 700;
}
h4{
    color: rgb(1, 110, 255);
    font-size: 25px;
    font-weight: 700;
    text-align: center;
}
select{
    border-radius: 0;
}
.content-home{
    background-image: url("../images/banner.jpg");
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    align-content: center;
    background-size: cover;
}
.overlay-home{
    background-color: #000000;
    opacity: 0.9;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}
.box-content{
    position: relative;
    z-index: 999;
}
.box-form{
    position: relative;
    padding: 15px;
}
.box-form input.form-control{
    background: #fff;
    border: 0;
    border-radius: 0;
    opacity: 1;
}
.box-form::before{
    content: "";
    background: #fff;
    padding: 15px;
    opacity: 0.5;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.box-paginate nav{
    display: inline-block !important;
}
/* ≥768px (tablet) */
@media (max-width: 767px) {
    h1{
        font-size: 25px;
    }
    .content-home{
        height: 100%;
    }
}