<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.hero-image {
    position: relative;
    min-height: 400px;
    overflow: hidden;   
    height: 100%;
    width: 100%;
    transition:  all 0.3s ease-in-out;
    max-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0px 50px;
}

.hero-overlay {
    flex: 0 0 100%;
}


.hero-background {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-position: center center;
    background-size: cover;
}


.hero-image.elementor-container {
  border-radius: 10px;
  max-height: 100%;
}


.hero-background img, .hero-background picture {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.hero-image .image-flip {
    transform: scaleX(-1);
}


.hero-background .elementor-container {
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 50px 20px!important;
}




.hero-content h1{
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 10px;
    color: var( --e-global-color-text ); 
}

.hero-image.dark-style .hero-content h1 {
 color: #ffffff;  
}

.hero-content p{
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 700px;
    color: var( --e-global-color-text ); 
    margin-bottom: 0;
}
.hero-content .filled-btn {
    margin-top: 20px;
}



.hero-image.dark-style .hero-content p {
    color: #ffffff;  
}

@media (max-width: 767px) {


    .hero-content h1{
        font-size: 40px;
    }

    .hero-image {
        min-height: 350px;
        align-items: stretch;
    }

    .hero-content {
        padding: 50px 20px!important;
    }
    .hero-overlay {
        display: flex;
        align-items: center;
    }

    .hero-image.dark-style.use-gradient .hero-overlay{
        background: linear-gradient(30deg, rgba(0, 0, 0, 0.84) 0%, rgba(0, 0, 0, 0.3) 100%)
    }

    .hero-image.light-style.use-gradient .hero-overlay{
        background: linear-gradient(30deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.3) 100%)
    }

    .hero-image {
        padding: 0px 0px;
    }



  }

@media (max-width: 540px) {

    .hero-image {
        min-height: 300px;
    }

    .hero-content h1{
        font-size: 30px;
    }
    
    .hero-content p{
        font-size: 18px;

    }
  }








</pre></body></html>