.about-bg{
    width: 100%;
    height: 500px;

    background-image: url("../assets/images/entrada-templo.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    margin-top: -6.2rem;
}

.about-bg a{
    text-decoration: none;
    color: var(--text-white-for-bg-red);
    font-weight: bold;
    font-family: "Montserrat", Arial, sans-serif;
    text-shadow: 3px 1px 8px var(--bg-black-primary);

    padding: 15px 20px;
    border-radius: 10px;
    background-color: var(--text-red-hover);
    border: 1px solid var(--text-white-for-bg-red);
}

.about-bg a:hover{
    color: var(--text-white-for-bg-red-hover);
    background-color: var(--bg-btn-red-hover);

}

.about{
    max-width: 650px;
    text-align: center;
    padding-bottom: 30px;
}

.div-divider{
    display: flex;
    justify-content: space-around;
    align-items: center;

    width: 100%;

    margin-top: 50px;
    margin-bottom: 50px;
}

.div-divider img{
    width: 30rem;
}


.video-img-container{
    width: 100%;
}


.video{
    display: flex;
    justify-content: center;
}

.video iframe{
    width: 64rem;
    height: 36rem;
}

.img-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.many-img{
    width: 90vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}

.many-img img{
    width: 100%;
}

.many-img img:hover{
    transform: scale(1.5);
    cursor: pointer;
}

@media (max-width: 768px){
    .many-img img:hover{
        transform: scale(2.5);
    }
}

@media (max-width: 426px){
    .video iframe{
        width: 100%;
        height: 32vh;
    }

    .many-img{
        display: block;
    }

    .many-img img:hover{
        transform: scale(1);
        cursor: inherit;
    }

}