.aiscotland-stats {
    padding: 96px 0;
    background-color: var(--aiscotland-color-primary-teal);
}


.aiscotland-media-bg--teal {
    background-color: var(--aiscotland-color-primary-teal);

}

.aiscotland-stats__header {
    text-align: left;
    margin-bottom: 60px;
}

.aiscotland-stats__title {
    color: var(--aiscotland-color-primary);
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}

.aiscotland-stats__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.aiscotland-stats__item {
    background: var(--aiscotland-color-background);
    border-radius: 12px;
    position: relative;
}

.aiscotland-stats_item-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aiscotland-stats_item-half-circle{
    position: absolute;
    top: 32px;
}

/*Circle Donut*/
.circle-donut {
    position: relative;
    width: 260px;
    height: 260px;
    margin-bottom: 24px;

}
.circle-donut svg {
    position: absolute;
    top: 0; left: 0;
}
.stats-load-circle circle {
    fill: transparent;
    stroke-width: 65px;
    stroke-dasharray: 584;
    stroke-dashoffset: 584;
    transition: all 2s ease-out;
}

/*Full Circle*/
.circle-full {
    position: relative;
    width: 262px;
    height: 262px;
    margin-bottom: 24px;
}
.circle-full svg {
    position: absolute;
    top: 1px; left: 1px;
}
.circle-full circle {
    stroke-dasharray: 584;
    stroke-dashoffset: 584;
    transition: all 2s ease-out;
}
.circle-full-width {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: url("/wp-content/themes/aiscotland/assets/images/Ellipsebg.svg");
    background-size: cover;
    background-position: center top;
    z-index: 2;
    transition: all 2s ease-out;
}
.load-circle {
    height: 0;
}

.circle-full-icon {
    position: absolute;
    z-index: 3;
    bottom: 0px;
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .6s .5s ease-out;
}
.load-circle ~ .circle-full-icon {
    bottom: 10px;
    opacity: 1;
}

.aiscotland-stats__item-inner {
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.stats-figure {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size:  48px;
    font-weight: 700;
    font-family: var(--aiscotland-font-heading);

    min-width: 100%;
    text-align: center;
    display: block;
}



.aiscotland-stats__item-text {
    margin-bottom:  32px;
}

.aiscotland-stats__item-text  p{
    font-size: 24px;
    font-weight: 400;
    margin: 0;
}

.aiscotland-stats__item-text strong{
    color: var(--aiscotland-color-dark-teal);
}


.aiscotland-stats__item-citation {
    display: flex;
    align-items: center;
}

.aiscotland-stats__item-citation p {
    margin: 0;

}

@media (min-width: 768px) {
    .aiscotland-stats__title {
        font-size: 48px;
    }


    .aiscotland-stats__grid {
        grid-template-columns: repeat(2, 1fr);

    }
}

@media (min-width: 1200px) {
    .aiscotland-stats__grid {
        grid-template-columns: repeat(3, 1fr);

    }
}


