*{
    padding: 0;
    margin: 0;
    font-family: 'Calibri-Light';
    color: #232323;
    box-sizing: border-box;
}
html{
    width: 100%;
}
/*/////////////FONTS//////////////////////////////////////////////////
/////////////FONTS//////////////////////////////////////////////////
/////////////FONTS//////////////////////////////////////////////////*/


@font-face
{
    font-family: 'impact';
    src: url('..//fonts/impact.eot');
    src: url('..//fonts/impact.eot?#iefix') format('eot'),
        url('..//fonts/impact.woff') format('woff'),
        url('..//fonts/impact.ttf') format('truetype'),
        url('..//fonts/impact.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face
{
    font-family: 'Calibri';
    src: url('..//fonts/Calibri-Regular.eot');
    src: url('..//fonts/Calibri-Regular.eot?#iefix') format('eot'),
        url('..//fonts/Calibri-Regular.woff') format('woff'),
        url('..//fonts/Calibri-Regular.ttf') format('truetype'),
        url('..//fonts/Calibri-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face
{
    font-family: 'Calibri-Light';
    src: url('..//fonts/Calibri-Light.eot');
    src: url('..//fonts/Calibri-Light.eot?#iefix') format('eot'),
        url('..//fonts/Calibri-Light.woff') format('woff'),
        url('..//fonts/Calibri-Light.ttf') format('truetype'),
        url('..//fonts/Calibri-Light.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face
{
    font-family: 'Calibri-Bold';
    src: url('..//fonts/Calibri-Bold.eot');
    src: url('..//fonts/Calibri-Bold.eot?#iefix') format('eot'),
        url('..//fonts/Calibri-Bold.woff') format('woff'),
        url('..//fonts/Calibri-Bold.ttf') format('truetype'),
        url('..//fonts/Calibri-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {

    @font-face {
        font-family: 'impact';
        src: url('..//fonts/impact.svg') format('svg');
    }
    @font-face {
        font-family: 'Calibri';
        src: url('..//fonts/Calibri-Regular.svg') format('svg');
    }
    @font-face {
        font-family: 'Calibri-Light';
        src: url('..//fonts/Calibri-Light.svg') format('svg');
    }
    @font-face {
        font-family: 'Calibri-Bold';
        src: url('..//fonts/Calibri-Bold-Italic.svg') format('svg');
    }
}


/*/////////////DEFAULT//////////////////////////////////////////////////
/////////////DEFAULT//////////////////////////////////////////////////
/////////////DEFAULT//////////////////////////////////////////////////*/

.grey{
    color: #333333;
}
.texto{
    padding: 10px 0;
    font-size: 18px;
    color: #333333;
    line-height: 23px;
}
.subtitulo{
    font-family: 'impact';
    padding: 10px 0;
    color: #666666;
    font-size: 25px;
    text-transform: uppercase;
}
.mostaza{
    color: #003699;
    font-family: 'impact';
}
.titulosCuerpo{
    font-family: 'impact';
    font-size: 32px;
    color: #666666;
    padding-bottom: 30px;
    text-transform: uppercase;
}
body{
    display: flex;
    position: relative;
    flex-flow: row nowrap;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    font-family: "Calibri-Light";
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-image: url(../img/imagen-1.jpg);
}
#fondoBG{
    position: absolute;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
}
#logo-politica{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 100%;
}
#logo-politica > img{
    width: 60%;
}
section{
    z-index: 80;
    width: 100%;
    max-width: 50%;
    padding: 80px 80px;
    background-color:#f7f7f7;
}
section p{
    font-size: 18px;
}

@media screen and (max-width:1100px){
    #logo-politica{
        display: none;
    }
    section{
        max-width: 100%;
        padding: 40px 20px;
    }
}