* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
}

html {
    background-color:#212529;
    width: auto;
    height: auto;
}

header {
    width: auto;
    height:auto;
    background-color:gray;
}

nav {
    width: auto;
    height: auto;
}

main {
    margin-top: 57px;
    width: auto;
    height: auto;
    background-color:#FFF;
}

section[id] {
    scroll-margin-top: 57px;
}

.float-wa {
    position:fixed;
    width:60px;
    height:60px;
    bottom:40px;
    right:40px;
    background-color:#25d366;
    color:#FFF;
    border-radius:50px;
    text-align:center;
    font-size:30px;
    z-index:100;
}

.carousel-item img {
    max-height: 700px;
}

.bg-card {
    background: url("../slider/slider19.jpg");
    background-repeat: no-repeat ;
    background-size:cover;
}

.bg-tf {
    background: url("../slider/slider9.jpg");
    background-repeat: no-repeat ;
    background-size:cover;
}

.bg-descripcion {
    background: url("../img/campoVerde.jpg");
    background-repeat: no-repeat ;
    background-size: cover;
}

.bg-nosotros {
    background: url("../slider/slider5.jpg");
    background-repeat: no-repeat ;
    background-size: cover;
}

.bg-servicios {
    background-image: url("../img/Fumigando.jpg");
    background-repeat: no-repeat ;
    background-size: cover;    
}

.bg-refacciones {
    background-image: url("../slider/slider19.jpg");
    background-repeat: no-repeat ;
    background-size: cover;    
}

.footer {
    padding: 50px 0;;
    background-color: #212529;
    
}

.container {
    max-width: 1400px;
    margin: 0;
}

.footer-row {
    display: flex;
}

.main-row {
    display: flex;
    max-width: 700px;
}

.servicio-row {
    display: flex;
    max-width: 1000px;    
}

.footer-links {
    width: 30%;
    padding: 0 5px;
}

.footer-links h4 {
    font-size: 20px;
    color:#FFF;
    margin-bottom: 25px;
    font-weight: 500;
    border-bottom: 3px solid #00C355;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links ul li a {
    font-size: 18px;
    text-decoration: none;
    color: #BBBB;
    display: block;
    margin-bottom: 15px;
    transition: all .3s ease;
}

.footer-links ul li a:hover {
    color:#FFF;
    padding-left: 6px;
}

.panel-horizontal {
    display: flex; 
    flex-flow: row wrap;
}

.panel-column {
    display: grid;
    grid-template-columns: 1rf 1fr 1fr 1rf;
    margin: 0 auto;
    max-width: 1200px;
    text-align: center;
    align-content: center;
    display: flex;
}

.efect {
    view-timeline-name: --reveral;
    animation-name: show;
    animation-fill-mode: both;
    animation-timeline: --reveral;
    animation-range: entry 25% cover 50%;
}

@keyframes show {
    from {
        opacity: 0;
        scale: 30%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
}

@media(max-width:991px) {
    .container-fluid {
        padding: 0 1px;
    }

    .footer-row {
        text-align:center;
        flex-wrap: wrap;
    }

    .main-row {
        text-align:center;
        flex-wrap: wrap;
    }

    .footer-links {
        width: 90%;
        margin-bottom: 30px;
    }

    .panel-column {
        display: flex;
        flex-flow: row wrap;
        max-width: 350px;
        text-align: center;
        align-content: center;
    }
}

