* {
  padding: 0%;
  margin: 0%;
  overflow-x: hidden;
}

/* ----------------------HOME PAGE---------------------- */
.video-background {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.container {
  display: flex;
  flex-direction: column;
  height: fit-content;
  width: fit-content;
}


/* ----------------------VIDEO OVERLAY---------------------- */
.video-content-overlay {
  position: absolute;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.349);
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(255, 0, 0, 0), rgba(255, 0, 0, 0), rgb(17, 17, 17));
}

.video-content-overlay .text-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 75%;
  background-color: rgba(0, 0, 0, 0);
}
.text-overlay img{
  width: 50%;
}


.video-content-overlay header {
  display: flex;
  align-items: center;
  height: fit-content;
  margin: 20px;
  padding: 0%;
  justify-content: space-between;
  background-color: rgba(236, 29, 29, 0);
}


/* HEADER */
header img {
  background-color: rgba(0, 0, 0, 0);
  width: 200px;
  padding-left: 30px;
}

header button {
  background-color: rgba(0, 0, 0, 0);
  color: white;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  border: none;
}

header button:hover {
  background-color: rgba(255, 255, 255, 0);

}

.header-tabs {
  width: 500px;
  padding-right: 100px;
  display: flex;
  justify-content: space-between;
}


/* ----------------------TAB STYLES---------------------- */
.tab-style-1 {
  flex-direction: column;
  background-color: rgb(5, 185, 167);
  color: rgb(17, 17, 17);
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  padding: 100px;
}

.tab-style-2 {
  padding-top: 100px;
  padding-bottom: 100px;
  align-items: center;
  text-align: center;
  background-color: rgb(17, 17, 17);
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  width: 100vw;
}

.tab-style-3 {
  padding-top: 100px;
  padding-bottom: 200px;
  text-align: center;
  background-image: linear-gradient(rgb(17, 17, 17), rgb(17, 17, 17), rgb(197, 43, 197));
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  width: 100vw;
}

.tab-style-4 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgb(197, 43, 197);
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  padding: 100px;
}

.tab-style-4 section{
  display: flex;
  flex-direction: column;
  text-align: center;
}


/* ----------------------PRODUCTS---------------------- */
.product-library {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgb(17, 17, 17);
  height: fit-content;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
}

.product-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgb(219, 219, 219);
  width: 300px;
  height: auto;
  margin: 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.single-product-library {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: rgb(17, 17, 17);
  height: fit-content;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  flex-wrap: wrap;
  padding-bottom: 100px;
}

.single-product-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: rgb(219, 219, 219);
  width: 300px;
  height: auto;
  margin: 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* PRODUCT TITLE */
.product-tab .product-title {
  width: 300px;
  height: 100px;
  background-color: rgb(197, 43, 197);
}

.product-tab .product-title h1 {
  margin-top: 9%;
  font-family: 'Poppins', sans-serif;
  padding-top: 10px;
  font-weight: 800;
  font-size: 25px;
}
.single-product-tab .single-product-title {
  width: 300px;
  height: 100px;
  background-color: rgb(197, 43, 197);
}

.single-product-tab .single-product-title h1 {
  margin-top: 9%;
  font-family: 'Poppins', sans-serif;
  padding-top: 10px;
  font-weight: 800;
  font-size: 25px;
}

/* PRODUCT LIST */
.product-tab ol {
  color: rgb(255, 255, 255);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  background-color: rgb(0, 0, 0);
  width: 300px;

}

.product-tab li {
  margin: 20px;
}

.single-product-tab ol {
  color: rgb(255, 255, 255);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  background-color: rgb(0, 0, 0);
  width: 300px;

}

.single-product-tab li {
  margin: 20px;
}

/* PRODUCT DESCPRIPTION */
.product-tab .description h4 {
  color: black;
  font-size: 19px;
  font-family: 'Poppins', sans-serif;
  margin: 10px;
  font-weight: 800;
}

.product-tab h3 {
  color: rgb(197, 43, 197);
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  padding-top: 10px;
  font-weight: 700;
}

.product-tab .description p {
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  color: black;
  padding: 15px;
}

.single-product-tab .single-product-description h4 {
  color: black;
  font-size: 19px;
  font-family: 'Poppins', sans-serif;
  margin: 10px;
  font-weight: 800;
}

.single-product-tab h3 {
  color: rgb(197, 43, 197);
  font-size: 25px;
  font-family: 'Poppins', sans-serif;
  padding-top: 10px;
  font-weight: 700;
}

.single-product-tab .single-product-description p {
  font-size: 12px;
  font-family: 'Poppins', sans-serif;
  color: black;
  padding: 15px;
}

