@charset "UTF-8";
/* CSS Document */
.de-hero-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: row-reverse;
    overflow: hidden;
    isolation: isolate;
    width: 100%;
    min-height1: 500px;
    background-color: #000; /* fallback color if video fails to load */
}
.de-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}
.de-hero-video.de-video-loaded {
    opacity: 1;
}
.de-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}
.de-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}
.de-hero-inner {
    padding-block:50px;
}
.de-hero-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: 20px;
}
.de-hero-text {
    color: #fff !important;
    font-size: 22px;
    padding-bottom: 15px;
    margin: 0 0 15px 0;
}
.de-hero-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
}
.de-hero-btn:hover {
    background: #fff;
    color: #000;
}
/* ============================================
   Mobile Responsive
   ============================================ */
@media (max-width: 768px) {
    .de-hero-wrapper {
        min-height: 250px;
    }
    .de-hero-inner {
        padding: 20px;
         margin-left:0%;
    }
    .de-hero-logo {
        max-width: 200px;
    }
    .de-hero-text {
        font-size: 18px;
    }
}
section#content-sec-4345 {
    background-color: #000 !important;
}

