body {
  display: flex;
  flex-direction: column;
    margin: 0;
}

.companyInfo {
    position: fixed;
    top: 0;
    width: 100%;     
    display: flex;
    align-items: center;
    background: white;
    z-index: 100;   
}
.menu{
    padding-top: 20px;
    list-style: none;
    display: flex;
    font-family: 'K2D';
    align-items: center;         
    font-size: 16px;
    font-weight: 30px;
    gap: 30px;
    justify-content: center; 
    margin-top: 0;
}
.menu li {
    padding: 0 15px;
    border-right: 1px solid #ccc;
}

.menu li:last-child {
    border-right: none;
}

.menu li img {
    width: 100%;
}

.menu a { 
    text-decoration: none;
    color: #34dbff;
}
.menu a:hover {
  text-decoration:double;
  color: #19fb99;
}

* {box-sizing:border-box}

.slideshow-container {
    background-position: center;
    right: 0;
    width: 100vw;       /* full width of viewport */
    height: 100vh;      /* full height of viewport */
    position: relative;
    overflow: hidden;    /* hide overflow when cropping */
}

.prev,.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}





footer {
    left: 0;
    width: 100%;     
    position: fixed;  
    bottom: 0;     
    z-index: 10;        
    background: transparent;
    opacity: .5;
}
.waves {
    width:100%;
    height:80px;
    display:block;
    }

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

.overlay {
    position: absolute;
    top: 25%;  
    left: 30%;  
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: bold;
    font-family: 'K2D';
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    z-index: 99;
    pointer-events: none; 
    
    /* Used https://raghavvelan.medium.com/shimmering-text-animation-with-just-html-css-edc9bb035ec1 */
    background: linear-gradient(135deg, #ffffff, #70e4f0, #ffffff);
    background-clip: text;
    color: transparent;
    background-size: 200% 100%;
    animation: shimmer 5s linear infinite;
}


@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 360px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: fixed;
  z-index: 100; 
  top: 20%;
  left: 70%;
}


/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


