/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
 
::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: #5f5f5f; 
}

.Banner {
    text-align: center;
    background-color: #2F2E2E;
    color: white;
    text-transform: uppercase;
    padding: 40px 10px 30px 10px;
    text-decoration: underline;
}
.Sub-Section-Img {
    outline: 10px solid #2f2e2e;
    background-color: white;
}

/* Medium devices and larger devices (landscape tablets, 768px and up)  */
@media only screen and (min-width: 768px) {
    /* .Banner {
        margin: 10px 0px;
    } */
}

/* Mobile devices (425px and down)  */
@media only screen and (max-width: 425px) {
    .Banner {
        margin-top: 10px;
    }
}

