.thing-to-do-wrap {
    overflow: hidden;
    display: block;
    position: relative;
    padding-bottom: 100%;
    background: var(--bs-black);
}

.thing-to-do-img {
    opacity: 0.85;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: all ease-in-out 0.4s;
}

.thing-to-do-wrap:hover .thing-to-do-img {
    opacity: 0.5;
}

.thing-to-do-link {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.thing-to-do-link .title {
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 1.25rem;
    left: 0;
    margin: 0;
    padding: 0.3125rem 0.625rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: var(--bs-body-font-weight);
    text-transform: uppercase;
    text-shadow: 0.0625rem 0.0625rem 0.1875rem hsla(0, 0%, 0%, 50%);
    transition: all ease-in-out 0.4s;
    transition-delay: 0.4s;
}

.thing-to-do-wrap:hover .title {
    bottom: 50%;
    transition-delay: 0s;
}

.thing-to-do-link .view {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translate(-50%,-30%);
    padding: 0.625rem 3rem;
    background-color: var(--bs-light);
    color: var(--bs-black);
    font-weight: 400;
    transition: all ease-in-out 0.4s;
    transition-delay: 0.4s;
}

.thing-to-do-wrap:hover .thing-to-do-link .view {
    opacity: 1;
    visibility: visible;
}
