.header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto 0 auto;
    padding: 40px 20px 0;
    position: relative;
}

.header-left {
    max-width: 500px;
}

.main-title {
    color: #000;
    font-size: 34px;
    font-weight: 600;
    line-height: 41px;
    margin-bottom: 20px;
}

.subtitle {
    color: #050505;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    margin-bottom: 30px;
}

.ai-label {
    font-weight: 600;
}

.cta-button {
    background-color: #6C63FF;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 65px;
    cursor: pointer;
    font-size: 16px;
}

.graphic-placeholder {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;

    video {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

.graphic-text-block {
    position: absolute;
    color: #050505;
    font-size: 14px;
    padding: 50px;
    border-radius: 40px;
    z-index: 20;
    left: calc(50% - 176px);
    top: calc(50% + 104px);
    transform: translate(-50%, -50%);
}

.footer-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
    font-weight: 600;
    font-size: 14px;
    max-width: 1200px;
    margin: 0 auto;

    a {
        text-decoration: none;
        color: #000000;
    }

}

/*#body-s {*/
/*    background: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfDB8fGVufDB8fHx8fA%3D%3D");*/
/*}*/

.moove-mouse {

}

@media screen and (max-width: 950px) {
    main {
        overflow: hidden!important;
        width: 100vw!important;
        height: 100vh!important;
    }
    .graphic-placeholder {
        width: 100vw;
        height: 100vw;
        z-index: -1;
        transform: translate(-50%, calc(-50% + 90px));
    }
    .graphic-text-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 24px !important;
        min-width: 320px;
        border-radius: 24px;
        min-height: 135px;
        left: 50%;
        top: 73%;
    }
}




