.module-stats {
    /* any general styling for the module */
    position: relative;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.module-stats .intro-wrapper {
    text-align: center;
}

.module-stats .intro-wrapper p:last-child {
    margin-bottom:0;
}

.module-stats .intro-wrapper strong {
    color:var(--dark-orange);
}

.module-stats .inner-wrapper.panel-layout-circles {
    display:grid;
    grid-template-columns: 1fr;
    gap:2rem;
    width:100%;
}

.module-stats .inner-wrapper {
    width:100%;
}

.module-stats .inner-wrapper.panel-layout-circles .stats-wrapper {
    position:relative;
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    grid-template-rows: auto auto;
    gap: 2rem;
    row-gap: 0;
    justify-content: center;
    align-items: center;
    align-content: center;
    width:100%;
}

.module-stats .inner-wrapper.panel-layout-circles .stat-wrapper.stat-1 {
    grid-column: span 2;
}

.module-stats .inner-wrapper.panel-layout-circles .stat-wrapper {
    width:165px;
    height:165px;
    border-radius: 50%;
    background:var(--light-gray);
    padding:4rem;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin:0 auto;
}

.module-stats .inner-wrapper.panel-layout-circles .stat-wrapper.stat-1 {
    order:2;
    width:190px;
    height:190px;
}

.module-stats .inner-wrapper.panel-layout-circles .stat-wrapper.stat-2 {
    order:0;
}

.module-stats .inner-wrapper.panel-layout-circles .stat-wrapper.stat-3 {
    order:1;
}

.module-stats .stat-wrapper .stat {
    color:var(--dark-orange);
    font-size:3rem;
    line-height: 4rem;
    font-weight:700;
    text-align: center;
    width:100%;
    position: relative;
}

.module-stats .stat-wrapper .stat span {
    color:var(--dark-orange);
    font-size:2rem;
    line-height: 2.8rem;
}

.module-stats .stat-wrapper .text {
    color:var(--dark-gray);
    font-size:1.8rem;
    line-height: 2.4rem;
    text-align: center;
}

.module-stats .inner-wrapper.panel-layout-tiles .intro-wrapper {
    text-align: center;
    max-width:50%;
    margin:0 auto;
}

.module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper {
    margin-top:4rem;
}

.module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper {
    width:65%;
    margin-right:2rem;
    height:100%;
    padding:2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    background-color:var(--light-gray);
    border-radius: 10px;
    min-height: 300px;
}

.module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper .stat {
    padding-bottom:3rem;
    font-size:4rem;
    line-height: 5rem;
}

.module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper .stat .prefix,
.module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper .stat .units {
    font-size:4rem;
}

.module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper .stat .prefix {
    margin-right:3px;
}
.module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper .stat .units {
    margin-left:3px;
}

.module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper .stat:after {
    content:'';
    height:7px;
    background:var(--light-orange);
    display: block;
    width:100px;
    margin:1rem auto 0 auto;
}

.module-stats .flickity-page-dots {
    top:calc(100% + 1rem);
    text-align: left;
}

.module-stats .flickity-page-dots .dot {
    background-color:var(--medium-gray);
    border-radius:5px;
    opacity:1;
    margin:0;
    margin-right:1rem;
    transition: all 0.3s ease;
}

.module-stats .flickity-page-dots .dot.is-selected {
    background-color:var(--dark-orange);
    width:3rem;
}

@media (min-width:1000px) {

    .module-stats .intro-wrapper {
        text-align: left;
    }

    .module-stats .intro-wrapper h2 {
        font-size:5rem;
        line-height: 5.5rem;
    }

    .module-stats .inner-wrapper.panel-layout-circles {
        display:grid;
        grid-template-columns: 1fr 2fr;
        gap:7rem;
        align-items: center;
    }

    .module-stats .inner-wrapper.panel-layout-circles .stats-wrapper {
        display: block;
        padding-top:50px;
        margin-bottom:-350px;
    }

    .module-stats .inner-wrapper.panel-layout-circles .stat-wrapper {
        margin:0;
    }
    
    .module-stats .inner-wrapper.panel-layout-circles .stat-wrapper:not(.stat-1)  {
        width:300px;
        height:300px;
    }
    
    .module-stats .inner-wrapper.panel-layout-circles .stat-wrapper.stat-1 {
        left:0;
        top:0;
        order:0;
        width:350px;
        height:350px;
    }
    
    .module-stats .inner-wrapper.panel-layout-circles .stat-wrapper.stat-2 {
        left:375px;
        top:-400px;
        order:1;
    }
    
    .module-stats .inner-wrapper.panel-layout-circles .stat-wrapper.stat-3 {
        left:280px;
        top:-390px;
        order:2;
    }
    
    .module-stats .inner-wrapper.panel-layout-circles .stat-wrapper .stat {
        font-size:8rem;
        line-height: 10rem;
    }

    .module-stats .inner-wrapper.panel-layout-circles .stat-wrapper .stat span {
        color:var(--dark-orange);
        font-size:4rem;
        line-height:6rem;
    }

    .module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap:2rem;
        margin-top:4rem;
    }

    .module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper {
        width:100%;
    }

    .module-stats .inner-wrapper.panel-layout-tiles .stats-wrapper .stat-wrapper .stat {
        font-size:6rem;
        line-height: 8rem;
    }

    .module-stats .stat-wrapper .text {
        font-size:2.2rem;
        line-height: 2.8rem;
    }
    
}