html {
    box-sizing: border-box;
    font-size: 62.5%;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 1.6rem;
    font-family: 'Open Sans', sans-serif;
    line-height: 2;
}

h1,
h2 {
    font-family: 'Oswald', sans-serif;
}

h3,
h4 {
    font-family: 'Fira Sans Extra Condensed', sans-serif;
}

h1 {
    font-size: 4.8rem;
}

h2 {
    font-size: 3.9rem;
}

h3 {
    font-size: 3.1rem;
    font-weight: 300;
    text-transform: capitalize;
}
h3::after{
    content: "";
    border-bottom: #F6D015 solid .2rem;
    display: block;
    width: 10%;
    margin: 0 auto;
}
h4 {
    font-size: 2.5rem;
}

a {
    text-decoration: none;
    /* font-family: 'Oswald', sans-serif; */
}

img {
    max-width: 100%;
}
p{
    margin: 0;
}

/*Utilidades*/
.centrar-texto {
    text-align: center;
}

.btn {
    cursor: pointer;
    color: white;
    font-size: 18px;
    padding: .5rem 2rem;
    display: inline-block;
    text-align: center;
}
.btn-blanco{
    background-color: white;
    color: #333333;
}
.btn-blanco:hover{
    background-color: #f1f1f1;
}
.btn-borde-amarillo{
    border: #F6D015 solid .2rem;
    color: #F6D015;
}

.btn-borde-amarillo:hover{
    border: #f1ca02 solid .2rem;
    background-color: #f1ca02;
    color: white;
}
.btn-amarillo{
    background-color: #F6D015;
}
.btn-amarillo:hover{
    background-color: #f1ca02;
}
.nomargin {
    margin: 0;
}

