.project-kuula-card {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
@media (max-width: 1199px) {
    .project-kuula-card {
        margin-bottom: 30px;
    }
}

.project-kuula-card-content {
    text-align: center;
    background-color: var(--white);
    display: inline-block;
    width: 78%;
    padding-top: 30px;
    position: absolute;
    bottom: 0;
    border-radius: 15px 15px 0 0;
    left: 11%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: 0.3s all ease-in-out;
}
@media (max-width: 1600px) {
    .project-kuula-card-content {
        padding-top: 16px;
    }
}
@media (max-width: 1399px) {
    .project-kuula-card-content {
        width: 100%;
        left: 0;
    }
}
.project-kuula-card-content__subtitle {
    color: var(--title);
    font-family: "Jost", serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 10px;
}
.project-kuula-card-content__title {
    color: var(--title);
    font-family: "Jost", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
}
.project-kuula-card:hover .project-kuula-card-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.project-kuula-card__thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.project-kuula-card__thumb iframe {
    display: block;
    width: 100%;
    min-height: 320px;
}