@keyframes float {
    /*from {
        -webkit-transform: rotateZ(0deg)
    }
    to {
        -webkit-transform: rotateZ(360deg)
    }*/
    from {
        transform: rotate(0deg) translate(-10px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translate(-10px) rotate(-360deg);
    }
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
    }
}

@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
    }
}

@-o-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0);
    }
    40% {
        -o-transform: translateY(-30px);
    }
    60% {
        -o-transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

#intro_datos {
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 0px
}

#intro_datos section {
    background-color: #ffffff;
}

.ball {
    float: left;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin: 0;
    border-radius: 50%;
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
}

.ball span {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
}

.ball span:nth-child(1) {
    font-size: 30px;
    font-weight: bold;
    color: #ffffff;
}

.ball span:nth-child(2) {
    width: 30px;
    height: 2px;
    background-color: #ffffff;
    margin: 10px auto;
}

.ball:nth-child(1) {
    height: 90px;
    width: 90px;
    background: radial-gradient(circle at 100px 100px, #d7d7d7, rgba(0, 0, 0, 0.4));
    background: #d7d7d7;
    font-size: 4rem;
    color: #ffffff;
    margin-left: 15%;
    margin-right: 30%;
    animation: float 5.5s 0.1s infinite;
}

.ball:nth-child(2) {
    height: 25px;
    width: 25px;
    background: radial-gradient(circle at 11px 11px, #ff3074, rgba(0, 0, 0, 0.4));
    background: #ff3074;
    color: #ffffff;
    margin-top: -20px;
    animation: float 5.5s 0.2s infinite;
}

.ball:nth-child(3) {
    height: 250px;
    width: 250px;
    background: radial-gradient(circle at 100px 100px, #66ccfc, rgba(0, 0, 0, 0.4));
    background: #66ccfc;
    font-size: 5rem;
    margin-top: -20px;
    margin-left: 55px;
    margin-right: 50px;
    animation: float 4s 0.3s infinite;
}

.ball:nth-child(4) {
    height: 120px;
    width: 120px;
    font-size: 10rem;
    color: #FFFFFF;
    background: radial-gradient(circle at 100px 100px, #ffe28c, rgba(0, 0, 0, 0.4));
    background: #ffe28c;
    margin-top: -70px;
    margin-right: 15px;
    animation: float 5.6s 0.1s infinite;
}

.ball:nth-child(5) {
    height: 35px;
    width: 35px;
    background: radial-gradient(circle at 100px 100px, #66ccfc, rgba(0, 0, 0, 0.4));
    background: #66ccfc;
    margin-top: -70px;
    margin-right: 15px;
    animation: float 5.8s 0.2s infinite;
}

.ball:nth-child(6) {
    height: 90px;
    width: 90px;
    background: radial-gradient(circle at 100px 100px, #ff004e, rgba(0, 0, 0, 0.4));
    background: #ff004e;
    font-size: 4rem;
    color: #ffffff;
    margin-top: 70px;
    margin-right: 15px;
    animation: float 5.2s 0.3s infinite;
}

.ball:nth-child(7) {
    height: 300px;
    width: 300px;
    background: radial-gradient(circle at 100px 100px, #ff004e, rgba(0, 0, 0, 0.4));
    background: #ff004e;
    margin-top: -50px;
    margin-left: 15%;
    animation: float 6.3s 0.2s infinite;
}

.ball:nth-child(8) {
    height: 200px;
    width: 200px;
    background: radial-gradient(circle at 100px 100px, #ffce34, rgba(0, 0, 0, 0.4));
    background: #ffce34;
    font-size: 5rem;
    color: #FFFFFF;
    margin-top: -70px;
    margin-left: 50%;
    animation: float 5.3s 0.5s infinite;
}

.ball:nth-child(9) {
    height: 280px;
    width: 280px;
    background: radial-gradient(circle at 100px 100px, #ff684b, rgba(0, 0, 0, 0.4));
    background: #ff684b;
    margin-top: -80px;
    margin-left: 15%;
    animation: float 7s 1s infinite;
}

.ball:nth-child(10) {
    height: 55px;
    width: 55px;
    background: radial-gradient(circle at 100px 100px, #ffce34, rgba(0, 0, 0, 0.4));
    background: #ffce34;
    margin-top: 80px;
    margin-left: 5%;
    animation: float 5s infinite;
}

.ball:nth-child(11) {
    height: 200px;
    width: 200px;
    background: radial-gradient(circle at 100px 100px, #ff3074, rgba(0, 0, 0, 0.4));
    background: #ff3074;
    margin-top: -50px;
    margin-left: 45%;
    animation: float 7.8s infinite;
}

.ball:nth-child(12) {
    height: 280px;
    width: 280px;
    background: radial-gradient(circle at 100px 100px, #ff684b, rgba(0, 0, 0, 0.4));
    background: #ff684b;
    margin-top: -40px;
    margin-left: 70px;
    animation: float 6.1s 2.3s infinite;
}

.ball:nth-child(13) {
    height: 90px;
    width: 90px;
    background: radial-gradient(circle at 100px 100px, #ff3074, rgba(0, 0, 0, 0.4));
    background: #ff684b;
    font-size: 8rem;
    color: #ffffff;
    margin-top: -60px;
    margin-left: 0;
    animation: float 5.6s infinite;
}

.ball:nth-child(14) {
    height: 40px;
    width: 40px;
    background: radial-gradient(circle at 100px 100px, #ff3074, rgba(0, 0, 0, 0.4));
    background: #65cbfb;
    margin-top: -40px;
    margin-left: 50%;
    animation: float 2.8s infinite;
}

.mas_info.pull-left {
    padding-left: 0
}

#intro_4 {
    background-color: #d6d6d6;
    padding-top: 100px;
    padding-bottom: 100px
}

.home_encabezado {
    font-size: 30px;
    font-family: "Karma Regular";
    font-weight: lighter;
    color: #e7004d;
    margin-top: 0;
    margin-bottom: 50px
}

.home_encabezado span {
    display: block;
    font-family: "Karma Regular"
}

.home_encabezado strong {
    font-weight: 900;
    font-size: 48px;
    font-family: "Barlow Black"
}

.div-rent {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px
}

.home_encabezado .circle-rent {
    position: relative;
    height: 150px;
    width: 150px;
    vertical-align: middle;
    line-height: 130px;
    font-size: 100px;
    font-family: "Barlow Black";
    color: #e7004d;
    border-radius: 75px;
    border: 6px solid #e7004d;
    margin: 15px auto
}

.home_encabezado .circle-rent:after {
    content: '*';
    position: absolute;
    font-size: 40%;
    top: -15px
}

.home_encabezado .circle-rent sup {
    font-size: 30px;
    font-weight: bold
}

.home_encabezado .circle-rent span {
    position: absolute;
    bottom: 30px;
    right: -20px;
    font-size: 55px;
    line-height: 1;
    font-weight: 900;
    background: #d6d6d6;
    font-family: "Barlow Black"
}

.home_encabezado h3 {
    font-family: "Barlow Black";
    font-weight: 900;
    font-size: 32px
}

#intro_4 .btn.btn-block {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px
}

#intro_4 .btn.alt.btn-block {
    border: 0;
    color: #bebebe
}

#pasos {
    background-color: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 20px
}

#pasos .intro_pasos {
    margin-bottom: 90px
}

#pasos .intro_pasos p {
    color: #d6d6d6;
    font-size: 20rem;
    font-family: "Barlow Black";
    text-align: center;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 21px;
    margin-bottom: 10.5px;
}

.col-sm-4:nth-child(4) .intro_pasos p {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
    animation-delay: 0.5s;
}

.col-sm-4:nth-child(4) .intro_pasos img {
    animation: shake 2.2s infinite;
    -webkit-animation: shake 2.2s infinite;
    -moz-animation: shake 2.2s infinite;
    -o-animation: shake 2.2s infinite;
    animation-delay: 0s;
}

.col-sm-4:nth-child(2) .intro_pasos p {
    animation: bounce 2.2s infinite;
    -webkit-animation: bounce 2.2s infinite;
    -moz-animation: bounce 2.2s infinite;
    -o-animation: bounce 2.2s infinite;
    animation-delay: 0.8s;
}

.col-sm-4:nth-child(2) .intro_pasos img {
    animation: shake 2.4s infinite;
    -webkit-animation: shake 2.4s infinite;
    -moz-animation: shake 2.4s infinite;
    -o-animation: shake 2.4s infinite;
}

.col-sm-4:nth-child(3) .intro_pasos p {
    animation: bounce 2s infinite;
    -webkit-animation: bounce 2s infinite;
    -moz-animation: bounce 2s infinite;
    -o-animation: bounce 2s infinite;
    animation-delay: 1.2s;
}

.col-sm-4:nth-child(3) .intro_pasos img {
    animation: shake 2.6s infinite;
    -webkit-animation: shake 2.6s infinite;
    -moz-animation: shake 2.6s infinite;
    -o-animation: shake 2.6s infinite;
}

#pasos .intro_pasos>img {
    margin: -90px auto 0;
    max-width: 300px
}

#pasos .intro_pasos>h3 {
    font-family: "Karma Regular";
    font-weight: lighter;
    color: #e7004d;
    font-size: 28px;
    text-align: center
}

#pasos .intro_pasos>h3>strong {
    font-family: Barlow Black
}

#invierte_desde {
    padding-top: 50px;
    padding-bottom: 50px
}

#invierte_desde .btn.btn-fondea.btn-block {
    font-size: 42px;
    font-family: "Barlow Black";
    padding-top: 10px!important;
    padding-bottom: 10px!important;
    white-space: initial
}

#por_que {
    background-color: #FFFFFF;
    padding-top: 100px;
    padding-bottom: 100px
}

#por_que .fondo_redondeado {
    position: absolute;
    background-color: transparent
}

#por_que .div_imagen {
    background-color: #e7004d;
    margin-bottom: 80px;
    text-align: center;
    border-radius: 384px;
    padding-top: 20px;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 30px;
    margin-left: 30px
}

