.landing {
    height: calc(100vh - calc(95px + 102px + 53px));
    width: 100%;
    margin-top: 20px;
    @media (max-width: 768px) {
        margin-top: 0;
    }
    .container {
        height: 100%;
        .inside {
            position: relative;
            border-radius: 12px;
            width: 100%;
            height: 100%;
            background-image: url('../media/images/ai/landing1.jpg');
            background-size: cover;
            background-position: bottom right;
            background-repeat: no-repeat;
        }
    }
}
.coming {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    color: #FFFFFF;
    text-align: center;
    h1 {
        position: absolute;
        font-weight: 600;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: calc(2rem + 1.5vw);
        text-wrap: nowrap;
        @media (max-width: 768px) {
            font-size: calc(1.8rem + 1vw);
        }
    }
}