@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --default-clamp-padding: 0px;
}

.Manrope {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.Montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

html body {
  font-family: Manrope, "Inter", sans-serif;
  background-color: #ffffff;
  margin: 0;
}
html body * {
  font-family: Manrope, "Inter", sans-serif;
}
html body #header_menu {
  padding: 0;
}
html body #header_menu ul {
  list-style: none;
}
html body #header_menu nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
html body #header_menu nav .logo-container {
  order: 1;
  flex-shrink: 0;
}
html body #header_menu nav .main-menu {
  order: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 2rem;
  overflow: visible;
}
html body #header_menu nav .contact {
  order: 3;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
html body #header_menu nav .menu-btn {
  order: 4;
  display: none;
}
html body #header_menu nav .menu-icon {
  order: 5;
  display: none;
}
html body #header_menu .contact .tel svg {
  color: #0d5fa6;
  fill: #0d5fa6;
  width: 48px;
  height: 48px;
  transition: color 0.3s ease-in-out, fill 0.3s ease-in-out;
}
html body #header_menu .contact .tel svg:hover {
  color: #38b6ff;
  fill: #38b6ff;
}
html body #header_menu .contact .booking a {
  background-color: #0d5fa6;
  color: #ffffff;
  padding: 20px;
  border-radius: 50px;
  transition: background-color 0.3s ease-in-out;
  text-decoration: none;
}
html body #header_menu .contact .booking a:hover, html body #header_menu .contact .booking a:visited {
  background-color: #38b6ff;
  text-decoration: none;
}
html body #header_menu .menu-btn {
  display: none;
}
html body #header_menu .menu-icon {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  padding: 8px;
}
html body #header_menu .menu-icon .navicon {
  background: #0d5fa6;
  display: block;
  height: 2px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  border-radius: 1px;
}
html body #header_menu .menu-btn:checked ~ .menu-icon .navicon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
html body #header_menu .menu-btn:checked ~ .menu-icon .navicon:nth-child(2) {
  opacity: 0;
}
html body #header_menu .menu-btn:checked ~ .menu-icon .navicon:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}
@media screen and (max-width: 1024px) {
  html body #header_menu nav {
    flex-wrap: wrap;
  }
  html body #header_menu nav .logo-container {
    order: 1;
    flex: 0 0 auto;
  }
  html body #header_menu nav .contact {
    order: 2;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    margin-right: 1rem;
  }
  html body #header_menu nav .contact .tel a {
    display: inline-block;
    width: 32px;
    height: 32px;
  }
  html body #header_menu nav .contact .tel a svg {
    width: 32px;
    height: 32px;
  }
  html body #header_menu nav .contact .booking {
    height: 30px;
  }
  html body #header_menu nav .contact .booking a {
    padding: 8px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  html body #header_menu nav .menu-btn {
    order: 3;
  }
  html body #header_menu nav .menu-icon {
    order: 4;
    display: flex;
  }
  html body #header_menu nav .main-menu {
    order: 5;
    display: none !important;
    width: 100%;
    margin: 1rem 0 0 0;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
    flex-basis: 100%;
  }
  html body #header_menu .menu-btn:checked ~ .main-menu {
    display: flex !important;
  }
}
html body #content {
  padding: 0;
}

ul.main-menu {
  background-color: #ffffff;
  margin-bottom: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
}
ul.main-menu a {
  color: #666666;
  text-decoration: none;
  padding: 0.5rem 1rem;
  display: block;
  position: relative;
  overflow: hidden;
}
ul.main-menu a::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #0d5fa6;
  padding: 0.5rem 1rem;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.5s ease-in-out;
  z-index: 1;
  background-color: transparent;
  pointer-events: none;
}
ul.main-menu a:hover::before {
  clip-path: inset(0 0 0 0);
}
ul.main-menu li.menu-item {
  position: relative;
}
ul.main-menu li.menu-item a {
  color: #666666;
  font-size: 0.75rem;
  font-weight: bold;
  text-transform: none;
}
ul.main-menu li.menu-item a:visited {
  color: #666666;
  text-decoration: none;
}
ul.main-menu li.menu-item.menu-item-has-children > a {
  padding-right: 2rem;
}
ul.main-menu li.menu-item.menu-item-has-children::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  font-size: 0.7em;
  color: #666666;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 2;
}
ul.main-menu li.menu-item.menu-item-has-children:hover::after {
  content: "▲";
  color: #0d5fa6;
  transform: translateY(-50%) scale(1.1);
}
ul.main-menu li.menu-item.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible !important;
  overflow: visible !important;
  display: block !important;
  transform: translateY(0);
}
ul.main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  width: 220px;
  opacity: 0;
  visibility: hidden;
  display: none;
  transform: translateY(-10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: visible !important;
  z-index: 1000;
  margin-top: 8px;
}
ul.main-menu .sub-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}
ul.main-menu .sub-menu li.menu-item {
  background-color: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}
