
.main-back{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 180;
}

.main-back-mask{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 190;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .8) 0%,rgba(0, 0, 0, 0) 100%);
}

section.main{
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.main-content{
    color: #fff;
    position: absolute;
    top: calc(var(--header-height-min) + var(--breadcrumbs-height));
    height: calc(720 * var(--rpx));
    max-height: calc(100vh - var(--header-height-min) - var(--breadcrumbs-height) - 60 * var(--rpx));
    padding-left: calc(320 * var(--rpx));
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 200;

    display: flex;
    width: unset;
    padding-right: var(--wrapper-margin);
}

.slogan {
    width: calc(100vw - 640 * var(--rpx));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: calc(20 * var(--rpx));
    text-align: center;
}

.slogan .line1 {
    text-transform: uppercase;
    font-size: calc(24 * var(--rpx));
}

.slogan .line2{
    font-weight: 500;
    font-size: calc(88 * var(--rpx-50));
    line-height: 1em;
}

.application-list{
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: calc(10 * var(--rpx-75));
}

.application{
    flex: 0 0 calc(640 * var(--rpx-50));
    border-top: calc(4 * var(--rpx)) solid #fff;
    position: relative;

    display: flex;
    flex-direction: column;

    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    background-color: rgba(255, 255, 255, .1);
    transition: .3s;
}

.application:hover{
    border-top-color: var(--theme-crimson);
}

.application .cover{
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
}

.application .cover img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .15s;
}

.application:hover .cover img{
    transform: scale(1.05);
    transition: .8s cubic-bezier(0.15, 1, 0.336, 1);
}

.application .info{
    flex: 0 0 50%;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;

    padding: calc(40 * var(--rpx-50)) calc(40 * var(--rpx-50)) calc(36 * var(--rpx-50));
}

.application .info>*{
    position: relative;
    z-index: 240;
}

.application .info>.hover-back{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 210;
}

.application .hover-highlight{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 220;
}

.application .no{
    font-size: calc(14em / 16);
    width: calc(60 * var(--rpx));
    height: calc(60 * var(--rpx));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .1);
    font-weight: 500;
}

.application .no::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: url("../images/icon_arr_right.svg") center/1em auto no-repeat var(--theme-crimson);
    transform: scale(.25);
    transition: .2s;
    opacity: 0;
}

.application:hover .no::after{
    transition: .6s cubic-bezier(0.15, 1, 0.336, 1);
    opacity: 1;
    transform: scale(1);
}

.application .title{
    font-size: calc(38 * var(--rpx-50));
    line-height: calc(48 * var(--rpx));
    transition: .2s;
}

.application .info-bottom{
    overflow: hidden;
    transition: .2s;
}

.application:hover .info-bottom{
    color: #000;
    transition: .4s;
}

.application .keyword{
    font-size: calc(18em / 16);
    line-height: calc(27em / 18);
    height: 0;
    margin-top: 0;
    overflow: hidden;
    transition: .2s;
    opacity: 0;
    color: #000;
}

.application:hover .keyword{
    height: calc(54em / 18);
    margin-top: calc(12 * var(--rpx));
    transition: .6s cubic-bezier(0.15, 1, 0.336, 1);
    opacity: 1;
}

.scroll-hint{
    position: absolute;
    left: var(--wrapper-margin);
    bottom: calc(72 * var(--rpx));
    z-index: 260;
}