.contenedor {
    max-width: 120rem;
    width: 95%;
    margin: 0 auto;
}
.seccion {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
/* ************ */
/* header */
/* ********** */
.site-header {
    background:linear-gradient(rgba(255,255,255,0.1),rgba(255,255,255,0.1)),url(../img/banner-opc2.jpg)center fixed;
    background-size: cover;
    min-height: 90vh;
}
/* ************ */
/* barra-datos */
/* ********** */
.barra-datos{
    background-color: #333333;
    color: #a8a8a8;
}
.barra-datos .contenedor{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}
.datos{
    display: flex;
}
.redes{
    display: flex;
}
.redes a{
    display: flex;
    align-items: center;
    color: white;
    margin-right: 1rem;
}
@media (max-width: 660px) {
    .datos{
        flex-direction: column;
    }
    .redes{
        flex-direction: column;
    }
    .redes a{
        display: inline;
    }
}
.redes a p{
    margin: 0;
    padding: .5rem;
}
.barra-datos i{
    color: #F6D015;
    padding-right: .5rem;
}
.barra-datos i:hover{
    color: #d1b31a;
}
.barra-datos p:first-child{
    padding: 0 1rem 0 0;
}
.barra-datos p{
    padding: 0 1rem;
}
@media (max-width: 768px) {
    .barra-datos p{
        padding: 0;
    }
    
}
.barra-datos p:hover{
    color: #d4d3d3;
}
.mt-2{
    margin-top: 2rem;
}
/* ************ */
/* barra-menu */
/* ********** */
.barra-menu{
    background-color: #f8f8f8;
    z-index: 1000;
    position: fixed; /* Make it stick/fixed */
    width: 100%; /* Full width */
    transition: top 0.3s; /* Transition effect when sliding down (and up) */
}
.barra-menu .contenedor{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}
.barra-menu .contenedor a{
    display: flex;
    align-items: center;
}
.barra-menu .contenedor a img{
    width: 200px;
}
.menu-movil,
.menu-burger {
    display: none;
}
.cont-movil{
    position: relative;
}
.barra-movil h2{
    display: none;
}
@media (max-width: 800px) { 
    .nomargin{
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    .borrar-respon{
        display: none;
    }
    .barra-menu{
        display: none;
    }
    .barra-movil{
        background-color: #f8f8f8;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;
    }
    .barra-movil h2{
        display: flex;
        color: #333333;
    }
    .barra-movil h2 span{
        color: #F6D015;
        font-weight: 700;
    }
    .menu-burger{
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all .5s ease-in-out;
    }
    .menu-movil {
        display: flex;
        flex-direction: column;
        text-align: center;
        background-color: #f8f8f8;
        position: absolute;
        border-left: #f1ca02 solid .5rem;
        left: -100%;
        width: 95%;
    }
    .menu-movil a{
        color: #151515;
        padding: 10px 0;
        /* border-bottom: #da3612 solid 1px; */
    }
    .menu-movil a:last-child{
        background-color: #fff;
        color: #151515;
      /* border: #761f07 solid 2px; */
    }
    
    .menu-movil a:hover{
        background-color: #f1ca02;
        /* border-left: #761f07 solid 6px; */
        border-bottom: none;
        color: white;
    }
    /* botón burger */
    .menu-burger a{
        padding: 0;
    }
    .btn-burger{
        width: 3rem;
        height: .2rem;
        background-color: #f1ca02;
        border-radius: .5rem;
        transition: all .5s ease-in-out;
    }
    .btn-burger::before, .btn-burger::after{
        content: '';
        position: absolute;
        width: 3rem;
        height: .2rem;
        background-color: #f1ca02;
        border-radius: .5rem;
        transition: all .5s ease-in-out;
    }
    .btn-burger::before{
        transform: translateY(-10px);
    }
    .btn-burger::after{
        transform: translateY(10px);
    }
    /* animación de close */
    .menu-burger.open .btn-burger{
        transform: translateX(-50px);
        background: transparent;
    }
    .menu-burger.open .btn-burger::before{
        transform: rotate(45deg) translate(35px, -35px);
    }
    .menu-burger.open .btn-burger::after {
        transform: rotate(-45deg) translate(35px, 35px);
    }
}
.barra-menu h2{
    color: #333333;
}
.barra-menu h2 span{
    color: #F6D015;
    font-weight: 700;
}
.menu{
    display: none;
}
.menu a{
    color: #333333;
    margin-left: 1rem;
}
.menu a.Activo{
    color: #f1ca02;
    border-bottom: #f1ca02 solid .2rem;
}
.menu a:hover{
    color: #F6D015;
}
@media (min-width: 800px) {
    .menu{
        display: flex;
    }
}
/* ************ */
/* slogan */
/* ********** */
.site-slogan{
    background-color: #F6D015;
    color: whitesmoke;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    margin: -5rem auto 0 auto;
}
@media (max-width: 660px) {
    .site-slogan{
        flex-direction: column;
        padding: 2rem;
    }
}
@media (max-width: 600px) {
    .site-slogan{
        text-align: center;
        padding: 1rem;
    }
}
/* ************ */
/* Services */
/* ********** */
.site-servicios{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.site-servicios h3{
    margin-bottom: 2rem;
}
.site-servicios h3::after{
    width: 50%;
}
.site-servicios a{
    color: #F6D015;
}
.cont-servicios{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    /* grid-template-rows: repeat(3,1fr); */
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    /* min-height: 50rem; */
}
.servicio{
    display: flex;
    padding: 1rem;
    height: 100%;
}
.servicio h4{
    line-height: 1.2;
}
@media (max-width: 768px) {
    .cont-servicios{
        grid-template-columns: repeat(2,1fr);
    }
}
@media (max-width: 660px) {
    .cont-servicios{
        grid-template-columns: 1fr;
    }
    .tit-servicios{
        line-height: 1.2;
    }
}
.icon-serv{
    color: #F6D015;
    font-size: 3rem;
}
.servicio:hover{
    background-color: #f1f1f1;
}
.info-serv{
    margin-left: 1rem;
}
.servicio h4{
    text-transform: capitalize;
}
/* ************ */
/* About */
/* ********** */
@media (min-width: 1440px) {
    .site-nosotros{
        min-height: 60vh;
    }
    .cont-about{
        min-height: 60vh;
    }
}
.cont-about{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
    .cont-about{
        grid-template-columns: repeat(1, 1fr);
    }
    .experience{
        min-height: 60vh;
    }
}
/* ************ */
/* izq-About */
/* ********** */
.history{
    background-color: #f1f1f1;
    padding: 1rem 6rem;
}
.val-about{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    font-size: 1.3rem;
}
@media (max-width: 500px) {
    .val-about{
        grid-template-columns: 1fr;
        gap: 0;
    }
    .inf-val{
        padding: 1rem 0;
    }
}
@media (max-width: 660px) {
    .history{
        padding: 1rem;
        padding-bottom: 5rem;
    }
}
.inf-val{
    display: flex;
    padding: 1rem;
}
.txt-val{
    padding: 1rem;
}
/* Der-About */
.experience{
    background-color: #F6D015;
    color: white;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    align-items: center;
    padding: 2rem;
    line-height: normal;
}
.exp i{
    font-size: 3rem;
}
.exp h4{
    font-size: 6rem;
}
.exp p{
    text-transform: uppercase;
}
/* ************ */
/* projects */
/* ********** */
.site-proyectos{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cont-projects{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1rem;
    margin: 2rem 0;
}
@media (max-width: 660px) {
    .cont-projects{
        grid-template-columns: 1fr;
    } 
}
.project{
    text-align: center;
    padding: 1rem;
}
.card-projects h4{
    margin: 0;
}
.site-proyectos h3::after{
    width: 50%;
}
/* ************ */
/* ph-banner */
/* ********** */
.ph-banner{
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../img/banner.jpg) top fixed;
    background-size: cover;
    min-height: 50vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
}
.ph-banner h3{
    width: 50%;
}
@media (max-width: 768px) {
    .ph-banner h3{
        width: 80%;
    }
    .ph-banner h3::after{
        width: 20%;
    }
}
/* ************ */
/* customers */
/* ********** */
.site-vial{
    text-align: center;
    background-color: #f1f1f1;
    padding: 1rem 0;
}
.cont-vial{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 1rem;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
    max-width: 95%;
    padding: 2rem;
}
.cont-vial h4{
    font-weight: 500;
    text-transform: capitalize;
}
@media (max-width: 768px) {
    .cont-vial{
        grid-template-columns: repeat(3,1fr);
    }
}
@media (max-width: 500px) {
    .cont-vial{
        grid-template-columns: repeat(2,1fr);
    }
}
/* *************/
/* Galeria*/
/* ***********/
.cont-galeria{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 2rem;
    width: 90%; */
    /* margin: 0 auto; */
}
.cont-galeria a{
    margin: 0;
}
.cont-galeria a img{
    object-fit: cover;
}
@media (max-width: 660px) {
    .cont-galeria{
        grid-template-columns: repeat(2, 1fr);
    } 
}
/* ************ */
/* contantanos */
/* ********** */
.cont-contact{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 60%;
    margin: 0 auto;
    background-color: #f1f1f1;
}

.img-contact{
    padding: 2rem;
    display: flex;
    justify-content: flex-end;
}
.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    background-color: #333333;
}
@media (max-width: 768px) {
    .form{
        width: 100%;
    }
}
.form-contact{
    display: flex;
    flex-direction: column;
    padding: 2rem;
}
.form-contact input{
    margin: 1rem 0;
    padding: 1rem;
}
.form-contact textarea{
   height: 20rem;
   margin: 1rem 0;
   padding: 1rem;
}
.form-contact input[type="submit"]{
    width: 30%;
    border: none;
}
/* ************ */
/* footer*/
/* ********** */
.site-footer{
    background-color: #151515;
    color: white;
}
.cont-footer{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
}
@media (max-width: 660px) {
    .cont-footer{
        grid-template-columns: 1fr;
    padding:1rem;
    }
}
.footer-emp span{
    color: #f1ca02;
}
.footer-contact{
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}
@media (min-width: 900) {
    .footer-contact{
        margin-top: 2rem;
    }  
}
.footer-contact a{
    width: 50%;
    display: flex;
    align-items: center;
    color: #f1ca02;
    margin: 1rem 0;
}
.footer-contact a p{
    color: white;
    margin-left: 1rem;
}
.footer-contact a p:hover{
    color: #f1ca02;
    border-bottom: #f1ca02 solid .1rem;
}
/* ************ */
/* Desarrollado*/
/* ********** */
.desarrollado{
    background-color: black;
    color: white;
    text-align: center;
    padding: .5rem;
}
.desarrollado a{
    color: #f1ca02;
    border-bottom: #f1ca02 solid .2rem;
}
/* **************** */
/* Página Servicios*/
/* ************** */
.header-aux{
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(../img/banner2\ -\ copia.jpg) fixed center;
    background-size: cover;
    min-height: 60vh;
}
@media (min-width: 768px) {   
    .tit-servicios h3{
        margin-bottom: 5rem;
    }
}
@media (min-width: 768px) {
    .servicios-aux{
        margin-bottom: 5rem;
    }
}
/* **************** */
/* Página Proyectos*/
/* ************** */

.site-galeria-proyectos{
    display: flex;
    flex-direction: column;
}
@media (min-width: 769px) {
    .site-galeria-proyectos{
        display: grid;
        grid-template-columns: 3fr 10fr;
    }  
}
.nav-proyectos a{
    background-color: #f1f1f1;
    color: #151515;
    border: #d4d3d3 solid .1rem;
    justify-content: center;
    text-align: center;
    padding: .5rem;
    display: flex;
}
.nav-proyectos{
    display: none;
}

@media (min-width: 769px) {
    .nav-proyectos{
        display: block;
    }
    .nav-proy-respon{
        display: none;
    }
}
.nav-proyectos a:hover{
    background-color: #d4d3d3;
}
a.btnActivo{
    border: #f1ca02 solid .1rem;
    color: white;
    width: 110%;
    clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0% 100%);
    background-color: #f1ca02;
}
a.btnActivo:hover{
    border: #f1ca02 solid .1rem;
    background-color: #f1ca02;
}
.galeria-proyectos{
    margin-bottom: 2rem;
}
.card-proyectos{
    padding: 0 2rem;
}
.card-proyectos h3::after{
    margin: 0;
}
.barra-proy-respon{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #F6D015;
    color: white;
}
.barra-proy-respon h4{
    margin: 0;
}
.btn-ansmovil{
    font-size: 3rem;
}
.bar-proy-respon a{
    display: flex;
    flex-direction: column;
    padding: 1rem 3rem;
    background-color: #f1f1f1;
    color: black;
}
.bar-proy-respon{
    margin-bottom: 2rem;
    display: none;
}
.nav-proy-respon{
    margin-bottom: 3rem;
}
.slider{
    width: 100%;
}
#up{
    display: none;
}
.ocultar{
    display: none;
}
a.activoRespon{
    background-color: #dfdede;
}
footer{
    background-color: #151515;
}
.footer-pag{
    display: grid;
    color: white;
    gap: 1rem;
    align-items: center;
    padding: 2rem;
}
@media (min-width: 900px) {
    .footer-pag{
        grid-template-columns: 3fr 2fr;
        gap: 2rem;
    }
}
.contact-pag a{
    margin: 0;
}
.secundaria{
    box-shadow: .1rem .1rem 1rem #151515;
}
/*  */
/*pagina productos */
/*  */
.productos{
    margin: 5rem auto;
}
.carousel__contenedor{
    position: relative;
}
.carousel__anterior, .carousel__siguiente{
    position: absolute;
    display: block;
    width: 3rem;
    height: 3rem;
    border: none;
    top: calc(50% - 20px);
    cursor: pointer;
    line-height: 3rem;
    text-align: center;
    font-size: 3rem;
    background:none;
    color: #d1b31a;
    /* opacity: 20%; */
    z-index: 1000;
}
.carousel__anterior{
    left: -2rem;
}
.carousel__siguiente{
    right: -2rem;
}
.carousel__lista{
    overflow: hidden;
}
.carousel__indicadores .glider-dot{
    display: block;
    width: 2rem;
    height: .4rem;
    background-color: #a8a8a8;
    /* opacity: .2; */
    border-radius: 0;
}
.carousel__indicadores .glider-dot:hover{
    transition:  all .3s ease-in;
    background-color: #000;
}
.carousel__indicadores .glider-dot.active{
    background-color: #000;
}
.prel{
    position: relative;
    text-align: center;
}
.hover-img{
    position: absolute;
    top:0;
    min-height:100%;
    width: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8));
    transform: scale(0);
    color: white;
    transition: all .4s ease-in;
    padding: 2rem;
    line-height: normal;
    text-align: center;
}
.prel:hover .hover-img{
    transform: scale(1);
}
.card-productos:hover{
    border: none;
}
.info-productos{
    padding: 1rem;
}
.info-productos h4{
    margin: 0;
    text-transform: capitalize;
    line-height: normal;
}
/**/
/*CÓDIGO REALIZADO POR EL DESARROLLADOR Y DISEÑADOR DIEGO PÉREZ (KING CODE)*/
/**/