/* PRODUCT BUTTON */
.product-tab button {
  background-color: rgb(5, 185, 167);
  border: none;
  padding: 20px 100%;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-top: 10px;
  transition-duration: 0.2s;
}

button:hover {
  background-color: rgb(197, 43, 197);
  cursor: pointer;
}

.single-product-tab button {
  background-color: rgb(5, 185, 167);
  border: none;
  padding: 20px 100%;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  margin-top: 10px;
  transition-duration: 0.2s;
}

button:hover {
  background-color: rgb(197, 43, 197);
}






.tab-werknemers {
  justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  flex-wrap: wrap;
  padding-top: 100px;

}

.werknemer {
  background-color: rgb(197, 43, 197);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.753); 
  margin: 40px;
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  width: 300px;
}

.werknemer h3 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-top: 10px;
}

.werknemer h4 {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
}

.werknemer p {
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin: 20px;
}

.werknemer img {
  object-fit: cover;
  width: 300px;
  height: 300px;
  border-radius: 100%;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  align-items: center;
  background-color: rgb(197, 43, 197);
  height: 200px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 40px;
}

footer img {
  background-color: rgba(0, 0, 0, 0);
  width: 15%;
  height: auto;
  padding: 10px;
}

footer .social-media {
  display: flex;
  align-items: center;
  justify-content: center;

}

footer .social-media img {
  width: 30%;
  margin: 20px;
}
.reveal{
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}


/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(128, 128, 128, 0); 

}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(197, 43, 197);

}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(155, 33, 155);
}


.contact-form{
  width: 100%;
  height: 100vh;
  background-color: rgb(17, 17, 17);
  display: flex;
  align-items: center;
  justify-content: center;
}

form{
  background-image: linear-gradient(rgb(5, 185, 167), rgb(197, 43, 197));
  display: flex;
  flex-direction: column;
  padding: 2vw 4vw;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.753); 
}
form h3{
  color: rgb(255, 255, 255);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}
form input, form textarea{
  border: 0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  background-color: rgba(245, 245, 245, 0.336);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
}

