
.banner{
    height: 270px;
    padding: 0 10%;
    background: var(--primary-color);
    padding-top: 5%;
    display: table;
    width: 100%;  
    min-height: 30vh;
}

.banner .opacity{
    background-image: linear-gradient(var(--primary-color-opacity-60), var(--primary-text-color-inverse-opacity-60));
    width: 100%;
    height: 100%;
}

.banner{
    top: 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: 50% 50px;
    height: 100%;
}

.banner{
    position: relative;
    background-attachment: fixed !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    display: flex;
    width: 100%;
    -webkit-transition: background-image 0.2s ease !important;
    transition: background-image 0.2s ease !important;
}

.banner .opacity > div, #cart .opacity > div{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner .opacity  .titulo h2{
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: rgb(0, 0, 0) 1px 1px 2px;
    position: relative;
    font-size: 40px;
    line-height: 1.1;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #ffffff;
    font-family: var( --secondary-font-family);
}

.banner .opacity .titulo p{
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.banner .opacity  .titulo a{
    font-weight: 700;
    color: var( --primary-color);
    font-family: var( --secondary-font-family);
    text-transform: uppercase;
    padding:15px 30px;
}
.banner .opacity  .titulo a:hover{
    color: white;
}

.banner{
    border-bottom-color: var(--page-color);
    border-bottom-width: 5px;
    border-bottom-style: solid;
}


@media (max-width: 992px){
    .banner{
         height: 200px;
         max-height: 200px;
    }
     
 }
 
 
@media screen and (max-width: 767px) {

    .banner .opacity .titulo h2,
    #cart .opacity .titulo h2{
        font-size: 40px;
    }
    .banner .opacity  .titulo .description,
    #cart .opacity  .titulo .description{
        font-size: 25px !important;
    }
    .banner .opacity  .titulo .description::before,
    #cart .opacity  .titulo .description::before{
        display: none;
    }
}
@media screen and (max-width: 425px) {

    .banner .opacity .titulo h2,
    #cart .opacity .titulo h2{
        font-size: 30px;
    }
    .banner .opacity  .titulo .description,
    #cart .opacity  .titulo .description{
        font-size: 20px !important;
    }
}

.section-gallery .album-images h4 {

    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);
    padding: 0 5px;
    text-align: center;
}

.section-gallery .album-images .img-image {
    text-align: center;

    display: inline-block;
    min-width: 120px;
}

.parallax {
    min-width: 100%;
    min-height: 200%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.parallax img {
    width: 100%;
    object-position: bottom;
    object-fit: cover;
    filter: brightness(50%);

}