/* %%%%%%%%%%%%%%%%%%%%%  index page  %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% */
/* header video */

.header-video{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height:100vh;
    z-index:999;
}

.content{
    width: 70%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.589);
    border-radius: 15px 0 0 15px;
}

.content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.content button {
    font-size: 1rem;
    padding: 12px 24px;
    background-color: var(--brand-orange);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.content button:hover {
    transform: scale(1.1);
}

.background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
