*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.main_wrap{
    margin: 0px auto;
    position: relative;
    /* margin-top: -8px; */
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.animado{
    opacity: 0;
    transition: all 0.6s;
}

.mostrarArriba {
    animation: mostrarArriba 1.2s;
}



@keyframes mostrarArriba {
    0% {
        transform: translateY(350px);
        /* +60 mandamos hacia arriba (+); -60 mandamos hacia abajo (-) */
    }
    100% {
        transform: translateY(0);
    }
}
.title_significant{
    font-size: 40px;
    color:#F5F5DC;
    text-align: right;
    margin-top: 520px;
    padding-right: 80px;
    text-shadow: 1px 1px 2px #817e7e, 2px 2px 5px #363636, 3px 3px 8px #818181;
    letter-spacing: 5px;
    z-index: 2;
}

/* body { */
    /* background-image: url('../img/background/background_neweb_1.png'); 
    background-size: cover; 
    background-repeat: no-repeat; 
    
     background-position: 0% bottom;  */
    /* background-color: #00AFA3; */
/* } */

/* --------------BACKGROUND-main-------------------- */

.background_bot{
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0px;
    z-index: -1;
}
.background_bot img{
    display: block;
    width: 100%;
    height: 100%;
}
/* ------------------------------------------------------ */
.title-section{
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    font-weight: 900;
    /* text-shadow: 1px 1px 2px #137186; */
    margin-bottom: 40px;
    text-transform: uppercase;
 

}
/* ----------------------we are always------------------------------------- */
.wrap-container {
    position: relative;
    width: 80%;
    margin: 0px auto;
    padding-top: 0px;
    margin-top: 100px;
}

/* -------NEWSWAVE---------------- */
.position_news{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 560px;
    /* justify-content: center; */
}
.section-NewsWave{
    position: relative;
    width: 600px;
    /* padding-top: 100px;
    padding-bottom: 70px; */

    /* color: #F5F5DC; */
    color: white ;
    /* background-color: rgba(0, 0, 0, 0.7); */
}

.list-link{
   
    padding-left: 30px; /* Opcional: elimina el espacio de sangría */
    margin-left: 0;  /* Opcional: elimina el margen izquierdo */
    line-height: 1.7;
}

.linnk-element{
    color: inherit; /* Hereda el color del elemento padre */
}
  
/* -------message---------------- */
.message-fix{
    position: fixed;
    bottom: 56px;
    right: 40px;
    width: 60px;
    height: 50px;
    z-index: 200;
    cursor: pointer;
}

.message-fix img {
    width: 100%;
    height: 100%;
}

/* -----Footer----------------- */
.logo-footer{
    width: 120px;
    height: 70px;
}
.logo-footer img{
    width: 100%;
    height: 100%;
}
.container-footer{
    width: 100%;
    padding-bottom: 40px;
    z-index: 1;
    position: relative;
}
.menu-footer{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 14px;
    font-weight: 900;
    z-index: 2;
}
.flex-footer{
    display: flex;
    width: 80%;
    margin: 0px auto;
    justify-content: space-evenly;
}
.palm_3{
    position: absolute;
    opacity: 0.4;
    z-index: -1;
    top: -186px;
    right: -160px;
    transform: rotate(-30deg);
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/opensans/v26/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  }

  @media(max-width:1500px){
    .position_news{
        margin-bottom: 350px;
    }
  }

  @media(max-width:1290px){
 
    .flex-footer{
        flex-direction: column;
        align-items: center;
      }
}

@media(max-width:1100px){
    .menu-footer{
        flex-direction: column;
        align-items: center;
      }
      .menu-footer a{
          padding: 20px;
      }

      .position_news{
        margin-bottom: 80px;
    }
}

@media(max-width:800px){
    .section-NewsWave{
        width: 100%;
    }
}


