@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.parallax-mouse-header-widget-container .desktop{
    background-image: url('/wp-content/uploads/2024/09/img_cabecera_1920x750px_capa1-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-mouse-header-widget-container .desktop .image-1 {
    position: absolute;
    background-image: url('/wp-content/uploads/2024/09/img_cabecera_1920x750px_capa2-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.parallax-mouse-header-widget-container .desktop .image-2 {
    position: absolute;
    background-image: url('/wp-content/uploads/2024/09/img_cabecera_1920x750px_capa4-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.parallax-mouse-header-widget-container .desktop .image-3 {
    position: absolute;
    background-image: url('/wp-content/uploads/2024/09/img_cabecera_1920x750px_capa3-1.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.parallax-mouse-header-widget-container .desktop .padding {
    max-width: 1140px;
    width: 100%;
}

.parallax-mouse-header-widget-container .mobile{
    display: none;
}

.parallax-mouse-header-widget-container .mobile img{
    width: 100%;
}

.parallax-mouse-header-widget-container .desktop .title-content {
    max-width: 400px;
}

.parallax-mouse-header-widget-container .title {
    display: block;
    color: #FFFFFF;
    font-family: "Poppins", Sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.parallax-mouse-header-widget-container .description {
    display: block;
    color: var(--e-global-color-e9ef52b);
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    margin-top: 20px;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@media (max-width: 767px) {
    .parallax-mouse-header-widget-container .desktop {
        display: none;
    }

    .parallax-mouse-header-widget-container .mobile .title-content {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 50px 30px;
        background-color: #010D47;
    }

    .parallax-mouse-header-widget-container .mobile {
        display: flex;
        flex-direction: column;
    }
    
    .parallax-mouse-header-widget-container .title {
        font-size: 28px;
        line-height: 36px;
    }

    
}