@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap");
*,*::before,*::after{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    text-decoration: none
}
/* Scroll Personalizado */
body::-webkit-scrollbar {
    width: 16px;
   border: 7px solid #232943;
   box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.5) inset;

}

body::-webkit-scrollbar-thumb {
    background:linear-gradient(45deg,#023878,#242C42);
    border-radius: 7px;
    border: 1px solid #7a7a7a;
}

body::-webkit-scrollbar-track {
    background-color: #bbbbbb;
}
/* Buttons */
body::-webkit-scrollbar-button:single-button {
    background-color: #bbbbbb;
    display: block;
    border-style: solid;
    height: 13px;
    width: 16px;
}
/* arriba */
body::-webkit-scrollbar-button:single-button:vertical:decrement {
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #023878 transparent;
}
body::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent #14729F transparent;
}
/* abajo */
body::-webkit-scrollbar-button:single-button:vertical:increment {
    border-width: 8px 8px 0 8px;
    border-color: #023878 transparent transparent transparent;
}

body::-webkit-scrollbar-button:vertical:single-button:increment:hover {
    border-color: #14729F transparent transparent transparent;
}
.max-width {
    margin: auto;
    /*max-width: 1440px;*/
    padding: 0 80px;
}
/*header superior*/
.header-superior{
    width: 100%;
    margin: auto;
    display: flex; /*pantalla: flex;*/
    align-items: center;
    justify-content:right;
    background: #C9CED2;
    height: 80px;
    margin-top: -5px;
}
.separador-superior{
    width: 100%;
    margin-left: 0;
    margin-top: -3px;
    background-color:#242C42 ;
    height: 20px;
}
.container-superior{
    display: flex;
    /*margin-right: 200px;*/
    height: 22px;
    padding-left: 30px;
    padding-right: 20px;
    padding: 10px;
    /*triangulo*/
    border-right: 50px solid transparent;
    border-left: 50px solid transparent ;
    border-top: 30px solid #242C42 ;
}
.header-superior div{
    margin-top: -40px;
    padding-right: 10px;
}

.header-superior img{
    margin-bottom: -5px;
    margin-right: 1px;
    height: 18px;
    width: 18px;
    filter: invert(100%) sepia(1%) saturate(7413%) hue-rotate(200deg) brightness(117%) contrast(105%);
}
.header-superior span{
    color: #fff;
    font-size: 14px;

}
.logo{
    width: 200px;
    height: 80px;
    margin-top: -250px;
}
.logo1{
    width: 200px;
    height: 80px;     
    transition: all 0.3s ease; 
}
.triangulo{
    width: 100%;
    width: 1230px;
    height: 30px;
    /*margin-right:  -150px;*/
    border-right: 100px solid transparent;
    border-top: 70px solid #242C42 ;
    z-index: 999; 
}
.navbar {
    font-family:'Ubuntu', sans-serif;
   /* padding: 30px 0px;*/
    position: fixed;
    /*position: absolute;*/
    -webkit-transform: all .3s ease;
    transform: all .3s ease;
    width: 100%;
    height: 80px;
    z-index: 999;
    background: #023878;
}
.navbar.sticky {
   background: #023878;
    height: 80px;
    margin-top: -95px;
}
.navbar .max-width {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between
}
.navbar  .menu{
    height: 30px;
    margin-top: -10px;
}
.navbar.sticky  .menu{
    height: 30px;
    margin-top: -10px;
}
.navbar.sticky .logo1{ 
    margin-top: 85px;
    float: left;
    width: 150px;
    height: 70px;
}
.navbar .menu li {
    display: inline-block;
    list-style: none;
    position: relative;
}
.navbar .menu li a {
    margin-top: -50px;
    display: block;
    padding: 20px;
    font-weight: 500;
    color: #fff;
    font-size: 18px;
    transition: all 300ms ease;
}
.navbar .menu li a:hover {
    text-transform: uppercase;
    transform: scale(1.1);
}
.navbar.sticky li a:hover {
  color: #fff;
}
/* sub menu*/
.navbar .menu > li{ /*menu =ul/nav partdel menu deplegable*/
    float: left;
}
.navbar .menu ul{
    padding-top: 20px;
    display: none;
    min-width: 140px;
    position: absolute;
    transition: color 0.3s ease;
    width: 240px;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5);
}
.navbar.sticky .children{
    background-color: #023878;
}
.navbar .menu .submenu{ /**/
    display: none;
    min-width: 200px;
    position: absolute;
    transition: color 0.3s ease;
}
.navbar .menu li:hover>ul{
    display: block;
    color: #F79E04 ;
    
}
.navbar .children{
    background: #023878;
}
.navbar.sticky .menu li a{
    transition: all 0.3s ease;
    color: #Fff;
  
}
.navbar .menu li a:hover{
    color: #fff ;
    
}
.navbar.sticky li a:hover{ 
    color: #fff;
}
#selected{
    color: #fff;
    text-transform: uppercase;
    transform: scale(1.1);
}
.navbar.sticky #selected2{
    color: #333;
    text-transform: uppercase;
    transform: scale(1.1);
}
.rectangulo {
    font-family:'Ubuntu', sans-serif;
    padding: 30px 0;
    position: fixed;
    -webkit-transform: all .3s ease;
    transform: all .3s ease;
    width: 100%;
    height: 30px;
    background: #111;
    z-index: 999;
}
.rectangulo.sticky {
    background: crimson;
    height: 40px;
}
.menu-btn {
    display: none;
    font-size: 23px;
}

