/*
|--------------------------------------------------------------------------
| Full-bleed: remove Elementor's default gap below the hero widget
|--------------------------------------------------------------------------
*/

.elementor-widget-hero_banner {
    margin-bottom: 0 !important;
}

.elementor-widget-hero_banner > .elementor-widget-container {
    margin: 0 !important;
    padding: 0 !important;
}

/*
|--------------------------------------------------------------------------
| Hero Banner
|--------------------------------------------------------------------------
*/

.cew-hero-banner {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/*
|--------------------------------------------------------------------------
| Background
|--------------------------------------------------------------------------
*/

.cew-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cew-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/*
|--------------------------------------------------------------------------
| Overlay
|--------------------------------------------------------------------------
*/

.cew-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: linear-gradient(
        90deg,
        rgba(45,106,79,0.45) 0%,
        rgba(45,106,79,0.25) 40%,
        rgba(45,106,79,0.00) 100%
    );
}

/*
|--------------------------------------------------------------------------
| Container
|--------------------------------------------------------------------------
*/

.cew-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding-left: 48px;
    padding-right: 48px;
}

/*
|--------------------------------------------------------------------------
| Content
|--------------------------------------------------------------------------
*/

.cew-content {
    max-width: 700px;
    color: #ffffff;
}

/*
|--------------------------------------------------------------------------
| Title
|--------------------------------------------------------------------------
*/

.cew-title {

    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;

    color: #ffffff;

    margin-bottom: 20px;

    text-shadow: 0 3px 10px rgba(0,0,0,0.30);
}

/*
|--------------------------------------------------------------------------
| Description
|--------------------------------------------------------------------------
*/

.cew-description {

    font-size: 20px;

    line-height: 1.8;

    color: rgba(255,255,255,0.92);

    margin-bottom: 40px;

    text-shadow: 0 2px 6px rgba(0,0,0,0.20);
}

/*
|--------------------------------------------------------------------------
| Buttons
|--------------------------------------------------------------------------
*/

.cew-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cew-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    padding: 16px 32px;

    border-radius: 999px;

    font-size: 15px;

    font-weight: 600;

    transition: all 0.3s ease;

    border: 2px solid transparent;
}

/*
|--------------------------------------------------------------------------
| Primary Button
|--------------------------------------------------------------------------
*/

.cew-btn-primary {

    background: #ffffff;

    color: #2D6A4F;
}

.cew-btn-primary:hover {

    background: #f5f5f5;

    transform: translateY(-2px);

    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

/*
|--------------------------------------------------------------------------
| Secondary Button
|--------------------------------------------------------------------------
*/

.cew-btn-secondary {

    background: transparent;

    border: 2px solid #ffffff;

    color: #ffffff;
}

.cew-btn-secondary:hover {

    background: rgba(255,255,255,0.15);

    transform: translateY(-2px);
}

/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 1024px) {

    .cew-title {
        font-size: 46px;
    }

    .cew-description {
        font-size: 18px;
    }

}

@media (max-width: 768px) {

    .cew-hero-banner {
        min-height: 550px;
    }

    .cew-container {

        padding-left: 25px;

        padding-right: 25px;
    }

    .cew-title {

        font-size: 36px;

        line-height: 1.2;
    }

    .cew-description {

        font-size: 17px;

        line-height: 1.7;
    }

    .cew-buttons {

        flex-direction: column;

        align-items: flex-start;
    }

    .cew-btn {

        width: 100%;
        max-width: 260px;
    }

}

@media (max-width: 480px) {

    .cew-title {

        font-size: 30px;
    }

    .cew-description {

        font-size: 16px;
    }

}