@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
    }
}

.border-gray {
    border: 1px solid gray;
}

div.sticky {
    height: 100%;
    position: sticky;
    top: 100px;
}

.justify-content-space-between {
    display: flex;
    justify-content: space-between;
}

.home-banner-button {
    width: 100%;
    display: flex;
    font-size: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #fa4616;
}

.box-shadow {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .35) !important;
}