#por_que .div_imagen img {
    max-width: 60%
}

#por_que .div_imagen h3 {
    margin-left: 15%;
    margin-right: 15%;
    color: #FFF;
    font-weight: lighter;
    font-size: 22px;
    font-family: "Karma Regular"
}

#por_que .div_imagen h3 strong {
    font-family: "Barlow Black"
}

#por_que .div_imagen p {
    font-size: 16px;
    margin-left: 15%;
    margin-right: 15%;
    color: #FFF;
    text-align: left
}

#descubre {
    padding-top: 100px
}

#oportunidades {
    padding-top: 100px
}

.fondo_redondeado {
    position: relative;
    background-color: #bebebe;
    padding: 25px;
    text-align: center
}

.circle-8 {
    position: relative;
    height: 200px;
    width: 200px;
    vertical-align: middle;
    line-height: 180px;
    font-size: 150px;
    font-family: "Barlow Black";
    color: #e7004d;
    border-radius: 10rem;
    border: 6px solid #e7004d;
    margin: 25px auto
}

.circle-8 span {
    position: absolute;
    top: -6px;
    right: -6px;
    font-size: 65px;
    height: 70px;
    width: 70px;
    border-radius: 35px;
    line-height: 1;
    font-weight: bolder;
    background-color: #bebebe
}

