.homepage-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.homepage-slider {
    width: 100%;
}

.swiper-slide {
    width: 100%;
}

/* Video background styles */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Navigation arrows styles */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

/* Pagination styles */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    opacity: 0.8;
    background: #ffffff;
}

.swiper-pagination-bullet-active {
    background: #0366d6;
}

/* Hero styles based on the provided CSS */
.page-hero {
    background-color: rgba(132,132,132,0);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 100px;
    padding-right: 15px;
    padding-bottom: 100px;
    padding-left: 15px;
    position: relative;
}
/*
@media (min-width: 1025px) {
    .page-hero {
        border-radius: 0 0 250px 0;
    }
}
*/
.page-hero:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(-72deg, rgba(255,255,255,0) 40%, rgba(9,9,9,1) 100%);
    background: -webkit-linear-gradient(-72deg, rgba(255,255,255,0) 40%, rgba(9,9,9,1) 100%);
    background: linear-gradient(-72deg, rgba(255,255,255,0) 40%, rgba(9,9,9,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#090909",GradientType=1);
    z-index: 1;
}

.grid-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.page-hero .inside-page-hero.grid-container {
    max-width: calc(1200px - 15px - 15px);
}

.gb-container-46989d69 {
    z-index: 2;
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

.inside-page-hero > :last-child {
    margin-bottom: 0px;
}

h3.gb-headline-d66e3c0a {
    text-shadow: rgba(0,0,0,0.5) 5px 5px 10px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    color: var(--base-3, #ffffff);
}

h1.gb-headline-081ad128 {
    text-shadow: rgba(0,0,0,0.5) 5px 5px 10px;
    max-width: 550px;
    font-size: 55px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--base-3, #ffffff);
}

h3.gb-headline-ca5af2f3 {
    text-shadow: rgba(0,0,0,0.5) 5px 5px 10px;
    max-width: 450px;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--base-3, #ffffff);
}

.gb-container-d819fc3f {
    display: flex;
    flex-direction: row;
    column-gap: 1em;
}

a {
    color: var(--accent, #0065F2);
    text-decoration: none;
    transition: color .1s ease-in-out,background-color .1s ease-in-out;
}

a:hover, a:active {
    color: var(--contrast, #222222);
}

.gb-button {
    text-decoration: none;
}

.gb-button-6687cd8e {
    transition: all 0.5s ease;
}

a.gb-button-6687cd8e {
    display: inline-flex;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px 30px;
    background-color: var(--accent);
    color: #ffffff;
}

a.gb-button-6687cd8e:hover, a.gb-button-6687cd8e:active {
    background-color: var(--accent-3);
    color: #ffffff;
}

.gb-button-ffeb90e6 {
    transition: all 0.5s ease;
}

a.gb-button-ffeb90e6 {
    display: inline-flex;
    font-weight: 500;
    text-transform: uppercase;
    padding: 15px 30px;
    border: 1px solid var(--accent);
    color: #ffffff;
}

a.gb-button-ffeb90e6:hover, a.gb-button-ffeb90e6:active {
    border-color: var(--accent-1);
    background-color: var(--accent-1);
    color: #ffffff;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }
    
    h1.gb-headline-081ad128 {
        font-size: 40px;
    }
    
    .gb-container-d819fc3f {
        flex-direction: column;
        row-gap: 1em;
    }
    
    a.gb-button-6687cd8e, a.gb-button-ffeb90e6 {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    
    h1.gb-headline-081ad128 {
        font-size: 32px;
    }
    
    h3.gb-headline-ca5af2f3 {
        font-size: 16px;
    }
}