@import url('https://fonts.googleapis.com/css?family=Poppins');
@keyframes Shimmer{
    0%{
        background-position: -468px 0
    }
    100%{
        background-position: 468px 0
    }
}

.animated-background {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: Shimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient( to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    height: 96px;
    position: relative;
}
.no-overflow{
    overflow: hidden;
}
.img-profil{
    height: 355px;
}
.parallax {
    /* The image used */
    

    /* Set a specific height */
    min-height: 500px; 

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.nav-link {
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7em;
    font-size: 14px;
    font-weight: 600;
}
.active{
    border-bottom: #a91f23 2px solid;

}
.card-footer{
    z-index: 1000;
}
.zoom {
  transition: transform .2s; /* Animation */
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}