.key-stat-block {
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: 650px;
}

.key-stat-block .d-flex {
    gap: 50px;
}

.key-stat-block .key-stat-triangle-wrap,
.key-stat-block .key-stat-content {
    position: relative;
    flex: 1;
}

.key-stat-block h3,
.key-stat-block p {
    position: relative;
    color: #ffffff;
    z-index: 1;
}

.key-stat-block h3 span {
    font-size: 4.5em;
}

.key-stat-triangle-wrap p {
    font-size: 36px;
    font-family: var(--secondary-font);
}

.key-stat-block .key-stat-triangle {
    position: absolute;
    background-size: 250%;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    clip-path: polygon(0 47%, 23% 0, 88% 100%, 0% 100%);
    width: 100%;
    max-width: 700px;
    height: 700px;
    margin-bottom: -70px;
    animation-name: keystat;
    animation-duration: 80s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: 0;
}

.key-stat-block .key-stat-content li::marker{
    color: white;
}

.key-stat-block .key-stat-content div.inner-content {
    max-width: 485px;
}

@media only screen and (max-width: 767px) {
    .key-stat-block {
        display: block;
    }

    .key-stat-block .content-wrapper .d-flex {
        flex-direction: column;
    }

    .key-stat-block h3 span {
        font-size: 3em;
    }

    .key-stat-triangle-wrap p {
        font-size: 26px;
    }
        
    .key-stat-block .key-stat-triangle-wrap,
    .key-stat-block .key-stat-content {
        width: 100%;
    }
       
    .key-stat-block .key-stat-triangle {
        height: 370px;
    }
    
    .key-stat-block .key-stat-triangle-wrap h3 {
        position: relative;
        padding-left: 30px;
        margin-top: -250px;
    }
    
    .key-stat-block .key-stat-triangle-wrap h3 span {
        font-size: 3em;
    }
}
@keyframes keystat {
    0% {background-position: 0% 0%; background-size: 200%;}
    25% {background-position: 25% 100%; background-size: 300%;}
    50% {background-position: 80% 0%; background-size: 300%;}
    75% {background-position: 100% 0%; background-size: 200%;}
    85% {background-position: 25% 100%; background-size: 250%;}
    100% {background-position: 0% 0%; background-size: 200%;}
}