@import '_constants.css';
@import '_bggradients.css';
@import '_areas.css';
@import '_buttons.css';
@import '_forms.css';
@import '_modal.css';
@import '_header.css';
@import '_nav.css';
@import '_nav-breadcrump.css';
@import '_footer.css';


body {
    margin: 0;
    font-family: var(--def-font-family), sans-serif;
    color: var(--def-text-color);
    overflow-x: hidden;
    padding: 0;
}


h1 {
    color: #f7f7f7;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 50px;
    text-align: center;
}

h2 {
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #f1f1f1;
    text-align: center;
}

h3 {
    margin-bottom: 30px;
    color: #f1f1f1;
}

p{
    line-height:1.5rem;
}

main {
    margin: 0;
    position: relative;
    z-index: 100;
}

.lead{
    line-height: 2rem;
}

a{
    color: var(--gbl-yellow);
}

a:hover{
    color:#fff;
}

.disabled-image{
    filter: grayscale(100%);
}


@media only screen and (max-width: 600px) { 

    h1 {
        font-size: 1.4rem;
    }

    br{
        display:none;
    }

}