.clickable-text {
  cursor: pointer;
}

/* Reset some basic elements */
body, h1, h2, h3, p, a {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  padding: 5px 10px;
  align-items: center; /* Vertically center the content */
  background-color: #004f54; /* Adjust the color to match the image */
  color: white;
}



.headers-items {
  /*.headers-items div {*/
  display: flex;
  align-items: center; /* Aligns items vertically in the center */
  gap: 5px; /* Space between items */
}
  
.elementor-icon-list-icon,
.contact-text {
  display: inline-flex; /* Aligns items horizontally */
  align-items: center;  /* Vertically centers the items */
  margin-right: 5px;   /* Adds a separation of approximately 10px */
  vertical-align: middle; /* Align the icon vertically in the middle relative to the sibling text */
}

.elementor-icon-list-icon {
  transform: scale(0.7); /* Reduce the size by 50% */
}

.elementor-icon-list-icon svg {
  display: inline-block; /* Ensures SVG stays inline */
  vertical-align: middle; /* Aligns the SVG vertically with the text */
  margin-left: 10px;
}

.contact-text {
  font-size: 0.7em;
  line-height: 1.6;
  
}
  
  
.social-media-container {
  display: flex;
}

.social-link {
  text-decoration: none;
  color: white;
  margin-left: 10px; /* Separation between icons */
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
}

.logo img {
  width: 100%; /* Make the logo width responsive */
  max-width: 120px; /* Maximum width */
  height: auto; /* Maintain aspect ratio */
}
  
.logo, .call-button {
  flex: 0 0 auto; /* This prevents them from growing and keeps them at their natural size */
}

.nav-links {
  flex: 1 0 auto; /* This allows the navigation links to grow and take available space */
  justify-content: center; /* Centers the links within the flex container */
  list-style: none;
  padding: 0;
  display: flex;
}
  
.nav-links li {
  padding: 0 15px;
}
  
.nav-links a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
}
  
.call-button {
  background-color: #f5a623;
  padding: 10px 20px;
  border-radius: 5px;
}
  
.call-button a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

.call-button.invisible {
  visibility: hidden;
}  

.header-container, .navbar {
  display: show;
}

.mobile-header-container{
  display: none; /* This hides the header container and navbar on mobile screens */
}

.navbar-mobile {
  display: none; /* Hide on larger screens by default */
}

.newsAlert-content-mobile-fixed {
  display: none; /* Hide on larger screens by default */
}

.nav-links li a span{
  color: #fff;
  font-weight: bold;
}

/* Define the marquee animation to the newsAlert-container */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.newsAlert-wrapper {
  width: 100%; /* Occupy 80% of the screen width */
  margin: 0 auto; /* Center the container horizontally */
}

.newsAlert-container{
  position: relative; /* Ensures absolute positioning works correctly within this container */
  /*width: 80%; /* Occupy 80% of the screen width */
  margin: 0 auto; /* Center the container horizontally */
  padding: 5px 10px; /* Reduced padding */
  overflow: hidden; /* Ensure content stays within the container */
  white-space: nowrap; /* Prevents line breaks */
  box-sizing: border-box;
}

.newsAlert-content {
  display: inline-block; /* Ensure the content is treated as a single line */
  white-space: nowrap; /* Prevents line breaks within the container */
  animation: marquee 32s linear infinite; /* Ns duration, linear speed, infinite loop */
  font-size: 0.8em; /* Reduce font size */
  padding: 2px 5px; /* Reduce padding */
  line-height: 1.2; /* Reduce line height */
  min-width: 200%; /* Ensures the content is wide enough to fit both h5 tags without wrapping */
}

.newsAlert-content-fixed {
  display: inline-block; /* Ensure the content is treated as a single line */
  white-space: nowrap; /* Prevents line breaks within the container */
  width: 100%;
  padding-top: 2px; 
  padding-bottom: 8px;
}

.newsAlert-container h5 {
  display: inline-block; /* Ensure the text is treated as a single line */
  white-space: nowrap; /* Prevents line breaks within the container */
  animation: marquee 35s linear infinite; /* Ns duration, linear speed, infinite loop */
  /*color: #f5a623;*/
  color: #ffffff;
  font-size: 0.8em; /* Optionally reduce font size */
  line-height: 1.2; /* Reduced line-height */
  margin: 0; /* Remove margin */
  padding: 2px 5px; /* Reduce padding */
}

.mobile-header-container-news{
  display: none;
}

.news-desktop{
  width: 80%; /* Use 100% of the parent container */
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically if needed */
  color: #000000;
}



@media (max-width: 768px) {
  .header-container, .navbar, .newsAlert-content-fixed {
    display: none;
  }

  .newsAlert-content-mobile-fixed {
    display: block;
    width: 100%;
    padding-top: 2px; 
    padding-bottom: 8px;
  }

  .mobile-header-container{
    /* display: block; /* This show the header container and navbar on mobile screens */
    /* align-items: center; /* Aligns items vertically in the center */
    display: flex;
    justify-content: space-between; /* Align items to the left, center, and right */
    align-items: center;
    padding: 10px;
  }

  .mobile-header-container-news{
    display: flex;
  }

  .news-mobile{
    width: 100%; /* Use 100% of the parent container */
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically if needed */
    color: #000000;
  }



  .navbar-mobile {
    display: block; /* Show on small screens */
  }

  .hamburger-icon {
    /* display: block; */
    cursor: pointer;
    font-size: 24px; /* Size of the hamburger icon */
    background: none;
    border: none;
    color: #000; /* Color of the hamburger icon */
    /* top: 1em; /* Adjust as necessary */
    /* right: 6em; /* Adjust as necessary */
    z-index: 1002; /* Higher than the navbar-mobile z-index */
  }

  .mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }


  .mobile-logo {
    flex-grow: 1; /* Allow the logo to take available space */
    text-align: center; /* Center the logo */
  }


  .mobile-logo img {
    /*margin-left: 4em;*/
    max-width: 180px; /* Adjust the width as necessary */
    height: auto; /* Maintain aspect ratio */
    /*padding: 1em 2em;*/
  }

  .navbar-mobile {
    position: fixed;
    top: 0;
    right: -100%; /* Start off the screen to the right */
    width: 250px; /* Adjust the width of the side menu */
    height: 100%;
    background-color: #000; /* Background color black */
    color: #fff;
    overflow-y: auto;
    transition: right 0.3s ease; /* Smooth transition */
    z-index: 1001; /* Ensure it's above other content, but below the hamburger icon */
    padding-top: 10px; /* Space for the close button */    
  }
  
  .navbar-mobile.active {
    left: 0; /* Bring the side menu into view */
  }



  /* Close button (X) */
  .close-btn {
    position: absolute;  /* Absolutely positioned relative to its nearest positioned ancestor. */
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff; /* White color */
    font-size: 24px; /* Size of the close icon */
    z-index: 1000; /* Above the hamburger-icon */
    cursor: pointer;
  }

  /* Remove bullet points from list items in the side menu */
  .navbar-mobile .nav-links-mobile {
    list-style: none; /* Removes the default list-style */
    /*padding: 15px 30px;*/
    margin: 20px; /* Resets any default margin */
  }

  .nav-links-mobile li {
    display: block; /* Stack the links vertically */
  }
  
  .nav-links-mobile li a {
    display: block;
    padding: 10px; /* Larger tap area for links */
    color: #fff; /* Text color */
    text-decoration: none;
  }

  .mobile-call-button {
    display: flex;
    justify-content: flex-end; /* Align the call button to the right */
    margin-right: 0px;
    transform: scale(0.7); /* Reduce the size by 30% */
}

}