/*
 Theme Name:   Hello Biz Child
 Theme URI:    https://example.com/hello-biz-child
 Description:  A child theme for Hello Biz
 Author:       Priya Patel
 Author URI:   https://example.com
 Template:     hello-biz
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hello-biz-child
*/

/* -----------------------------------------------
   Custom styles go below this line
----------------------------------------------- */

.venue-hero-title .elementor-heading-title {
    font-size: clamp(50px, 6.5vw, 130px) !important;
    line-height: 0.95 !important;
}

.partner-carousel .elementor-swiper-button.elementor-swiper-button-prev{
    top: -100px !important;
    right: 0;
    left: unset !important;
    border: 1px solid #000;
}
.marquee-wrapper {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-wrapper .elementor-icon-list-items {
    display: inline-flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
