
.oel-sec {
    background-color: #0052A0;
    height: auto;
    position: relative;
    overflow: hidden;
    .oel-text {
        & .oel-head {
            color: #fff;
            font-weight: 600;
            @media screen and (min-width: 768px) {
                
            }
        }
        & .oel-desc {
            color: #fff;
            @media screen and (min-width: 768px) {
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
        }
    }
}
    @media screen and (min-width: 768px) { 
    .oel-bg {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        overflow: hidden;
    }

    .oel-bg-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        pointer-events: none;
    }

    .oel-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 3;
        background: linear-gradient(to right, rgba(0, 99, 187, 0.9) 30%, rgba(255, 255, 255, 0) 70%);
    }
    }


.oel-container {
    position: relative;
    z-index: 2;
}

.oel-logo-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    @media screen and (min-width: 992px) {
        width: 90%;
    }
}

.oel-logo {
    width: 250px;
    @media screen and (min-width: 992px) {
    }
}

.oel-btn {
    font-size: 16px !important;
    font-weight: 700;
    font-family: "lato-bold";
    width: 230px !important;
    padding: 12px 15px !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    background-color: transparent !important;
    &:hover {
        background: #fff !important;
        color: #0052A0 !important;
        border: 2px solid #0052A0 !important;
    }
}

.oel-btn--dark {
    border: 2px solid #0052A0 !important;
    color: #0052A0 !important;
}

/* OEL FORM */
.oel-form {
    & .btn-grp {
            display: inherit;
        }
    & button {
        padding: 12px 15px;
        background: #0076E7;
        color: #fff;
        border-radius: 5px;
        display: inline-block;
        width: 95px;
    }
    & #results {
        width: 300px;
    }
    & input, textarea {
        width: 100%;
        display: block;
        border: 1px solid #cbd6e2;
        background-color: #f5f8fa;
        color: #33475b;
        padding: 0 15px;
        min-height: 27px;
        height: 40px;
        margin-bottom: 18px;
    }
    & label {
        margin-bottom: 4px;
    }
    & textarea {
        height: 100px;
    }

    & p {
        padding: 20px;
    }
    & #country {
        border: 1px solid #cbd6e2;
        height: 40px;
        width: 300px;
        background-color: #f5f8fa;
        margin-top: 12px;
        margin-bottom: 18px;
    }
    & .flex-column {
        display: flex;
        flex-direction: column;
    }
    & .form-required {
        color: red !important;
    }
}

#oel-loading {
    display: none;
    position: fixed;
    top: 0; left: 0; 
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    text-align: center;
    color: #fff;
    font-family: Arial, sans-serif;
    & .oel-loading-popup {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute; 
        top: 50%; left: 50%; 
        transform: translate(-50%, -50%);
        background: #0F4C81; 
        padding: 40px 40px 30px 40px;
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.3);
    }
}
.oel-load {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #25b09b;
    --_m: 
        conic-gradient(#0000 10%,#000),
        linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}
@keyframes l3 {
    to { transform: rotate(1turn); }
}