
/* colors */
:root {
    --oil-white: #ffffff;
    --oil-blue: #0069A7;
    --oil-blue-high: #003B71;
    --oil-white-sc: #DAE2EB;
    --oil-black: #23282A;
    --oil-blues: #263E4A;
}

.oil_banner_prox {
    background-image: url('https://images.unsplash.com/photo-1696059928249-f036c4d54338?q=80&w=2095&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;    
    flex-direction: column; 
    overflow: hidden;
}

.oil_banner_prox .oil_content_prox {
    text-align: center;
}

.oil_banner_prox .oil_content_prox .oil_brand {
    width: fit-content;
    position: absolute;
    top: 3.5rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 1;
}
.oil_banner_prox .oil_content_prox .oil_brand img {
    width: 25pc;
}

.oil_banner_prox .oil_content_prox h1 {
    z-index: 1;
    position: relative;
    padding: 5rem 0;
    color: #0aa3ed;
    text-transform: uppercase;
    font-weight: 900;
    font-size: clamp(2.5rem, 6.5vw, 8rem);
}
.oil_banner_prox::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(35, 40, 42, 1) 0%, rgba(0, 59, 113, 0) 100%);
    background-color: rgb(35 40 42 / 20%);
    z-index: 0;
    pointer-events: none;
}
