
/* header */

.header {
    background-color: #ffffff;
    color: white;
    /* padding: 10px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    width: 100px; /* Ancho del logo */
    height: auto; /* Altura automática para mantener la proporción */
  }
  
  .ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    font-weight: bold;
    
  }
  
  .dropdown {
    margin-right: 20px; /* Espacio entre elementos del menú */
  }
  
  .dropdown a, .dropdown-content a {
    display: block;
    color: #7E7E7E;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  .dropdown a:hover, .dropdown:hover .dropdown-content {
    background-color: #ffffff;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }

/*Body*/
body{

    font-family: Raleway, Helvetica Neue, Helvetica, Arial, sans-serif;
    margin: 0;
}
/*Parte 1*/
.body_privacidad_div1 {
    width: 100vw;
    height: 40vh;
}

.body_privacidad_div1-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.body_privacidad_div1-content {
    position: absolute;
    top: 17%;
    font-size: 40px;
    display: flex;
    align-items: center;
    left: 10%;
    color: #EFF1FF;
}

.body_privacidad_div1-content-icon {
    border: 4px solid;
    border-radius: 40px;
    padding: 15px;
}

.body_privacidad_div1-content-p {
    padding-left: 15px;
}
/*Parte 2*/
.body_privacidad_div2 {
    padding-left: 25%;
    padding-right: 25%;
    text-align: justify;
    padding-bottom: 15%;
    color: #6F6F6F;
}
.body_privacidad_div2-p1 {
    text-align: right;
}
.body_privacidad_div2-p1-a {
    text-decoration: none;
    text-decoration: none;
    color: #222D57;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0px;
}
.body_privacidad_div2-p2 {
    color: #222D57;
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 0px;
}

/*Hover*/
.body_privacidad_div3:hover {
   cursor:pointer;
}
/*Media*/
@media only screen and (min-width:360px) and (max-width:768px) {
    .body_privacidad_div1-img {
        filter: brightness(0.6);
    }

    .body_privacidad_div2 {
        padding-left: 15%;
        padding-right: 15%;
    }
}


/* footer */

.footer_float {
    display: flex;
    position: fixed;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 50px;
    background: #EFF1FF;
    align-items: center;
    justify-content: space-evenly;
}

.footer_float_img {
    width: 100px;
    height: 50px;
}

.footer_float_img2 {
    width: 50px;
    height: 50px;
}

.footer_float_text {
    display: block;
    padding: 10px;
    color: #7E7E7E;
}

.footer_float_a {
    text-decoration: none;
}



footer {
    background-color: #222D57;
    padding-bottom: 55px;
}

.footer_content {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding-left: 50px;
}

.footer_content_div_p {
    border-bottom: 1px solid #EFF1FF;
    color: #EFF1FF;
    max-width: 60%;
}

.footer_content_div_p {
    list-style: none;
    overflow: hidden;
}

.footer_content_div_ul {
    list-style: none;
    overflow: hidden;
    line-height: 20px;
    padding: 0px;
}

li {
    display: list-item;
    text-align: -webkit-match-parent;
    unicode-bidi: isolate;
}

.footer_content_div_a {
    color: #EFF1FF;
    text-decoration: none;
}

.footer_content_div {
    width: 15%;
    min-width: max-content;
}