/* 001 - generales
   header-inicio
*/

html {
    box-sizing: border-box;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    scroll-behavior: smooth;
}
    
*,
*::after,
*::before {
   box-sizing: inherit;
}
    
body {
   margin: 0;
   padding: 0;
   overflow-x: hidden;
}



ul, h1, h2, h3, h4, h5, h6{
    list-style: none;
    padding: 0;
    margin: 0;
}

a{
    text-decoration: none;
}


/* 002 - header */

.menu{
    position: fixed;
    width: 100%;
    background-color: transparent;
    color: #043a92;
    height: 80px;
    font-weight: 600;
    z-index: 10000;
}

.menu__container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
}

.menu__links{
    height: 100%;
    transition: transform .5s;
    display: flex;
    justify-content: space-evenly;
}

.menu__item{
    list-style: none;
    position: relative;
    height: 100%;
    --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
    --transform: rotate(-90deg);
}

.menu__item:hover{
    --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    --transform: rotate(0);
}

.menu__link{
    color: #0f26ab;
    font-weight: 600;
    text-decoration: none;
    padding: 0 15px;
    display: flex;
    height: 100%;
    align-items: center;
    transition: 0.3s;
    font-size: 1.2rem;
}

.menu__link:hover{
    background-color: #03117c;
    color: #fff;
}


.menu__arrow{
    transform: var(--transform);
    transition: transform .3s;
    display: block;
    margin-left: 3px;
}

.menu__nesting{
    list-style: none;
    transition:clip-path .3s;
    clip-path: var(--clip);
    position: absolute;
    right: 0;
    bottom: 0;
    width: max-content;
    transform: translateY(100%);
    background-color: #000000cb;
}

.menu__link--inside{
    padding: 30px 100px 30px 20px;
}

.menu__link--inside:hover{
    background-color: #185E95;
}

.menu__hamburguer{
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
    display: none;
}

.menu__img{
    display: block;
    width: 36px;
}

@media (max-width: 925px){

    .menu__container{
        justify-content: space-between;
    }

    .menu{
        background-color: #000;
    }

    .menu__hamburguer{
        display: flex;
    }

    .menu__item{
        --clip:0;
        overflow:hidden ;
    }

    .menu__item--active{
        --transform: rotate(0);
        --background: #5e7094;
    }

    .menu__item--show{
        background-color: var(--background);
    }

    .menu__link{
        color: #fff;
    }

    .menu__links{
        position: fixed;
        max-width: 400px;
        width: 100%;
        top: 70px;
        bottom: 0;
        right: 0;
        background-color: #000;
        overflow-y: auto;
        display: grid;
        grid-auto-rows: max-content;
        transform: translateX(100%);
    }

    .menu__links--show{
        transform: unset;
        width: 100%;
    }

    .menu__link{
        padding: 25px 0;
        padding-left: 30px;
        height: auto;
    }

    .menu__arrow{
        margin-left: auto;
        margin-right: 20px;
    }

    .menu__nesting{
        display: grid;
        position: unset;
        width: 100%;
        transform: translateY(0);
        height: 0;
        transition: height .3s;
    }

    .menu__link--inside{
        width: 90%;
        margin-left: auto;
        border-left: 1px solid #798499;
    }
}

/*-----------------header incio------------------*/

.contenedor-bgimg{
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg-header-inicio.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

.header-flex{
    width: 100%;
    height: 100%;
    padding: 100px 15px 20px;
    display: flex;
    justify-content: center;
    background-color: line;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0.7875525210084033) 0%, rgba(255,255,255,0) 100%);
}

.header-item{
    width: 45%;
    min-width: 300px;
    gap: 50px;
}

