.marcas-logos {
    height: 450px;
}

.gallery {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    /* max-height: 28vw; */
    overflow: hidden;
}

.gallery:before,
.gallery:after {
    display: flex;
    content: "";
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 3;
    color: white;
    font-size: 2em;
}

.gallery:before {
    content: "<";
    color: #466265;
    padding-right: 1em;
    left: 0;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); */
}

.gallery:after {
    content: ">";
    color: #466265;
    padding-left: 3em;
    right: 0;
    /* background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); */
}

.gallery__stream {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
}

.gallery__item {
    position: absolute;
    width: 18em;
    height: 100%;
    transition: 1s all ease;
    border-radius: 67px;
    /* -webkit-box-shadow: 5px 2px 19px -13px #000000; 
    box-shadow: 5px 2px 19px -13px #000000; */
}

.gallery__item:nth-child(1) {
    left: 20%;
    z-index: 4;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    transform: translateX(-100%) scale(.5);
    opacity: .0;
}

.gallery__item:nth-child(2) {
    left: 30%;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    transform: translateX(-50%) scale(.7);
    opacity: .8;
}

.gallery__item:nth-child(3) {
    width: 342px;
    height: 397px;

    left: 50%;
    /* padding-left: 10px; */
    /* padding-right: 10px; */
    z-index: 4;
    border: none;
    border-radius: 67px;
    padding-top: 40px;
    transform: translateX(-50%) scale(1);
    background-color: #FFFFFF;
    border-radius: 5px;
}

.gallery__item:nth-child(3) > .card .card-image {
    transition: .5s linear;
    filter: grayscale(0%) !important;
}

.gallery__item:nth-child(3) > .lista-servicos {
    opacity: 1 !important;
    transition: .5s all ease;
}

.gallery__item:nth-child(3) > .card:hover > .link {
    transform: translateY(0%) !important;
}

.gallery__item:nth-child(4) {
    left: 70%;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    transform: translateX(-50%) scale(.7);
    opacity: .8;
}

.gallery__item:nth-child(5) {
    left: 80%;
    z-index: 4;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    transform: scale(.5);
    opacity: .0;
}

.gallery__item:nth-child(n+6) {
    left: 100%;
    z-index: 4;
    transform: scale(.5);
}

@media (max-width:675px) {
    .gallery:before {
        padding-left: 1.5em;
    }
    .gallery:after {
        padding-right: 1.5em;
    }
}

/* Controllers */

.gallery__prev,
.gallery__next {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 50%;
    height: 100%;
    transform: translateX(-50%) translateY(-50%) scale(.8);
    cursor: pointer;
    color: #466265;
}

.gallery__prev {
    left: 0;
}

.gallery__next {
    left: 100%;
}

@media only screen and (max-width: 767px){

    .gallery:before {
        content: "";
    }
    
    .gallery:after {
        content: "";
    }

}