.content-nature {
}

.content-nature .content-nature-icon-empty {
    text-transform: uppercase;
}

.content-nature-icon {
    width: 240px;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    background: transparent;
}

.content-nature-icon > * {
    cursor: pointer;
    border-radius: 50%;
    background: transparent;
}

.content-nature-icon > div {
    margin: 0 auto;
    width: 240px;
    height: 240px;
    line-height: 2;
    border: 5px solid transparent;
    border-radius: 50%;
    font-weight: 400;
    text-transform: uppercase;
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;
}

.content-nature-icon:hover > div {
    background-size: 140%;
}

.content-nature-icon-empty {
    margin: 0 auto;
    margin-bottom: 0;
    width: 260px;
}

.content-nature-icon-empty > div {
    margin: 0 auto;
    width: 240px;
    height: 240px;
    line-height: 2;
    background: #a4b793;
    border-radius: 50%;
    padding: 35% 10px;
    font-weight: 400;
    text-transform: uppercase;
}

.content-nature-icon-empty.is-visible {
    background: #7cb24e;
    animation: natureBackgroundColorFromNone .5s ease-in-out;

}

.content-nature-icon.is-visible {
    background: #7cb24e;
    animation: natureBackgroundColorFromNone .5s ease-in-out;
}

.content-nature-item {
    margin-top: -1px;
}

.content-nature-item {
    font-weight: 400;
    color: #212529;
    background-color: #7cb24e;
    padding: 5px 15px 2px;
    border-radius: 5px;
    display: none;
    opacity: 0;
}

.content-nature-item.is-visible {
    display: block;
    opacity: 1;
    animation: natureFadeInFromNone .5s ease-in-out;
}


.content-nature-title {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.content-nature-title span,
.content-nature-icon-empty span {
    font-style: italic;
    text-decoration: underline;
    font-weight: 100;
}

.content-nature-text {
    margin-bottom: 5px;
}


@keyframes natureFadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }
    1% {
        display: block;
        opacity: 0;
    }
    100% {
        display: block;
        opacity: 1;
    }
}

@keyframes natureBackgroundColorFromNone {
    0% {
        background: transparent;
    }
    1% {
        background: #7cb24e75;
    }
    100% {
        background: #7cb24e;
    }
}