/* ----------------------------------gallery------------------------------- */
header {
    height: 200px;
    width: 100%;
    overflow: hidden;
    display: grid;
    place-content: center;
    z-index: -1;
    border: 1px solid black;
    overflow: hidden;
}
header video {
    position: absolute;
    object-fit: cover;
    height: 200px;
    width: calc(100% - 1px);
    filter: brightness(0.5);
}
header h1 {
    z-index: 1;
    font-size: 50px;
    color: var(--text-color-light);
    font-family: "Akronim", system-ui;
    font-weight: 300;
    font-style: normal;
    letter-spacing: 2px;
}
.path {
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    padding-left: 100px;
}
.path ul {
    display: flex;
    gap: 10px;
    list-style: none;
}
.path ul li a{
   color: var(--clr3); 
}
.path ul li i {
    transform: rotateZ(90deg);
    color: var(--clr3);
    font-size: 15px;
}
.path ul li i:hover {
    text-decoration: underline;
}

.galleryContainer {
    /* max-width: 1224px; */
    width: 90%;
    margin: auto;
    padding: 40px 0;
}
.gallery {
    display: flex;
    gap: 20px ;
}
.gallery > .images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.gallery > .images > img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    transition: var(--transition-speed);
}
.images img:hover {
    scale: 1.02;
    box-shadow: 1px 1px 15px black;
}
@media (max-width: 700px) {
    .path {
        padding-left: 50px;
    }
    .gallery {
        flex-direction: column;
    }
}