.page-header-widget {
    position: relative;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    color: white;
}

.page-header-widget .container {
    width: 100%;
    height: 100vh;
    padding: 0;
    overflow: hidden; 
}

.page-header-widget {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    color: white;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-swiper .page-header-content{ 
    max-width: 50%; 
    margin-top: 35vh; 
    text-align: left;
    font-weight: 600;
}

.page-header-widget h1 {
    text-shadow: #212529 1px 0 2px;
    font-size: 90px;
    margin-bottom: 20px;
}

.page-header-widget p {
    text-shadow: #212529 1px 0 10px;
    line-height: 1.2;
    font-size: 22px;
    margin-bottom: 30px;
}

.page-header-widget .page-header-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    /* display: inline-block; */
}

.page-header-widget .button {
    font-size: 20px;
    padding: 15px 60px;
    background-color: #DE7E00;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.page-header-widget .button.primary {
    background-color: #DE7E00;
    color: #000;
}

.page-header-widget .button.secondary {
    background-color: transparent;
    border: 1px solid #fff;
}

.page-header-widget .button.secondary:hover {
    border-color: #DE7E00;
}

.page-header-widget .button:hover {
    background-color: #DE7E00;
    color:#000;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /*opacity: 0.5*/
}



@media (max-width: 920px) {
    .page-header-swiper .page-header-content {
        max-width: fit-content;
        padding: 0 20px;
    }
    .page-header-widget .button {
        padding: 15px;
    }
    .page-header-widget h1 {
        font-size: 60px;
    }

}