@import url('https://fonts.googleapis.com/css2?family=Asap:wght@400;500;700&family=Raleway:wght@400;500;700&display=swap');

h2 {
    font-family: Raleway;
    font-weight: 500;
}


body { background-color: #FAFAFA }

nav.bg-blue {
    background-color: #27528D;
}

.btn.btn-purple { background-color: #751185; color: #fff }
.btn.btn-purple:hover { background-color: #570D63 }

.btn.btn-info { background-color: #1597E0; color: #fff }
.btn.btn-info:hover { background-color: #1284C4 }

.btn i{ margin-right: 5px }

.link__buttons .btn {
    font-family: Raleway;
    padding-top: 1rem;
    padding-bottom: 1rem;

}

.footer {
    margin-top: 2rem;
    width: 100%;
    background-color: #002F5A;

    font-family: Asap;
    font-weight: 400;
    color: #fff;
}

.footer img {
    max-width: 200px;
}


@media screen and (min-width: 768px) {
    .footer {
        /* position: fixed; */
        /* bottom: 0; */
    }
}

.menu_container {
    position: fixed;
    z-index: 100;
    width: 100%;
    background: #fff;
    margin-top: 56px;
    box-shadow: 0 1px 8px 0px #909090;
}

.container__menu {
    margin-top: 140px;
    background-color: #fff;
    filter: drop-shadow(3px 4px 8px rgba(0, 0, 0, 0.25));
    border-radius: 10px;
}

.container__category {
    margin-top: 30px;
    background: #ECECEC;
    padding: 1rem;
    position: relative;
    border-radius: 0 20px 0 0;
    border-bottom: 1px solid #ACACAC;

    font-family: Raleway;
    font-weight: 700;
    text-transform: uppercase;
}

.container__category::before {
    content: "";
    position: absolute;
    top: -24px;
    left: 0;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-left: 75px solid #ECECEC;
    z-index: -1;
}

.menu__categories {
    position: relative;
    width: 100%;
    height: auto;
    overflow: scroll hidden;
    display: flex;
    flex-direction: row;
    -webkit-box-pack: initial;
    justify-content: initial;
    -webkit-box-align: center;
    align-items: center;
    white-space: nowrap;
    background-color: rgb(255, 255, 255);
}

.menu__categories::-webkit-scrollbar { display: none }
@media screen and (max-width: 768px) {
}

.categories__button {
    margin: 5px;
    padding: 6px 16px;
    border-radius: 4px;
    background-color: #1A344B;
    cursor: pointer;
    border: none;
    color: #ffffff;
    font-family: Raleway;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}

.categories__button:hover {
    color: #fff;
    background-color: #122435;

}

.categories__button.active {
    border: 1px solid #1A344B;
    color: #1A344B;
    background-color: #ffffff;
}

.categories__button:first-child { margin-left: 0 }

.list__menu .card {
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ACACAC;

    cursor: pointer;
}

.modal-desc h5 { font: 700 1.5rem Asap }
.modal-desc  p { font: 400 1rem Asap }

@media screen and (max-width: 420px) {
    h5.card-title { font-size: 1rem }
}

@media screen and (min-width: 1400px) {
    .card-body {
        margin-left: -50px
    }
    .tipos {
        background-color: red;  
    }
}

@media (min-width: 576px) and (max-width: 767px){
    .container, .container-sm {
        max-width: none;
    }
}