/**/
/*ABOUT*/
/**/
.container p {
    font-size: 20px;
}
.inicio {
    display: flex;
    justify-content: flex-end;
    margin: 30px;
}
.inicio a {
    text-decoration: none;
    color: #f1ca02;
    font-size: 20px;
    transition: .2s ease-in-out;
    letter-spacing: 1px;
}
.inicio a:hover {
    color: #f1c902cb;
    text-decoration: none;
}
.señal {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.señal2 {
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%);
}


.fondo {
    background: #f1f1f1;
    color: #111;
}
.cont-acerca p {
    text-align: justify;
    font-size: 15px;
}
.acerca1{
    padding: 2rem;
    grid-column: 1/2;
    grid-row: 2/3;
}
@media (min-width: 768px) {
    .acerca1{
        grid-column: 1/2;
        grid-row: 1/2;
        padding: 5rem;
    }    
}
.acerca1 h2 {
    padding: 10px 0;
}
.acerca1 .text-ce {
    display: flex;
    justify-content: center;
    align-items: center;
}
.acerca2 {
    display: flex;
    padding: 2rem;
}
@media (min-width: 768px) {
    .acerca2 {
        padding: 5rem;
    }
}
.acerca2 h2 {
    text-align: left;
    margin: 0;
}
.acerca2 p {
    text-align: justify;
}
 .tercero, .cuarto {
    padding: 2rem;
   
}
.fa-hard-hat, .fa-briefcase, .fa-eye, .fa-suitcase {
    color: #f1ca02;
    margin-right: 5px;
}

