/*:root {
    --mxcolor: #009EE0;
    --mxBackground: #f2f2f2;
}*/

.mxColor {
    color: #009EE0;
}

.mxBackgroundBlue {
    background-color: #009EE0;
}

.mxBackgroundGrey {
    background-color: #f2f2f2;
}

.fw800 {
    font-weight: 800;
}

.fw600 {
    font-weight: 600;
}

.fw400 {
    font-weight: 400;
}

.fw300 {
    font-weight: 300;
}

.fs70 {
    font-size: 70px;
}

.fs8r{
    font-size: 8rem;
}

.fs2r{
    font-size: 2rem;
}

.fs3r{
    font-size: 3rem;
}

.my100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

html {
    font-size: 12px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    font-family:
    /* 1 */ -apple-system, BlinkMacSystemFont,
    /* 2 */ "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
    /* 3 */ "Helvetica Neue", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */    
}

.bwm_container {
    margin-top: 100px;
    margin-bottom: 100px;
}
.scrollcontainer {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
}

section {    
    position: relative;
    height: 100vh;    
    padding: 20px;
    scroll-snap-align: start;  
    /*overflow-y: scroll;*/ /* Enable vertical scrolling within sections */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire section */
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Places the video behind the content */
}

.content {
    position: relative;
    z-index: 1;
    left: 5%;
}

.headline {
    font-size: 1rem;
}

@media (min-width: 768px) {
    .content {
        position: relative;
        z-index: 1;
        left: 15%;
    }
}


@media (min-width: 768px) {
    .headline {
        font-size: 2rem;
    }
}

.mx-claim {
    margin-top: 3vh;
    margin-bottom: 3vh;
    font-weight: 800;
    font-size: 2rem;
    color: dodgerblue;
    text-align:center;
}

@media (min-width: 768px) {
    .mx-claim {
        margin-top: 3vh;
        margin-bottom: 3vh;
        font-weight: 800;
        font-size: 5rem;
        color: dodgerblue;
        text-align: center;
    }
}

.pic_container {
    position: relative;
    color: dodgerblue;
}

.overlay_text {
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}