/**
*   Ajustes de personalización
**/

body {
    background-image: url(/assets/img/home-bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.content-page {
    margin-top: 2rem;
}

h1, h2 {
    color: #fff;
}
hr {
    border-color: #fff;
}

/* Hidden Classic V3 */
@media (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}