#calcula {
    padding-top: 100px;
    background-color: #bfbfbf;
    background-color: #FFFFFF;
    color: #FFF;
    padding-bottom: 130px
}

#calcula .info-text {
    max-width: 300px;
    margin: 25px auto;
    font-size: 30px;
    line-height: 1
}

#calcula .info-text span {
    font-family: "Karma Regular";
    display: block
}

#calcula .info-text strong {
    font-family: "Barlow Black"
}

#calcula .info-text p {
    font-size: initial
}

#calcula .info-text span.porcien-circle {
    display: inline-block;
    background-color: #e7004c;
    border-radius: 100%;
    height: 35px;
    width: 35px;
    margin: 0 5px;
    font-size: 110%;
    text-align: center;
    font-family: "Barlow";
    line-height: 35px;
    font-weight: 700;
    position: relative
}

.mas_info {
    font-size: 13px;
    float: right;
    padding-left: 15px;
    padding-right: 15px
}

#calcula .mas_info.pull-left a {
    color: #FFFFFF
}

.input_calcular {
    background-color: #FFF;
    margin: 0 auto;
    color: #bfbfbf;
    height: 40px;
    border-radius: 100px;
    cursor: text;
    padding: 1px;
    border-width: 0
}

.btn_calcular {
    margin: 20px auto;
    height: 40px!important
}

.btn_calcular,
.input_calcular {
    display: block;
    width: 250px;
    font-size: 120%;
    text-align: center;
    font-weight: bolder
}

#noticias {
    padding-top: 100px;
    padding-bottom: 50px
}

#carousel_noticias .carousel-inner {
    width: 85%;
    margin: 0 auto
}

#noticias img {
    height: 40px
}

#noticias h4.text-fondea {
    font-family: "Karma Regular"
}

#tienes_dudas {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #FFFFFF
}

#tienes_dudas .fondo_redondeado .home_encabezado {
    color: #FFFFFF
}

#testimonios {
    width: 100%;
    padding-bottom: 100px;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center 150%;
    background-color: #FFF;
    position: relative
}

.testimonio_div {
    margin-top: 20px;
    margin-bottom: 50px
}

.img-testimonio {
    width: 90%;
    height: 350px;
    max-width: 350px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto
}

