* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "ArchyEDT-Bold", sans-serif;
  }
  
  
  .nav-links li {
      margin: 0 15px;
    }
    
  body {
    background-color: #a6c4e0;
    margin: 0;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #38587e; /* Dark background */
    padding: 20px 40px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.274);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .logo-space {
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 60px; /* Increased the height of the logo */
  }
  
  .nav-links {
    list-style: none;
  }
  
  .nav-links li {
    display: inline;
    margin-left: 30px;
    position: relative;
  }
  
  .nav-links a {
    color: #f4f5ef; /* Light color for the text */
    text-decoration: none;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px; /* Adds space for the hover line */
    display: inline-block;
  }
  
  .nav-links a:hover {
    color: #7fb2e3; /* Color change on hover */
  }
  
  .nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    background: #7fb2e3; /* Gold line color */
    transition: width 0.3s;
    bottom: 0;
    left: 0;
  }
  
  .nav-links a:hover::after {
    width: 100%; /* Expands the hover line on hover */
  }
  
  .hero {
    margin-top: 100px; /* Adjusted for fixed navbar */
    text-align: left;
    background-color: #a6c4e0;
  }
  
  .hero-img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .text-content {
    margin: 40px 0;
    text-align: left;
    padding: 20px;
  }
  
  .text-content h1 {
    font-size: 32px;
    color: #38587e;
    margin-bottom: 20px;
  }
  
  .text-content p {
    font-size: 24px;
    color: #ffff;
    line-height: 1.6;
  }
  
  footer {
    background-color: #38587e; /* Dark background */
    color: #ecf0f1; /* Light text color */
    text-align: center;
    padding: 20px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .footer-content {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    flex-direction: row;
  }
  
  .footer-map {
    flex: 1;
    min-width: 300px; /* Ensures the map doesn't get too small */
  }
  
  .footer-info {
    flex: 1;
    text-align: left;
  }
  
  .footer-info p {
    margin-bottom: 10px;
  }
  
  iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  @media (max-width: 768px) {
    footer {
      flex-direction: column;
    }
  
    .footer-info {
      text-align: center;
    }
  
    .footer-map {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
  .Toma {
    color: #7fb2e3;
  }
  .Toma:hover {
    color: #a6c4e0;
  }
  
  .flag-link {
    display: inline-flex; /* Use inline-flex to align items in a row */
    align-items: center; /* Vertically align flags */
    margin-left: 15px; /* Space between the flags */
  }
  
  .flag-img {
    width: 30px; /* Adjust size of the flags */
    height: auto;
    border-radius: 5px;
    transition: border 0.3s, transform 0.3s;
  }
  
  .flag-link:hover .flag-img {
    border-color: #a6c4e0;
    transform: scale(1.1);
  }
  
  @media (min-width: 0px) and (max-width: 950px) {
    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
      }
  
      .nav-links {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
      }
  
      .nav-links li {
        margin-left: 0;
        margin-bottom: 10px;
      }
      .burger {
        display: flex;
      }
    }
    .flag-img {
      width: auto;
      height: auto;
      border: 2px solid transparent;
      border-radius: 5px;
      transition: border 0.3s, transform 0.3s;
    }
  }
  
  @media (min-width: 950px) and (max-width: 1200px) {
    .logo-space {
      height: 40px;
    }
    .nav-links a {
      font-size: 20px;
      padding-bottom: 3px;
    }
    .flag-img {
      width: 25px;
    }
    .flag-link {
      margin-left: 10px;
    }
    .nav-links li {
      margin-left: 15px;
    }
  }
  
  @media (min-width: 0px) and (max-width: 950px) {
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background-color: #17282f;
        position: absolute;
        top: 60px;
        right: 20px;
        width: 200px;
        border-radius: 5px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      }
  
      .nav-links.active {
        display: flex;
      }
  
      .nav-links li {
        margin: 10px 0;
      }
  
      .burger {
        display: flex;
      }
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: #38587e;
      padding: 20px 40px;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 5px 8px rgba(0, 0, 0, 0.274);
    }
  
    .logo-space {
      display: flex;
      align-items: center;
    }
  
    .logo {
      height: 60px;
    }
  
    .nav-links {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }
  
    .nav-links li {
      margin: 0 15px;
    }
  
    .flag-cont{
      width: 100px;
      margin-left: 15px;
    }
    .flag-cont *{
      width: 40px;
      margin: 0!important;
    }
  
    .nav-links a {
      text-decoration: none;
      color: #f4f5ef;
      font-size: 25px;
      font-weight: bold;
      padding-bottom: 5px;
      transition: color 0.3s ease-in-out;
    }
  
    .nav-links a:hover {
      color: #b69d74;
    }
  
    .flag-img {
      height: 25px;
      border-radius: 5px;
      transition: transform 0.3s, border 0.3s;
    }
  
    .flag-link:hover .flag-img {
      transform: scale(1.1);
      border: 2px solid #b69d74;
    }
  
    /* Burger Menu */
    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
  
    .burger div {
      width: 25px;
      height: 3px;
      background-color: #f4f5ef;
      margin: 3px 0;
      transition: all 0.3s ease-in-out;
    }
    .flag-cont {
      display: flex;
    }
  }
  /* 583*/
  
  .logo-space {
    display: flex;
    align-items: center;
  }
  
  .logo {
    height: 60px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  
  .nav-links a {
    text-decoration: none;
    color: #f4f5ef;
    font-size: 25px;
    font-weight: bold;
    padding-bottom: 5px;
    transition: color 0.3s ease-in-out;
  }
  
  .nav-links a:hover {
    color: #a6c4e0;
  }
  
  .flag-img {
    width: 40px;
    margin-left: 10px;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s, border 0.3s;
  }
  
  .flag-link:hover .flag-img {
    transform: scale(1.1);
    border: 2px solid #a6c4e0;
  }
  
  /* Burger Menu */
  .burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .burger div {
    width: 25px;
    height: 3px;
    background-color: #f4f5ef;
    margin: 3px 0;
    transition: all 0.3s ease-in-out;
  }
  
  /* Responsive Styles */
  
  @media (max-width: 950px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #38587e;
      position: absolute;
      top: calc(100% ); /* Adjusted to position below the logo */
      left: 0;
      width: 100%;
      border-radius: 5px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      padding: 10px 20px; /* Adds padding inside the menu */
      z-index: 999;
    }
    .flag-img {
      width: 30px;
      height: auto;
    }
  
    .burger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      position: relative;
      z-index: 1000; /* Ensure it's above the nav-links */
    }
  
    .burger div {
      width: 25px;
      height: 3px;
      background-color: #f4f5ef;
      margin: 3px 0;
      transition: all 0.3s ease-in-out;
    }
  
    .burger.active div:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }
  
    .burger.active div:nth-child(2) {
      opacity: 0;
    }
  
    .burger.active div:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }
  
    .nav-links.active {
      display: flex;
      animation: slideIn 0.3s forwards;
    }
  
    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
  
  @media screen and (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-info {
      text-align: center;
    }
  
    .footer-logo img {
      margin-top: 10px;
      width: 290px;
    }.footer-icons {
      margin-top: 15px;
      display: flex;
      gap: 10px;
      justify-content: center; /* Centers the icons horizontally */
      align-items: center;    /* Centers the icons vertically */
      padding-top: 25px;
  }
  
  
  .social-icon {
      display: inline-block;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      border-radius: 50%;
      background-color: #2d3e46;
      color: #ECF0F1;
      font-size: 18px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s, transform 0.3s;
  }
  
  .social-icon:hover {
      background-color: #BE8802;
      transform: scale(1.1);
  }
  
  .social-icon .icon {
      font-family: Arial, sans-serif;
      font-size: 18px;
  }
  }
  
  #loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #17282f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility: visible;
  }
  
  #load {
    position: relative;
    width: 600px;
    height: 36px;
    overflow: visible;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
  }
  
  #load div {
    position: absolute;
    width: 40px;
    height: 73px;
    opacity: 0;
    font-family: Helvetica, Arial, sans-serif;
    animation: move 2s linear infinite;
    color: #b69d74;
  }
  
  #load div:nth-child(2) {
    animation-delay: 0.2s;
  }
  #load div:nth-child(3) {
    animation-delay: 0.4s;
  }
  #load div:nth-child(4) {
    animation-delay: 0.6s;
  }
  #load div:nth-child(5) {
    animation-delay: 0.8s;
  }
  #load div:nth-child(6) {
    animation-delay: 1s;
  }
  #load div:nth-child(7) {
    animation-delay: 1.2s;
  }
  
  @keyframes move {
    0% {
      left: 0;
      opacity: 0;
    }
    35% {
      left: 41%;
      transform: rotate(0deg);
      opacity: 1;
    }
    65% {
      left: 59%;
      transform: rotate(0deg);
      opacity: 1;
    }
    100% {
      left: 100%;
      transform: rotate(-180deg);
      opacity: 0;
    }
  }
  
  #main-content {
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  