html{
  scroll-behavior: smooth;
}

body{
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
  }
  
  @media only screen and (max-width: 768px) {
    body {
      font-size: 60%;
    }
  }
  a{
    color:white
  }


  header{
    background-color: #000000;
    padding-bottom: 20px;
    padding-top: 10px;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
    filter: drop-shadow(0px 10px 5px #000000);
    transition: position 0.3s ease-in-out;
    z-index: 998;
  }


  .header-content img{
    height: 1em;
    padding-right: 1%;
    padding-left: 1%;
    vertical-align: middle;
  }

  .logo{
    margin-right: 25px;
    padding-left: 10px;
    margin-top: 5px;
    pointer-events: none;
  }
  
  .logo img {
    height: 100px; /* Adjust the height as needed */
    width: auto;
    padding-left: 5px;
    margin-bottom: 15px;
  }
  @media only screen and (max-width: 768px) {
    .logo img{
      width: 30%;
      height: auto;
      transform: translateX(-100px);
      padding-left: 110px;
    }
  }

  nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  
  nav ul li{
    display: inline;
    margin-right: 40px;
  }
  nav ul li:last-child{
    margin-right: 0;
  }
  
  nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 110%;
    text-transform: uppercase;
    padding-right: 10px;
    padding-left: 10px;
  }

  nav ul li a:hover{
    text-decoration: none;
    box-shadow: 0 5px 0px rgba(255, 255, 255, 0.2);
    transition: ease-in-out 0.2s;
    font-size: 120%;
  }
  @media only screen and (max-width: 600px) {
    nav ul li a{
      font-size: 80%;
      padding: 0.3%;
      transition: width 0.3s ease;
    }
  }

  .dropdown{
    position:relative;
  }
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Position dropdown below the navbar */
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    min-width: 200px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    text-align: center;
    padding-right: 10%;
    padding-left: 10%;
    padding-bottom: 10%;
  }

  .dropdown-content a {
    color: rgb(255, 255, 255);
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    padding-bottom: 10px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
    max-height: max-content;

  }
  @media only screen and (max-width: 1200px) {
    .dropdown-content{
      min-width: 150px;
    }
    
    .dropdown-content a{
      font-size: 100%;
      margin-top: 10px;
      margin-bottom: 20px;
      padding-top: 30px;
      padding-bottom: 5px;
    }
  }


  .secondary-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    background-color: #141414;
    padding-right: 60px;
    font-size: 13px;
    padding-left: 0px;
    z-index: 999;
    transition: width 0.3s ease; /* Add transition for smooth width change */
  }
  
  .secondary-nav.show {
    display: block; /* Show the secondary nav when it has the "show" class */
    width: 10%; /* Adjust width as needed */
  }

  .project-list ul {
    padding-left: 0%;
    padding-right: 0px;
    padding-top: 15px;
    margin-top: 20px;
  }
  
  .project-list ul a {
    color: white;
    font-size: 95%;
    text-align: left;
    text-decoration: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  .project-list ul img{
    height: 1em;
    vertical-align: middle;
    padding-right: 2%;
  }


  @media only screen and (max-width: 1100px) {
    .project-list ul{
      font-size: 50%;
      transform: translateX(-10px);
      padding-top: 0px;
    }
  }
  
  .second-nav-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    width: 40px;
    height: auto;
    filter: invert(1) drop-shadow(0px 10px 5px #000000);
    cursor: pointer;
    z-index: 999;
    transition: transform 0.2s ease;
  }
  .second-nav-arrow.rotate {
    transform: translateY(-50%) rotate(90deg);
  }

.logo_secondnav{
  margin-top: 15px;
  margin-left: 20px;
}

.logo_secondnav img{
    height: 50px;
    width: auto;
    padding-left: 10px;
    filter: drop-shadow(0px 5px 15px #000000);
}
.project-list a:hover{
  text-decoration: none;
  box-shadow: 0 3px 0px rgba(255, 255, 255, 0.2);
  transition: ease-in-out 0.2s;
  transform: scale(1.05);
}

@media only screen and (max-width: 900px) {
  .logo_secondnav img{
    height: 30px;
  }
}








  #hero{
    position: relative;
    height: auto;
  }
  
  .video-container{
    position: relative;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    margin-top: 3%;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.20);
  }
  
  .video-container video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-container img{
    padding-top: 90px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }
  @media only screen and (max-width: 768px) {
    .video-container{
      width: 100%;
      margin-top: 2%;
    }
    .video-container video{
      margin-top: 100px;
      height: cover;
    }
  }

  .overlay-logo{
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensure it's above the video */
    filter: drop-shadow(0px 15px 5px #000000);
  }
  .overlay-logo img{
    width: 65%; /* Adjust the width as needed */
    height: auto;
  }
  
  .scroll-down{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .scroll-down img{
    width: 40px; /* Adjust as needed */
    height: auto;
    filter: invert(1) drop-shadow(0px 10px 5px #000000);;
  }
  @media only screen and (max-width: 768px) {
    .overlay-logo img{
      width: 70%;

    }
  }
  @media only screen and (max-width: 768px) {
    .scroll-down img{
      width: 10%;
      height: auto;
      transform:translateY(70%);

    }
  }



  #slideshow {
    position: relative;
    overflow: hidden;
    filter: drop-shadow(5px 10px 5px #000000);
  }
  
  .slides {
    white-space: nowrap; /* Prevent line breaks between slides */
    animation: slide 35s infinite; /* Adjust duration as needed */
  }
  
  .slide {
    display: inline-block; /* Display slides next to each other */
    position: relative;
    width: 100%;
  }
  #slideshow :hover{
    cursor: pointer;
    transform:scale(1.005);
  }
  
  .slides img {
    height: 600px;
    width: 100%;
    object-fit: cover;
    flex: 0 0 auto;
  }
  
  @keyframes slide {
    0% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-201%); }
    75% { transform: translateX(-301%); }
    100% { transform: translateX(-401%); }
  }

  .description {
    position: absolute;
    bottom: 75px;
    left: 75px; 
    color: white;
    font-size: 30px;
    text-align: left;
    filter: drop-shadow(5px 10px 5px #000000);
  }
  .project-logo {
    position: absolute;
    top: 50px;
    left: 75px;
    width: 30% !important;
    height: auto !important;
    z-index: 1;
    filter: drop-shadow(5px 10px 5px #000000);
  }
  @media only screen and (max-width: 1000px) {
    .slides{
      height: 305px;
    }
    .description{
      bottom: 325px;
    }
    .description p{
      font-size: 40%;
    }
  }


  

  #achievements{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #141414;
    text-align: center;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.20);
  }

  .container{
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    pointer-events: none;
  }
  .grid-item{
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.25);
  }



  .grid-item-1{
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.25);
    background-image: url(imgs/yt_banner.png);
    background-color: #141414;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
  }
  .grid-item-1 p {
    color: white;
    text-transform: uppercase;
    font-weight: bolder;
    padding-top: 10px;
    filter: drop-shadow(5px 2px 2px #000000);
  }

  .grid-item-2{
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.25);
    background-image: url(https://yt3.ggpht.com/onVPLOflmWrEOUysF6E6NU60F3dP1g0eE8xF9f61KGUZkXFr2DoDbMd5xzStlwKStLVdniq4wlgZ0A=s640-c-fcrop64=1,4ce10000dce0ffff-rw-nd-v1);
    background-color: #141414;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
  }
  .grid-item-2 p {
    color: white;
    text-transform: uppercase;
    font-weight: bolder;
    padding-top: 10px;
    filter: drop-shadow(5px 2px 2px #000000);
  }

  .grid-item-3{
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.25);
    background-image: url(https://i.ytimg.com/vi/UfQCktf2tqE/hq720.jpg?sqp=-oaymwEhCK4FEIIDSFryq4qpAxMIARUAAAAAGAElAADIQj0AgKJD&rs=AOn4CLAEFJbPqijlySjpYImLCM0yznovPQ);
    background-color: #141414;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
  }
  .grid-item-3 p {
    color: white;
    text-transform: uppercase;
    font-weight: bolder;
    padding-top: 10px;
    filter: drop-shadow(5px 2px 2px #000000);
  }
  .grid-item-4{
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.25);
    background-image: url(https://pbs.twimg.com/media/FVIAJnEXEAA4A36?format=jpg&name=4096x4096);
    background-color: #141414;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
  }
  .grid-item-4 p {
    color: white;
    text-transform: uppercase;
    font-weight: bolder;
    padding-top: 10px;
    filter: drop-shadow(5px 2px 2px #000000);
  }

  .grid-item-5{
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.25);
    background-image: url(https://s3.eu-central-1.amazonaws.com/storage.wdka.nl/storage/2017/04/02083002/07_WDKA_Stations_%C2%A9Ossip.jpg);
    background-color: #141414;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
  }
  .grid-item-5 p {
    color: white;
    text-transform: uppercase;
    padding-top: 10px;
    filter: drop-shadow(5px 2px 2px #000000);
  }
  .grid-item-6{
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 40px;
    border-radius: 15px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.25);
    background-image: url(https://www.animationmentor.com/wp-content/uploads/2014/09/squirrels-maya-rig.jpg);
    background-color: #141414;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
  }
  .grid-item-6 p {
    color: white;
    text-transform: uppercase;
    padding-top: 10px;
    filter: drop-shadow(5px 2px 2px #000000);
  }


  .grid-item p {
    color: white;
    text-transform: uppercase;
    filter: drop-shadow(5px 10px 5px #000000);
  }

  @media only screen and (max-width: 768px) {
    #achievements{
      padding-top: 0px;
    }
    
    #achievements p{
      font-size: 80%;
    }
    .grid-item{
      padding-bottom: 20px;
    }
    .grid-item-4{
      padding-bottom: 20px;
    }
    .grid-item-5{
      padding-bottom: 20px;
    }
  }


  .number{
    font-size: 30px !important; /* Adjust as needed */
    font-weight: bold; /* Optionally make the numbers bold */
    margin-bottom: 15px; /* Reduce the bottom margin */
    margin-top: 50px;
    margin-left: 0px;
    margin-right: 0px;
  }

  .text{
    font-size: 12px; /* Adjust as needed */
    margin-top: 0px; /* Add spacing between the number and text */
    line-height: 1;
    margin-right: 20%;
    margin-left:
     20%;
  }
  .modeling_bg{
    background-image: url(./imgs/proj_header_3dm.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    height: auto;
  }
  .animation_bg{
    background-image: url(./imgs/proj_header.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    height: auto;
  }
  .motdes_bg{
    background-image: url(./imgs/proj_header_motdes.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    height: auto;
  }
  .graphicdes_bg{
    background-image: url(./imgs/proj_header_graphdes.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    height: auto;
    margin-top: 7%;
  }
  .games_bg{
    background-image: url(./imgs/proj_header_game.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    height: auto;
    margin-top: 5%;
  }




  .name-tag{
    position: relative;
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
    filter: drop-shadow(0px 10px 4px #000000);
  }
  .name-tag-initial{
    position: relative;
    text-align: center;
    margin-left: 20%;
    margin-right: 20%;
    top: -200px;
    left: 0px;
    margin-bottom: -150px;
  }
  .name-tag-initial p{
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 10px;
    margin-top: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    filter: drop-shadow(5px 10px 3px #000000);
  }

  .name-tag p{
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 10px;
    margin-top: 20px;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }

  .name-tag-initial h1{
    text-align: center;
    text-transform: uppercase;
    margin-top: 0px;
    font-size: 25px;
    font-weight: normal;
    font-style: italic;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }
  .name-tag-initial h2{
    text-align: center;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: normal;
    font-style: italic;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }

  .name-tag-desc{
    font-size: 15px;
    font-family:'Times New Roman', Times, serif;
    font-style: italic;
    text-align: center;
    margin-top: 0px;
    padding-left: 25%;
    padding-right: 25%;
  }

  .name-tag-background{
    position: relative;
    background-image: url(./imgs/proj_header.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    margin-top: 40px;
    padding-bottom: 10px;
    filter: blur(10px);
  }



  @media only screen and (max-width: 1200px) {
    /* Adjust styles for screens smaller than 768px wide */
    .name-tag-desc{
      font-size: 90%; /* Decrease the font size */
    }
    .name-tag p{
      font-size: 200%;
    }
    .name-tag-initial p{
      padding-top: 0px;
      font-size: 250%;
    }
    .name-tag-initial h1{
      font-size: 150%;
    }
    .name-tag-initial h2{
      font-size: 60%;
    }
    .name-tag-background{
      margin-top: 20px;
    }
  }






  #image-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px; /* Adjust as needed */
    padding-bottom: 5%;
  }
  
  .image-container {
    position: relative;
    width: 90%; /* Ensure each container takes full width */
    height: 250px; /* Adjust as needed */
  }
  
  .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crop the image to cover the container */
    border-radius: 5px;
    filter: drop-shadow(5px 5px 5px #000000);
  }
  
  .title {
    position: absolute;
    text-align: center;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 35px;
    text-transform: uppercase;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    z-index: 1; 
    padding-bottom: 10px;
    filter: drop-shadow(5px 5px 5px #000000);
    transition: font-size 1s ease; /* Smoother transition */
  }
  .caption {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-style: italic;
    z-index: 2;
    filter: drop-shadow(5px 5px 5px #000000);
    transition: font-size 1s ease; /* Smoother transition */
  }
  @media screen and (max-width: 768px) {
    .title {
      font-size: 20px; /* Decrease font size for smaller screens */
    }
  
    .caption{
      font-size: 10px; /* Decrease font size for smaller screens */
    }
  }
  
  @media screen and (max-width: 480px) {
    .title {
      font-size: 20px; /* Further decrease font size for even smaller screens */
    }
  
    .caption{
      font-size: 10px; /* Further decrease font size for even smaller screens */
    }
  }


  .clientelle-banner {
    background-color:#141414; /* Background color for the banner */
    margin-bottom: 50px;
    filter: drop-shadow(5px 10px 5px #000000);
    padding-bottom: 20px;
  }
  
  .clientelle-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-right: 10%;
    margin-left: 10%;
  }
  
  .clientelle-logo {
    width: 150px; /* Fixed width for each logo container */
    height: 150px; /* Fixed height for each logo container */
    margin-right: 40px;
    margin-left: 40px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .clientelle-logo img {
    max-width: 90%;
    max-height: 100%;
  }
  .clientelle-logo :hover{
    transform: scale(1.02);
  }
  @media only screen and (max-width: 768px) {
    .clientelle-logo{
      width: 80px;
      height: 100px;
      margin-right: 20px;
      margin-left: 20px;
      margin-top: 0px;
    }
  }







  .reel{
    width: 90%;
    padding-bottom: 100px;
    padding-left: 5%;
    padding-right: 2%;
  }
  @media only screen and (max-width: 480px) {
    .reel{
      width: 90%;
      height: 100vh;
      
    }
  }
.reeltext{
  color:white;
  text-align:left;
  font-size: 24px;
  padding-left: 25px;
  padding-left: 5%;
  padding-right: 10%;
}





.project-header {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: -1%;
  padding-top: 3%;
  padding-left: 20%;
  padding-right: 20%;
  padding-bottom: 3%;
  margin-bottom: 3%;
  background-color: #141414;
  filter: drop-shadow(0px 0px 15px #000000);
}
@media only screen and (max-width: 768px) {
  .project-header {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.header-item {
  display: flex;
  justify-content: baseline;
  align-items: baseline;
}

.header-title {
  font-weight: bold;
  text-align: left;
  width: 100px;
  margin-right: 150px;
  text-transform: uppercase;
  font-size: 110%;
  font-family: 'Times New Roman', Times, serif;
}

.header-content {
  text-align: left;
  flex: 1;
  color:#aeaeae;
  font-family: 'Times New Roman', Times, serif;
}

@media (max-width: 900px) {
  .header-item {
      align-items: baseline;
  }
  .header-title {
      text-align: left;
      margin-right: 10%;;
      padding-bottom: 5%;
  }
  .header-content {
      margin-left: 0;
  }
}





.projectdescription{
  background-color: #141414;
  color: #969696;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: left;
  padding-top: 2%;
  padding-left: 30%;
  padding-right: 30%;
  padding-bottom: 2%;
  font-size: 100%;

}
@media only screen and (max-width: 480px) {
  .projectdescription{
    font-size: 10px;
    padding-left: 20%;
    padding-right: 20%;
  }
}
  
  .container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .hero-content{
    text-align: center;
  }

  #about {
    display: flex;
    align-items: center;
    background-color: #141414;
    padding-top: 25px;
    padding-bottom: 25px;
    box-shadow: 0 14px 8px rgba(0, 0, 0, 0.20);
    flex-direction: row;
}

.container-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
}

.summary-picture {
    flex: 1 1 40%;
    display: flex;
    justify-content: flex-start;
    order: 2;
    overflow: hidden;
    position: relative;
    pointer-events: none;
}

.summary-picture img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensures the image covers the container */
    object-position: center; /* Center the image within the container */
    clip-path: inset(0 25%);
    transform: scale(1.5);
}

.about-text {
    flex: 1 1 50%;
    padding: 10px;
    box-sizing: border-box;
    order: 1;
}

.about-text p {
    margin-left: 30%;
    padding-right: 15%;
    font-size: 120%;
    color: #fff;
    text-align: left;
}

@media only screen and (max-width: 1000px) {
    .container-about{
      flex-wrap: nowrap;
      flex-direction: row;
    }
    .summary-picture{
      flex: 1 4 50%;
  }
  #about{
    padding-bottom: 0px;
    padding-top: 5px;
  }
  .about-text p {
      text-align: left;
      font-size: 110%;
      padding-right: 0%;

  }
}
@media only screen and (max-width: 450px) {
  .about-text p {
    text-align: left;
    font-size: 80%;
  }
}

  .youtube-embed {
    flex: 1;
    padding-left: 0 20px;
  }
  
  .youtube-embed iframe{
    width: 75%;
  }


.employed-logos-section {
    padding-right: 10%;
    padding-left: 10%;
    padding-top: 20px;
    padding-bottom: 15px;
    background-color: #141414;
    margin-bottom: 50px;
    filter: drop-shadow(0px 10px 5px #000000);
}

.employed-logos-container {
    display: flex;
    flex-wrap: wrap; /* Ensure logos wrap on smaller screens */
    justify-content: space-around; /* Space logos evenly */
    margin: 10px 100px;
}

.employed-logos-item {
    flex: 1 1 calc(12.5% - 20px); /* Adjust width per item and spacing */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative; /* Make it a containing block for the tooltip */
}

.employed-logos-item img {
    max-width: 50px;
    height: auto;
    filter: drop-shadow(0px 10px 5px #000000);
}

.employed-logos-item p {
    position: absolute;
    color: #969696;
    transform: translateY(-350%);
    font-size: 50%;
    text-transform: uppercase;
}

.software-experience-tooltip {
    position: absolute;
    background-color: #141414;
    color: white;
    width: 175%;
    text-align: left;
    font-size: 12px;
    padding: 12px;
    margin-left: 40%;
    border-radius: 4px;
    white-space: normal;
    display: none;
    pointer-events: none;
    z-index: 999;
    top: -150%; /* Adjust position as needed */
    left: -50%;
    transform: translateX(-50px);
    filter: drop-shadow(0px 10px 5px #000000);

}


@media only screen and (max-width: 1100px) {
    .employed-logos-item {
        flex: 1 1 calc(12.5% - 10px); /* Adjust for smaller screens */
    }

    .employed-logos-container{
      margin-right: 10px;
      margin-left: 10px;
    }
    .employed-logos-item img{
      max-width: 25px;
      width: 25px;
    }
    .employed-logos-item p{
      transform: translateY(-300%);
      font-size: 40%;
    }
    .software-experience-tooltip {
      font-size: 8px;
      top: -250%;
      transform: translateX(-25px);
      width: 150%;
    }
}

@media only screen and (max-width: 480px) {
    .employed-logos-item {
        flex: 1 1 calc(12.5% - 10px); /* Adjust for even smaller screens */
    }
    .employed-logos-container{
      margin-right: 10px;
      margin-left: 10px;
    }
    .employed-logos-item img{
      max-width: 15px;
      width: 15px;
    }
    .employed-logos-item p{
      transform: translateY(-300%);   
      font-size: 2%3;
    }
    .software-experience-tooltip {
      font-size: 3px;
      top: -335%;
      width: 100%;
      transform: translateX(-10px);
  }
}












  .portfolio-image-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .render {
    width:100%;
    height: auto;
    position: relative;
    padding-bottom: 25px;
    overflow: hidden;
  }
  
  .render img {
    width: 100%;
    height: 750px;
    object-fit: cover;
  }

  .information {
    position: absolute;
    bottom: 100px;
    left: 0; /* Adjust as needed */
    right: 0; /* Adjust as needed */
    color: white;
    filter: drop-shadow(10px 10px 5px #000000);
  }
  
  .subject {
    font-size: 100px;
    text-transform: uppercase;
    font-weight: 100;
    font-family:monospace;
    margin: 0;
    text-align: center;
    transition: font-size 1s ease; /* Smoother transition */
  }
  
  .clients {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 100;
    font-family:monospace;
    margin: 20px 0 0;
    text-align: center;
    transition: font-size 1s ease; /* Smoother transition */
  }
  @media screen and (max-width: 850px) {
    .subject {
      font-size: 28px; /* Decrease font size for smaller screens */
    }
    .render{
      width: 100%;
      padding-bottom: 0%;
    }
    .render img{
      height: 90%;
    }
    .information{
      bottom: 15%;
    }
  
    .clients {
      font-size: 14px; /* Decrease font size for smaller screens */
    }
  }
  
  @media screen and (max-width: 480px) {
    .subject {
      font-size: 20px; /* Further decrease font size for even smaller screens */
    }
  
    .clients {
      font-size: 12px; /* Further decrease font size for even smaller screens */
    }
  }

  .process-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust the minimum width as needed */
    gap: 20px; /* Adjust the gap between grid items */
    padding-bottom: 20px;
    padding-right: 50px;
    padding-left: 50px;
  }
  .process-iten{
    width: 100%;
  }
  
  .process-item img {
    width:100%;
    height:100%;
    object-fit:contain;
    pointer-events: none;
  }


  .process-item embed{
    width:100%;
    height: 300vh;
    margin-right: auto;
    margin-left: auto;
    object-fit:contain;
  }







.timeline {
  position: relative;
  justify-content: center;
  padding-left: 50px;
  padding-right: 50px;
}

.central-line {
  position: absolute;
  width: 5px; /* Adjust the width of the central line */
  height: 100%;
  background-color: white;
  left: 50%;
  transform: translateX(-50%);
}

.branches {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px 0;
}

.branch {
  width: 48%; /* Adjust the width of each branch */
}

.left .event {
  display: flex;
  flex-direction: row-reverse; /* Reverse the order of event components */
}

.event {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 15px;
}
@media (max-width: 768px) {
  .event {
    width: 50%;
  }
}


.event-image img {
  max-width: 150px; /* Adjust the maximum width of event images */
  height: auto;
  margin: 0 5px; /* Adjust the margin between image and text */
}
@media (max-width: 480px) {
  .event-image img {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .event-text p {
    width: 100%;
    padding-left: 20%;
    font-size: 20px;
  }
}


.embed-frame{
  width: 100%;
  height: 250px;
}

.event-image iframe{
  max-width: 350px;
  padding-right: 10px;
}

.event-text {
  flex: 1;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 14px;
}

.event-text h3 {
  margin: 0;
  padding-bottom: 20px
}

.event-text p {
  margin: 0;
}
/* Media query for smaller screens */
@media (max-width: 480px) {
  .event-text p {
    font-size: 7px; /* Adjust font size for smaller screens */
  }
}
.contact-text{
  font-size: 20px;
  color: white;
  text-align: center;
}
.contact-linkthrough{
  font-size: 20px;
  color: white;
  text-align: center;
}
@media (max-width: 480px) {
  .contact-text  {
    font-size: 13px; /* Adjust font size for smaller screens */
    padding-right: 15%;
    padding-left: 15%;
  }
  .contact-linkthrough{
    font-size: 13px; /* Adjust font size for smaller screens */

  }
}


  footer{
    background-color: #000000;
    padding-top: 20px;
    padding-bottom: 5px;
    text-align: center;
  }
  .social-media{
    display: flex;
    justify-content: center;
  }
  
  .social-media a{
    margin: 0 20px; /* Adjust the spacing between logos */
  }
  .social-media img{
    width: 40px; /* Adjust the width */
    height: 40px; /* Adjust the height */
    filter: grayscale(1) contrast(1);
  }
  .copyright{
    font-style: italic;
  }
  @media (max-width: 480px) {
    .social-media img{
      width: 25px;
      height: 25px;
    }
  }
  