.menu-btn,.scroll-up-btn {
    color: #fff;
    cursor: pointer
}
.scroll-up-btn {
    background: crimson;
    border-radius: 6px;
    bottom: 10px;
    font-size: 30px;
    height: 45px;
    line-height: 45px;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 30px;
    text-align: center;
    transition: all .3s ease;
    width: 42px;
    z-index: 9999
}
.scroll-up-btn.show {
    bottom: 30px;
    opacity: 1;
    pointer-events: auto
}
.flecha{
    position: relative;
    top: -3px;
    margin-left: 10px;
    margin-right: 0px;
}
/*WAVE INICIO*/
.wave{
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    background-image: url('../img/wave.png');
    filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
    background-size: 1000px 400px;
    
}
.w1{
    animation: w1 7s linear infinite;
}
.w2{
    animation: w2 7s linear -.125s infinite, desplazamiento 7s ease -.125s infinite;
    opacity: 0.5;
}
@keyframes w1 {
    0%{
        background-position-x: 0;
    }
   100%{
        background-position-x: -1000px;
    }
}
@keyframes w2 {
    0%{
        background-position-x: 0;
    }
   100%{
        background-position-x: -1000px;
    }
}
@keyframes desplazamiento {
    0% , 100%{
       transform: translateY(-25px);
    }
   50%{
        transform: translateY(10px);
    } 
}
/*WAVE FINAL*/
/*REFLEJO DEL WAVE*/
.reflejo{
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: -230px;
    width: 100%;
    height: 300px;
    background-image: url('../img/wave.png');
    filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
    background-size: 1000px 400px;
    transform: scaleY(-1);
}
.reflejo::after{
    content: '';
    height:100%;
    bottom: -41%;
    background-image: inherit; /*hereda la imagen del elemento original del wave*/
    position: absolute;
    background-position: bottom;
    width: inherit; /*hereda el ancho de la imagen original*/
    opacity: .5;
}
.reflejo::before{
    content: '';
    height:100%;
    bottom: -41%;
    position: absolute;
    width: inherit;
    background: linear-gradient(to bottom rgba(255,255,255,.3), #fff); /*esto es el degrade*/
    z-index: 1;
}
/*Aquí debajo va el FOOTER*/
.footer-fondo{
    margin-top: 250px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url('../img/footer.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    border: 10px;
}
.footer-fondo-2{
    margin-top: 250px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url('../img/footer.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    border: 10px;
}
.footer-fondo-3{
    margin-top: 350px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url('../img/footer.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    border: 10px;
}
.footer-fondo-4, .footer-fondo-5 {
    margin-top: 10px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url('../img/footer.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    border: 10px;
}
.footer-fondo-6 {
    margin-top: 730px;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url('../img/footer.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-size: cover;
    border: 10px;
}
.footer-triangulo{
    width: 100%;
    width: 970px;
    border-right: 60px solid transparent;
    border-top: 40px solid #242C42 ;
    z-index: 999; 
}
.footer-hr-superior{
    margin-left: 0;
    width: 100%;
    height: 10px;
    background-color: #242C42;
    border: none;
}
.footer-hr-inferrior{
    width: 75%;
    height: 10px;
    background-color: #023878;
    border: 1px solid #023878;
    border-radius: 5px;
    margin-top: 30px;
    margin-left: 150px;
    box-shadow:  0px 1px 0px #fff ;
}
.box-copyright{
    margin-top: 15px;
    width: 100% ;
    position: relative;
    color: #fff;
    height: 30px;
    text-align: center;
}

footer span a {
    color: #fff;
    text-decoration: none
}
footer span a:hover {
    text-decoration: underline
}
.container-footer{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width:100%;
    margin: auto;
    margin-top: 0px;
}

.box-footer{
    display: flex;
    flex-direction: column;
    margin-left: 100px;
    margin-top: 50px;
}
.container-footer .box-footer .footer-grid{
    display: grid;
    grid-template-columns: 100px 190px;
}
.container-footer .box-footer .footer-grid p{
    font-family:'Ubuntu', sans-serif;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 300;
    color: #fff;
}
.box-footer-2{
    margin-right: 400px;
}
.container-footer .box-footer-2 .footer-grid-img{
    display: grid;
    grid-template-columns: 100px 100px 100px;
    gap: 120px;
    width: 100px;
    height: 50px;
}
.container-footer .box-footer .logo img{
    width: 180px;
    height: 100px;
    margin-top: 250px;
}
.container-footer .box-footer-3{
    margin-top: -10px;
    margin-left: 610px;
    width: 600px;
}
.container-footer .box-footer-3 h2{
    color: #111;
    font-weight: 700;
}
.container-footer .box-footer-3 .box-footer-grid{
    width: 700px;
}
.container-footer .box-footer-3 .box-footer-grid a{
    margin-top: 20px;
    color: #fff;
    font-weight: 600;
   
}
.container-footer .box-footer-3 a:hover{
    opacity: 0.8;
}

.container-footer .box-footer-3 a{/*txt*/
    color: #fff;
    font-size: 16px;
    margin-right: 5px;
    padding-right: 10px;
}
.footer-rrss{ /*iconos*/
    margin-top: 10px;
    margin-right: 2px;
    font-size: 25px;
    color: #fff;
}
section {
    padding: 120px 0
}
section .title:before {
    background: #111;
    bottom: 0;
    content: "";
    height: 3px;
    width: 1000px;
    left: -90px;
    
}
 section .title:after,section .title:before {
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
section .title:after {
  /*  background: #fff;*/
    bottom: -12px;
    color: #E9181E;
    font-size: 20px;
    padding: 5px;
   
}
/*INICIO*/
.fondo{
    background: url('../img/background-index.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.inicio {
    color: #6E6F74;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Ubuntu', sans-serif;
    height: 80vh;
    min-height: 500px;
}
.inicio .max-width {
    margin: auto 0 auto 40px
}
.inicio .inicio-contenedor{
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
    margin-left: 30px;
}
.inicio .inicio-contenedor .izquierda {
    width: 45%;
    max-width: 400px;
    z-index: 2;
}
.inicio .inicio-contenedor .derecha {
    margin-left: 60px;
    width: 55%;
}
h1{
    max-width: 400px;
    width: 100%;
    font-size: 40px;
    font-weight: 400;
    color: #E9181E; 
    letter-spacing: -2px;
    word-spacing: 2px;
}
.inicio .inicio-contenedor .text1{
    max-width: 400px;
    width: 400px;
    font-size: 40px;
    font-weight: 400;
    color: #E9181E;
    text-align: left;
  /*  letter-spacing: 1px;*/
    word-spacing: 2px;
}
.inicio .inicio-contenedor .text2{
    max-width: 400px;
    width: 400px;
    font-size: 40px;
    font-weight: 400;
    color: #E9181E;
    text-align: left;
    letter-spacing:6px;
    word-spacing: 6px;
}
.inicio .inicio-contenedor .text3{
    margin-top: 10px;
    max-width: 400px;
    width: 400px;
    font-size: 15  px;
    font-weight: 400;
    color: #111;
    text-align: left;
}
.inicio .inicio-contenedor a {
    background: #14729F;
    border: 2px solid #14729F;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 25px;
    /*margin-top: 20px;*/
    margin-top: 40px;
    padding: 12px 36px;
    transition: all .3s ease;
 
}
.inicio .inicio-contenedor a:hover {
    background: none;
    color: #14729F
}
.inicio .inicio-contenedor .derecha img {
    margin-top: -30px;
    margin-left: 10px;
    bottom: 10px;
    right: 0px;
    margin-right: 30px;
    width: 550px;
    padding: 30px;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.galeria-container{
    margin-top: 20px;
    width: 100%;
    margin-left: -150px;
}
.galeria-grid{
    display: grid;
    grid-template-columns: 100px 100px 100px 100px;
    gap: 200px;
    align-items: center;

}
.galeria-container .galeria-grid .galeria{
    margin: 10px 20px;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    float: left;
    width: 100px;
    height: 100px;
    margin-left: 200px;
    background: #C9E8F7;
    border-radius: 5px;
}
.galeria-container .galeria-grid .galeria img{
    width: 100px;
    height: 100px;
}
.galeria-container .galeria-grid .galeria:hover{
    border: 1px solid #14729F;
    transform: scale(1.1);
}
.galeria-container .galeria-grid .pie{
    width: 300px;
    text-align: center;
    /*text-shadow: 2px 2 px 5px purple;
    /*padding: 10px;*/
    margin-top: 10px;
    margin-left: -100px;
    color: #111;
}
.galeria-container .galeria-grid p{
    font-family:'Ubuntu', sans-serif;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 300;
}
/*avisos cookies*/
.aviso{
    display: -ms-flexbox;
    display: flex;
    font-family: 'Ubuntu', sans-serif;
    height: 80vh;
    min-height: 500px;
}
.aviso .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif ;
}
.aviso .title::after{    
    content: " ";
    background-image: url('../img/titele-bacground.jpg');
    border-radius: 20px;
}
.aviso .aviso-contenedor{
    margin-top: -50px;
    padding: 10px 10px;
    display: block;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.aviso .aviso-contenedor h3{
    margin-top: 10px;
    margin: 10px 0px;
}
.aviso .aviso-contenedor p{
    margin: 10px 0px;
    text-align: left;
}
/*acerca*/
.acerca{
    display: -ms-flexbox;
    display: flex;
    font-family: 'Ubuntu', sans-serif;
    height: 80vh;
    min-height: 500px;
}
.acerca .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif ;
}
.acerca .title::after{    
    content: "Quiénes somos ";
    background-image: url('../img/titele-bacground.jpg');
    border-radius: 20px;
}
.acerca .acerca-contenedor{
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.acerca .acerca-contenedor .izquierda{
    width: 40%;
}
.acerca .acerca-contenedor .izquierda img{
    max-height: 400px;
    max-width: 400px;
    object-fit: cover;
    border-radius: 6px;
}
.acerca .acerca-contenedor .derecha{
    width: 60%;
}
.acerca .acerca-contenedor .derecha .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.acerca .acerca-contenedor .derecha p{
    margin: 20px 0px;
    text-align: justify;
}
.acerca .acerca-contenedor .derecha .p-shadow-1{
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;

}
.acerca .acerca-contenedor .derecha .p-shadow-2{
    margin: 20px 0px;
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;

}
.acerca .acerca-contenedor .derecha a{
    display: inline-block;
    background: crimson;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid crimson;
    transition: all 0.3s ease; 
}
.acerca .acerca-contenedor .derecha a:hover{
    color: crimson;
    background: none;
}
/*servicios*/
.servicios{
    font-family: 'Ubuntu', sans-serif;
    
}
.servicios .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 30px;
    font-family: 'Ubuntu', sans-serif ;
}
.servicios .title::before{
    background: #111;
}
.servicios .title::after{ 
    background: url('../img/titele-bacground.jpg');
    content: "que ofrecemos";
}
.container-carousel{
    position: relative;
    width: 500px;
    height: 350px;
    /*height: 350px;*/
    background-color: #e0e0e0;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .66);
    border-radius: 15px;
    overflow: hidden;
    margin-left: 350px;   
}
.carruseles{
    width: 400%;/*esto es por la cantidad de img es la multiplicaciond e 3*100%*/
    height: 100%;
    display: flex;
}
.slider-section{
    width: calc(100% / 4); /*aca se calcula 100% / 3 por las img si hay mas img se agregan mas*/
    height: 100%;
}
.slider-section img{
    margin-top: -100px;
    margin-left: 150px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid #14729F;
}
.slider-section .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 150px;
}
.slider-section a {
    background: #14729F;
    border: 2px solid #14729F;
    border-radius: 6px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    margin-top: 0px;
    margin-left: 150px;
    padding: 12px 36px;
    transition: all .3s ease;
 
}
.btn-left i, .btn-right i{
    display: flex;
    position: absolute;
    margin-top: -150px;
    font-size: 1.5rem;
    background-color: transparent;
    border-radius: 50%;
    padding: 5px;
    font-weight: 600;
    color: #111;
    transform: translate(0,-50%);
    transition: all .5s ease;
    user-select: none;
    border: 2px solid #14729F;
    z-index: 100;
}
.btn-left i:hover, .btn-right i:hover{
    background-color: #333333d4;
    color: #fff;
    transition: all .5s ease;
}
.btn-left i{
    left: 10px;
}
.btn-right i{
    right: 10px;
}
/*Desinsectacion */
.desinsectacion{
    font-family: 'Ubuntu', sans-serif;
}
.desinsectacion .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 30px;
    font-family: 'Ubuntu', sans-serif ;
}
.desinsectacion .title::before{
    background: #111;
}
.desinsectacion .desinsectacion-contenedor{
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.desinsectacion .desinsectacion-contenedor .izquierda{
    width: 40%;
}
.desinsectacion .desinsectacion-contenedor .izquierda img{
    max-height: 400px;
    max-width: 400px;
    margin-left: 30px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.desinsectacion .desinsectacion-contenedor .derecha{
    width: 60%;
}
.desinsectacion .desinsectacion-contenedor .derecha .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.desinsectacion .desinsectacion-contenedor .derecha p{
    margin: 20px 0px;
    text-align: justify;
}
.desinsectacion .desinsectacion-contenedor .derecha .p-shadow-1{
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
.desinsectacion .desinsectacion-contenedor .derecha .p-shadow-2{
    margin: 20px 0px;
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
/*desratizacion*/
.desratizacion{
    font-family: 'Ubuntu', sans-serif;
}
.desratizacion .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 30px;
    font-family: 'Ubuntu', sans-serif ;
}
.desratizacion .title::before{
    background: #111;
}
.desratizacion .desratizacion-contenedor{
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.desratizacion .desratizacion-contenedor .izquierda{
    width: 40%;
}
.desratizacion .desratizacion-contenedor .izquierda img{
    max-height: 400px;
    max-width: 400px;
    margin-left: 30px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.desratizacion .desratizacion-contenedor .derecha{
    width: 60%;
}
.desratizacion .desratizacion-contenedor .derecha .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.desratizacion .desratizacion-contenedor .derecha p{
    margin: 20px 0px;
    text-align: justify;
}
.desratizacion .desratizacion-contenedor .derecha .p-shadow-1{
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
.desratizacion .desratizacion-contenedor .derecha .p-shadow-2{
    margin: 20px 0px;
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
/*desinfección*/
.desinfeccion{
    font-family: 'Ubuntu', sans-serif;
}
.desinfeccion .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 30px;
    font-family: 'Ubuntu', sans-serif ;
}
.desinfeccion .title::before{
    background: #111;
}
.desinfeccion .desinfeccion-contenedor{
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.desinfeccion .desinfeccion-contenedor .izquierda{
    width: 40%;
}
.desinfeccion .desinfeccion-contenedor .izquierda img{
    max-height: 400px;
    max-width: 400px;
    margin-left: 30px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.desinfeccion .desinfeccion-contenedor .derecha{
    width: 60%;
}
.desinfeccion .desinfeccion-contenedor .derecha .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.desinfeccion .desinfeccion-contenedor .derecha p{
    margin: 20px 0px;
    text-align: justify;
}
.desinfeccion .desinfeccion-contenedor .derecha .p-shadow-1{
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
.desinfeccion .desinfeccion-contenedor .derecha .p-shadow-2{
    margin: 20px 0px;
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
/*desinfección*/
.desinfeccion{
    font-family: 'Ubuntu', sans-serif;
}
.desinfeccion .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 30px;
    font-family: 'Ubuntu', sans-serif ;
}
.desinfeccion .title::before{
    background: #111;
}
.desinfeccion .desinfeccion-contenedor{
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.desinfeccion .desinfeccion-contenedor .izquierda{
    width: 40%;
}
.desinfeccion .desinfeccion-contenedor .izquierda img{
    max-height: 400px;
    max-width: 400px;
    margin-left: 30px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.desinfeccion .desinfeccion-contenedor .derecha{
    width: 60%;
}
.desinfeccion .desinfeccion-contenedor .derecha .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.desinfeccion .desinfeccion-contenedor .derecha p{
    margin: 20px 0px;
    text-align: justify;
}
.desinfeccion .desinfeccion-contenedor .derecha .txt-sub {
    margin: 10px 0px;
    text-align: justify;
}
.desinfeccion .desinfeccion-contenedor .derecha .p-shadow-1{
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
.desinfeccion .desinfeccion-contenedor .derecha .p-shadow-2{
    margin: 20px 0px;
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
/*control de plagas*/
.plagas{
    font-family: 'Ubuntu', sans-serif;
}
.plagas .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 30px;
    font-family: 'Ubuntu', sans-serif ;
}
.plagas .title::before{
    background: #111;
}
.plagas .plagas-contenedor{
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.plagas .plagas-contenedor .izquierda{
    width: 40%;
}
.plagas .plagas-contenedor .izquierda img{
    max-height: 400px;
    max-width: 400px;
    margin-left: 30px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.plagas .plagas-contenedor .derecha{
    width: 60%;
}
.plagas .plagas-contenedor .derecha .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.plagas .plagas-contenedor .derecha p{
    margin: 20px 0px;
    text-align: justify;
}
.plagas .plagas-contenedor .derecha .txt-sub{
    margin: 10px 0px;
    text-align: justify;
}
.plagas .plagas-contenedor .derecha .p-shadow-1{
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
.plagas .plagas-contenedor .derecha .p-shadow-2{
    margin: 20px 0px;
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;
}
/*Novedades*/
.novedades{
    display: -ms-flexbox;
    display: flex;
    font-family: 'Ubuntu', sans-serif;
    height: 80vh;
    min-height: 500px;
}
.novedades .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif ;
}
.novedades .title::after{    
    content: " ";
    background-image: url('../img/titele-bacground.jpg');
    border-radius: 20px;
}
.novedades .novedades-contenedor{
    padding: 10px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
}
.novedades .novedades-contenedor .izquierda{
    width: 40%;
}
.novedades .novedades-contenedor .izquierda img{
    max-height: 400px;
    max-width: 400px;
    margin-left: 30px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);

}
.novedades .novedades-contenedor .derecha{
    width: 60%;
}
.novedades .novedades-contenedor .derecha .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.novedades .novedades-contenedor .derecha p{
    margin: 20px 0px;
    text-align: justify;
}
.novedades .novedades-contenedor .derecha .p-shadow-1{
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;

}
.novedades .novedades-contenedor .derecha .p-shadow-2{
    margin: 20px 0px;
    text-align: justify;
    box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    word-spacing: 4px;
    font-weight: 500;

}
/*Contacto*/
.contacto{
    font-family: 'Ubuntu', sans-serif;
}
.contacto .title{ 
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif ;
}
.contacto .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 1000px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
.contacto .title::after{
    content: "Aquí";
    background-image: url('../img/titele-bacground.jpg');
}
.contacto .contacto-contenedor{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.contacto .contacto-contenedor .columna{
    width: 50%;
    width: calc(50%-30px);
}
.contacto .contacto-contenedor .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}
.contacto .contacto-contenedor .text2{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contacto .contacto-contenedor .izquierda{
    margin-top: -58px;
}
.contacto .contacto-contenedor .izquierda p{
    text-align: justify;
}
.contacto .contacto-contenedor .izquierda .icons{
    margin: 10px 0;
}
.contacto .contacto-contenedor .row{
    display: flex;
    height: 40px;
    align-items: center;
}
.contacto .contacto-contenedor .row .info{
    margin-left: 30px;
}
.contacto .contacto-contenedor .row i{
    font-size: 25px;
    color: #E9181E;
}
.contacto .contacto-contenedor .row .ico-telefono{
    font-size: 25px;
    color: #E9181E;
    transform: rotate(90deg);
}
.contacto .contacto-contenedor .info .head{
    font-weight: 500;
}
.contacto .contacto-contenedor .info .sub-title{
    color: #333;
}
.contacto .contacto-contenedor .derecha {
    margin-top: -30px;
}
.contacto .derecha form .campos{
    display: flex;
}
.contacto .derecha form .campo, .contacto .derecha form .campos .campo{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;    
}
.contacto .derecha .textarea{
    height: 80px;
    width: 100%;
}
.contacto .derecha form .nombre{
    margin-right: 10px;
}
.contacto .derecha form .email{
    margin-left: 10px;
}
.contacto .derecha form .campo input, .contacto .derecha form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
} 
.contacto .derecha form .textarea textarea{
    padding-top: 10px;
    resize: none;
}
.contacto .derecha form .button{
    height: 47px;
    width: 170px;
}
.contacto .derecha form .button button{ 
    width: 100%;
    height: 100%;
    border: 2px solid #E9181E;
    background: #E9181E;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.contacto .derecha form .button button:hover{ 
    color: crimson;
    background: none;
}
/*rrss*/
#btn-mas {
    display: none;
    z-index: 99
}
.container {
    bottom: 100px;
    position: fixed;
    right: 25px;
    z-index: 99
}
.btn-mas label,.redes a {
    background: #14729F;
    border-radius: 50%;
    box-shadow: 0 1px 10px rgba(0, 0, 0, .4);
    color: #fff;
    display: block;
    height: 55px;
    line-height: 55px;
    text-align: center;
    text-decoration: none;
    transition: all .5s ease;
    width: 55px;
    z-index: 99
}
.redes a:hover {
    background: #fff;
    color: #14729F
}
.redes a {
    margin-bottom: -15px;
    opacity: 0;
    visibility: hidden
}
.redes  .btn-rrss{
    font-size: 20px;
}
#btn-mas:checked~.redes a {
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible
}
.btn-mas label {
    background: #14729F;
    cursor: pointer;
    font-size: 23px
}
#btn-mas:checked~.btn-mas label~ {
    font-size: 25px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg)
}
@media(min-width: 1639px){
    .footer-fondo, .footer-fondo-2{
        margin-top: 0px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-triangulo{
        width: 100%;
        width: 970px;
        border-right: 60px solid transparent;
        border-top: 40px solid #242C42 ;
        z-index: 999; 
    }
    .footer-hr-superior{
        margin-left: 0;
        width: 100%;
        height: 10px;
        background-color: #242C42;
        border: none;
    }
    .footer-hr-inferrior{
        width: 75%;
        height: 10px;
        background-color: #023878;
        border: 1px solid #023878;
        border-radius: 5px;
        margin-top: 30px;
        margin-left: 150px;
        box-shadow:  0px 1px 0px #fff ;
    }
    .box-copyright{
        margin-top: 15px;
        width: 100% ;
        position: relative;
        color: #fff;
        height: 30px;
        text-align: center;
    }
    
    footer span a {
        color: #fff;
        text-decoration: none
    }
    footer span a:hover {
        text-decoration: underline
    }
    .container-footer{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width:100%;
        margin: auto;
        margin-top: 0px;
    }
    
    .box-footer{
        display: flex;
        flex-direction: column;
        margin-left: 100px;
        margin-top: 50px;
    }
    .container-footer .box-footer .footer-grid{
        display: grid;
        grid-template-columns: 100px 300px;
    }
    .container-footer .box-footer .footer-grid p{
        font-family:'Ubuntu', sans-serif;
        margin-top: 15px;
        font-size: 20px;
        font-weight: 300;
        color: #fff;
    }
    .box-footer-2{
        margin-right: 400px;
    }
    .container-footer .box-footer-2 .footer-grid-img{
        display: grid;
        grid-template-columns: 100px 100px 100px;
        gap: 120px;
        width: 100px;
        height: 50px;
    }
    .container-footer .box-footer .logo img{
        width: 180px;
        height: 100px;
        margin-top: 250px;
    }
    .container-footer .box-footer-3{
        margin-top: 10px;
        margin-left: 880px;
        width: 600px;
    }
    .container-footer .box-footer-3 h2{
        color: #111;
        font-weight: 700;
        margin-top: -10px;
    }
    .container-footer .box-footer-3 .box-footer-grid-3 {
        margin-left: -50px;
        width: 700px;
    }
    .container-footer .box-footer-3 .box-footer-grid-3 a{
        margin-top: 20px;
        color: #fff;
        font-weight: 600;
       
    }
    .container-footer .box-footer-3 a:hover{
        opacity: 0.8;
    }
    .container-footer .box-footer-3 a{/*txt*/
        color: #fff;
        font-size: 20px;
        margin-right: 5px;
        padding-right: 20px;
    }
    .footer-rrss{ /*iconos*/
        margin-top: 10px;
        margin-right: 2px;
        font-size: 30px;
        color: #fff;
    }
    .inicio .inicio-contenedor .izquierda {
        width: 45%;
        max-width: 400px;
        z-index: 2;
        margin-left: 50px;
    }
    .inicio .inicio-contenedor .derecha img {
        margin-top: -30px;
        margin-left: 50px;
        bottom: 10px;
        right: 0px;
        margin-right: 30px;
        width: 600px;
        padding: 30px;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
        
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 300px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }
    .galeria-container{
        margin-top: 20px;
        width: 100%;
        margin-left: -70px;
    }
    hr{
        text-align: center;
        width: 100%;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 100px;     
    }
    .acerca .acerca-contenedor .izquierda img{
        max-height: 500px;
        max-width: 500px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 80px;
    }
    .container-carousel{
        position: relative;
        width: 500px;
        height: 350px;
        /*height: 350px;*/
        background-color: #e0e0e0;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .66);
        border-radius: 15px;
        overflow: hidden;
        margin-left: 480px;
    }
}
@media(min-width: 1586px){
    .footer-fondo{
        margin-top: 100px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-2 , .footer-fondo-3{
        margin-top: 0px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-triangulo{
        width: 100%;
        width: 970px;
        border-right: 60px solid transparent;
        border-top: 40px solid #242C42 ;
        z-index: 999; 
    }
    .footer-hr-superior{
        margin-left: 0;
        width: 100%;
        height: 10px;
        background-color: #242C42;
        border: none;
    }
    .footer-hr-inferrior{
        width: 75%;
        height: 10px;
        background-color: #023878;
        border: 1px solid #023878;
        border-radius: 5px;
        margin-top: 30px;
        margin-left: 150px;
        box-shadow:  0px 1px 0px #fff ;
    }
    .box-copyright{
        margin-top: 15px;
        width: 100% ;
        position: relative;
        color: #fff;
        height: 30px;
        text-align: center;
    }
    
    footer span a {
        color: #fff;
        text-decoration: none
    }
    footer span a:hover {
        text-decoration: underline
    }
    .container-footer{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width:100%;
        margin: auto;
        margin-top: 0px;
    }
    
    .box-footer{
        display: flex;
        flex-direction: column;
        margin-left: 100px;
        margin-top: 50px;
    }
    .container-footer .box-footer .footer-grid{
        display: grid;
        grid-template-columns: 100px 300px;
    }
    .container-footer .box-footer .footer-grid p{
        font-family:'Ubuntu', sans-serif;
        margin-top: 15px;
        font-size: 20px;
        font-weight: 300;
        color: #fff;
    }
    .box-footer-2{
        margin-right: 400px;
    }
    .container-footer .box-footer-2 .footer-grid-img{
        display: grid;
        grid-template-columns: 100px 100px 100px;
        gap: 120px;
        width: 100px;
        height: 50px;
    }
    .container-footer .box-footer .logo img{
        width: 180px;
        height: 100px;
        margin-top: 250px;
    }
    .container-footer .box-footer-3{
    
        margin-top: 10px;
        width: 600px;
    }
    .container-footer .box-footer-3 h2{
        color: #111;
        font-weight: 700;
        margin-top: -10px;
        margin-left: -50px;
    }
    .container-footer .box-footer-3 .box-footer-grid-3{
        margin-left: -50px;
        width: 700px;
    }
    .container-footer .box-footer-3 .box-footer-grid a{
        margin-top: 20px;
        color: #fff;
        font-weight: 600;
       
    }
    .container-footer .box-footer-3 a:hover{
        opacity: 0.8;
    }
    .container-footer .box-footer-3 a{/*txt*/
        color: #fff;
        font-size: 20px;
        margin-right: 5px;
        padding-right: 20px;
    }
    .footer-rrss{ /*iconos*/
        margin-top: 10px;
        margin-right: 2px;
        font-size: 30px;
        color: #fff;
    }
    .inicio .inicio-contenedor .izquierda {
        width: 45%;
        max-width: 400px;
        z-index: 2;
        margin-left: 50px;
    }
    .inicio .inicio-contenedor .derecha img {
        margin-top: -30px;
        margin-left: 50px;
        bottom: 10px;
        right: 0px;
        margin-right: 30px;
        width: 600px;
        padding: 30px;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
        
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 260px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        
    }
  
    .galeria-container{
        margin-top: 20px;
        width: 100%;
        margin-left: -70px;
    }
    hr{
        text-align: center;
        width: 100%;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 100px;     
    } 
    .container-carousel{
        position: relative;
        width: 500px;
        height: 350px;
        /*height: 350px;*/
        background-color: #e0e0e0;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .66);
        border-radius: 15px;
        overflow: hidden;
        margin-left: 470px;
    }
    .novedades .novedades-contenedor{
        margin-top: -40px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
}
@media(min-width: 1583px){
    .footer-fondo{
        margin-top: 100px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-2, .footer-fondo-3{
        margin-top: 0px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-6 {
        margin-top: 530px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 400px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-triangulo{
        width: 100%;
        width: 970px;
        border-right: 60px solid transparent;
        border-top: 40px solid #242C42 ;
        z-index: 999; 
    }
    .footer-hr-superior{
        margin-left: 0;
        width: 100%;
        height: 10px;
        background-color: #242C42;
        border: none;
    }
    .footer-hr-inferrior{
        width: 75%;
        height: 10px;
        background-color: #023878;
        border: 1px solid #023878;
        border-radius: 5px;
        margin-top: 30px;
        margin-left: 150px;
        box-shadow:  0px 1px 0px #fff ;
    }
    .box-copyright{
        margin-top: 15px;
        width: 100% ;
        position: relative;
        color: #fff;
        height: 30px;
        text-align: center;
    }
    
    footer span a {
        color: #fff;
        text-decoration: none
    }
    footer span a:hover {
        text-decoration: underline
    }
    .container-footer{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width:100%;
        margin: auto;
        margin-top: 0px;
    }
    
    .box-footer{
        display: flex;
        flex-direction: column;
        margin-left: 100px;
        margin-top: 50px;
    }
    .container-footer .box-footer .footer-grid{
        display: grid;
        grid-template-columns: 100px 300px;
    }
    .container-footer .box-footer .footer-grid p{
        font-family:'Ubuntu', sans-serif;
        margin-top: 15px;
        font-size: 20px;
        font-weight: 300;
        color: #fff;
    }
    .box-footer-2{
        margin-right: 400px;
    }
    .container-footer .box-footer-2 .footer-grid-img{
        display: grid;
        grid-template-columns: 100px 100px 100px;
        gap: 120px;
        width: 100px;
        height: 50px;
    }
    .container-footer .box-footer .logo img{
        width: 180px;
        height: 100px;
        margin-top: 250px;
    }
    .container-footer .box-footer-3{
        margin-top: 10px;
        margin-left: 880px;
        width: 600px;
    }
    .container-footer .box-footer-3 h2{
        color: #111;
        font-weight: 700;
        margin-top: -10px;
        margin-left: -50px;
    }
    .container-footer .box-footer-3 .box-footer-grid-3{
        margin-left: -50px;
        width: 700px;
    }
    .container-footer .box-footer-3 .box-footer-grid a{
        margin-top: 20px;
        color: #fff;
        font-weight: 600;
       
    }
    .container-footer .box-footer-3 a:hover{
        opacity: 0.8;
    }
    .container-footer .box-footer-3 a{/*txt*/
        color: #fff;
        font-size: 20px;
        margin-right: 5px;
        padding-right: 20px;
    }
    .footer-rrss{ /*iconos*/
        margin-top: 10px;
        margin-right: 2px;
        font-size: 30px;
        color: #fff;
    }
    .inicio .inicio-contenedor .izquierda {
        width: 45%;
        max-width: 400px;
        z-index: 2;
        margin-left: 50px;
    }
    .inicio .inicio-contenedor .derecha img {
        margin-top: -30px;
        margin-left: 50px;
        bottom: 10px;
        right: 0px;
        margin-right: 30px;
        width: 600px;
        padding: 30px;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
        
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 300px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }
    .galeria-container{
        margin-top: 20px;
        width: 100%;
        margin-left: -70px;
    }
    hr{
        text-align: center;
        width: 100%;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 100px;     
    } 
    .container-carousel{
        position: relative;
        width: 500px;
        height: 350px;
        /*height: 350px;*/
        background-color: #e0e0e0;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .66);
        border-radius: 15px;
        overflow: hidden;
        margin-left: 460px;
    }
    .desinsectacion .desinsectacion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        margin-left: 50px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .desratizacion .desratizacion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        margin-left: 50px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .desinfeccion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        margin-left: 50px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .desinfeccion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        margin-left: 50px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .novedades .novedades-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        margin-left: 50px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .plagas .plagas-contenedor .izquierda img {
        max-height: 400px;
        max-width: 400px;
        margin-left: 50px;
        object-fit: cover;
        border-radius: 6px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
}
@media(max-width:1104px) {
    .navbar.sticky  .menu{
        margin-top: -75px;
    }
    .navbar .logo{
        width: 250px;
        height: 150px;
    }
    .navbar .logo1{
        width: 250px;
        height: 150px;
        visibility: visible;
    }
    .navbar.sticky .logo2{ 
        margin-top: -155px;
        float: left;
        width: 150px;
        height: 60px;
        visibility: visible;
    }
    .inicio .inicio-contenedor .izquierda {
        width: 60%
    }
    .inicio .inicio-contenedor .derecha {
        width: 40%
    }
    .inicio .inicio-contenedor .derecha img {
        height: 350px;
        width: 350px
    }
}
@media(max-width:991px) {
    .max-width {
        padding: 0 50px
    }
}
@media(max-width:947px) {
    .fondo {
        background: url('../img/background-index.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .separador-superior, .header-superior{
        display: none;
    }
    .triangulo{
        width: 100%;
        width: 700px;
        height: 30px;
        /*margin-right:  -150px;*/
        border-right: 100px solid transparent;
        border-top: 70px solid #242C42 ;
        z-index: 999; 
    }
    .navbar .menu-btn {
        display: block;
        z-index: 999;
        margin-top: -60px;
        color: #fff;
    }
    .menu-btn i.active:before {
        content: "\f00d";
        color: #fff;
        margin-top: 0px;
    }
    .menu-btn .flecha.active:before {
        content: "\f078";
        color: #fff;
        position: relative;
        top: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .navbar{
        background-color: #023878;
    }
    #selected{
        color: #fff;
        text-transform: uppercase;
        transform: scale(1.1);
    }
    .navbar.sticky .menu .submenu{
        background: #222;
    } 
    .navbar .menu {
        background: #111;
        height: 100vh;
        left: -110%;
        padding-top: 80px;
        position: absolute;
      /*  position: fixed;*/
        text-align: center;
        top: 0;
        transition: all .3s ease;
        width: 100%;
        z-index: 999;
      /*  overflow: scroll;*/
    }
    .navbar .menu.active {
        left: 0
    }
    .navbar .menu li {
        width: 100%;        
    }
    .navbar .menu li .submenu{
        width: 100%;
    }
    .navbar .menu li a {
        display: inline-block;
       /* display: block;*/
        font-size: 25px;
        margin: 20px 0;
        transition: all .3s ease;
        padding: 8px 30px 8px 8px;
    }
    .navbar .menu li a:hover{
        color: #Fff;
        
    } 
    .nav .menu li .submenu .sub-menu{
        width: 100%;
        position: relative;
    }
    .navbar .menu li .submenu{
        position: fix;
        width: 100%;
        left: 0;
        color: #Fff;
        background: #222;
        transition: all .3s ease;
    }
    .navbar .menu li ul a:hover{
        color: #Fff;
        
    }
    .navbar .menu li ul li ul{
        display: block;
        position: relative;
        width: 100%;
        left:0;
    }
	.navbar .menu .sub-menu {
		display: block;
	}

	.navbar .menu .sub-menu a {
		display: block;
	}
	.navbar .menu .sub-menu .children {
		width: 100%;
		position: relative;
        background: #222;
	}
	.navbar .menu .sub-menu .children li a {
		margin-left:20px;
	}
    .navbar.sticky .logo2{ 
        margin-top: -30px;
        float: left;
        width: 150px;
        height: 80px;
        visibility: visible;
    }  
    .navbar .logo{
        width: 200px;
        height: 80px;
        margin-top: -80px;
    }
    .navbar .logo1{
        width: 200px;
        height: 80px;     
        transition: all 0.3s ease; 
    }  
    .footer-fondo{
        margin-top: 300px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    } 
    .footer-fondo-2{
        margin-top: 0px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-3{
        margin-top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed ;
        border: 10px;
    }
    .footer-fondo-4{
        margin-top: 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 600px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-5{
        margin-top: 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 630px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-6 {
        margin-top: 630px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 590px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-triangulo{
        width: 100%;
        width: 650px;
        border-right: 60px solid transparent;
        border-top: 40px solid #242C42 ;
        z-index: 999; 
    }
    .footer-hr-superior{
        margin-left: 0;
        width: 100%;
        height: 10px;
        background-color: #242C42;
        border: none;
    }
    .footer-hr-inferrior{
        width: 75%;
        height: 10px;
        background-color: #023878;
        border: 1px solid #023878;
        border-radius: 5px;
        margin-top: 30px;
        margin-left: 100px;
        box-shadow:  0px 1px 0px #fff ;
    }
    .box-copyright{
        margin-top: 15px;
        width: 100% ;
        position: relative;
        color: #fff;
        height: 30px;
        text-align: center;
    }
    
    footer span a {
        color: #fff;
        text-decoration: none
    }
    footer span a:hover {
        text-decoration: underline
    }
    .container-footer{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width:100%;
        margin: auto;
        margin-top: 10px;
    }
    
    .box-footer{
        display: flex;
        flex-direction: column;
        margin-left: 100px;
        margin-top: 50px;
    }
    .container-footer .box-footer .footer-grid{
        display: grid;
        grid-template-columns: 100px 190px;
    }
    .container-footer .box-footer .footer-grid p{
        font-family:'Ubuntu', sans-serif;
        margin-top: 15px;
        font-size: 15px;
        font-weight: 300;
        color: #fff;
    }
    .box-footer-2{
        margin-right: 400px;
    }
    .container-footer .box-footer-2 .footer-grid-img{
        display: grid;
        grid-template-columns: 100px 100px 100px;
        gap: 120px;
        width: 100px;
        height: 50px;
        margin-top: 10px;
    }
    .container-footer .box-footer .logo img{
        width: 180px;
        height: 100px;
        margin-top: 250px;
    }
    .container-footer .box-footer-3{
        display: flex;
        flex-direction: column;
        margin-left: 100px;
        margin-top: 50px;
    }
    .container-footer .box-footer h2{
        width: 400px;
        color: #111;
        font-weight: 700;
    }
    .container-footer .box-footer-3 .box-footer-grid-3{
        margin-top: 10px;
        width: 600px;
    }
    .container-footer .box-footer-3 .box-footer-grid-3 a{
        margin-top: 20px;
        color: #fff;
        font-weight: 600;
        padding-right: 40px;
    }
    
    .container-footer .box-footer-3 a:hover{
        opacity: 0.8;
    }
    .container-footer .box-footer-3 a{/*txt*/
        color: #fff;
        font-size: 16px;
        margin-right: 5px;
        padding-right: 10px;
    }
    .footer-rrss{ /*iconos*/
        margin-top: 10px;
        margin-right: 2px;
        font-size: 25px;
        color: #fff;
    }
    section {
        padding: 120px 0
    }
    section .title:before {
        background: #111;
        bottom: 0;
        content: "";
        height: 3px;
        width: 600px;
        left: -90px;
        
    }
    section .title:after,section .title:before {
        left: 50%;
        position: absolute;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    section .title:after {
    /*  background: #fff;*/
        bottom: -12px;
        color: #E9181E;
        font-size: 20px;
        padding: 5px;
    
    }    
    .inicio .inicio-contenedor .derecha {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto 60px
        
    }
    .inicio .acerca-contenedor .izquierda {
        -ms-flex: 100%;
        flex: 100%
    }
    .inicio .inicio-contenedor .text-2 {
        font-size: 70px
    }
    .inicio .inicio-contenedor .text-3 {
        font-size: 35px
    }
    .inicio .inicio-contenedor a {
        font-size: 23px;
        padding: 10px 30px
    }
    .inicio .inicio-contenedor .derecha img {
        margin-left: -50px;
        bottom: 10px;
        right: 0px;
        margin-right: 30px;
        width: 600px;
        padding: 30px;
    }
    
    .galeria-container{
        margin-top: 30px;
        width: 300px;
        margin-left: 0;
    }
    .galeria-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 150px;
        align-items: center;
        margin-left: 150px;
        margin-right: 300px;
    }
    .galeria-container .galeria-grid .galeria{
        margin-left: 20px;
    }
    .galeria-container .galeria-grid  .foto{
        margin-left: 0px;
    }
    hr{
        text-align: center;
        width: 600px;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 80px;     
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 425px;
        width: 100%;
        height: 450px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 190px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }
    .acerca{
        display: -ms-flexbox;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        height: 80vh;
        min-height: 500px;
    }
    .acerca .title{ 
        position: relative;
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .acerca .title::after{    
        content: "Quiénes somos ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .acerca .acerca-contenedor{
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .acerca .acerca-contenedor .izquierda{
        width: 40%;
    }
    .acerca .acerca-contenedor .izquierda img{
        max-height: 260px;
        max-width: 260px;
        object-fit: cover;
        border-radius: 6px;
    }
    .acerca .acerca-contenedor .derecha{
        width: 60%;
    }
    .acerca .acerca-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .acerca .acerca-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .acerca .acerca-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .acerca .acerca-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .acerca .acerca-contenedor .derecha a{
        display: inline-block;
        background: crimson;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        padding: 10px 30px;
        margin-top: 20px;
        border-radius: 6px;
        border: 2px solid crimson;
        transition: all 0.3s ease; 
    }
    .acerca .acerca-contenedor .derecha a:hover{
        color: crimson;
        background: none;
    }
    .container-carousel{
        position: relative;
        width: 500px;
        height: 350px;
        /*height: 350px;*/
        background-color: #e0e0e0;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, .66);
        border-radius: 15px;
        overflow: hidden;
        margin-left: 90px;
    }
    .desinsectacion .desinsectacion-contenedor{
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .desinsectacion .desinsectacion-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .desinsectacion .desinsectacion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 140px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desinsectacion .desinsectacion-contenedor .derecha{
        width: 100%;
    }
    .desinsectacion .desinsectacion-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .desinsectacion .desinsectacion-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .desinsectacion .desinsectacion-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desinsectacion .desinsectacion-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desratizacion .desratizacion-contenedor{
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .desratizacion .desratizacion-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .desratizacion .desratizacion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 140px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desratizacion .desratizacion-contenedor .derecha{
        width: 100%;
    }
    .desratizacion .desratizacion-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .desratizacion .desratizacion-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .desratizacion .desratizacion-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desratizacion .desratizacion-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desinfeccion .desinfeccion-contenedor{
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .desinfeccion .desinfeccion-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .desinfeccion .desinfeccion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 140px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desinfeccion .desinfeccion-contenedor .derecha{
        width: 100%;
    }
    .desinfeccion .desinfeccion-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .desinfeccion .desinfeccion-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .desinfeccion .desinfeccion-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desinfeccion .desinfeccion-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    /***/
     .plagas .plagas-contenedor{
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .plagas .plagas-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .plagas .plagas-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 140px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .plagas .plagas-contenedor .derecha{
        width: 100%;
    }
    .plagas .plagas-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .plagas .plagas-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .plagas .plagas-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .plagas .plagas-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    /**/
    .novedades{
        display: -ms-flexbox;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        height: 80vh;
        min-height: 500px;
    }
    .novedades .title{ 
        position: relative;
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .novedades .title::after{    
        content: " ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .novedades .novedades-contenedor{
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .novedades .novedades-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .novedades .novedades-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 140px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .novedades .novedades-contenedor .derecha{
        width: 100%;
    }
    .novedades .novedades-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .novedades .novedades-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .novedades .novedades-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .novedades .novedades-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .contacto{
        font-family: 'Ubuntu', sans-serif;
    }
    .contacto .title{ 
        position: relative;
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .contacto .title::before{
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 500px;
        height: 3px;
        background: #111;
        transform: translateX(-50%);
    }
    .contacto .title::after{
        content: "Aquí";
        background-image: url('../img/titele-bacground.jpg');
    }
    .contacto .contacto-contenedor{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .contacto .contacto-contenedor .columna{
        width: 49%;
        width: calc(50%-30px);
    }
    .contacto .contacto-contenedor .text{
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 0px;
        margin-top: 10px;
    }
    .contacto .contacto-contenedor .text2{
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .contacto .contacto-contenedor .izquierda{
        margin-top: -58px;
    }
    .contacto .contacto-contenedor .izquierda p{
        text-align: justify;
    }
    .contacto .contacto-contenedor .izquierda .icons{
        margin: 10px 0;
    }
    .contacto .contacto-contenedor .row{
        display: flex;
        height: 40px;
        align-items: center;
    }
    .contacto .contacto-contenedor .row .info{
        margin-left: 30px;
    }
    .contacto .contacto-contenedor .row i{
        font-size: 25px;
        color: #E9181E;
    }
    .contacto .contacto-contenedor .row .ico-telefono{
        font-size: 25px;
        color: #E9181E;
        transform: rotate(90deg);
    }
    .contacto .contacto-contenedor .info .head{
        font-weight: 500;
    }
    .contacto .contacto-contenedor .info .sub-title{
        color: #333;
    }
    .contacto .contacto-contenedor .derecha {
        margin-top: -30px;
    }
    .contacto .derecha form .campos{
        display: flex;
    }
    .contacto .derecha form .campo, .contacto .derecha form .campos .campo{
        height: 45px;
        width: 100%;
        margin-bottom: 15px;    
    }
    .contacto .derecha .textarea{
        height: 80px;
        width: 100%;
    }
    .contacto .derecha form .nombre{
        margin-right: 10px;
    }
    .contacto .derecha form .email{
        margin-left: 10px;
    }
    .contacto .derecha form .campo input, .contacto .derecha form .textarea textarea{
        height: 100%;
        width: 100%;
        border: 1px solid lightgrey;
        border-radius: 6px;
        outline: none;
        padding: 0 15px;
        font-size: 17px;
        font-family: 'Poppins', sans-serif;
    } 
    .contacto .derecha form .textarea textarea{
        padding-top: 10px;
        resize: none;
    }
    .contacto .derecha form .button{
        height: 47px;
        width: 170px;
    }
    .contacto .derecha form .button button{ 
        width: 100%;
        height: 100%;
        border: 2px solid #E9181E;
        background: #E9181E;
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .contacto .derecha form .button button:hover{ 
        color: crimson;
        background: none;
    }
}
@media(max-width:800px){
    .menu-btn {
        display: block;
        z-index: 999;
        margin-top: -30px;
        margin-left: -150px;
    }
    .navbar.sticky .menu-btn{
        margin-top: -120px;
    }
    .inicio .inicio-contenedor .columna {
        top: auto;
        align-items: center;
        width: 100%
    }
    .inicio .inicio-contenedor .derecha {
        order: -1;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .inicio .inicio-contenedor .izquierda{
        padding-top: 30px;
    }
    .incio .incio-contenedor .derecha{
        align-items: center;
    }
    .incio .incio-contenedor .derecha img {
        filter: drop-shadow(5px 5px 5px  #ffff);
        height: 450px;
        width: 450px
    }
    .galeria-container{
        margin-top: 30px;
        width: 300px;
        margin-left: 0;
    }
    .galeria-grid{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 120px;
        align-items: center;
        margin-left: 100px;
        margin-right: 300px;
    }
    .galeria-container .galeria-grid .galeria{
        margin-left: 20px;
    }
    .galeria-container .galeria-grid  .foto{
        margin-left: 0px;
    }
    hr{
        text-align: center;
        width: 600px;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 10px;     
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 700px;
        width: 100%;
        height: 450px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 450px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }

}
@media(max-width:768px) {
    .triangulo{
        width: 100%;
        width: 600px;
        height: 30px;
        /*margin-right:  -150px;*/
        border-right: 100px solid transparent;
        border-top: 70px solid #242C42 ;
        z-index: 999; 
    }
    .menu-btn {
        display: block;
        z-index: 999
    }
    .menu-btn i.active:before {
        content: "\f00d"
    }
    .navbar .menu-btn {
        display: block;
        z-index: 999;
        margin-top: -60px;
        margin-right: 50px;
        color: #fff;
    }
    .navbar .menu {
        background: #111;
        height: 100vh;
        left: -110%;
        padding-top: 80px;
        position: fixed;
        text-align: center;
        top: 0;
        transition: all .3s ease;
        width: 100%
    }
    .navbar .menu.active {
        left: 0
    }
    .navbar .menu li {
        display: block
    }
    .navbar .menu li a {
        display: inline-block;
        font-size: 25px;
        margin: 20px 0
    }
    .footer-fondo-2{
        margin-top: 200px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-6 {
        margin-top: 830px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 590px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .inicio .inicio-contenedor .text-2 {
        font-size: 60px
    }
    .inicio .inicio-contenedor .text-3 {
        font-size: 32px
    }
    .inicio .inicio-contenedor a {
        font-size: 20px
    }
    .inicio .inicio-contenedor .derecha img {
        margin-left: 10px;
        bottom: 10px;
        right: 0px;
        margin-right: 30px;
        width: 500px;
        padding: 30px;
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 475px;
        width: 100%;
        height: 400px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 190px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }
    .footer-fondo{
        margin-top: 500px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    } 
    .footer-fondo-3{
        margin-top: 310px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed ;
        border: 10px;
    }
    .desinsectacion .desinsectacion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 120px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desratizacion .desratizacion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 120px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desinfeccion .desinfeccion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 120px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .plagas .plagas-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 120px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
}
@media(max-width:600px){
    .triangulo{
        width: 100%;
        width:500px;
        height: 30px;
        /*margin-right:  -150px;*/
        border-right: 100px solid transparent;
        border-top: 70px solid #242C42 ;
        z-index: 999; 
    }
    .max-width {
        padding: 0 0px;
    }
    .footer-triangulo{
        width: 100%;
        width: 650px;
        border-right: 60px solid transparent;
        border-top: 40px solid #242C42 ;
        z-index: 999; 
    }
    .footer-hr-superior{
        margin-left: 0;
        width: 100%;
        height: 10px;
        background-color: #242C42;
        border: none;
    }
    .inicio .max-width {
        margin: auto 0 auto 0px;
    }
    .inicio .inicio-contenedor .columna {
        top: auto;
        align-items: center;
        width: 100%
    }
    .inicio .inicio-contenedor .derecha {
        order: -1;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        margin: -30px; /*aca modificar el responsivo por el margen de la img es que se ve desfazado el body*/
    }
    .inicio .inicio-contenedor .izquierda{
        padding-top: 30px;
    }
    .incio .incio-contenedor .derecha{
        align-items: center;
    }
    .incio .incio-contenedor .derecha img {
        filter: drop-shadow(5px 5px 5px  #ffff);
        height: 350px;
        width: 350px
    }
    .galeria-container{
        margin-top: 50px;
        width: 100%;
    }
    .galeria-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        align-items: center;
        margin-left: 50px;
        margin-right: 0px;
    }
    .galeria-container .galeria-grid .galeria{
        margin-left: 180px;
    }
    .galeria-container .galeria-grid  .foto{
        margin-left: 0px;
    }
    hr{
        text-align: center;
        width: 450px;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 50px;     
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 425px;
        width: 100%;
        height: 400px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 220px;
        width: 100%;
        height: 300px;
        background-image: url(../img/wave.png);
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }
    .footer-fondo{
        margin-top: 650px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    } 
    .footer-fondo-2{
        margin-top: 320px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-3{
        margin-top: 380px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed ;
        border: 10px;
    }
    .footer-fondo-4, .footer-fondo-5{
        margin-top: 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1000px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-6 {
        margin-top: 1050px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1000px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-triangulo{
        width: 100%;
        width: 500px;
        border-right: 60px solid transparent;
        border-top: 40px solid #242C42 ;
        z-index: 999; 
    }
    .footer-hr-superior{
        margin-left: 0;
        width: 100%;
        height: 10px;
        background-color: #242C42;
        border: none;
    }
    .footer-hr-inferrior{
        width: 75%;
        height: 10px;
        background-color: #023878;
        border: 1px solid #023878;
        border-radius: 5px;
        margin-top: 30px;
        margin-left: 100px;
        box-shadow:  0px 1px 0px #fff ;
    }
    .container-footer .box-footer, .box-footer-2, .box-footer-3 h2{
        width: 400px;
        color: #111;
        font-weight: 700;
    }
   
    .container-footer .box-footer-2 .footer-grid-img{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        align-items: center;
        margin-left: 80px;
        margin-right: 0px;
        height: 350px;
       
    }
    .container-footer .box-footer-2 .footer-grid-img .img-footer{
        margin-top: 120px;
    }
    .container-footer  .box-footer-3 .box-footer-grid-3{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: center;
        margin-left: 0px;
        margin-right: 0px;
        width: 400px;
        height: 150px;
       
    }
    
    section {
        padding: 120px 0
    }
    section .title:before {
        background: #111;
        bottom: 0;
        content: "";
        height: 3px;
        width: 400px;
        left: -90px;
        
    }
    section .title:after,section .title:before {
        left: 50%;
        position: absolute;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    section .title:after {
    /*  background: #fff;*/
        bottom: -12px;
        color: #E9181E;
        font-size: 20px;
        padding: 5px;
    
    }
    .aviso .aviso-contenedor{
        margin-top: -50px;
        width: 550px;
        padding: 10px 10px;
        display: block;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .acerca .acerca-contenedor{
        margin-left: 30px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        width: 90%;
    }
    .acerca .acerca-contenedor .izquierda{
        width: 40%;
    }
    .acerca .acerca-contenedor .izquierda img{
        max-height: 200px;
        max-width: 200px;
        object-fit: cover;
        border-radius: 6px;
    }
    .desinsectacion .desinsectacion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 90px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desratizacion .desratizacion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 90px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desinfeccion .desinfeccion-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 90px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .plagas .plagas-contenedor .izquierda img{
        max-height: 400px;
        max-width: 400px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 90px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .novedades .novedades-contenedor{
        margin-left: 30px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        width: 90%;
    }
    .novedades .novedades-contenedor .izquierda img{
        max-height: 350px;
        max-width: 350px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 80px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .contacto .title::before{
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 500px;
        height: 3px;
        background: #111;
        transform: translateX(-50%);
    }
    .contacto .contacto-contenedor .columna{
        width: 100%;
        width: calc(100%-30px);
        margin: 10px;
    }
    .contacto .contacto-contenedor .text{
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 30px;
    }
    .contacto .contacto-contenedor .text2{
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .contacto .contacto-contenedor .izquierda{
        margin-top: -58px;
    }
    
}
@media(max-width:457px) {  
   
    .fondo{
        background: url('../img/background-index.jpg') ;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .triangulo{
        width: 100%;
        width: 400px;
        height: 30px;
        /*margin-right:  -150px;*/
        border-right: 100px solid transparent;
        border-top: 70px solid #242C42 ;
        z-index: 999; 
    }
    .navbar .menu-btn {
        display: block;
        z-index: 999;
        margin-top: -60px;
        color: #fff;
    }
    .menu-btn i.active:before {
        content: "\f00d";
        color: #fff;
        margin-top: 0px;
    }
    .menu-btn .flecha.active:before {
        content: "\f078";
        color: #fff;
        position: relative;
        top: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .navbar{
        background-color: #023878;
    }
    #selected{
        color: #fff;
        text-transform: uppercase;
        transform: scale(1.1);
    }
    .navbar.sticky .menu .submenu{
        background: #222;
    } 
    .navbar .menu {
        background: #111;
        height: 120vh;/* modificar aca la linea negra lateral que se ve*/
        left: -110%;
        padding-top: 80px;
        position: fixed;
        text-align: center;
        top: 0;
        transition: all .3s ease;
        width: 100%;
        z-index: 999;
        /*overflow: scroll;*/
    }
    .navbar .menu.active {
        left: 0
    }
    .navbar .menu li {
        width: 100%;        
    }
    .navbar .menu li .submenu{
        width: 100%;
    }
    .navbar .menu li a {
        display: inline-block;
        font-size: 20px;
        margin: 20px 0;
        transition: all .3s ease;
        padding: 8px 10px 8px 8px;
    }
    .navbar .menu li a:hover{
        color: #Fff;
        
    } 
    .nav .menu li .submenu .sub-menu{
        width: 100%;
        position: relative;
    }
    .navbar .menu li .submenu{
        position: fix;
        width: 100%;
        left: 0;
        color: #Fff;
        background: #222;
        transition: all .3s ease;
    }
    .navbar .menu li ul a:hover{
        color: #Fff;
        
    }
    .navbar .menu li ul li ul{
        display: block;
        position: relative;
        width: 100%;
        left:0;
    }
	.navbar .menu .sub-menu {
		display: block;
	}

	.navbar .menu .sub-menu a {
		display: block;
	}
	.navbar .menu .sub-menu .children {
		width: 100%;
		position: relative;
        background: #222;
	}
	.navbar .menu .sub-menu .children li a {
		margin-left:20px;
	}
    .navbar.sticky .logo2{ 
        margin-top: -30px;
        float: left;
        width: 150px;
        height: 80px;
        visibility: visible;
    }  
    .navbar .logo{
        width: 200px;
        height: 80px;
        margin-top: -75px;
    }
    .navbar .logo1{
        width: 150px;
        height: 70px;     
        transition: all 0.3s ease; 
        margin-left: 10px;
    }
    .footer-fondo{
        margin-top: 850px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer-cel.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-2{
        margin-top: 350px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer-cel.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-3{
        margin-top: 580px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer-cel.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-4{
        margin-top: 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1100px;
        background-image: url('../img/footer-cel.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-5{
        margin-top: 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1010px;
        background-image: url('../img/footer-cel.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-6 {
        margin-top: 1600px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1010px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-triangulo{
        width: 100%;
        width: 300px;
        border-right: 60px solid transparent;
        border-top: 40px solid #242C42 ;
        z-index: 999; 
    }
    .footer-hr-superior{
        margin-left: 0;
        width: 100%;
        height: 10px;
        background-color: #242C42;
        border: none;
    }
    .footer-hr-inferrior{
        width: 75%;
        height: 10px;
        background-color: #023878;
        border: 1px solid #023878;
        border-radius: 5px;
        margin-top: 30px;
        margin-left: 50px;
        box-shadow:  0px 1px 0px #fff ;
    }
    .box-footer .footer-grid{
        width: 350px;
        margin-left: -50px;
    }
    .container-footer .box-footer h2 , .box-footer-2 h2, .box-footer-3 h2{
        width: 350px;
        color: #111;
        font-weight: 700;
        margin-left: -50px;
    }
   
    .container-footer .box-footer-2 .footer-grid-img{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        align-items: center;
        margin-left: 10px;
        margin-right: 0px;
        height: 350px;
    }
    .container-footer .box-footer-2 .footer-grid-img .img-footer{
        margin-top: 120px;
        
    }
    .container-footer  .box-footer-3 .box-footer-grid-3{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
        align-items: center;
        margin-left: -50px;
        margin-right: 0px;
        width: 300px;
        height: 150px;
       
    }
    .box-copyright {
        margin-top: 10px;
        width: 100%;
        position: relative;
        color: #fff;
        height: 50px;
        text-align: center;
    }
    .box-copyright::before{
        top: 10px;
    }
    .max-width{
        padding: 0px 0px;
        width: 440px;
    }
    section {
        padding: 0px 0px;
    }
    .incio{
        width: 200px;
        height: 640px;
    }
    .inicio .max-width {
        width: 250px;
        margin: 0px 0px 0px 0px;
    }
    .inicio .inicio-contenedo{
        width: 150px;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 100px;
        margin-left: 100px;
    }
    .inicio .inicio-contenedor .derecha{
        margin-left: 80px;
        margin-top: 90px;
    }
    .inicio .inicio-contenedor .derecha img {
        margin-left: 0px;
        bottom: 10px;
        right: 0px;
        margin-top: -120px;
        margin-right: 0px;
        width: 380px;
        height: 300px;
        padding: 30px;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
        border: #7a7a7a;
        
    }
    .inicio .inicio-contenedor .izquierda{
        width: 300px;
        height: 200px;
        margin-top:80px;
        margin-left: -1px;
    }
    .inicio .acerca-contenedor .izquierda {
        -ms-flex: 100%;
        flex: 100%
    }
    .inicio .inicio-contenedor .text1 {
        font-size: 30px;
        color: rgb(233, 24, 30);
        text-align: left;
        word-spacing: 2px;
    }
    .inicio .inicio-contenedor .text2 {
        font-size: 30px;
        color: #E9181E;
        text-align: left;
        letter-spacing:2px;
        word-spacing: 2px;
    }
    .inicio .inicio-contenedor .text3 {
        margin-top: 10px;
        max-width: 300px;
        width: 250px;
        font-weight: 400;
        color: rgb(110, 111, 116);
        text-align: left;
    }
    .inicio .inicio-contenedor a {
        font-size: 23px;
        padding: 10px 30px
    }
    h1{
        font-size: 26px;
        color: #E9181E; 
        letter-spacing: 0px;
        word-spacing: 0%;
    }
    .galeria-container{
        margin-top: 130px;
        width: 100%;
    }
    .galeria-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        align-items: center;
        margin-left: 20px;
        margin-right: 0px;
    }
    hr{
        text-align: center;
        width: 300px;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 100px;     
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 200px;
        width: 100%;
        height: 400px;
        background-image: url('../img/wave.png');
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: -35px;
        width: 100%;
        height: 350px;
        background-image: url('../img/wave.png');
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }
    section {
        padding: 120px 0;
    }
    section .title:before {
        background: #111;
        bottom: 0;
        content: "";
        height: 3px;
        width: 300px;
        left: -90px;
        
    }
     section .title:after,section .title:before {
        left: 50%;
        position: absolute;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    section .title:after {
      /*  background: #fff;*/
        bottom: -12px;
        color: #E9181E;
        font-size: 20px;
        padding: 5px;
       
    }
    .aviso .aviso-contenedor{
        margin-top: -50px;
        width: 420px;
        padding: 10px 10px;
        margin-left: 10px;
        display: block;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .acerca{
        display: -ms-flexbox;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        height: 80vh;
        min-height: 500px;
    }
    .acerca .title{ 
        position: relative;
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .acerca .title::after{    
        content: "Quiénes somos ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .acerca .acerca-contenedor{
        margin-left: 20px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
      
    }
    .acerca .acerca-contenedor .izquierda{
        display: none;
    }
    .acerca .acerca-contenedor .izquierda img{
        display: none;
    }
    .acerca .acerca-contenedor .derecha{
        width: 100%;
    }
    .acerca .acerca-contenedor .derecha .text{
        display: none;/*
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;*/
    }
    .acerca .acerca-contenedor .derecha p{
        margin: 10px 0px;
        text-align: justify;
        word-spacing: 4px;
        padding-bottom: 10px;
    }
    .acerca .acerca-contenedor .derecha .p-shadow-1{
        margin: 10px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 10px;
        font-weight: 500;

    }
    .acerca .acerca-contenedor .derecha .p-shadow-2{
        margin: 10px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
     

    }
    .container-carousel{
        position: relative;
        width: 350px;
        height: 350px;
        /*height: 350px;*/
        background-color: #e0e0e0;
        box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .66);
        border-radius: 15px;
        overflow: hidden;
        margin-left:50px;   
    }
    .carruseles{
        width: 400%;/*esto es por la cantidad de img es la multiplicaciond e 3*100%*/
        height: 100%;
        display: flex;
    }
    .slider-section{
        width: calc(100% / 4); /*aca se calcula 100% / 3 por las img si hay mas img se agregan mas*/
        height: 100%;
    }    
    .slider-section img{
        margin-top: -100px;
        margin-left: 80px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 2px solid #14729F;
    }
    .slider-section .text{
        font-size: 25px;
        font-weight: 500;
        margin: 10px 0 7px 65px;
    }
    .slider-section a {
        background: #14729F;
        border: 2px solid #14729F;
        border-radius: 6px;
        color: #fff;
        display: inline-block;
        font-size: 15px;
        margin-top: 0px;
        margin-left: 70px;
        padding: 12px 36px;
        transition: all .3s ease;
     
    }
    .btn-left i, .btn-right i{
        display: flex;
        position: absolute;
        margin-top: -150px;
        font-size: 1.5rem;
        background-color: transparent;
        border-radius: 50%;
        padding: 5px;
        font-weight: 600;
        color: #111;
        transform: translate(0,-50%);
        transition: all .5s ease;
        user-select: none;
        border: 2px solid #14729F;
        z-index: 100;
    }
    .btn-left i:hover, .btn-right i:hover{
        background-color: #333333d4;
        color: #fff;
        transition: all .5s ease;
    }
    .btn-left i{
        left: 10px;
    }
    .btn-right i{
        right: 10px;
    }
    .desinsectacion .title{ 
        position: relative;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .desinsectacion .title::after{    
        content: " ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .desinsectacion .desinsectacion-contenedor{
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -50px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19); 
    }
    .desinsectacion .desinsectacion-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .desinsectacion .desinsectacion-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 40px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desinsectacion .desinsectacion-contenedor .derecha{
        width: 100%;
    }
    .desinsectacion .desinsectacion-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .desinsectacion .desinsectacion-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .desinsectacion .desinsectacion-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desinsectacion .desinsectacion-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desratizacion .title{ 
        position: relative;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .desratizacion .title::after{    
        content: " ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .desratizacion .desratizacion-contenedor{
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -50px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19); 
    }
    .desratizacion .desratizacion-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .desratizacion .desratizacion-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 40px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desratizacion .desratizacion-contenedor .derecha{
        width: 100%;
    }
    .desratizacion .desratizacion-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .desratizacion .desratizacion-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .desratizacion .desratizacion-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desratizacion .desratizacion-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desinfeccion .title{ 
        position: relative;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .desinfeccion .title::after{    
        content: " ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .desinfeccion .desinfeccion-contenedor{
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -50px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19); 
    }
    .desinfeccion .desinfeccion-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .desinfeccion .desinfeccion-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 40px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desinfeccion .desinfeccion-contenedor .derecha{
        width: 100%;
    }
    .desinfeccion .desinfeccion-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .desinfeccion .desinfeccion-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .desinfeccion .desinfeccion-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .desinfeccion .desinfeccion-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .plagas .title{ 
        position: relative;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .plagas .title::after{    
        content: " ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .plagas .plagas-contenedor{
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -50px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19); 
    }
    .plagas .plagas-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .plagas .plagas-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 40px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .plagas .plagas-contenedor .derecha{
        width: 100%;
    }
    .plagas .plagas-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .plagas .plagas-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .plagas .plagas-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .plagas .plagas-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .novedades{
        display: -ms-flexbox;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        height: 80vh;
        min-height: 500px;
    }
    .novedades .title{ 
        position: relative;
        text-align: center;
        font-size: 30px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .novedades .title::after{    
        content: " ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .novedades .novedades-contenedor{
        margin-left: 20px;
        margin-top: -50px;
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19); 
    }
    .novedades .novedades-contenedor .izquierda{
        order: 1;
        width: 100%;  
    }
    .novedades .novedades-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 40px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .novedades .novedades-contenedor .derecha{
        width: 100%;
    }
    .novedades .novedades-contenedor .derecha .text{
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .novedades .novedades-contenedor .derecha p{
        margin: 20px 0px;
        text-align: justify;
    }
    .novedades .novedades-contenedor .derecha .p-shadow-1{
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .novedades .novedades-contenedor .derecha .p-shadow-2{
        margin: 20px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    
    }
    .contacto .title::before{
        content: "";
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 300px;
        height: 3px;
        background: #111;
        transform: translateX(-50%);
    }
    .contacto .derecha form .campos{
        display: block;
    }
    .contacto .derecha form .campos .email{
        margin-left: 0px;
    }
}
@media(max-width:420px) { 
    .fondo{
        background: url('../img/background-index.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .triangulo{
        width: 100%;
        width: 350px;
        height: 30px;
        /*margin-right:  -150px;*/
        border-right: 100px solid transparent;
        border-top: 70px solid #242C42 ;
        z-index: 999; 
    }
    .navbar .menu-btn {
        display: block;
        z-index: 999;
        margin-top: -60px;
        margin-right: 50px;
        color: #fff;
    }
    .menu-btn i.active:before {
        content: "\f00d";
        color: #fff;
        margin-top: 0px;
    }
    .menu-btn .flecha.active:before {
        content: "\f078";
        color: #fff;
        position: relative;
        top: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .max-width {
        padding: 0px;
        width: 380px;
    }
    .navbar{
        background-color: #023878;
    }
    #selected{
        color: #fff;
        text-transform: uppercase;
        transform: scale(1.1);
    }
    .navbar.sticky .menu .submenu{
        background: #222;
    } 
    .navbar .menu {
        background: #111;
        height: 120vh;/* modificar aca la linea negra lateral que se ve*/
        left: -110%;
        padding-top: 80px;
        position: fixed;
        text-align: center;
        top: 0;
        transition: all .3s ease;
        width: 100%;
        z-index: 999;
        /*overflow: scroll;*/
    }
    .navbar .menu.active {
        left: 0
    }
    .navbar .menu li {
        width: 100%;        
    }
    .navbar .menu li .submenu{
        width: 100%;
    }
    .navbar .menu li a {
        display: inline-block;
        font-size: 20px;
        margin: 20px 0;
        transition: all .3s ease;
        padding: 8px 10px 8px 8px;
    }
    .navbar .menu li a:hover{
        color: #Fff;
        
    } 
    .nav .menu li .submenu .sub-menu{
        width: 100%;
        position: relative;
    }
    .navbar .menu li .submenu{
        position: fix;
        width: 100%;
        left: 0;
        color: #Fff;
        background: #222;
        transition: all .3s ease;
    }
    .navbar .menu li ul a:hover{
        color: #Fff;
        
    }
    .navbar .menu li ul li ul{
        display: block;
        position: relative;
        width: 100%;
        left:0;
    }
	.navbar .menu .sub-menu {
		display: block;
	}

	.navbar .menu .sub-menu a {
		display: block;
	}
	.navbar .menu .sub-menu .children {
		width: 100%;
		position: relative;
        background: #222;
	}
	.navbar .menu .sub-menu .children li a {
		margin-left:20px;
	}
    .navbar.sticky .logo2{ 
        margin-top: -30px;
        float: left;
        width: 150px;
        height: 80px;
        visibility: visible;
    }  
    .navbar .logo{
        width: 200px;
        height: 80px;
        margin-top: -75px;
    }
    .navbar .logo1{
        width: 150px;
        height: 70px;     
        transition: all 0.3s ease; 
        margin-left: 10px;
    }
    .footer-fondo-2{
        margin-top: 460px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer-cel.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-3{
        margin-top: 620px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer-cel.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-4{
        margin-top: 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1050px;
        background-image: url('../img/footer-cel.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-6 {
        margin-top: 1900px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1010px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .box-footer{
        width: 350px;
        margin-left: 80px;
        
    }
    .container-footer .box-footer h2, .box-footer-2 h2{
        width: 350px;
        color: #111;
        font-weight: 700;
        margin-left: -50px;
        
    }
    .container-footer .box-footer-3 h2{
        width: 300px;
        color: #111;
        font-weight: 700;
        margin-left: -50px;
    }
    section.inicio {
        padding: 0px 0;
    }
    .incio{
        width: 200px;
        height: 640px;
    }
    .inicio .max-width {
        width: 250px;
        margin: 0px 0px 0px 0px;
        
    }
    .inicio .inicio-contenedo{
        width: 10px;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 80px;
        margin-left: 10px;
    }
    .inicio .inicio-contenedor .derecha{
        margin-left: 50px;
        margin-top: 90px;
    }
    .inicio .inicio-contenedor .derecha img {
        margin-left: 20px;
        bottom: 10px;
        right: 0px;
        margin-top: -20px;
        margin-right: 0px;
        width: 350px;
        height: 300px;
        padding: 30px;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
        border: #7a7a7a;
        
    }
    .inicio .inicio-contenedor .izquierda{
        width: 200px;
        height: 200px;
        margin-top:80px;
        margin-left: -1px;
    }
    .inicio .acerca-contenedor .izquierda {
        -ms-flex: 100%;
        flex: 100%
    }
    .inicio .inicio-contenedor .text1 {
        width: 250px;
        font-size: 20px;
        color: rgb(233, 24, 30);
        text-align: left;
        letter-spacing:0px;
        word-spacing: 0px;
    }
    .inicio .inicio-contenedor .text2 {
        width: 250px;
        font-size: 20px;
        color: #E9181E;
        text-align: left;
        letter-spacing:0px;
        word-spacing: 0px;
    }
    .inicio .inicio-contenedor .text3 {
        margin-top: 10px;
       /* max-width: 2500px;*/
        width: 250px;
        font-weight: 300;
        color: rgb(110, 111, 116);
        text-align: left;
        letter-spacing:0px;
        word-spacing: 0px;
    }
    .inicio .inicio-contenedor a {
        font-size: 18px;
        padding: 10px 30px
    }
    h1{
        width: 250px;
        font-size: 20px;
        color: #E9181E; 
        letter-spacing: -2px;
        letter-spacing:0px;
        word-spacing: 0px;
    }
    .galeria-container{
        margin-top: 150px;
        width: 75%;
        margin-right: 0px;
    }
    .galeria-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        align-items: center;
        margin-left: -30px;
        margin-right: 0px;
    }
    hr{
        text-align: center;
        width: 300px;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 40px;     
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 200px;
        width: 100%;
        height: 400px;
        background-image: url('../img/wave.png');
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: -10px;
        width: 100%;
        height: 300px;
        background-image: url('../img/wave.png');
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }
    section {
        padding: 120px 0;
    }
    section .title:before {
        background: #111;
        bottom: 0;
        content: "";
        height: 3px;
        width: 300px;
        left: -90px;
        
    }
     section .title:after,section .title:before {
        left: 50%;
        position: absolute;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    section .title:after {
      /*  background: #fff;*/
        bottom: -12px;
        color: #E9181E;
        font-size: 20px;
        padding: 5px;
       
    }
    .aviso .aviso-contenedor{
        margin-top: -50px;
        width: 360px;
        padding: 10px 10px;
        margin-left: 10px;
        display: block;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .acerca{
        display: -ms-flexbox;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        height: 80vh;
        min-height: 500px;
    }
    .acerca .title{ 
        position: relative;
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .acerca .title::after{    
        content: "Quiénes somos ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .acerca .acerca-contenedor{
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
       
    }
    .acerca .acerca-contenedor .izquierda{
        display: none;
    }
    .acerca .acerca-contenedor .izquierda img{
        display: none;
    }
    .acerca .acerca-contenedor .derecha{
        width: 100%;
    }
    .acerca .acerca-contenedor .derecha .text{
        display: none;/*
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;*/
    }
    .acerca .acerca-contenedor .derecha p{
        margin: 10px 0px;
        text-align: justify;
        word-spacing: 4px;
        padding-bottom: 10px;
    }
    .acerca .acerca-contenedor .derecha .p-shadow-1{
        margin: 10px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 10px;
        font-weight: 500;

    }
    .acerca .acerca-contenedor .derecha .p-shadow-2{
        margin: 10px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    }
    .container-carousel{
        position: relative;
        width: 350px;
        height: 350px;
        /*height: 350px;*/
        background-color: #e0e0e0;
        box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .66);
        border-radius: 15px;
        overflow: hidden;
        margin-left:20px;   
    }
    .desinsectacion .desinsectacion-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 10px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desratizacion .desratizacion-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 10px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desinfeccion .desinfeccion-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 10px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .plagas .plagas-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 10px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .novedades .novedades-contenedor .izquierda img{
        max-height: 300px;
        max-width: 300px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 10px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }


}
@media(max-width:370px) {  
    .fondo{
        background: url('../img/background-index.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .triangulo{
        width: 100%;
        width: 300px;
        height: 30px;
        /*margin-right:  -150px;*/
        border-right: 100px solid transparent;
        border-top: 70px solid #242C42 ;
        z-index: 999; 
    }
    .navbar .menu-btn {
        display: block;
        z-index: 999;
        margin-top: -60px;
        margin-right: 30px;
        color: #fff;
    }
    .menu-btn i.active:before {
        content: "\f00d";
        color: #fff;
        margin-top: 0px;
    }
    .menu-btn .flecha.active:before {
        content: "\f078";
        color: #fff;
        position: relative;
        top: 5px;
        margin-left: 0px;
        margin-right: 0px;
    }
    .max-width {
        padding: 0px;
        width: 320px;
    }
    .navbar{
        background-color: #023878;
    }
    #selected{
        color: #fff;
        text-transform: uppercase;
        transform: scale(1.1);
    }
    .navbar.sticky .menu .submenu{
        background: #222;
    } 
    .navbar .menu {
        background: #111;
        height: 120vh;/* modificar aca la linea negra lateral que se ve*/
        left: -110%;
        padding-top: 80px;
        position: fixed;
        text-align: center;
        top: 0;
        transition: all .3s ease;
        width: 100%;
        z-index: 999;
    }
    .navbar .menu.active {
        left: 0
    }
    .navbar .menu li {
        width: 100%;        
    }
    .navbar .menu li .submenu{
        width: 100%;
    }
    .navbar .menu li a {
        display: inline-block;
        font-size: 20px;
        margin: 10px 0;
        transition: all .3s ease;
        padding: 8px 10px 8px 8px;
    }
    .navbar .menu li a:hover{
        color: #Fff;
        
    } 
    .nav .menu li .submenu .sub-menu{
        width: 100%;
        position: relative;
    }
    .navbar .menu li .submenu{
        position: fix;
        width: 100%;
        left: 0;
        color: #Fff;
        background: #222;
        transition: all .3s ease;
    }
    .navbar .menu li ul a:hover{
        color: #Fff;
        
    }
    .navbar .menu li ul li ul{
        display: block;
        position: relative;
        width: 100%;
        left:0;
    }
	.navbar .menu .sub-menu {
		display: block;
	}

	.navbar .menu .sub-menu a {
		display: block;
	}
	.navbar .menu .sub-menu .children {
		width: 100%;
		position: relative;
        background: #222;
	}
	.navbar .menu .sub-menu .children li a {
		margin-left:20px;
	}
    .navbar.sticky .logo2{ 
        margin-top: -30px;
        float: left;
        width: 150px;
        height: 80px;
        visibility: visible;
    }  
    .navbar .logo{
        width: 200px;
        height: 80px;
        margin-top: -75px;
    }
    .navbar .logo1{
        width: 150px;
        height: 70px;     
        transition: all 0.3s ease; 
        margin-left: 10px;
    }
    .footer-fondo{
        margin-top: 900px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer-cel.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-2{
        margin-top: 650px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer-cel.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-3{
        margin-top: 800px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/footer-cel.jpg");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-4, .footer-fondo-5{
        margin-top: 10px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 990px;
        background-image: url('../img/footer-cel.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-fondo-6 {
        margin-top: 2250px;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1000px;
        background-image: url('../img/footer.jpg');
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-size: cover;
        border: 10px;
    }
    .footer-hr-inferrior {
        width: 75%;
        height: 10px;
        background-color: #023878;
        border: 1px solid #023878;
        border-radius: 5px;
        margin-top: 30px;
        margin-left: 40px;
        box-shadow: 0px 1px 0px #fff;
    }
    .box-footer {
        width: 300px;
        display: flex;
        flex-direction: column;
        margin-left: 75px;
        margin-top: 50px;
    }
    .box-footer .footer-grid {
        font-size: 10px;
        width: 300px;
        margin-left: -60px;
    }
    .container-footer .box-footer .footer-grid {
        display: grid;
        grid-template-columns: 90px 180px;
    }
    .container-footer .box-footer .footer-grid p {
        font-family: 'Ubuntu', sans-serif;
        margin-top: 15px;
        font-size: 13px;
        font-weight: 300;
        color: #fff;
    }
    .container-footer .box-footer-2{
        margin-left: 40px;
    }
    .container-footer .box-footer h2{
        width: 300px;
        color: #111;
        font-size: 22px;
        font-weight: 700;
        margin-left: -60px;
        
    }
    .container-footer .box-footer-2 h2{
        width: 300px;
        color: #111;
        font-size: 22px;
        font-weight: 700;
        margin-left: -30px;
        
    }
    .container-footer .box-footer-2 .footer-grid-img{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
        align-items: center;
        margin-left: 0px;
        margin-right: 0px;
        height: 300px;
        
    }
    .container-footer .box-footer-2 .footer-grid-img .img-footer{
        margin-top: 120px;
        margin-left: 0px;
        
    }
    .container-footer .box-footer-3{
        width: 300px;
        margin-left: 10px;
    }
    .container-footer .box-footer-3 h2{
        width: 300px;
        color: #111;
        font-weight: 700;
        margin-left: 10px;
    }
    .container-footer .box-footer-3 .box-footer-grid-3 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
        align-items: center;
        margin-left: 10px;
        margin-right: 0px;
        width: 300px;
        height: 150px;
        
    }
    .box-copyright {
        margin-top: 10px;
        width: 100%;
        position: relative;
        color: #fff;
        height: 70px;
        text-align: center;
    }
    .box-copyright span{
        font-size: 12px;
    }
    .box-copyright span a {
        font-size: 12px;
        color: #fff;
        text-decoration: none;
       
    }
    section {
        padding: 10px 0;
    }
    .incio{
        width: 200px;
        height: 640px;
    }
    .inicio .max-width {
        width: 250px;
        margin: 0px 0px 0px 0px;
        
    }
    .inicio .inicio-contenedo{
        width: 10px;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 80px;
        margin-left: 10px;
    }
    .inicio .inicio-contenedor .derecha{
        margin-left: 30px;
        margin-top: 90px;
    }
    .inicio .inicio-contenedor .derecha img {
        margin-left: 0px;
        bottom: 10px;
        right: 0px;
        margin-right: 0px;
        width: 300px;
        height: 250px;
        padding: 30px;
        box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
        border: #7a7a7a;
        
    }
    .inicio .inicio-contenedor .izquierda{
        width: 200px;
        height: 200px;
        margin-top:80px;
        margin-left: -1px;
    }
    .inicio .acerca-contenedor .izquierda {
        -ms-flex: 100%;
        flex: 100%
    }
    .inicio .inicio-contenedor .text1 {
        width: 250px;
        font-size: 20px;
        color: rgb(233, 24, 30);
        text-align: left;
        letter-spacing:0px;
        word-spacing: 0px;
    }
    .inicio .inicio-contenedor .text2 {
        width: 250px;
        font-size: 20px;
        color: #E9181E;
        text-align: left;
        letter-spacing:0px;
        word-spacing: 0px;
    }
    .inicio .inicio-contenedor .text3 {
        margin-top: 10px;
       /* max-width: 2500px;*/
        width: 250px;
        font-weight: 300;
        color: rgb(110, 111, 116);
        text-align: left;
        letter-spacing:0px;
        word-spacing: 0px;
    }
    .inicio .inicio-contenedor a {
        font-size: 18px;
        padding: 10px 30px
    }
    h1{
        width: 250px;
        font-size: 20px;
        color: #E9181E; 
        letter-spacing: -2px;
        letter-spacing:0px;
        word-spacing: 0px;
    }
    .galeria-container{
        margin-top: 150px;
        width: 75%;
        margin-right: 0px;
    }
    .galeria-grid{
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
        align-items: center;
        margin-left: -40px;
        margin-right: 0px;
    }
    hr{
        text-align: center;
        width: 300px;
        height: 10px;
        background-color: #14729F;
        margin-top:50px;
        margin-left: 10px;     
    }
    .wave{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 500px;
        background-image: url('../img/wave.png');
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
    }
    .reflejo{
        position: absolute;
        z-index: -1;
        left: 0;
        bottom: -50px;
        width: 100%;
        height: 300px;
        background-image: url('../img/wave.png');
        filter: invert(19%) sepia(33%) saturate(3452%) hue-rotate(194deg) brightness(93%) contrast(107%);
        background-size: 1000px 400px;
        transform: scaleY(-1);
    }
    section {
        padding: 120px 0;
    }
    section .title:before {
        background: #111;
        bottom: 0;
        content: "";
        height: 3px;
        width: 300px;
        left: -90px;
        
    }
     section .title:after,section .title:before {
        left: 50%;
        position: absolute;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    section .title:after {
      /*  background: #fff;*/
        bottom: -12px;
        color: #E9181E;
        font-size: 20px;
        padding: 5px;
       
    }
    .aviso .aviso-contenedor{
        margin-top: -50px;
        width: 310px;
        padding: 10px 10px;
        margin-left: 10px;
        display: block;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
    }
    .acerca{
        display: -ms-flexbox;
        display: flex;
        font-family: 'Ubuntu', sans-serif;
        height: 80vh;
        min-height: 500px;
    }
    .acerca .title{ 
        position: relative;
        text-align: center;
        font-size: 40px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .acerca .title::after{    
        content: "Quiénes somos ";
        background-image: url('../img/titele-bacground.jpg');
        border-radius: 20px;
    }
    .acerca .acerca-contenedor{
        padding: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
       
    }
    .acerca .acerca-contenedor .izquierda{
        display: none;
    }
    .acerca .acerca-contenedor .izquierda img{
        display: none;
    }
    .acerca .acerca-contenedor .derecha{
        width: 100%;
    }
    .acerca .acerca-contenedor .derecha .text{
        display: none;/*
        font-size: 25px;
        font-weight: 600;
        margin-bottom: 10px;*/
    }
    .acerca .acerca-contenedor .derecha p{
        margin: 10px 0px;
        text-align: justify;
        word-spacing: 4px;
        padding-bottom: 10px;
    }
    .acerca .acerca-contenedor .derecha .p-shadow-1{
        margin: 10px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 10px;
        font-weight: 500;
    }
    .acerca .acerca-contenedor .derecha .p-shadow-2{
        margin: 10px 0px;
        text-align: justify;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);
        word-spacing: 4px;
        font-weight: 500;
    }
    .container-carousel{
        position: relative;
        width: 300px;
        height: 350px;
        /*height: 350px;*/
        background-color: #e0e0e0;
        box-shadow: 0 8px 8px 0 rgba(0, 0, 0, .66);
        border-radius: 15px;
        overflow: hidden;
        margin-left:10px;   
    }  
    .slider-section img{
        margin-top: -100px;
        margin-left: 60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        border: 2px solid #14729F;
    }
    .slider-section .text{
        font-size: 25px;
        font-weight: 500;
        margin: 10px 0 7px 45px;
    }
    .slider-section a {
        background: #14729F;
        border: 2px solid #14729F;
        border-radius: 6px;
        color: #fff;
        display: inline-block;
        font-size: 15px;
        margin-top: 0px;
        margin-left: 50px;
        padding: 12px 36px;
        transition: all .3s ease;
     
    }
    .desinsectacion .title{ 
        position: relative;
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .desinsectacion .desinsectacion-contenedor .izquierda img{
        max-height: 250px;
        max-width: 250px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 5px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desratizacion .title{ 
        position: relative;
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .desratizacion .desratizacion-contenedor .izquierda img{
        max-height: 250px;
        max-width: 250px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 5px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .desinfeccion .title{ 
        position: relative;
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .desinfeccion .desinfeccion-contenedor .izquierda img{
        max-height: 250px;
        max-width: 250px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 5px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .plagas .title{ 
        position: relative;
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .plagas .plagas-contenedor .izquierda img{
        max-height: 250px;
        max-width: 250px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 5px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
    .novedades .title{ 
        position: relative;
        text-align: center;
        font-size: 25px;
        font-weight: 500;
        margin-bottom: 60px;
        padding-bottom: 20px;
        font-family: 'Ubuntu', sans-serif ;
    }
    .novedades .novedades-contenedor .izquierda img{
        max-height: 260px;
        max-width: 260px;
        object-fit: cover;
        border-radius: 6px;
        margin-left: 5px;
        box-shadow: 0 4px 8px 0 lightblue, 0 6px 20px 0 rgba(0, 0, 0, .19);      
    }
}