﻿.navegacion {
    display: flex;
    align-items: center;
    background: #A84C4F;
    padding: 15px;
    height: 75px;
}

.navegacion ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.navegacion ul>li>a {
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    /* text-shadow: 0px 3px 3px #00000085; */
    padding: 12px 55px;
}

/* #navegacion ul>li>a + #navegacion ul>li>a{
    margin-right: 30px;
} */

.navegacion ul>li>a:hover,
.navegacion ul>li>a:focus,
.navegacion ul>li>a:visited {
    background: #83253A;
    border-radius: 50px;
    padding: 12px 55px;

}

.nav-container {
    display: flex;
    justify-content: center;
}



/************************STICKY MENU****************************/
#navegacion-sticky {
    position: fixed;
    z-index: 1;
    top: 81px !important;
    width: 99%;
    left: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}

@media(max-width:1200px) {
    #navegacion-sticky {
        display: block;
    }

}

@media(max-width:1199px) {
    #navegacion-sticky {
        display: none;
    }
}

@media(min-width:992px) {
    .navegacion {
        display: flex;
    }
}

@media(max-width:991px) {
    .navegacion {
        display: none;
    }
}


@media(min-width:768px) and (max-width:1199px) {

    .navegacion ul>li>a,
    .navegacion ul>li>a:hover,
    .navegacion ul>li>a:focus,
    .navegacion ul>li>a:visited {
        padding: 12px 25px;
    }
}