/**
 * MRRP Custom Elements - Frontend CSS
 * Comprehensive styling for all custom UX Builder elements
 * 
 * This file provides frontend styling for elements that don't have
 * inline CSS in their PHP files.
 */

/* ============================================
   CONTACT ELEMENTS
   ============================================ */
/* Contact card styles moved to fresh-contact-page.css */

/* ============================================
   GEOGRAPHY ELEMENTS
   ============================================ */

/* Fresh Country Flag */
.fresh-country-flag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fresh-country-flag img {
    width: 30px;
    height: 20px;
    object-fit: cover;
    border-radius: 2px;
}

.fresh-country-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Fresh Countries Globe */
.fresh-countries-globe {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.fresh-globe-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.fresh-globe-marker {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wells-blue, #034E6D);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fresh-globe-marker:hover {
    transform: scale(1.2);
    background: var(--wells-orange, #f39200);
}

/* ============================================
   HERO ELEMENTS
   ============================================ */

/* Fresh Hero Banner */
.fresh-hero-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    overflow: hidden;
}

.fresh-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.fresh-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.fresh-hero-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fresh-hero-subheading {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.fresh-hero-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--wells-orange, #f39200);
    color: #fff;
    text-decoration: none;
    border-radius: 99px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fresh-hero-button:hover {
    background: var(--wells-blue, #034E6D);
    transform: translateY(-2px);
}

/* Fresh CTA Banner */
.fresh-cta-banner {
    background: linear-gradient(135deg, var(--wells-blue, #034E6D), var(--wells-orange, #f39200));
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.fresh-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.fresh-cta-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.fresh-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: var(--wells-blue, #034E6D);
    text-decoration: none;
    border-radius: 99px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.fresh-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CONTENT ELEMENTS
   ============================================ */

/* Fresh Content Block */
.fresh-content-block {
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.fresh-content-heading {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.fresh-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Fresh Feature Box */
.fresh-feature-box {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fresh-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.fresh-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    padding: 20px;
    background: linear-gradient(135deg, var(--wells-blue, #034E6D), var(--wells-orange, #f39200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fresh-feature-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.fresh-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.fresh-feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Fresh Icon Card */
.fresh-icon-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.fresh-icon-card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    fill: var(--wells-blue, #034E6D);
}

.fresh-icon-card-content {
    flex: 1;
}

.fresh-icon-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.fresh-icon-card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ============================================
   STATS ELEMENTS
   ============================================ */

/* Fresh Stat Card */
.fresh-stat-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.fresh-stat-card:hover {
    border-color: var(--wells-blue, #034E6D);
    transform: translateY(-5px);
}

.fresh-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--wells-blue, #034E6D);
    margin-bottom: 10px;
    line-height: 1;
}

.fresh-stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Fresh Stat Display */
.fresh-stat-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.fresh-stat-item {
    text-align: center;
}

.fresh-stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--wells-orange, #f39200);
    margin-bottom: 8px;
}

.fresh-stat-title {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   MEDIA ELEMENTS
   ============================================ */

/* Fresh Image Gallery */
.fresh-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.fresh-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.fresh-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fresh-gallery-item:hover img {
    transform: scale(1.1);
}

.fresh-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fresh-gallery-item:hover .fresh-gallery-overlay {
    opacity: 1;
}

/* ============================================
   PRODUCT ELEMENTS
   ============================================ */

/* Fresh Product Card */
.fresh-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.fresh-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.fresh-product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.fresh-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fresh-product-content {
    padding: 20px;
}

.fresh-product-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.fresh-product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--wells-orange, #f39200);
    margin-bottom: 15px;
}

.fresh-product-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--wells-blue, #034E6D);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fresh-product-button:hover {
    background: var(--wells-orange, #f39200);
}

/* Fresh Testimonial */
.fresh-testimonial {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.fresh-testimonial-quote {
    font-size: 18px;
    font-style: italic;
    color: #333;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
}

.fresh-testimonial-quote::before {
    content: '"';
    font-size: 60px;
    color: var(--wells-blue, #034E6D);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.fresh-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.fresh-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.fresh-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fresh-testimonial-info {
    text-align: left;
}

.fresh-testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.fresh-testimonial-role {
    font-size: 14px;
    color: #666;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .fresh-hero-heading {
        font-size: 32px;
    }

    .fresh-hero-subheading {
        font-size: 16px;
    }

    .fresh-cta-title {
        font-size: 24px;
    }

    .fresh-stat-number {
        font-size: 36px;
    }

    .fresh-stat-display {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fresh-image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}

/* ============================================
   FRESHAIR ELEMENTS - EXTRACTED INLINE CSS
   Auto-generated from element PHP files
   ============================================ */

/* ==================================================
   FRESHAIR AWARD CARD
   ================================================== */

/* Frontend CSS for Award Cards */
.freshair-award-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.freshair-award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.freshair-award-image {
    width: 100%;
    max-width: 150px;
    margin-bottom: 20px;
}

.freshair-award-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.freshair-award-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.freshair-award-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.freshair-award-highlight {
    color: var(--wells-blue, #034E6D);
    font-weight: 700;
}

.freshair-award-desc {
    font-size: 14px;
    color: #666;
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

/* Masonry tall variant */
.freshair-award-card--tall {
    grid-row: span 2;
}

@media (max-width: 768px) {
    .freshair-award-card {
        padding: 20px;
    }

    .freshair-award-image {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .freshair-award-title {
        font-size: 15px;
    }

    .freshair-award-desc {
        font-size: 13px;
    }
}

/* Toggle button styles */
.freshair-show-more-btn {
    background: var(--wells-blue, #034E6D);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 99px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.freshair-show-more-btn:hover {
    background: var(--wells-orange, #f39200);
    transform: translateY(-2px);
}

.freshair-show-more-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

.freshair-show-more-btn .btn-icon {
    transition: transform 0.3s ease;
}

.freshair-awards-btns.hidden {
    display: none;
}

/* ==
   FRESHAIR DESIGN ITEM
   ================================================== */

/* Frontend CSS for Design Items */
.freshair-design-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin: 40px 0;
}

.freshair-design-item--image-left {
    direction: rtl;
}

.freshair-design-item--image-left>* {
    direction: ltr;
}

.freshair-design-content {
    padding: 20px 0;
}

.freshair-design-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: var(--wells-blue, #034E6D);
    opacity: 0.2;
    margin-bottom: 10px;
}

.freshair-design-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 15px 0;
    line-height: 1.3;
}

.freshair-design-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.freshair-design-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.freshair-design-image img {
    width: 100%;
    height: auto;
    display: block;
}

.freshair-design-divider {
    border: none;
    border-top: 2px solid #e5e5e5;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .freshair-design-item {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
    }

    .freshair-design-item--image-left {
        direction: ltr;
    }

    .freshair-design-number {
        font-size: 36px;
    }

    .freshair-design-title {
        font-size: 20px;
    }

    .freshair-design-desc {
        font-size: 15px;
    }
}

/* (UX Builder styles for Design Item and Image Slider are handled in PHP files) */

/* ==================================================
   FRESHAIR HQ ACCORDION
   ================================================== */

.freshair-hq-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px 60px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Grid items (the Freshair HQ Item components) */
.freshair-hq-grid>.freshair-hq-item {
    min-width: 0;
    /* Prevents grid items from overflowing */
}

@media (max-width: 768px) {
    .freshair-hq-grid {
        grid-template-columns: 1fr !important;
    }
}

.freshair-hq-item {
    position: relative;
    border: none !important;
    width: 100%;
}

/* Checkbox Hidden */
input.hq-toggle {
    display: none !important;
}

.hq-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    padding: 15px 0;
    cursor: pointer;
    width: 100%;
    border-bottom: 1px solid rgba(0, 74, 153, 0.2);
}

.hq-left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-grow: 1;
    padding-right: 15px;
}

.hq-flag {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(0, 74, 153, 0.3);
    flex-shrink: 0;
}

.hq-country {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hq-icons {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    flex-shrink: 0;
    transition: color 0.3s;
}

/* Icon Switching */
.icon-open {
    display: none;
}

.icon-closed {
    display: block;
}

.hq-toggle:checked+.hq-header .hq-icons .icon-closed {
    display: none;
}

.hq-toggle:checked+.hq-header .hq-icons .icon-open {
    display: block;
    color: #E30613;
}

.hq-toggle:checked+.hq-header .hq-country {
    color: #E30613;
}

/* Hover Effect */
.hq-header:hover .hq-icons {
    color: #004A99;
}

.hq-header:hover .hq-country {
    color: #004A99;
}

.hq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.hq-toggle:checked~.hq-content {
    max-height: 150px;
}

.hq-content-inner {
    padding-bottom: 12px;
    padding-left: 47px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

/* (Justified Gallery styles are handled inline in the PHP file) */

/* ==================================================
   FRESHAIR WORLDWIDE MAP
   ================================================== */

.freshair-worldwide-map {
    position: relative;
    width: 100%;
    max-width: 1300px;
    /* Wider for PC */
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
}

.freshair-map-title {
    text-align: center;
    color: var(--wells-blue);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 80px;
    text-transform: uppercase;
}

.freshair-map-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
    /* Taller ellipse */
    aspect-ratio: 2/1;
    /* Encourage horizontal oval */
}

/* Desktop: Absolute positioning for ellipse */
@media (min-width: 850px) {
    .freshair-flag-item {
        position: absolute;
        top: var(--top);
        left: var(--left);
        transform: translate(-50%, -50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        z-index: 2;
        transition: transform 0.3s ease;
    }

    .freshair-flag-item:hover {
        transform: translate(-50%, -50%) scale(1.15);
        z-index: 10;
    }

    .freshair-center-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 350px;
        z-index: 1;
    }
}

/* Flag Circle Styling */
.freshair-flag-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.freshair-flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Button Styling */
.freshair-country-btn {
    background: var(--wells-blue);
    color: #fff;
    padding: 10px 24px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 166, 81, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.freshair-country-btn:hover {
    background: var(--wells-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.4);
    transform: translateY(-2px);
}

/* Mobile: Flex/Grid layout with Reordering */
@media (max-width: 849px) {
    .freshair-worldwide-map {
        padding: 40px 10px;
    }

    .freshair-map-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
        min-height: auto;
        aspect-ratio: auto;
    }

    /* Flatten structure layout */
    .freshair-flags-container {
        display: contents;
    }

    /* Order: First 4 flags */
    .freshair-flag-item:nth-child(-n+4) {
        order: 1;
    }

    /* Order: Center Logo */
    .freshair-center-logo {
        order: 2;
        grid-column: 1 / -1;
        /* Span full width */
        margin: 30px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Order: Next 4 flags */
    .freshair-flag-item:nth-child(n+5) {
        order: 3;
    }

    .freshair-flag-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Centering fix */
    .freshair-map-wrapper {
        justify-items: center;
    }
}

.freshair-center-logo img {
    max-width: 200px;
    margin-bottom: 15px;
}

.freshair-center-desc p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    font-style: italic;
}

/* End of Freshair Elements CSS */

/* ===================================================================
   FRESHAIR IMAGE SLIDER - Circular Carousel
   =================================================================== */

/* Slider container */
.wells-solutions-slider {
    padding: 30px 0;
}

.wells-solutions-slider .slider {
    overflow: visible;
}

/* Circular images */
.wells-solutions-slider .freshair-slide-image img {
    width: 200px !important;
    height: 200px !important;
    object-fit: cover;
    border-radius: 50% !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wells-solutions-slider .freshair-slide-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15) !important;
}

/* Captions */
.wells-solutions-slider .freshair-slide-caption {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #004A99 !important;
    margin-top: 18px !important;
    text-align: center;
}

/* Navigation arrows */
.wells-solutions-slider .flickity-prev-next-button {
    width: 44px;
    height: 44px;
    background: rgba(0, 74, 153, 0.08) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wells-solutions-slider .flickity-prev-next-button:hover {
    background: rgba(0, 74, 153, 0.15) !important;
}

.wells-solutions-slider .flickity-prev-next-button .flickity-button-icon {
    fill: #004A99;
}

.wells-solutions-slider .flickity-prev-next-button.previous {
    left: -20px;
}

.wells-solutions-slider .flickity-prev-next-button.next {
    right: -20px;
}

/* Pagination dots */
.wells-solutions-slider .flickity-page-dots {
    bottom: -30px;
}

.wells-solutions-slider .flickity-page-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccd6e0;
    opacity: 1;
    transition: all 0.3s ease;
}

.wells-solutions-slider .flickity-page-dots .dot.is-selected {
    background: #004A99;
    transform: scale(1.2);
}

/* Slide columns */
.wells-solutions-slider .col {
    text-align: center;
}

.wells-solutions-slider .col-inner {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Responsive */
@media (max-width: 767px) {
    .wells-solutions-slider .freshair-slide-image img {
        width: 150px !important;
        height: 150px !important;
    }

    .wells-solutions-slider .flickity-prev-next-button.previous {
        left: 0;
    }

    .wells-solutions-slider .flickity-prev-next-button.next {
        right: 0;
    }
}