/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/

#accordion-welcome .w-tabs-section-content {
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 100%;
    opacity: 0;
    transform: translateX(-20px);
    width: 0;
    overflow: hidden;
}

#accordion-welcome .w-tabs-section.active .w-tabs-section-content {
    opacity: 1;
    transform: translateX(0);
    width: 300px; /* Adjust as needed */
    overflow: visible;
}

#accordion-why-choose-us .w-tabs-section-content {
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 100%;
    opacity: 0;
    transform: translateX(-20px);
    width: 0;
    overflow: hidden;
}

#accordion-why-choose-us .w-tabs-section.active .w-tabs-section-content {
    opacity: 1;
    transform: translateX(0);
    width: 300px;
    overflow: visible;
}

