﻿body {
    font-family: 'Neulis';
}
@font-face {
  font-family: 'Neulis';
  src: url(../fonts/NeulisAlt-Regular.ttf);
}
 @font-face {
  font-family: BlackSignature;
  src: url(../fonts/blacksignature_personal_use_only.otf);
}
.navbar{
    background-color: #6A1B31;
    height: 100px;
}
.navbar img{
    height: 70px;
}
.navbar-collapse{
    padding-top: 0px;
    color: white;
    font-weight: 600;
    background-color: #6A1B31;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
}

@media (min-width: 768px){
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .navbar-collapse{
        display: block!important;
        flex-grow: unset;
    }
}
@media (min-width: 768px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
    }
}

.navbar-toggler{
    color: white;
}
.navbar-toggler-icon{
    background-image: url(http://assets.stickpng.com/images/588a64e0d06f6719692a2d10.png);
}
.navbar-collapse .navbar-nav > a, .navbar-collapse .navbar-nav > button{
    color: white;
    background: transparent;
}
.navbar-collapse .navbar-nav > a:after, .navbar-collapse .navbar-nav > button:after{
    content: '';
    border-bottom: 3px solid transparent;
    width: 100%;
    display: block;
    margin: 6px auto;
}
.navbar-collapse .navbar-nav > a:hover:after, .navbar-collapse .navbar-nav > button:hover:after{
    content: '';
    border-bottom: 3px solid #eeeeee;
    width: 100%;
    display: block;
    margin: 6px auto;
    animation-name: linea-expande;
    animation-duration: .2s;
}
@keyframes linea-expande {
  0%   {width: 0%;}
  25%  {width: 20%;}
  50%  {width: 50%;}
  100% {width: 100%;}
}



/* footer */
footer {
    width: 100%;
    background: #3F3F3D;
    color: #000;
    font-size: .882em;
    line-height: 1.5;
    padding: 0;
    z-index: 1;
    position: relative;
}
footer .row {
    margin: 0px;
}
.footer-enlaces ul {
    position: relative;
    vertical-align: top;
    top: 0;
    text-align: left;
    height: auto;
    margin: 0 1%;
    list-style: none;
    color: #fefefe;
}
.footer-enlaces li {
    position: relative;
    width: 100%;
    height: auto;
    margin: 10px 0;
}
.footer-enlaces li a {
    color: #eeecec !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}
.footer-enlaces li a:hover {
    color: #b17a45 !important;
    font-weight: 700 !important;
    text-decoration: underline !important;
}
.footer-line {
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #b17a45;
    margin-bottom: 5px;
}
.footer-line-yellow {
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: #b17a45;
    margin-bottom: 5px;
}
footer p {
    color: #ffffff;
    line-height: 1.8;
    font-weight: normal;
}
