/* Cover Component - 替代 tilda-cover-1.0.min.css */

.t-cover {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.t-cover__carrier {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.t-cover__filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.t-cover__wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.t-cover__wrapper.t-valign_middle {
    align-items: center;
}

.t-cover__wrapper.t-align_center {
    justify-content: center;
}

