/* FAQ Section  */
.Gallery{
    position: relative;
    min-height: 70vh;
    padding-top:150px;
    padding-bottom:100px;
    background-color: var(--clr-Main-Thrd);
    box-shadow: var(--clr-BoxShadowing);
    display: flex;
    align-items: center;
    flex-direction: column;
    
}

.Gallery .title{
    font-weight: bold;
    font-size: var(--Title-FontSize);
    text-align: center;
    color: var(--clr-Main);
    text-shadow: 1px 1px 10px #001;
}

.Gallery .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    position: relative;   
    gap: 1vw;
    padding: 1vw;
    box-shadow: var(--clr-BoxShadowing);
    background-color: var(--clr-Secondary);
    border-radius: 10px;
    width: 85vw;
}

.Gallery .container img{
    width: 20vw;
    height: 15vh;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--Text-Time-Transition);
}

.Gallery .container img:hover{
    box-shadow: var(--clr-BoxShadowing-Sec);
}


/* Media queries */

/********** @970px **********/

@media  screen and (max-width: 970px ) {
    
    .FAQ  .title{
        font-size: var(--Topic-FontSize);
    }
}
