.nov25-selector .nov25-selector * { 
    -webkit-box-sizing: border-box; 
       -moz-box-sizing: border-box; 
        box-sizing: border-box; 
}

.nov25-selector {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.nov25-selector .video-container {
    position: absolute;
    display: flex;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.nov25-selector .overlay {
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('../images/pattern.png');
    background-repeat: repeat;
    opacity: 0.1;
    -webkit-transition: all 1s;
    transition: all 0.6s;
}

.nov25-selector .overlay.active {
    opacity: 1;
}

.nov25-selector a.button {
    text-decoration: none !important;
    border: 1px solid #FF96AC !important;
    color: #FF96AC !important;
    background-color: transparent !important;
    text-transform: uppercase;
    position: absolute;
    z-index: 3;
    font-size: 17px;
    padding: 14px 44px;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 0 !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    min-height: auto !important;
    display: inline-block !important;
    vertical-align: baseline !important;
    align-items: unset !important;
    justify-content: unset !important;
    white-space: normal !important;
    transition: none !important;
}

.nov25-selector a.button:hover {
    color: #000 !important;
    background-color: #FF96AC !important;
    opacity: 0.8;
}

.nov25-selector .logo {
    position: absolute;
    top: 50%;
    left: 3vw;
    width: 80vw;
    left: 10vw;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

/* Mobile adjustments */
@media (max-width: 779px) {
    .nov25-selector .logo {
        width: 60vw;
        left: 20vw;
        top: 40%;
    }
    
    .nov25-selector a.button {
        top: 70%;
    }
}

.nov25-selector .first,
.nov25-selector .second {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.nov25-selector .video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

@media (min-width: 780px) {
    .nov25-selector {
        display: flex;
        flex-wrap: wrap;
    }

    .nov25-selector .first,
    .nov25-selector .second {
        flex: 1 0 50%;
        display: flex;
        box-sizing: border-box;
        text-align: center;
        height: calc(100vh - 15vh); /* Account for header height */
        max-height: calc(100vh - 15vh);
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .nov25-selector .logo {
        width: 40vw;
        left: 5vw;
    }
}