:root{
    --primary:#f7ac69;
    --primary-light:rgba(247, 172, 105, 0.50);
    --secondary:#800080;
    --secondary-85:rgba(128,0,128,0.85);
    --secondary-light:rgba(128,0,128,0.5);
    --white:#fff;
    --light-grey:#f3f3f3;
    --grey:#ccc;
    --dark-grey:#666;
    --dark2-grey:#333;
    --dark3-grey:#222;
    --black:#000;
    --accessories:#509ee3;
    --white-50:rgba(255,255,255,0.5);
    --white:#fff;
    --black-50:rgba(0,0,0,0.5);

    --font:'Spartan', sans-serif;
}
html{
    font-family: var(--font) !important;
}

/* *******Globals******* */
.contenedor{
    width: 90%;
    margin: 0 auto;
    max-width: 120rem !important;
}

h1, h2, h3, h4, h5, h6, p, a{
    font-family: var(--font);
}
h1, h2, h3{
    font-weight: 700 !important;
}
h4, h5, h6, p, a{
    font-weight: 400 !important;
}

h2{
    color: var(--dark2-grey);
}

a{
    color: var(--secondary)!important;
}



/* ******* Utilities ******* */
.btn {
    color: var(--white) !important;
    background-color: var(--primary) !important;
}
.btn:hover {
    background-color: var(--grey) !important;
    color: var(--dark3-grey)!important;
}

.fa-solid{
    color: var(--primary);
}

.background-gradient{
    background: linear-gradient(30deg, var(--primary-light),  var(--secondary-light));
}
.background-gradient-inverse{
    background: linear-gradient(30deg, var(--secondary-light), var(--primary-light) );
}

.background-light{
    background-color: var(--primary-light);
}
.background-white{
    background-color: var(--white);
}

.card-title{
    color: var(--secondary);
}

.imp_text{
    color: var(--secondary);
    font-weight: 700;
}


/* ******* Styles ******* */
/* Header */
.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    /*background-image: url(../assets/heroimg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position:  center;*/
}

.header-contenedor{
    width: 90%;
    margin: 0 0 0 10%;
}
.logo{
    max-height: 13rem;
    width:auto;
}
.header-nav{
    background-color: var(--primary);
    text-align: center;
    border-top: solid .3rem var(--secondary);
}

.header-nav .fa-solid{
    color: var(--white);
}

.header h1{
    color: var(--dark-grey);
}


.header h3{
    color: var(--dark2-grey);
}


/*Back*/
.volver{
    padding: .5rem;
    margin-top: 1rem;
    width: max-content;
    border-radius: 5px;
    box-shadow: 0.20rem 0.20rem .5rem rgba(0,0,0,0.25);
    position: relative;
    right: -90%;
    opacity: .7;
}
@media (min-width:678px){
    .volver{
        right: -100%;
    }
}

/*Results*/
.results{
    margin: .5rem auto;
    padding: .3rem;
    width: fit-content;
}

.card-height1{
    height: 95%;
}

/*Contact*/
.contact-img{
    margin: 1rem auto 0 auto;
}
.card-height{
    height: 93%;
}

/*Footer*/
.footer{
    background-color: var(--secondary);
}