form button{
  padding: 15px;
  background-color: rgb(17, 17, 17);
  color: white;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 150px;
  margin: 20px auto 0;
  border-radius: 30px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

form button:hover {
  background-color: rgb(5, 185, 167);
  transition: .3s all ease;
}

form ::placeholder{
  color: white;
  font-family: 'Poppins', sans-serif;
}
.contact-button{
  padding: 15px;
  background-color: rgb(197, 43, 197);
  background-size: 100px 100px;
  color: white;
  font-size: 18px;
  border: 0;
  outline: none;
  cursor: pointer;
  width: 150px;
  margin: 20px auto 20px;
  border-radius: 30px;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: .3s all ease;

}
.contact-button:hover{
  box-shadow: rgba(197, 43, 197, 1) 0px 0px 12px;
}

select{
  border: 0;
  margin: 10px 0;
  padding: 20px;
  outline: none;
  background-color: rgba(245, 245, 245, 0.336);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  color: white;
}

optgroup{
  background-color: rgb(17,17,17);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  color: white;
}
option{
  background-color: rgb(17,17,17);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  border-radius: 10px;
  color: white;
}



/* ------------------------------------------------------------MOBILE VERSION------------------------------------------------------------ */
@media screen and (max-width: 420px) {
  .video-background {
    width: 100vw;
    height: 50vh;
    object-fit: cover;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    height: fit-content;
    width: fit-content;
  }
  
  
  /* ----------------------VIDEO OVERLAY---------------------- */
  .video-content-overlay {
    position: absolute;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.349);
    width: 100%;
    height: 50vh;
    background-image: linear-gradient(rgba(255, 0, 0, 0), rgba(255, 0, 0, 0), rgb(17, 17, 17));
  }
  
  .video-content-overlay .text-overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 75%;
    background-color: rgba(0, 0, 0, 0);
  }
  .text-overlay img{
    width: 70%;
  }
  
  
  .video-content-overlay header {
    display: flex;
    align-items: center;
    height: fit-content;
    margin: 20px;
    padding: 0%;
    justify-content: space-between;
    background-color: rgba(236, 29, 29, 0);
  }
  
  
  /* HEADER */
  header img {
    background-color: rgba(180, 56, 56, 0);
    width: 200px;

  }
  
  header button {
    visibility: none;
  }
  
  header button:hover {
    visibility: none;
  
  }
  
  .header-tabs {
    visibility: none;
  }
  
  
  /* ----------------------TAB STYLES---------------------- */
  .tab-style-1 {
    flex-direction: column;
    background-color: rgb(5, 185, 167);
    color: rgb(17, 17, 17);
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    padding: 100px;
  }
  
  .tab-style-2 {
    padding-top: 100px;
    padding-bottom: 100px;
    align-items: center;
    text-align: center;
    background-color: rgb(17, 17, 17);
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    width: 100vw;
  }
  
  .tab-style-3 {
    padding-top: 100px;
    padding-bottom: 200px;
    text-align: center;
    background-image: linear-gradient(rgb(17, 17, 17), rgb(17, 17, 17), rgb(197, 43, 197));
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    width: 100vw;
    
  }
  
  
  /* ----------------------PRODUCTS---------------------- */
  .product-library {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: rgb(17, 17, 17);
    height: fit-content;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    flex-wrap: wrap;
  }
  
  .product-tab {
    display: flex;
    
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgb(219, 219, 219);
    width: 300px;
    height: auto;
    margin: 30px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  .single-product-library {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: rgb(17, 17, 17);
    height: fit-content;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    flex-wrap: wrap;
    padding-bottom: 100px;
  }
  
  .single-product-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgb(219, 219, 219);
    width: 300px;
    height: auto;
    margin: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  
  /* PRODUCT TITLE */
  .product-tab .product-title {
    width: 300px;
    height: 100px;
    background-color: rgb(197, 43, 197);
  }
  
  .product-tab .product-title h1 {
    margin-top: 9%;
    font-family: 'Poppins', sans-serif;
    padding-top: 10px;
    font-weight: 800;
    font-size: 25px;
  }
  .single-product-tab .single-product-title {
    width: 300px;
    height: 100px;
    background-color: rgb(197, 43, 197);
  }
  
  .single-product-tab .single-product-title h1 {
    margin-top: 9%;
    font-family: 'Poppins', sans-serif;
    padding-top: 10px;
    font-weight: 800;
    font-size: 25px;
  }
  
  /* PRODUCT LIST */
  .product-tab ol {
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background-color: rgb(0, 0, 0);
    width: 300px;
  
  }
  
  .product-tab li {
    margin: 20px;
  }
  
  .single-product-tab ol {
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    background-color: rgb(0, 0, 0);
    width: 300px;
  
  }
  
  .single-product-tab li {
    margin: 20px;
  }
  
  /* PRODUCT DESCPRIPTION */
  .product-tab .description h4 {
    color: black;
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    margin: 10px;
    font-weight: 800;
  }
  
  .product-tab h3 {
    color: rgb(197, 43, 197);
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    padding-top: 10px;
    font-weight: 700;
  }
  
  .product-tab .description p {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: black;
    padding: 15px;
  }
  
  .single-product-tab .single-product-description h4 {
    color: black;
    font-size: 19px;
    font-family: 'Poppins', sans-serif;
    margin: 10px;
    font-weight: 800;
  }
  
  .single-product-tab h3 {
    color: rgb(197, 43, 197);
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    padding-top: 10px;
    font-weight: 700;
  }
  
  .single-product-tab .single-product-description p {
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    color: black;
    padding: 15px;
  }
  
  /* PRODUCT BUTTON */
  .product-tab button {
    background-color: rgb(5, 185, 167);
    border: none;
    padding: 20px 100%;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin-top: 10px;
    transition-duration: 0.2s;
  }
  
  button:hover {
    background-color: rgb(197, 43, 197);
    cursor: pointer;
  }
  
  .single-product-tab button {
    background-color: rgb(5, 185, 167);
    border: none;
    padding: 20px 100%;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    margin-top: 10px;
    transition-duration: 0.2s;
  }
  
  button:hover {
    background-color: rgb(197, 43, 197);
  }
  
  
  
  
  
  
  .tab-werknemers {
    justify-content: center;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    flex-wrap: wrap;
    padding-top: 100px;
  
  }
  
  .werknemer {
    background-color: rgb(197, 43, 197);
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.753); 
    margin: 40px;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    width: 300px;
  }
  
  .werknemer h3 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 20px;
    margin-top: 10px;
  }
  
  .werknemer h4 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
  }
  
  .werknemer p {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 12px;
    margin: 20px;
  }
  
  .werknemer img {
    object-fit: cover;
    width: 300px;
    height: 300px;
    border-radius: 100%;
  }
  
  footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: rgb(197, 43, 197);
    height: 200px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    padding: 40px;
  }
  
  footer img {
    background-color: rgba(0, 0, 0, 0);
    width: 15%;
    height: auto;
    padding: 10px;
  }
  
  footer .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
  
  }
  
  footer .social-media img {
    width: 30%;
    margin: 20px;
  }

}

