*::-webkit-scrollbar{
    display:none !important;
}

.hero-section {
    height: 70vh;
    display: flex;
    color: black !important;
    background-image: url('../images/gallery/frontdoor.jpeg');
    background: white;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.hero-headline{
    color:black;
    font-size: 1.6em;
    text-transform: uppercase;
}
.hero-subtitle{
    color:black;
    opacity: 0.8;
    font-size: .9em !important;
}
.feature-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transform: scale(.8);
    box-shadow: inset 0 0 2px rgba(206, 201, 201, 0.986);
}
.breaker-50{
    height: 50px;
    width: 100%;
    background-color: transparent;
}

.gallery-img{
    width: 100%;
    height: 400px;
    overflow: hidden;
    object-fit: cover;
}

.logo{
    padding: 20px;
    background: white;
}

.card-header{
    background: transparent;
}

.card-img{
    height: 250px;
    overflow: hidden;
}

.card-img img{
    height: 100%;
    width: 100%;
}

.image-overlay{
    z-index: 1;
    padding: 10px;
    background: var(--primary-blue);
}


.slider-container {
    margin:0;
    overflow: hidden;
    background: white;
    border-radius: 10px;
    .slider {
        animation: slidein 20s linear infinite;
        white-space: nowrap;
        .logos {
            width: 100%;
            display: inline-block;
            margin: 5px 0;
            .logo {
                object-fit: contain;
                width: calc(100%/2);
                height: 100px;
                animation: fade-in 0.5s 
                    cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
            }
        }
    }
}



@media (max-width: 768px) {
    h1,h2{
        font-size: 30px !important;
    }
    .lead,
    p{
        font-size: 16px !important;
    }
    .blockquote{}
    .hero-section {
        display: flex;
        flex-direction: column;
        position: relative;
        gap: 20px;
        min-height: 100vh;
    }
    #hero-row{
        display: flex;
        flex-direction: column-reverse !important;
        align-items: center;
        gap: 50px;
    }
    .feature-img{
        width: 100%;
        transform: scale(.5);
        border: none;    
    }
    .hero-headline{
        font-size: 1.5em;;
    }
    .hero-subtitle{
        font-size: .8em;
    }
    .hero-description{
        font-size: .8em;
        text-align: justify;
    }
    /* .hero-description::first-letter{
        text-transform: uppercase;
        font-size: 4.2em;
        color: #ffb319 !important;
    } */
    #hero-row{
        display: flex;
        flex-direction: column-reverse !important;
        align-items: center;
    }
    .feature-img{
        transform:scale(1.1);
        width: 100%;
        border: none;
        box-shadow: none;
    }
    .gallery-img{
        width: 100%;
        height: 300px;
        overflow: hidden;
        object-fit: cover;
    }
}