/* Hide the custom field wrapper for 'Plan' */
.contact-column-12 .contact-form-group label[for="contact_custom_fields[1]"],
.contact-column-12 .contact-form-group select[name="contact_custom_fields[1]"] {
    display: none !important; /* Hide both the label and the select field */
}

/* Hide the label and input field for the 'Date' custom field */
.contact-column-12 .contact-form-group label[for="contact_custom_fields[2]"],
.contact-column-12 .contact-form-group input[name="contact_custom_fields[2]"] {
    display: none !important; /* Hide both the label and the input field */
}

/* General styles for desktop and larger screens */
.section-brands-1 {
    margin: 0; /* Remove unnecessary margins */
    padding-top: 20px; /* Add subtle space at the top */
    padding-bottom: 20px; /* Add subtle space at the bottom */
}

.container {
    margin: 0 auto; /* Center the container */
    padding: 0; /* Remove extra padding */
}

/* Ensure the carousel is displayed correctly */
.carouselTicker__list {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    gap: 20px; /* Add spacing between items */
    list-style-type: none; /* Remove default list styles */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margins */
    flex-wrap: nowrap; /* Prevent wrapping on larger screens */
    overflow-x: auto; /* Allow horizontal scrolling if necessary */
}

/* Center the images inside the carousel items */
.carouselTicker__item {
    display: flex;
    justify-content: center; /* Center each item horizontally */
    align-items: center; /* Center each item vertically */
}

/* Ensure images are responsive and centered */
.carouselTicker__item img {
    display: block; /* Ensure images are block-level elements */
    max-width: 100%; /* Prevent overflow */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center the images */
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
    /* Adjust the container padding for mobile */
    .container {
        padding: 10px; /* Add some padding for smaller screens */
    }

    /* Adjust the carousel layout */
    .carouselTicker__list {
        flex-wrap: wrap; /* Allow items to wrap on smaller screens */
        gap: 10px; /* Reduce spacing between items */
    }

    /* Scale down the images for mobile */
    .carouselTicker__item img {
        max-width: 80%; /* Reduce image size on mobile */
    }

    /* Adjust section padding for mobile */
    .section-brands-1 {
        padding-top: 15px; /* Add light space at the top for mobile */
        padding-bottom: 15px; /* Add light space at the bottom for mobile */
    }
}