/* START keynumbers.SCSS */
.keynumbers.bg-texture{
    background: url(../images/noise.png);
}
.keynumbers.bg-color{
    background-color: #1a2c17;
    color: white;
}

.keynumbers {
    /* background-color: #1a2c17;
    color: white; */
    text-align: center;
    position: relative;
    padding: 64px 0;
    margin-top: -1px;
}

.keynumbers.bg-color::after {
    content: "";
    mask: url(../images/border-green.svg);
    background-repeat: repeat-x;
    background-color: #1a2c17;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -23px;
    max-height: 24px;
    transform: rotate(180deg);
    z-index: 2;
}

.keynumbers.-circled {
    padding: 80px 0;
}

@media screen and (min-width: 768px) {
    .keynumbers.-circled {
        padding: 146px 89px 125px 89px;
    }
}

.keynumbers.-circled::after {
    display: none;
}

.keynumbers.-circled::before {
    content: "";
    background: url(../images/border-green.svg);
    background-repeat: repeat-x;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: -23px;
    max-height: 24px;
}

.keynumbers.-circled .subtitle {
    margin: 24px auto 40px auto;
}

@media screen and (min-width: 768px) {
    .keynumbers.-circled li div {
        gap: 8px;
    }
}

.keynumbers.-circled li div .image {
    width: 128px;
    height: 128px;
    border: 1px solid #90b68a;
    border-radius: 50%;
    margin-bottom: 24px;
}

.keynumbers.-circled li div span {
    font-family: "Roboto";
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    color: white;
}

.keynumbers.-circled li div p {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
}

.keynumbers ul {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    .keynumbers ul {
        flex-direction: row;
    }
}

.keynumbers ul li {
    display: flex;
    justify-content: center;
    gap: 28px;
    position: relative;
}

.keynumbers ul li::before {
    display: none;
}

.keynumbers ul li:first-child::before {
    display: none;
}

.keynumbers ul li div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    max-width: 330px;
}

@media screen and (min-width: 768px) {
    .keynumbers ul li div {
        gap: 16px;
    }
}

@media screen and (min-width: 992px) {
    .keynumbers ul li div::after {
        content: "";
        width: 9px;
        height: 9px;
        background: #2d4a28;
        border-radius: 50%;
        top: 100px;
        position: absolute;
        left: -35px;
    }
}

.keynumbers ul li div img {
    max-width: 48px;
    max-height: 48px;
    margin: auto;
}

.keynumbers ul li div span {
    font-family: "Roboto Slab", serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 130%;
    text-align: center;
    color: #d8b465;
}

.keynumbers ul li div p {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

@media screen and (min-width: 768px) {
    .keynumbers ul li div p {
        font-size: 18px;
    }
}

.keynumbers.-presentation {
    background: url("../images/noise.png");
    color: #1b1b1b;
    padding-top: 0;
    padding-bottom: 74px;
}

@media screen and (min-width: 768px) {
    .keynumbers.-presentation {
        padding-bottom: 137px;
    }
}

.keynumbers.-presentation::after {
    display: none;
}

.keynumbers.-presentation ul li div::after {
    background: #1b1b1b;
}