*{
    margin: 0;
    padding: 0;
    list-style-type: none;
}
.banniere{
    width: 100%;
    height: 100vh;
    position: relative;
    top: 0;
    overflow: hidden;
}

.slider{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    
}
#slideImg{
    width: 100%;
    height: 100%;
    background-size: cover;
    animation: zoom 3s linear infinite;
}
@keyframes zoom{
    0%{
        transform: scale(1.3);
    }
    15%{
        transform: scale(1);
    }
    85%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.3);
    }
}
.overlays{
    width: 100%;
    height: 100vh;
    background-color: rgba(223, 17, 86, 0);
    position: absolute;
    top: 0;
}
.navbar{
    width: 85%;
    display: flex;
    align-items: center;
    margin: 35px auto;
}
.logo img{
    width: 120px;
    cursor: pointer;
}
.icon-menu{
    flex: 1;
    align-items: center;
    text-align: right;
}
.icon-menu i{
    width: 20px;
    margin-left: 40px;
    cursor: pointer;
    color: #fff;
}
.content{
    width: 100%;
    margin: 160px auto 0;
    text-align: center;
    color: #fff;
}
.content h1{
    font-size: 60px;
    margin: 20px auto 100px;
    font-weight: 100;
    line-height: 25px;
    
}
.content p{
    width: 80%;
    margin: 20px auto 100px;
    font-weight: 100;
    line-height: 25px;
}
.btn-secondary{
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 0 10px;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.5s;
}

.btn-secondary:hover{
   background: transparent;
   border: 1px solid #fff;
   color: #fff;
}
