.wora-box-hover-info {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: column;
    touch-action: manipulation;
    background-position: center center;
    background-size: cover;
    border-radius: 12px;
}

.wora-box-hover-info::before {
    position: absolute;
    border-radius: 12px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: transparent;
    background-image: linear-gradient(200deg, #21478800 39%, #214788 79%);
    z-index: 0;
}

.wora-box-hover-info--title,
.wora-box-hover-info--content {
    position: relative;
    z-index: 1;
}

.wora-box-hover-info--content {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 12px;
    background: white;
    border: 2px solid #113f7d;
    width: 100%;
    height: 100%;
    padding: 160px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 550px;
}

.wora-box-hover-info--number {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    padding: 6px;
    border-radius: 12px;
    border-width: 1px;
    border-color: #ffffff;
    border-style: solid;
    background-color: #e2cd75;
}

.wora-box-hover-info--number span {
    font-size: 46px;
    font-weight: 600;
    color: white;
}

.wora-box-hover-info--title {
    z-index: 2;
    color: white;
    width: 253px;
    text-align: center;
    font-weight: 600;
    /*line-height: 2.2rem;*/
    font-size: 1.3em;
    position: absolute;
    bottom: 0%;
    margin-bottom: 38px;
}

.wora-box-hover-info--desc {
    padding: 0;
    margin: 0;
    font-size: 24px;
}

.wora-box-hover-info--link {
    width: 100%;
    text-align: right;
    font-style: italic;
    font-size: 21px;
}

.wora-box-hover-info--link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none!important;
    color: #113f7d;
}

.wora-box-hover-info--link a > .icon{
    display: block;
    width: 32px;
    height: 23px;
    margin-left: 12px;
}

.wora-box-hover-info--link a > .icon svg{
    margin-top: -2.5px;
    fill: #214788;
}

.wora-box-hover-info:hover .wora-box-hover-info--content,
.wora-box-hover-info:active .wora-box-hover-info--content {
    opacity: 1;
    visibility: visible;
}

.wora-box-hover-info:hover .wora-box-hover-info--title,
.wora-box-hover-info:active .wora-box-hover-info--title {
    color: #113f7d;
    bottom: 100%;
    transform: translateY(200%);
}