.cuarto {
    grid-column: 1/2;
}
.tercero {
    grid-column: 3/4;
}
.tercero h2, .cuarto h2{
    margin-top: 0;
}
.quinto {
    grid-column: 2/3;
    grid-row: 1/2;
    display: flex;
    justify-content: center;
    align-items: center;
}
.quinto img {
    min-height: 100%;
    object-fit: cover;
}
.elejir {
    padding: 20px;
    padding-bottom: 50px;
}
.elejir h2 {
    padding-bottom: 10px;
}

.ajuste {
    padding: 50px;
}

@media screen and (max-width: 1020px) {
    .fondo {
        min-height: 600px;
        padding: 20px;
    }
}
@media screen and (max-width: 900px) {
    .acerca2 {
        display: flex;
        flex-direction: column;
    }
}
@media screen and (max-width: 756px) {
    .fondo {
        min-height: 800px;
        padding: 0px;
    }
}
@media screen and (max-width: 568px) {
    .fondo {
       clip-path: none;
    }
}
/* @media screen and (max-width: 568px) {
    .fondo {
        min-height: 1200px;
        padding: 50px 20px;
    }
} */
/**/
/*POLÍTICA SST*/
/**/
.politica1 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1000px;
    padding: 50px;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, 0.788);
    visibility: hidden;
    opacity: 0;
}
.politica1.active {
    visibility: visible;
    opacity: 1;
    transition: .4s ease-in-out;
    transition-delay: 0.2s;
}
.politica1 h2 {
    font-size: 30px;
    color: #000000;
    padding-bottom: 10px;
}
.politica1 p {
    font-size: 16px;
    color: #000000;
}
.politica1 .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 40px;
}