ul.main-menu .sub-menu li.menu-item:last-child {
  border-bottom: none;
}
ul.main-menu .sub-menu li.menu-item:hover {
  background-color: rgba(0, 123, 186, 0.05);
}
ul.main-menu .sub-menu li.menu-item a {
  background-color: transparent !important;
  color: #666666;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: none;
  padding: 12px 16px;
  display: block;
  position: relative;
  transition: all 0.3s ease;
  overflow: visible;
}
ul.main-menu .sub-menu li.menu-item a::before {
  display: none;
}
ul.main-menu .sub-menu li.menu-item a:hover {
  color: #0d5fa6 !important;
  text-decoration: none;
  padding-left: 50px !important;
}
ul.main-menu .sub-menu li.menu-item a:hover::after {
  content: "→";
  position: absolute;
  left: 16px;
  color: #0d5fa6;
  font-weight: bold;
}
ul.main-menu .sub-menu li.menu-item a:visited {
  color: #666666;
  text-decoration: none;
}
ul.main-menu .sub-menu li.menu-item::after {
  display: none !important;
}
@media screen and (max-width: 1024px) {
  ul.main-menu {
    flex-direction: column;
    gap: 0;
  }
  ul.main-menu li.menu-item a {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
  }
  ul.main-menu li.menu-item a::before {
    display: none;
  }
  ul.main-menu li.menu-item a:hover {
    background-color: #f8f9fa;
    color: #0d5fa6;
  }
  ul.main-menu li.menu-item:last-child a {
    border-bottom: none;
  }
  ul.main-menu li.menu-item.menu-item-has-children > a {
    padding-right: 3rem;
  }
  ul.main-menu li.menu-item.menu-item-has-children::after {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 0.8em;
  }
  ul.main-menu li.menu-item.menu-item-has-children.submenu-open::after {
    content: "▲";
    color: #0d5fa6;
    transform: translateY(-50%) rotate(180deg);
  }
  ul.main-menu .sub-menu {
    position: static !important;
    width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
    background-color: #f8f9fa !important;
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
  }
  ul.main-menu .sub-menu::before {
    display: none !important;
  }
  ul.main-menu .sub-menu[style*="display: block"] {
    max-height: 300px;
    padding: 0.5rem 0;
  }
  ul.main-menu .sub-menu li.menu-item a {
    padding-left: 2rem !important;
    font-size: 0.85rem !important;
    color: #666 !important;
    background-color: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: all 0.2s ease !important;
  }
  ul.main-menu .sub-menu li.menu-item a::before {
    display: none !important;
  }
  ul.main-menu .sub-menu li.menu-item a:hover {
    background-color: #e9ecef !important;
    color: #0d5fa6 !important;
    padding-left: 2.5rem !important;
    transform: translateX(5px);
  }
  ul.main-menu .sub-menu li.menu-item a::after {
    display: none !important;
  }
  ul.main-menu .sub-menu li.menu-item::after {
    display: none !important;
  }
}

footer {
  display: flex;
  flex-direction: column;
  max-width: 1024px !important;
  margin: 0 auto;
}
footer > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 10px 20px;
  gap: 1rem;
}

footer .footer-container h3 {
  font-size: 1rem;
}
footer .footer-container .opening-hours h3 {
  margin-bottom: 0.5rem;
}
footer .footer-container .opening-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-container .opening-hours ul li {
  margin-bottom: 0.25rem;
  color: #666666;
  font-size: 0.8rem;
}
footer .footer-container .contact p {
  color: #949494;
  font-weight: 600;
  display: unset;
  font-family: Montserrat, "Montserrat Fallback", serif;
}
footer .footer-container .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .footer-container .logo img {
  width: 256px;
  height: auto;
}

footer .footer-copyright * {
  font-size: 0.65rem;
}
footer .footer-copyright a {
  text-decoration: none;
  color: #38b6ff;
}
footer .footer-copyright #technolution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
footer .footer-copyright #technolution img {
  width: 128px;
  height: auto;
}
footer .footer-copyright #technolution a {
  color: #666666;
  text-decoration: none;
}
footer .footer-copyright #technolution a:hover {
  text-decoration: underline;
}

/*# sourceMappingURL=main.css.map */
