@font-face {
    font-family: "Montserrat Bold";
    src: url(./Montserrat-Bold.ttf);
}
@font-face {
    font-family: "Montserrat Regular";
    src: url(./Montserrat-Regular.ttf);
}
@font-face {
    font-family: "Montserrat Medium";
    src: url(./Montserrat-Medium.ttf);
}
body h1{
    font-family: "Montserrat Bold"!important;
}
body p{
    font-family: "Montserrat Regular"!important;
}
body a{
    font-family: "Montserrat Medium"!important;
}

.headerMenu {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5%!important;
  }
  .headerMenu a{
    color:#27c0e8;
}
  
  .headerMenu a:hover {
    text-decoration: none;
  }
  
  .hamburger {
    display: none; /* Hide hamburger by default */
    font-size: 24px;
    cursor: pointer;
  }
  
  .mobileMenu {
    display: none; /* Hide mobile menu by default */
    flex-direction: column;
    position: absolute; /* Absolute positioning */
    top: 5%; /* Adjust based on your layout */
    left: 0; /* Align it to the left */
    background-color: white; /* Change as needed */
    width: 100%;
    z-index: 1000; /* Ensure it's on top */
    animation: slideIn 0.3s ease; /* Animation */
  }
  
  .mobileMenu a {
    padding: 10px;
    text-align: center;
    border-top: 1px solid #ccc; /* Optional separator */
  }
  .socialMediaLogo{
    text-align: center;
}
.socialMediaLogo a{
    text-decoration: none;
}
.socialMediaLogo a:hover{
    text-decoration: none;
}
  
  @keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
  }

  @media (max-width: 600px) {
    .headerMenu {
        display: none; /* Hide header menu on small screens */
    }
    .hamburger {
        display: block; /* Show hamburger icon */
        margin-right: 5%;
    }
    .mobileMenu {
        display: none; /* Still hidden until toggled */
    }
    .socialMediaLogo{
      padding: 0% !important;
      text-align: left;
    }
    .socialMediaLogo img{
      margin-top:2%;
    }
    .colLogo{
      padding-right:0%!important
    }
  }
  .video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure video covers the container */
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 6em;
    font-weight: bold;
    text-align: center;
    animation: fadeIn 2s ease-in-out infinite alternate;
}

/* Animation for the text */
@keyframes fadeIn {
    from {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}