#testimonios>div>div.row.text-center>span>img {
    margin: 10px;
    width: 25%
}

.t_localizacion,
.t_nombre {
    font-weight: bolder;
    margin-left: 5%;
    width: 90%;
    text-align: center
}

.t_nombre {
    font-family: "Barlow";
    text-transform: uppercase;
    color: #e7004c;
    font-size: 20px;
    margin-top: 20px
}

.t_localizacion {
    font-size: 28px
}

.t_comentario {
    width: 90%;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    font-size: 20px
}

.btn-redirect-home {
    display: inline-block;
    width: auto;
    min-width: 50%;
    margin-left: auto
}

@media (min-width:768px) {
    .div-rent {
        float: right;
        width: 33.333333333%
    }
    #pasos .intro_pasos>img {
        max-width: 100%
    }
    #por_que .fondo_redondeado {
        background-color: #e7004d
    }
    #por_que .div_imagen {
        background-color: transparent;
        margin-bottom: 0px;
        text-align: center;
        border-radius: 0;
        padding-top: initial;
        padding-bottom: initial;
        padding-left: initial;
        padding-right: initial;
        margin-right: initial;
        margin-left: initial
    }
    #por_que .div_imagen img {
        max-width: 120px;
        margin: 40px auto 70px
    }
    #por_que .div_imagen h3 {
        color: #e7004d;
        text-align: left
    }
    #por_que .div_imagen p {
        font-size: 16px;
        margin-left: 15%;
        margin-right: 15%;
        color: #63666a
    }
    .circle-8 {
        position: absolute;
        height: 150px;
        width: 150px;
        line-height: 130px;
        font-size: 100px;
        border-radius: 75px;
        margin: 0
    }
    .circle-8 span {
        font-size: 45px;
        height: 50px;
        width: 50px;
        border-radius: 25px
    }
    .fondo_redondeado {
        border-radius: 150px;
        height: 200px;
        width: 100%;
        left: 0
    }
    #calcula {
        background-color: #FFFFFF
    }
    #calcula .fondo_redondeado {
        border-radius: 150px;
        height: 200px;
        width: 100%;
        left: 0
    }
    .calcula-form {
        text-align: left;
        margin-left: 175px;
        width: calc(100% - 150px);
        display: flex;
        align-items: center
    }
    #calcula .info-text {
        width: 50%
    }
    .calcular {
        width: 50%
    }
    .input_calcular,
    .btn_calcular {
        width: 200px;
        margin: 15px;
        font-size: 100%;
        height: auto!important;
        padding: 5px 13px
    }
    #calcula .fondo_redondeado,
    #calcula .circle-8 span {
        background-color: #bebebe
    }
    #calcula .info-text {
        margin: 0
    }
    #tienes_dudas .fondo_redondeado .home_encabezado {
        font-size: 26px;
        line-height: 1.2;
        text-align: left;
        margin-left: 175px;
        width: calc(100% - 150px)
    }
    #testimonios>div>div.row.text-center>span>img {
        width: 200px
    }
    #testimonios .testimonio_div {
        margin-top: 0;
        margin-bottom: 20px;
        padding-left: 5%;
        padding-right: 5%
    }
    .img-testimonio {
        height: 225px
    }
    .btn-redirect-home {
        display: inline-block;
        width: auto;
        min-width: 35%;
        margin-left: auto
    }
    .t_localizacion,
    .t_nombre {
        font-size: 20px
    }
    .t_comentario {
        font-size: 16px
    }
    /***************************/
    #intro_datos section {
        background-color: #ffffff;
    }
    .ball:nth-child(1) {
        height: 90px;
        width: 90px;
        background: radial-gradient(circle at 100px 100px, #d7d7d7, rgba(0, 0, 0, 0.4));
        background: #d7d7d7;
        color: #ffffff;
        margin-left: 20px;
        margin-right: 50px;
    }
    .ball:nth-child(2) {
        height: 25px;
        width: 25px;
        background: radial-gradient(circle at 11px 11px, #ff3074, rgba(0, 0, 0, 0.4));
        background: #ff3074;
        color: #ffffff;
        margin-top: 50px;
    }
    .ball:nth-child(3) {
        height: 250px;
        width: 250px;
        background: radial-gradient(circle at 100px 100px, #66ccfc, rgba(0, 0, 0, 0.4));
        background: #66ccfc;
        margin-top: -30px;
        margin-left: 25px;
    }
    .ball:nth-child(4) {
        height: 120px;
        width: 120px;
        background: radial-gradient(circle at 100px 100px, #ffe28c, rgba(0, 0, 0, 0.4));
        background: #ffe28c;
        margin-top: 20px;
        margin-right: 0px;
        margin-left: 20px;
    }
    .ball:nth-child(5) {
        height: 35px;
        width: 35px;
        background: radial-gradient(circle at 100px 100px, #66ccfc, rgba(0, 0, 0, 0.4));
        background: #66ccfc;
        margin-top: 0px;
        margin-right: 0px;
        margin-left: 40px;
    }
    .ball:nth-child(6) {
        height: 90px;
        width: 90px;
        background: radial-gradient(circle at 100px 100px, #ff004e, rgba(0, 0, 0, 0.4));
        background: #ff004e;
        margin-top: 25px;
        margin-right: 0px;
        margin-left: 25px;
    }
    .ball:nth-child(7) {
        height: 300px;
        width: 300px;
        background: radial-gradient(circle at 100px 100px, #ff004e, rgba(0, 0, 0, 0.4));
        background: #ff004e;
        margin-top: -120px;
        margin-left: 0;
    }
    .ball:nth-child(8) {
        height: 110px;
        width: 110px;
        background: radial-gradient(circle at 100px 100px, #ff3074, rgba(0, 0, 0, 0.4));
        background: #ff8671;
        margin-top: 130px;
        margin-left: -150px;
    }
    .ball:nth-child(9) {
        height: 200px;
        width: 200px;
        background: radial-gradient(circle at 100px 100px, #ffce34, rgba(0, 0, 0, 0.4));
        background: #ffce34;
        margin-top: 35px;
        margin-left: -70px;
    }
    .ball:nth-child(10) {
        height: 55px;
        width: 55px;
        background: radial-gradient(circle at 100px 100px, #ffce34, rgba(0, 0, 0, 0.4));
        background: #ffce34;
        margin-top: -280px;
        margin-left: 90%;
    }
    .ball:nth-child(11) {
        height: 200px;
        width: 200px;
        background: radial-gradient(circle at 100px 100px, #ff3074, rgba(0, 0, 0, 0.4));
        background: #ff3074;
        margin-top: -200px;
        margin-left: 75%;
    }
    .ball:nth-child(12) {
        height: 280px;
        width: 280px;
        background: radial-gradient(circle at 100px 100px, #ff684b, rgba(0, 0, 0, 0.4));
        background: #ff684b;
        margin-top: -340px;
        margin-left: 370px;
    }
    .ball:nth-child(13) {
        height: 90px;
        width: 90px;
        background: radial-gradient(circle at 100px 100px, #ff3074, rgba(0, 0, 0, 0.4));
        background: #ff684b;
        margin-top: -60px;
        margin-left: 0;
    }
    .ball:nth-child(14) {
        height: 40px;
        width: 40px;
        background: radial-gradient(circle at 100px 100px, #ff3074, rgba(0, 0, 0, 0.4));
        background: #65cbfb;
        margin-top: -40px;
        margin-left: 50%;
    }
}

.stage {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -ms-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
    -webkit-perspective-origin: 50% 50%;
    -moz-perspective-origin: 50% 50%;
    -ms-perspective-origin: 50% 50%;
    -o-perspective-origin: 50% 50%;
    perspective-origin: 50% 50%;
}


/***************************/

@media (min-width:992px) {
    #por_que .div_imagen h3 {
        font-size: 30px
    }
    #por_que .div_imagen p {
        font-size: 18px
    }
    #calcula .info-text strong {
        font-size: 42px
    }
    #calcula .info-text {
        width: 55%
    }
    .calcular {
        width: 45%;
        display: flex;
        align-items: center
    }
    .input_calcular,
    .btn_calcular {
        width: 150px;
        margin: 0 5px
    }
    #tienes_dudas .fondo_redondeado .home_encabezado {
        font-size: 30px;
        margin-top: 25px
    }
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.active.left,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.prev {
        left: -50%
    }
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.active.right,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.next {
        left: 50%
    }
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.active,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.left,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.prev.right {
        left: 0
    }
    #carousel_noticias.carousel-showmanymoveone .carousel-inner .cloneditem-2,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner .cloneditem-3 {
        display: block
    }
}

@media all and (min-width:992px) and (transform-3d),
all and (min-width:992px) and (-webkit-transform-3d) {
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.item.active.right,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.item.next {
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
        left: 0
    }
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.item.active.left,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.item.prev {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
        left: 0
    }
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.item.active,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.item.left,
    #carousel_noticias.carousel-showmanymoveone .carousel-inner>.item.prev.right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0
    }
}