@media screen and (max-width: 1078px) {
    .politica1 {
        width: 800px;
        padding: 50px;
    }
    .politica1 h2 {
        font-size: 30px;
    }
    .politica1 p {
        font-size: 16px;
    }
}

@media screen and (max-width: 871px) {
    .politica1 {
        width: 600px;
        height: 400px;
    }
    .politica1 h2 {
        font-size: 30px;
    }
    .politica1 p {
        font-size: 13px;
    }
}

@media screen and (max-width: 671px) {
    .politica1 {
        width: 400px;
       height: 500px;
    }
    .politica1 h2 {
        font-size: 16px;
    }
    .politica1 p {
        font-size: 12px;
    }
    
}


/**/
/*POLÍTICA DE SEGURIDAD*/
/**/
.politica2 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1000px;
    padding: 50px;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, 0.788);
    visibility: hidden;
    opacity: 0;
}
.politica2.active {
    visibility: visible;
    opacity: 1;
    transition: .4s ease-in-out;
    transition-delay: 0.2s;
}
.politica2 h2 {
    font-size: 30px;
    color: #000000;
    padding-bottom: 10px;
}
.politica2 p {
    font-size: 16px;
    color: #000000;
}
.politica2 .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 40px;
}

@media screen and (max-width: 1085px) {
    .politica2 {
        width: 800px;
        padding: 50px;
    }
    .politica2 h2 {
        font-size: 30px;
    }
    .politica2 p {
        font-size: 16px;
    }
}

