/********************************* Tipografias *******************************************************************************/
@font-face {
    font-family: 'Din';
    src: url('../fonts/ley/DIN.ttf') format('truetype');
}

@font-face {
    font-family: 'Din-bold';
    src: url('../fonts/ley/DIN_Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat-regular-webfont.ttf') format('truetype');
}
@font-face {
    font-family: 'Montserrat-bold';
    src: url('../fonts/montserrat-bold-webfont.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular-webfont.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-bold';
    src: url('../fonts/Roboto-Bold-webfont.ttf') format('truetype');
}

@font-face{
    font-family: 'Trajan';
    src: url('../fonts/Trajan_Pro_Regular.ttf') format('truetype');
}
/********************************* General *******************************************************************************/
body{
    font-family: Din, helvetica, arial, sans-serif;
}

/********************************* Backgroundss *******************************************************************************/

.bg-black{
    background-color: rgb(0,0,0);
}

.bg-red{
    background-color: rgb(213,43,30);
}

.bg-white{
    background-color: rgb(255,255,255);
}

.bg-banner-main{
    padding: 5px 5px;
    color: rgba(255,255,255,.8);
    background-color: rgb(213,43,30);
    background-image: url(../img/bg.png);
}

/********************************* Colors *******************************************************************************/

.color-white{
    color: rgb(255,255,255);
}

/********************************* Helpers *******************************************************************************/
.display-errors{
    /*color:#a94442;*/
    color:  rgb(213,43,30);
    border-color:#ebccd1;
}

.display-success{
    color: #3c763d;
    border-color: #d6e9c6;

}