html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: y proximity;
    scroll-padding-top: 58px;
}

body {
    padding: 0;
    margin: 0;
    background-color: #d2d2d2;
    font-family:"Roboto-Regular";
}

a {
    text-decoration: none;
}

* {
    box-sizing: border-box;
}

section {
    height: 100%;
    scroll-snap-align: start;
    overflow: hidden;
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.083);
}

.navigation.is-fixed-top {
    top: 0;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
}

.navcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 4rem;
}

 /* The side navigation menu */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 6;
    top: 0;
    right: 0;
    background-color: #d2d2d2;
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.2);
}

  /* The navigation menu links */
.sidenav a {
    padding: 12px 8px 12px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

  /* When you mouse over the navigation links, change their color */
.sidenav a:hover {
    color: #000;
}

  /* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
} 

.videoGradient {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    max-height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 70%, #d2d2d2);
    z-index: 1;
    overflow: hidden;
}

#myVideo {
    right: 0;
    bottom: 0;
    height: 130vh;
    z-index: -1;
}

/* Style the button used to pause/play the video */
#myBtn {
    width: 100px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    color: #d2d2d2;
    text-shadow: 0px 2px 3px #383838;
    cursor: pointer;
    border-radius: 8px;
    z-index: 1;
    margin-left: -3vw;
}

#myBtn:hover {
    color: #f1f1f1;
    transition: 0.3s;
}

#myBtn2 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 2.5rem;
    margin-right: 1rem;
    font-size: 18px;
    padding: 10px;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    color: #d2d2d2;
    text-shadow: 0px 2px 3px #000;
    cursor: pointer;
    border-radius: 8px;
    z-index: 5;
}

#myBtn2:hover {
    color: #f1f1f1;
    transition: 0.3s;
}

.maincontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 95vh;
    padding: 5rem;
    z-index: 0;
}
/* SMARTPHONE */
@media screen and (max-width: 600px) {
    div.maincontainer {
        padding: 1rem;
    }
}

.maintextleft {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 55vw;
    height: 50vh;
    color: #f1f1f1;
    text-shadow: 0px 2px 3px #1f1f1f;
    background-color: #969696;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* FULLSCREEN */
@media screen and (min-width: 1305px) {
    div.maintextleft {
        font-size: 20px;
        width: 55vw;
        height: 50vh;
    }
}

@media screen and (min-width: 613px) and (max-width: 1304px) and (min-height: 781px) {
    div.maintextleft {
        font-size: 20px;
        width: 55vw;
        height: 50vh;
    }
}

/* SMARTPHONE */
@media screen and (min-width: 381px) and (max-width: 612px) {
    div.maintextleft {
        font-size: 15px;
        width: 100vw;
        height: 70vh;
    }
}

@media screen and (max-width: 380px) {
    div.maintextleft {
        font-size: 12px;
        width: 100vw;
        height: 70vh;
    }
}

/* SMARTPHONE LANDSCAPE */
@media screen and (min-width: 613px) and (max-height: 780px) {
    div.maintextleft {
        font-size: 10px;
        width: 55vw;
        height: 50vh;
    }
}

.maintextright{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: right;
    color: #f1f1f1;
    text-shadow: 0px 2px 3px #1f1f1f;
    background-color: #969696;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 16px 16px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}
/* FULLSCREEN */
@media screen and (min-width: 1305px) {
    div.maintextright {
        font-size: 20px;
        width: 55vw;
        height: 50vh;
    }
}

@media screen and (min-width: 613px) and (max-width: 1304px) and (min-height: 781px) {
    div.maintextright {
        font-size: 20px;
        width: 55vw;
        height: 50vh;
    }
}

/* SMARTPHONE */
@media screen and (min-width: 381px) and (max-width: 612px) {
    div.maintextright {
        font-size: 15px;
        width: 100vw;
        height: 70vh;
    }
}

@media screen and (max-width: 380px) {
    div.maintextright {
        font-size: 12px;
        width: 100vw;
        height: 70vh;
    }
}

/* SMARTPHONE LANDSCAPE */
@media screen and (min-width: 613px) and (max-height: 780px) {
    div.maintextright {
        font-size: 10px;
        width: 55vw;
        height: 50vh;
    }
}

.mainpictureRight{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 8px 8px 16px 8px rgba(0,0,0,0.2);
    z-index: 29;
    z-index: 1;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}
/* FULLSCREEN */
@media screen and (min-width: 1305px) {
    div.mainpictureRight {
        width: 35vw;
        height: 50vh;
    }
}
/* SMARTPHONE */
@media screen and (max-width: 612px) {
    div.mainpictureRight {
        width: 40vw;
        height: 70vh;
    }
}
/* SMARTPHONE LANDSCAPE */
@media screen and (min-width: 613px) and (max-width: 1304px) {
    div.mainpictureRight {
        width: 35vw;
        height: 50vh;
    }
}

.mainpictureLeft{
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 8px 8px 16px 8px rgba(0,0,0,0.2);
    z-index: 29;
    z-index: 1;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
/* FULLSCREEN */
@media screen and (min-width: 1305px) {
    div.mainpictureLeft {
        width: 35vw;
        height: 50vh;
    }
}
/* SMARTPHONE */
@media screen and (max-width: 612px) {
    div.mainpictureLeft {
        width: 40vw;
        height: 70vh;
    }
}
/* SMARTPHONE LANDSCAPE */
@media screen and (min-width: 613px) and (max-width: 1304px) {
    div.mainpictureLeft {
        width: 35vw;
        height: 50vh;
    }
}

.picture1{
    height: 100%;
    width: auto;
}

/* SMARTPHONE */
@media screen and (max-width: 600px) {
    .picture1 {
        width: 800px;
    }
}

.picture2{
    height: 100%;
    width: auto;
}

/* SMARTPHONE */
@media screen and (max-width: 600px) {
    .picture2 {
        width: 800px;
        margin-left: -2rem;
    }
}

.picture3{
    height: 100%;
    width: auto;
}

/* SMARTPHONE */
@media screen and (max-width: 600px) {
    .picture3 {
        width: 800px;
        margin-left: -8rem;
    }
}

/* VIDEOS PAGE */
.ytvideoLeft{
    width: 55vw;
    height: 50vh;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.ytvideoRight{
    width: 55vw;
    height: 50vh;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.videosTextLeft{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45vw;
    height: 50vh;
    color: #f1f1f1;
    text-shadow: 0px 2px 3px #1f1f1f;
    background-color: #969696;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.videosTextRight{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45vw;
    height: 50vh;
    color: #f1f1f1;
    text-shadow: 0px 2px 3px #1f1f1f;
    background-color: #969696;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* CONTACT PAGE */
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */ 
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
    background-color: #d2d2d2;
}

input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
    background-color: #d2d2d2;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #26b24b;
    color: #f1f1f1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    background-color: #1a7e35;
}

/* Add a background color and some padding around the form */
.containerform{
    width: 38rem;
    border-radius: 5px;
    background-color: #969696;
    padding: 20px;
    color: whitesmoke;
} 

@media screen and (max-height: 575px) {
    .containerform {
        height: 20rem;
    }
}

.messagefield {
    height: 200px;
}

@media screen and (max-height: 575px) {
    .messagefield {
        height: 42px;
    }
}

.footer{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 4rem;
    background-color: #969696;
    border-top: 2px solid #000;
    bottom: 0;
}