.container-body, .presupuesta, footer{
    transform: translateY(100px);
}


.container-body{
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-body img {
    max-width: 100%;
}

.container-all{
    
    position: relative;
    max-width: 1450px;
    width: 100%;
    overflow: hidden;
}

.slide{
    display: flex;
    animation-name: autoplay;
    animation-duration: 30s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
}

.item-slide{
    position: relative;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    flex-grow: 0;
    max-width: 100%;
}


@keyframes autoplay{
    3%{
        transform: translate3d(calc(-100% * 0), 0, 0);
    }
         
    33%{
        transform: translate3d(calc(-100% * 1), 0, 0);
    }
    
    66%{
        transform: translate3d(calc(-100% * 2), 0, 0);
    }
    
    100%{
        transform: translate3d(calc(-100% * 3), 0, 0);
    }
    
  
}


.sectores {
    
}

#sectores h2{
    padding: 0px;
    border: 0px;
    font-size: 2em;
    text-align: center;
    font-weight: 100;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #69A021;}

#sectores p{
    text-align: center;
    color: #fff;
    font-size: 1.2em;
    }







