.elementor-13149 .elementor-element.elementor-element-4087085{--e-image-carousel-slides-to-show:7;margin:32px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-13149 .elementor-element.elementor-element-4087085 .swiper-wrapper{display:flex;align-items:center;}.elementor-13149 .elementor-element.elementor-element-4087085 .elementor-image-carousel-wrapper .elementor-image-carousel .swiper-slide-image{border-radius:16px 16px 16px 16px;}@media(max-width:767px){.elementor-13149 .elementor-element.elementor-element-4087085{--e-image-carousel-slides-to-show:2;}.elementor-13149 .elementor-element.elementor-element-4087085 .swiper-wrapper{display:flex;align-items:center;}}/* Start custom CSS for image-carousel, class: .elementor-element-4087085 */.elementor-13149 .elementor-element.elementor-element-4087085 .swiper-wrapper{
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important; 
  
}



.elementor-13149 .elementor-element.elementor-element-4087085 .swiper-slide,
.elementor-13149 .elementor-element.elementor-element-4087085 .swiper-slide-inner {
    height: 300px;
    max-height: 300px;
}

.elementor-13149 .elementor-element.elementor-element-4087085 .swiper-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-3b210ac0 *//* General accordion wrapper */
.custom-faq-accordion {
    direction: ltr; 
    width: 100%;
    max-width: 100%;
    font-family: 'Google Sans', sans-serif;
    box-sizing: border-box;
}

/* Ensure all child elements respect the box model */
.custom-faq-accordion * {
    box-sizing: inherit;
}

/* Individual accordion item */
.custom-faq-accordion .faq-accordion-item {
    border-bottom: 1px solid #e4e4e4;
}

/* Remove bottom border from the very last item */
.custom-faq-accordion .faq-accordion-item:last-child {
    border-bottom: none;
}

/* Accordion title */
.custom-faq-accordion .faq-accordion-title {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-align: left; 
    padding: 32px 40px 32px 0; /* Left padding set to 0 */
    cursor: pointer;
    position: relative;
    color: #333;
    border-radius: 8px;
    /* Smooth transition for text and padding */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state for title - Text color change and micro-nudge */
.custom-faq-accordion .faq-accordion-title:hover {
    color: #412AE8;
    padding-left: 5px; /* Micro-interaction: slight text nudge to the right from 0 */
}

/* Plus icon (+) for closed state */
.custom-faq-accordion .faq-accordion-title::before {
    content: '+';
    position: absolute;
    right: 15px; 
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #777;
    font-weight: 300;
    /* Smooth transition for color, rotation, and scale */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover state for icon */
.custom-faq-accordion .faq-accordion-title:hover::before {
    color: #412AE8;
    transform: translateY(-50%) scale(1.2); 
}

/* Active state for title */
.custom-faq-accordion .faq-accordion-item.active .faq-accordion-title {
    color: #412AE8; 
}

/* Minus icon (-) with rotation for active state */
.custom-faq-accordion .faq-accordion-item.active .faq-accordion-title::before {
    content: '-';
    color: #412AE8;
    transform: translateY(-50%) rotate(180deg); 
}

/* Using CSS Grid to transition height perfectly */
.custom-faq-accordion .faq-accordion-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Open state for wrapper */
.custom-faq-accordion .faq-accordion-item.active .faq-accordion-content-wrapper {
    grid-template-rows: 1fr;
}

/* Content styling - hidden overflow is required for grid trick */
.custom-faq-accordion .faq-accordion-content {
    overflow: hidden;
}

/* Inner padding and text styles */
.custom-faq-accordion .faq-accordion-inner {
    padding: 5px 15px 20px 0; /* Left padding set to 0 */
    font-size: 16px;
    text-align: left; 
    line-height: 1.6;
    color: #555;
    opacity: 0;
    transform: translateY(-5px); 
    transition: opacity 0.3s ease, transform 0.3s ease;
    /* Prevent long words or URLs from breaking the layout on mobile */
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Fade in and slide down text slightly when active */
.custom-faq-accordion .faq-accordion-item.active .faq-accordion-inner {
    opacity: 1;
    transform: translateY(0);
    /* Slight delay so the height opens first, then text reveals smoothly */
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

/* Responsive design for tablets and mobile devices */
@media screen and (max-width: 768px) {
    .custom-faq-accordion .faq-accordion-title {
        font-size: 16px; 
        padding: 12px 35px 12px 0; /* Left padding set to 0 for mobile */
    }

    .custom-faq-accordion .faq-accordion-title:hover {
        padding-left: 5px; /* Adjust the hover micro-nudge for mobile */
    }

    .custom-faq-accordion .faq-accordion-title::before {
        right: 10px;
        font-size: 22px; 
    }

    .custom-faq-accordion .faq-accordion-inner {
        font-size: 15px;
        padding: 5px 10px 15px 0; /* Left padding set to 0 for mobile */
    }
}/* End custom CSS */