.body 
{
background-image: url('https://firebasestorage.googleapis.com/v0/b/webtakab.appspot.com/o/Parallax-BG-1.png?alt=media&token=5d2d1b8a-34e7-4e32-8956-6d2a34bbefbe');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: bottom;
background-size: cover;
background-repeat: no-repeat;
}

.container-cover-politica{
    width: 100%;
    height: 500px;
    position: relative;
    margin-top: 80px;
    background-image: url("https://firebasestorage.googleapis.com/v0/b/webtakab.appspot.com/o/office_call.jpg?alt=media&token=8484aca3-2264-4c51-935c-45d32dd5fcd1");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}


.container-cover-politica:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(85, 121, 162, 0.8);
    position: absolute;
    top: 0;
    left: 0;
}

.container-cover-info-politica{
    max-width: 800px;
    height: 500px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.container-cover-info-politica h1{
    font-size: 60px;
    font-weight: 500;
    color: white;
    margin-top: 20px;
}

.container-cover-info-politica p{
    color: white;
    font-size: 20px;
    font-weight: 300px;
}


/* Contenido de la Pagina */
/* Contenido 1 */
.politica-1{
    width: 100%;
    padding: 30px;
    position: relative;
    /*background: #19212B;*/
    /*background-image: url(../images/computer2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;*/
}

.content-politica1{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.content-politica-item1 b{
    color: #303030
}

.content-politica-item1 i{
    color: #303030
}

.content-politica-item1 h1{
    text-align: center;
    color: #303030;
    margin-bottom: 10px;
}

.content-politica-item1 p{
    text-align: justify;
    color: #303030;
}



/* Contenido 2 */
.politica-2{
    width: 100%;
    padding: 30px;
    position: relative;
    background: #00244C;
    /*background-image: url(../images/computer2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;*/
}

.content-politica2{
    width: 80%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/*.content-politica-item2{
    width: 400px;
    text-align: center;
    margin: 20px;
    
}*/

.content-politica-item2 b{
    color: #ffffff
}

.content-politica-item2 i{
    color: #ffffff
}

.content-politica-item2 h1{
    text-align: center;
    color: #ffffff;
    margin-bottom: 10px;
}

.content-politica-item2 p{
    text-align: justify;
    color: #ffffff;
}

.content-politica-item2 img{
    width: 100%;
    margin-top: 5px;
    text-align: right;
}


/* Form Responsivo*/
#Iframe-Liason-Sheet {
    max-width: 760px;
    max-height: 1200px;
    overflow: hidden;
    }

    /* inner wrapper: make responsive */
    .responsive-wrapper {
    position: relative;
    height: 0; /* gets height from padding-bottom setting */
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    }

    .responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: none;
    }

    /* padding-bottom = h/w as a % */
    .responsive-wrapper-wxh-760x1200 {
    padding-bottom: 363.6364%;
    }

    .iframe-border {
    border: 1px solid rgb(255, 255, 255);
    }
    
    .center-block-horiz {
    margin-left: auto !important;
    margin-right: auto !important;
    }


    /*Boton de ir arriba*/

#button-up{
    width: 60px;
    height: 60px;
    background: #001832;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    border: 4px solid transparent;
    transition: all 300ms ease;
    transform: scale(0);
}

#button-up:hover{
    transform: scale(1.1);
    border-color: rgba(0,0,0,0.1);
}