@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

.container{
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/*xxxl*/
@media (min-width:1536px) {
    .container{
        max-width: 1536px;
    }
}
/* xxl*/
@media (min-width:1280px){
    .container{
        max-width: 1280px;
    }
}
/*xl*/
@media (min-width:1024px){
    .container{
        max-width: 1024px;
    }
}
/*l*/
@media (min-width:768px){
    .container{
        max-width: 768px;
    }
}
/*m*/
@media (min-width:640px){
    .container{
        max-width: 640px;
    }
}
/*s*/
@media (min-width:475px){
    .container{
        max-width: 475px;
    }
}
/*xs*/
@media (max-width:474px){
    .container{
        min-width: 474px;
    }
}
/*start header */
header{
    background-color: #eee;
    padding: 10px 100px;
    width: 100%;
    position: fixed;
    z-index: 90;
}
@media (max-width:474px){
    header{
        min-width: 474px;
        padding: 0 0;
    }
}
header .container{
    display: flex;
    justify-content:space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
header .container nav ul li a{
    position: relative;
    display: inline-block;
    text-decoration: none !important;;
    font-weight: 600 !important;;
    font-size: 2.3em !important;;
    padding: 0px 0px 10px !important;;
    color: black;
}
header .container nav ul li a:hover{
    color:black;
}
ul{
    list-style: none;
    display: flex;
    gap: 30px;
}
#list{
    margin-bottom: 0rem;
}
header .container nav ul li a::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    border-radius: 4px;
    scale: 0 1;
    transform-origin:right ;
    transition: scale 0.2s;
    color: black;
    border-bottom: 3px solid black;
}
header .container nav ul li a:hover::before{
    scale: 1;
    transform-origin: left;
    color: black;
    border-bottom: 3px solid black;
}
.logo img{
border-radius: 50%;
height: 100px;
width: auto;
}
#menu{
    position: relative;
    appearance: none;
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    user-select: none;
    display: none;
    transition: 0.3s;
}
#menu span{
    display: block;
    width: 33px;
    height: 3px;
    background-color: black;
    border-radius: 6px;
    transform-origin: 0 0;
    transition: 0.4s;
    margin-bottom: 5px;
}
@media (max-width: 1024px) {
    .navigation{
        width: 100%;
        max-height: 0;
        overflow: hidden;
    }
    #list{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background-color:cadetblue;
        width: 50%;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: none;
        flex-wrap: nowrap;
    }
    #menu{
        display: block;
        align-items: center;
        cursor: pointer;
        transition: 0.3s ease;
    }
    header nav a{
        color: #eee;
    }
    #list.is-active{
        display: flex;
        transition: 0.3s ;
    }
    #menu.is-active span:nth-child(1){
        transform: translate(0px , -2px) rotate(45deg);
    }
    #menu.is-active span:nth-child(2){
        opacity: 0;
        transform: translateX(15px)
    }
    #menu.is-active span:nth-child(3){
        transform: translate(-3px , 3px) rotate(-45deg);
    }
    #menu.is-active span{
        background-color: red;
    }
}
/*end header */
/*stat galerie*/
.debut{
    background-image: url(../images/video-production.jpg);
    background-size: cover;
    background-position: center ;
    background-attachment: fixed;
    width: 100%;
    min-height: 70vh;
    position: relative;
}
@media (max-width:474px){
    .debut{
        padding: 0% 0%;
        min-width: 479px;
    }
}
.debut h1{
        position: absolute;
        font-size: 6.0rem;
        text-align: center;
        font-weight: 700;
        color: #fff;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
}
.container.gallery-container {
    background-color: #fff;
    color: #35373a;
    min-height: 100vh;
    /*padding: 30px 50px;*/
}

.gallery-container h1 {
    text-align: center;
    margin-top: 50px;
    font-family: 'Droid Sans', sans-serif;
    font-weight: bold;
}

.gallery-container p.page-description {
    text-align: center;
    margin: 25px auto;
    font-size: 18px;
    color: #999;
}

.tz-gallery {
    padding: 40px;
}

/* Override bootstrap column paddings */
.tz-gallery .row > div {
    padding: 2px;
}

.tz-gallery .lightbox img {
    width: 100%;
    border-radius: 0;
    position: relative;
}

.tz-gallery .lightbox:before {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -13px;
    margin-left: -13px;
    opacity: 0;
    color: #fff;
    font-size: 26px;
    font-family: 'Glyphicons Halflings';
    content: '\e003';
    pointer-events: none;
    z-index: 9000;
    transition: 0.4s;
}


.tz-gallery .lightbox:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(46, 132, 206, 0.7);
    content: '';
    transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
    opacity: 1;
}

.baguetteBox-button {
    background-color: transparent !important;
}

@media(max-width: 768px) {
    body {
        padding: 0;
    }
}