.bg_mercados {
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    background: center center no-repeat;
    background-size: cover;
}

.mapa_mundo {
    position: relative;
    height: 65vh;
    margin: 0 auto;
}

.container_sect0 {
    cursor: pointer;
    transition: all 0.3s;
}

.container_sect0:hover {
    opacity: 0.8;
}

.container_sect1 {
    width: 100%;
    height: 100%;
}

.slider_cont {
    width: 1120px;
    margin: 0 auto;
    overflow-x: hidden;
}

.mercados_ul {
    list-style: none;
    display: inline-flex;
    display: -webkit-inline-flex;
    margin: 0;
    padding: 0;
    -webkit-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
}

.mercados_ul > li ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 100;
}

.mercados_ul > li ul li {
    display: block;
    margin: 5px 0;
}

.mercados_ul > li ul li:before {
    font-family: 'FontAwesome', sans-serif;
    content: "\f111";
    font-size: 8px;
    color: #195398;
    vertical-align: middle;
    padding-right: 5px;
}

.mercado_indiv {
    position: relative;
    height: 380px;
    width: 260px;
    margin: 15px 10px;
    border-radius: 5px;
    overflow: hidden;
    backface-visibility: hidden;
}

.mercado_img {
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.mercado_capt {
    position: absolute;
    background: white;
    height: 25%;
    padding: 20px 20px;
    text-align: left;
    bottom: 0;
    width: 100%;
    -webkit-transition: background-color 1s, height 0.5s;
    -o-transition: background-color 1s, height 0.5s;
    -moz-transition: background-color 1s, height 0.5s;
    transition: background-color 1s, height 0.5s;
}

.mercado_capt h5 {
    margin-bottom: 13px;
}

.mercado_indiv:hover .mercado_capt, .mercados_ul .active .mercado_capt {

    height: 90%;
}

.mercado_indiv:hover .mercado_img {
    -ms-transform: translateY(-20px);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    transform: translateY(-20px);
}

.slider_btns {
    margin-bottom: 20px;
}

.slider_btns button {
    margin: 0 10px;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid white;
    border-radius: 100%;
    color: white;
    font-size: 25px;

}

.slider_btns button:disabled {
    margin: 0 10px;
    width: 50px;
    height: 50px;
    background: none;
    border: 1px solid white;
    border-radius: 100%;
    color: white;
    font-size: 25px;
    opacity: 0.5;
    cursor: auto;

}

.slider_btns button:hover:enabled {
    background: white;
    color: #002653;
}

.slider_btns button.next_slide_btn i {
    transform: translate(1px, 2px);
}

.slider_btns button.prev_slide_btn i {
    transform: translate(-1px, 2px);
}