main > .container, main > .container-fluid
{
    padding: 70px 15px 20px;
}
a{
    color: rgb(7, 142, 29);
}
html,
body {
    height: 100%;
    background-image: url("../img/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-attachment: fixed;
    background-color: #01020a;
    color: #c9d1c9;


}
h1,h2,h3,h4,h5,h6,p,ul,li{
    color:white;

}
h1,h2,h3 {
    background-color: rgba(0,0,0,0.8);
    border: thin solid black;
    border-radius: 10px;
    padding: 5px;
}
h4,h5{
    background-color: rgba(7, 142, 29,0.8);
    border: thin solid black;
    border-radius: 10px;
    padding: 5px;
}

.footer {

    background-repeat: repeat-x;
    background-size: 300px;

    background-color: rgba(0,0,0,0.6);
    font-size: .9em;
    color: white;


}


.footer > .container, .footer > .container-fluid {
    padding-right: 5px;
    padding-left: 5px;
}

.not-set {
    color: #c55;
    font-style: italic;
}

/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    content: '';
    left: 3px;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid 5px transparent;
    margin: 4px 4px 2px 4px;
    background: transparent;
}

a.asc:after {
    border-bottom: solid 7px #212529;
    border-top-width: 0;
}

a.desc:after {
    border-top: solid 7px #212529;
    border-bottom-width: 0;
}

.grid-view th,
.grid-view td:last-child {
    white-space: nowrap;
}

.grid-view .filters input,
.grid-view .filters select {
    min-width: 50px;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}



/* style breadcrumb widget as in previous bootstrap versions */
.breadcrumb {
    background-color: var(--bs-gray-200);
    border-radius: .25rem;
    padding: .75rem 1rem;
}

.breadcrumb-item > a
{
    text-decoration: none;
}

.bg-black-leger {
    background-color: rgba(0,0,0,0.6);
    border-top: solid 5px #fbaa08;

}

.nav-breadcrumb{
    background-color: #f4a207;
}




.btn-grad {background-image: linear-gradient(to right, #DA22FF 0%, #9733EE  51%, #DA22FF  100%)}
.btn-grad {
    margin: 10px;
    padding: 5px 4px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    font-size: large;
    width: 100%;

}

.btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.card {
    background-color: rgba(251, 170, 8,0.8);

}

.card-title{
    color:white;
}

.lead {
    background-color: rgba(55, 53, 53, 0.8);
    border: thin solid black;
    border-radius: 10px;
    padding: 10px;
}

.bg-pao{
    background-color: rgba(251, 170, 8,0.8);
    border: solid 2px #101010;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 10px 10px 10px  black ;
    margin: 5px;
    padding: 10px;


}

.animateDisplay{
    visibility: hidden;
    opacity: 0;
    transition: visibility 2s, opacity 1.5s linear;
}

.row:hover .animateDisplay{
    visibility: visible;
    opacity: 1;
}

.video {
    position: relative;
    height: auto;
    width:100%;
    border: solid 2px greenyellow;
    border-radius: 10px 10px 10px 10px;


}




.fadeAnim {

    transition: opacity 0.7s ease-in;
}

.fadeOut { opacity: 0; }
.fadeIn { opacity: 1; }