.flex-ju-li{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ju-li-item{
    height: 300px;
    width: 100%;
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.ju-li-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.ju-li-h3{
    position: static;
    z-index: 800;
    color: #03117c;
    margin: 0;
    font-weight: 900;
}

.ju-li-text{
    position: static;
    z-index: 800;
    color: #fff;
    margin: 0;
    background-color: #0000007f;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 3px;
}

.header-article{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-article img{
    width: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.header-text,
.header-text-2{
    font-size: 2rem;
    font-weight: 500;
    padding: 0 10px;
    color: #03117c;
    margin: 15px auto;
}

.header-text-2{
    font-size: 1.2rem;
}

.header-text strong{
    font-weight: 900;
}

.header-btn{
    display: flex;
    justify-content: center; 
    gap: 100px;
}

.header-btn{
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    animation: scalar 2s infinite;
    transition: 0.4s;
    text-align: center;
}

@keyframes scalar{
    0%{
        transform: translateY(-2px);
    }
    50%{
        transform: translateY(2px);
    }
    100%{
        transform: translateY(-2px);
    }
}

.btn-whatsapp{
    background-color: #0b9f24;
    color: #fff;
    outline: 1px solid #fff;
}

.btn-productos{
    color: #fff;
    outline: 1px solid #fff;
    background-color: #03117c;
}

.btn-productos:hover{
    color: #fff;
    background-color: transparent;
    outline: 1px solid #fff;
}

.btn-whatsapp:hover{
    background-color: transparent;
    color: #0b9f24;
    outline: 1px solid #0b9f24;
}


.slider{
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    width: 100%;
    position: relative;
}
.mySlides{
    display: none;
}
.mySlides img{
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 0 15px 2px #000 ;
}
.prev,
.next{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6 ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    border:  solid #fff 2px;
}
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}
.prev:hover,
.next:hover{
    background-color: rgba(0, 0, 0, 0.8);
}
.elements{
    text-align: center;
}
.quadrate{
    cursor: pointer;
    height: 4px;
    width: 50px;
    margin: 0 2px;
    background-color: #717171;
    display: inline-block;
    transition: background-color 0.6s ease;
    border-radius: 2px;
}
.active, .quadrate:hover{
    background-color: #fff;
}
@media screen and (max-width:900px) {
    .container{
        width: 100%;
    }
}
@media screen and (max-width:500px) {
    .container{
        width: 100%;
    }
    .prev,
    .next{
        padding: 5px;
    }
}

@media screen and (max-width: 980px){

    .contenedor-bgimg{
        height: auto;
    }

    .header-flex{
        flex-direction: column;
        align-items: center;
    }

    .header-btn{
        display: flex;
        justify-content: center; 
        gap: 30px;
        font-size: 1rem;
    }
    
    .header-item{
        width: 90%
    }

    .slider{
        margin-top: 50px;
    }
}

/*------------------------incio---------------------*/

.bg-inicio{
    width: 100%;
    background-image: url(../img/bg-inicio.webp);
    background-attachment:scroll;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.inicio-flex{
    width: 100%;
    padding: 100px 30px 20px;
    display: flex;
}

.inicio-item{
    width: 20%;
    padding: 10px;
}

.item-h1{
    width: 40%;
    color: #fff;
}

.item-h1 h1{    
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px #686868;
}

.inicio-item-p{
    color: #03117c;
    font-size: 1.5rem;
}

.inicio-article{
    background-color: #f8f8f8;
    padding: 60px 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-radius: 25px;
    box-shadow: 0 2px 5px 1px #68686889;
}

.inicio-article .fa-solid{
    font-size: 3rem;
    color: #03117c;
    padding: 20px;
    border-radius: 50%;
    box-shadow: 0 2px 2px 1px #68686889;
    background-color: #f5f5f5;
    position: absolute;
    top: -50px;
}

.inicio-h2{
    color: #03117c;
}

.inicio-text{
    color: #858585;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 0;
}

.inicio-contacto-flex{
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:  0 20px 20px;
}

.inicio-contacto-item img{
    width: 450px;
}

.inicio-contacto-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.inicio-contacto-parrafo{
    color: #030660;
    font-size: 1.1rem;
    font-weight: 500;

}

.inicio-contacto-btn{
    padding: 15px 25px;
    background: linear-gradient(0deg, rgba(2,80,245,1) 0%, rgba(24,55,121,1) 51%, rgba(23,93,221,1) 100%);
    font-size: 1.5rem;
    color: #fff;
    font-weight: 700;
    border-radius: 50px;
    outline: 3px solid #030660;
    text-align: center;
    animation: escalar 2s ease infinite;
}

@keyframes escalar{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.2);
    }
    100%{
        transform: scale(1);
    }
}


@media screen and (max-width: 900px) {
    
    .inicio-flex{
        flex-direction: column;
        align-items: center;
    }

    .inicio-item{
        width: 100%;
        margin-top: 50px;
    }

    .inicio-contacto-flex{
        flex-direction: column-reverse;
        align-items: center;
        margin-top: 40px;
    }

    .inicio-contacto-item {
        margin-top: 50px;
    }


    .inicio-contacto-item img{
        width: 300px;
    }
    
}

/*008 - inicio main testimonias */

.testimonial_container{
    padding: 50px 20px 30px;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    background-color: #004789;
    display: flex;
    flex-direction: column;

  }
  
  .testimonial_container h2{
    color: #fff;
    text-align: center;
    padding: 10px 20px 40px;
  }
  
  .testimonial_slider{
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
  }
  
  .testimonial_item{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    color: #fff;
  }

  .testimonial_item img{
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 30px auto;
  }
  
  .testimonial_item p{
    width: 70%;
    text-align: center;
  }
  

/* 009 - footer */ 

footer{
    background-color: #f3f3f3;
    padding: 35px 20px 10px;
}

.footer-container{
    width: 100%;
    display: flex; 
    justify-content: center;   
}

.footer-item{
    width: 30%;
    display: flex;
    justify-content: center;
}

.item-redes{
    flex-direction: column;
    align-items: center;
}

.item-redes p{
    color: #03117c;
    font-weight: 900;
    font-size: 1.3rem;
}

.footer-redes{
    border: 1px solid #03117c;
    border-radius: 10px;
    padding: 15px 5px;
}

.privacy{
    display: inline-block;
    margin-top: 15px;
    color: #03117c;
    font-weight: 600;
}

.footer-item img{
    height: 230px;
}

.item-articles{
    display: flex;
    justify-content: space-evenly;
}

.footer-article{
    padding: 5px 15px;
}

.footer-h4 a{
    color: #03117c;
    font-weight: 900;
    font-size: 1.3rem;
    text-decoration: none;
} 

.footer-ul li a{
    color: #03117c;
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    text-decoration: none;
    transition: 1s;
}

.footer-ul li a:hover{
    color: #000;
}

.copy{
    text-align: center;
    color: #03117c;
    font-size: 1.2rem;
    font-weight: 600;
}

@media screen and (max-width: 800px){
    .footer-container{
        flex-direction: column;
        width: 90%;
        align-items: center;
    }

    .footer-item{
        width: 100%;
        margin-top: 20px;
    }

    .item-articles{
        flex-direction: column;
    }
}

/*nosotros*/

.nosotros-contenedor{
    padding: 120px 25px 50px;
}

.nosotos-flex{
    width: 100%;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nosotros-item{
    width: 45%;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nosotros-h1{
    width: 100%;
    text-align: center;
    background-color: #030660;
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    padding: 40px 10px;
}

.nosotros-text{
    font-size: 1.2rem;
    font-weight: 500;
    color: #686868;
    line-height: 1.5;
}

.nosotros-img img{
    width: 90%;
    border-radius: 25px;
}


@media screen and (max-width: 700px) {
    .nosotos-flex{
        flex-direction: column;
    }

    .nosotros-item{
        width: 100%;
    }
}

/*---------------------contacto-------------------------*/

.landing-header{
    position: relative;
    width: 100%;
    padding: 80px 10px 60px;
    background-image: url(../img/contacto-header.webp);
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media screen and (max-width:800px){
    .landing-header{
        height: auto;
        background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(3,18,119,1) 100%);
    }
}

.landing-header-flex{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.landing-header-item{
    width: 45%;
    gap: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.landing-header-item p{
    font-size: 1.6rem;
    font-weight: 600;
    color: #030660;
}

.landing-header-item p span{
    color: #0ca5c4;
}

.landing-header-item h1{
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    align-self: start;
}

.landing-header-item img{
    width: 90%;
}

.contac-header-item img{
    width: 75%;
}

@media screen and (max-width: 800px){
    .landing-header-flex{
        flex-direction: column-reverse;
    }

    .landing-header-item{
        width: 90%;
    }
}


.intro-contacto{
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 40px 25px;
    line-height: 1.5;
    color: #898989;
}

.contacto-form{
    padding: 45px 20px;
    background-color: #001a2b;
}

.contac-form-flex{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.form-section{
    width: 50%;
    min-width: 330px;
    padding: 20px;
    background-color: #1d2b3a;
    border-radius: 25px;
}

.form-style{
    display: flex; 
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 15px;
    margin-top: 20px;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.box-input,
.box-textarea{
    position: relative;
    width: 100%;
}

.textarea{
    height: 8rem;
}

.box-input .input-style,
.box-textarea .textarea{
    width: 100%;
    padding: 15px 10px;
    border: 1px solid #0ca5c4;
    background-color: transparent;
    border-radius: 5px;
    outline: none;
    color: #fff;
    font-size: 1rem;
    resize: none;
}

.box-input label,
.box-textarea label{
    position: absolute;
    left: 0;
    padding: 10px;
    pointer-events: none;
    font-size: 1rem;
    color: #ffffff55;
    transition: 0.5s;
}

.box-input .input-style:valid ~ label,
.box-input .input-style:focus ~ label,
.box-textarea .input-style:focus ~ label{
    color: #1d2b3a;
    transform: translateX(10px) translateY(-5px);
    font-size: 0.8rem; 
    padding: 0 10px; 
    background-color: #0ca5c4;
    letter-spacing: 2px;
    border-radius: 3px;
}

.option-form{
    color: #0ca5c4;
}

legend{
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    color: #fff;
}

.contacto-section{
    width: 40%;
    min-width: 320px;
}

.contacto-info{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
    align-items: flex-start;
}

.contacto-info-item{
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.contacto-info-item i{
    color: #fff;
    font-size: 1.5rem;
    padding: 10px;
}

.contacto-datos-container{
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 0;
}

.contacto-datos-titulo{
    font-weight: 600;
    letter-spacing: 2px;
}

.box-submit input{
    background-color: transparent;
    padding: 12px 30px;
    color: #0ca5c4;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 600;
}

.validacion-input{
    position: absolute;
    color: #fff;
    bottom: -25px;
    left: 20px;
    display: none;
}

.validacion-active{
    display: block;
}

.honeypot-container {
    margin-bottom: 16px;
}

.label-honey{
    color: #2232467d;
}

#honeypot{
    opacity: 0.01;

}

/*-------------servicios---------------------*/

.servicios-flex{
    width: 100%;
    padding: 50px 25px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    overflow: hidden;
}

.servicios-article,
.servicios-img {
    width: 500%;
    max-width: 600px;
    height: 100%;
}

.servicios-article{
    padding: 15px;
    background-color: #030660;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 25px 0 0 25px;
}

.article-revers{
    border-radius: 0 25px 25px 0;
}

.revers{
    flex-direction: row-reverse;
}

.btn-servicos{
    margin-top: 30px;
    background-color: #7ec24d;
    padding: 15px 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    transition: 0.5s;
    width: max-content;
    border-radius: 8px;
}

.btn-servicos:hover{
    transform: translateY(-20px);
}

.servicios-img {
    border-radius: 0 25px 25px 0;
}

.servicios-img img{
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 0 25px 25px 0;
}

.revers-img img{
    border-radius: 25px 0 0 25px;
}

@media screen and (max-width: 960px) {
    
    .servicios-flex{
        flex-direction: column;
        height: auto;
        max-width: none;
        padding: 25px 10px 25px;
    }

    .servicios-article,
    .servicios-img{
        width: 95%;
    }

    .servicios-article{
        border-radius: 25px 25px 0 0;
    }

    .servicios-img{
        border-radius: 0 0 25px 25px;
    }

    .servicios-img img{
        border-radius: 0 0 25px 25px;
    }

    .servicios-ul{
        padding-bottom: 30px;
    }

}



/*-------------------------------------blog--------------------------*/


/*--------------------blog-complit-----------------------*/

.blog-complit{
    width: 100%;
    padding: 120px 20px 20px 60px;
}

.blog-flex{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.blog-principal{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 30px;
    justify-content: center;
}

.blog-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px 15px;
    border-radius: 25px;
    border-bottom: 2px solid #0ca5c4;
    background-color: #f5f5f5;
}

.blog-figure{
    width: 100%;
    height: 300px;
    margin: 0;
}

.blog-figure img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 4px 4px 8px 1px #36363689;
}

.blog-h3{
    font-size: 1.2rem;
    margin: 5px auto;
    color: #004789;
    font-weight: 800;
    text-align: center;
}

.blog-info{
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 5px;
}

.blog-reusmen{
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: justify;
    padding: 0 10px;
    text-indent: 1rem;
    color: #848484;
}

.blog-liga{
    text-decoration: none;
    position: relative;
    background-color: #004789;
    padding: 10px 30px;
    width: 90%;
    color: #e2e2e2;
    transform-style: preserve-3d;
    transition: ease-in-out 0.8s;
    border-radius: 16px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.blog-liga:hover{
    transform: rotateX(360deg);

}

.blog-liga-div{
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    transform-style: preserve-3d;
    transform: perspective(25px) translateZ(12px);
}

.blog-liga::before{
    content: "";
    position: absolute;
    top: 4px;
    left: 6px;
    right: 6px;
    bottom: 4px;
    border: 2px solid #989898;
    border-radius: 15px;
    transform-style: preserve-3d;
    transform: perspective(300px) translateZ(9px);
}

.blog-liga::after{
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 2px solid #989898;
    border-radius: 15px;
    transform-style: preserve-3d;
    transform: perspective(300px) translateZ(-12px);
}


/*--------------------blog-aside-----------------------*/

.blog-lateral{
    display: flex;
    margin-top: 50px;
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 65px;
    width: 25%;
}

.blog-lateral::before{
    content: "";
    position: absolute;
    outline: 1px solid #0ca5c4;
    height: 100%;
    left: -15px;
}

.ultimas-noticias-h2, 
.proximos-articulos-h2{
    color: #fff;
    background-color: #031277;
    padding: 25px 10px;
    border-radius: 0 50px 50px 0;
}

.ultimas-noticias-ul,
.proximos-articulosul{
    color: #6b6b6b;
    line-height: 1.5;
}

.aside-figure{
    width: 90%;
    align-self: center;
}

.aside-figure img{
    width: 100%;
}

.engagement{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engagement-text{
    font-size: 1.5rem;
    line-height: 1.2;
    color: #004789;
    font-weight: 900;
}

.engagement-redes{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.engagement-redes-img{
    width: 70px;
    height: 70px;
}

.link-articulo:hover span{
color: #0053a2;
}

.link-articulo:hover i{
    color: #0053a2;
}

@media screen and (max-width: 650px) {
    
    .blog-flex{
        flex-direction: column;
    }

    .blog-principal,
    .blog-lateral{
        width: 90%;
    }

    .blog-complit{
        width: 100%;
        padding: 120px 10px 10px 10px;
    }
    .landing-header-item .withe{
        color: #fff;
    }
}

/*aviso de privacidad*/

.aviso{
    padding: 120px 20px 50px;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aviso-h1{
    font-size: 3rem;
    color: #004789;
    text-align: center;
}

.aviso-text{
    font-size: 1.2rem;
    color: #686868;
    line-height: 1.5;
    width: 60%;
    margin-top: 50px;
}

.logos_privacidad{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.logos_privacidad img{
    display: block;
    width: 15%;
    min-width: 150px;
    flex-grow: 1;
    margin: 10px;
    object-fit: contain;
}