* .bg_dark{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
*{    
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
* a{
    text-decoration: none;
}
* p{
    margin: 0px;
    margin-block-end :0px;
}
h1, h2, h3, h4, h5, h6{
}
.container_marge{
    max-width: 1250px;
    margin: auto;
    width: 100%;
}

* .display_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#site-footer{
	display: none;
}

/* ANIMATIONS */
.animation_upDonw{
animation: upDown 2s ease-in-out infinite alternate;
}
.animation_downUp{
animation: downUp 2s ease-in-out infinite alternate;
}

  @keyframes upDown {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-20px);
    }
  }
  @keyframes downUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(20px);
    }
  }

.animated_show ul li{
	animation-name: fadeInRight;
	animation-duration: 1.25s;
}
 