/***************************** Block: Valores *****************************/
.block-ballons {
    padding-top: 7.125rem;
    padding-bottom: 5.688rem;
}
.ballon-section-title {
    font-size: calc(1.1rem + 0.9vw);
    font-weight: 500;
    line-height: 1.17;
    text-align: left;
    color: var(--color-green-secondary);
    padding-right: 10%;
}
.ballon-section-descr {
    font-size: calc(1rem + 0.2vw);
    line-height: 1.65;
    text-align: left;
    color: var(--color-green-secondary);
}
.ballon-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    color: var(--color-green-primary);
    opacity: 1;
    height: auto;
    transition: opacity 1s ease-out;
}
.ballon-text {
    font-size: 1.063rem;
    font-weight: normal;
    line-height: 1.65;
    text-align: center;
    color: #ffffff;
    transition: opacity 1s ease-out;
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.single-ballon {
    background-color: #ffffff;
    text-align: center;
    clip-path: circle();
    width: 300px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s all ease-in-out!important;
    margin-bottom: 1rem;
}
.single-ballon:hover {
    background-color: var(--color-green-primary);
}
.single-ballon:hover .ballon-title {
    opacity: 0;
    height: 0;
    overflow: hidden;
}
.single-ballon:hover .ballon-text {
    opacity: 1;
    height: auto;
    width: 80%;
}
.ballon-icon {
    position: relative;
    width: 100%;
    padding-bottom: 1rem;
}
.single-ballon .ballon-icon .ballon-icon-principal {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    right: 0;
    transition: 1s all ease-in-out;
}
.single-ballon:hover .ballon-icon .ballon-icon-hover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
}
.single-ballon:hover .ballon-icon {
    padding-bottom: 3.5rem;
}
@media (max-width: 991.98px) {
.block-ballons {
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.ballon-section-title {
    padding-right: 0;
}
}