@media screen and (max-width: 871px) {
    .politica2 {
        width: 600px;
        height: 400px;
    }
    .politica2 h2 {
        font-size: 30px;
    }
    .politica2 p {
        font-size: 13px;
    }
}

@media screen and (max-width: 671px) {
    .politica2 {
        width: 400px;
       height: 430px;
    }
    .politica2 h2 {
        font-size: 16px;
    }
    .politica2 p {
        font-size: 12px;
    }
    
}

/**/
/* POLÍTICA DE PREVENCIÓN */
/**/
.politica3 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1300px;
    padding: 50px;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, 0.788);
    visibility: hidden;
    opacity: 0;
}
.politica3.active {
    visibility: visible;
    opacity: 1;
    transition: .4s ease-in-out;
    transition-delay: 0.2s;
}
.politica3 h2 {
    font-size: 30px;
    color: #000000;
    padding-bottom: 10px;
}
.politica3 p {
    font-size: 16px;
    color: #000000;
}
.politica3 .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 40px;
}

@media screen and (max-width: 1326px) {
    .politica3 {
        width: 1100px;
        padding: 50px;
    }
    .politica3 h2 {
        font-size: 25px;
    }
    .politica3 p {
        font-size: 14px;
    }
}
@media screen and (max-width: 1085px) {
    .politica3 {
        width: 900px;
        padding: 50px;
    }
    .politica3 h2 {
        font-size: 25px;
    }
    .politica3 p {
        font-size: 14px;
    }
}

@media screen and (max-width: 900px) {
    .politica3 {
        width: 600px;
        height: 500px;
    }
    .politica3 h2 {
        font-size: 20px;
    }
    .politica3 p {
        font-size: 12px;
    }
}

@media screen and (max-width: 617px) {
    .politica3 {
        width: 400px;
       height: 600px;
    }
    .politica3 h2 {
        font-size: 12px;
    }
    .politica3 p {
        font-size: 11px;
    }
    
    
}
/**/
.enlacess {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 30px;
}
.enlacess a{
    margin: 0 40px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #f1ca02;
    text-align: center;
    padding: 10px;
}
.enlacess a:hover {
    color: #ffffffb4;
}
.marginpdf{
    margin: 1rem 0;
}

@media screen and (max-width: 798px) {
    .enlacess {
        display: flex;
        flex-direction: column;
    }
    .enlacess a {
        margin-bottom: 20px;
    }
}

@media (max-width: 660px) {
    .menu {
        top: 155px;
        width: 90%;
    }
}
@media (max-width: 338px) {
    .menu {
        top: 225px;
    }
}
@media (max-width: 335px) {
    .barra-datos{
        display: none;
    }
    .menu {
        top: 90px;
    }
}
.mar-bot{
    margin-bottom: 5rem;
}

.minp{
    font-size: 1.2rem;
}
.btn-descarga{
    background-color: #ebe9e9;
    display: flex;
    align-items: center;
    border: none;
    width: 90%;
    color: #333333;
}
.btn-descarga:hover{
    background-color: #a8a8a8;
}
.btn-descarga img{
    width: 10%;
    margin-right: 1rem;
}
@media (min-width: 768px) {
    .btn-descarga{
        width: 25%;
    }
}
.tabs{
    margin-top: 2rem;
}
.tabs button{
    border: none;
}
.tabs button.actual{
    background-color: #ebc717;
}
.noseccion {
    display: none;
}
.mostrar-seccion {
    display: block!important;
}
.mostrar-seccion p{
    margin: 0;
}
.body-aux{
    background-color: #151515;
}
.pag-contacto{
    margin-top: 3rem;
}