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;
}

.content{
    margin-bottom: 100px;
    padding-left: 40px;
    padding-top: 100px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    font-size:50px;
    
}

.right{
    border-radius: 15px;
    background-color: #f4f4f4;
    width:64%;
    pointer-events: none;
    flex-direction: row;
}

.left ul{
    font-size:24px;
    list-style: none;
}

.contactInfo{
    margin-left: 50px;
    margin-right: 50px;
    list-style:none;
    background-color: white;
    border-radius:15px;
}

.contactInfo li {
    font-size: 30px;
    margin-left:-40px;
    border: 20px solid #f4f4f4;;
}

.butt {
    display: flex;
    gap: 20px;
    justify-content: center; 
}

.cheekLeft{
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 6px;
}

.cheekRight{
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 6px;
}
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%); 
    color: white;
    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;
}


.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.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%;
}


.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}


