/* ========================================= */
/* NAVIGATION */
/* ========================================= */

.mod_navigation {
  position: fixed;
  top: 60px;
  left: 0;

  width: 100%;

  background: rgba(255,255,255,0.96);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid #e9e9e9;

  z-index: 4000;

  overflow: visible !important;

  transition: all 0.3s ease;
}

/* ========================================= */
/* MAIN MENU */
/* ========================================= */

.mod_navigation > ul {
  list-style: none;

  margin: 0 auto;
  padding: 18px 20px;

  max-width: 1200px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;
}

/* ========================================= */
/* MENU ITEMS */
/* ========================================= */

.mod_navigation li {
  position: relative;

  overflow: visible !important;
}

/* ========================================= */
/* LINKS */
/* ========================================= */

.mod_navigation a,
.mod_navigation strong {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 18px;

  border-radius: 10px;

  color: #2f2f2f;

  font-size: 16px;
  font-weight: 500;

  text-decoration: none;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

/* REMOVE OLD UNDERLINE */
.mod_navigation a::after,
.mod_navigation strong::after {
  display: none !important;
}

/* ========================================= */
/* DESKTOP DROPDOWN ICONS */
/* ========================================= */

@media (min-width: 769px) {

  /* ONLY ITEMS WITH SUBMENU */
  .mod_navigation li.submenu > a,
  .mod_navigation li.submenu > strong {
    gap: 8px;
  }

  /* SMALL CLEAN CHEVRON */
  .mod_navigation li.submenu > a::before,
  .mod_navigation li.submenu > strong::before {
    content: "";

    width: 6px;
    height: 6px;

    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;

    transform: rotate(45deg);

    margin-top: -3px;

    opacity: 0.75;

    transition:
      transform 0.2s ease,
      opacity 0.2s ease;
  }

  /* HOVER */
  .mod_navigation li.submenu:hover > a::before,
  .mod_navigation li.submenu:hover > strong::before {
    opacity: 1;

    transform: rotate(45deg) translateY(1px);
  }

}

/* HOVER */
.mod_navigation a:hover,
.mod_navigation li:hover > a,
.mod_navigation li:hover > strong {
  background: rgba(212, 0, 0, 0.08);

  color: #c40000;
}

/* ACTIVE */
.mod_navigation li.active > a,
.mod_navigation li.active > strong {
  background: rgba(212, 0, 0, 0.10);

  color: #c40000;

  font-weight: 600;
}

/* ========================================= */
/* HOME ICON */
/* ========================================= */

.mod_navigation li.nav-home > a,
.mod_navigation li.nav-home > strong {
  font-size: 0 !important;
  color: transparent !important;

  width: 44px;
  height: 44px;

  padding: 0;
}

.mod_navigation li.nav-home > a::before,
.mod_navigation li.nav-home > strong::before {
  content: "";

  width: 18px;
  height: 18px;

  display: block;

  background: url("/files/Images/home_44428.png") no-repeat center;
  background-size: contain;
}

@media (min-width: 769px) {

  .mod_navigation li {
    position: relative;
  }

  /* REMOVE ANY GAP GENERATORS */
  .mod_navigation li::after {
    display: none !important;
  }

  /* DROPDOWN */
  .mod_navigation li ul {
    position: fixed;

    /* IMPORTANT FIX */
    top: 70px;

    left: 0;

    width: 100vw;

    margin: 0;

    padding:
      24px
      0
      24px
      calc((100vw - 1200px) / 2 + 260px);

    list-style: none;

    background: #f7f7f7;

    border-top: none;

    box-shadow:
      0 8px 24px rgba(0,0,0,0.05);

    opacity: 0;
    visibility: hidden;

    transform: translateY(0);

    transition:
      opacity 0.22s ease,
      visibility 0.22s ease;

    z-index: 99999;
  }

  /* SHOW */
  .mod_navigation li:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  /* SUBMENU ITEMS */

  .mod_navigation li ul li {
    max-width: 520px;
  }

  .mod_navigation li ul li a {
    display: block;

    padding: 16px 0;

    border-radius: 0;

    background: transparent !important;

    color: #333;

    font-size: 17px;
    font-weight: 400;

    border-bottom: 1px solid #dddddd;

    transition:
      padding-left 0.25s ease,
      color 0.25s ease;
  }

  .mod_navigation li ul li:last-child a {
    border-bottom: none;
  }

  .mod_navigation li ul li a:hover {
    color: #c40000;

    padding-left: 10px;
  }

}

/* ========================================= */
/* MOBILE MENU */
/* ========================================= */

@media (max-width: 768px) {

  .menu-toggle {
    position: relative;
    z-index: 100001;

    display: block;
  }
 

  .mod_navigation {
    position: fixed;

    top: 60px;
    right: -320px;
    left: auto;

    width: 320px;
    max-width: 88vw;

    height: calc(100vh - 70px);

    background: #ffffff;

    box-shadow:
      -6px 0 24px rgba(0,0,0,0.08);

    transition: right 0.32s ease;

    z-index: 100000;

    overflow-y: auto !important;

    border-left: 1px solid #ececec;
  }

  .mod_navigation.active {
    right: 0;
  }

  /* TITLE */

  .mod_navigation::before {
    content: "Menü";

    display: block;

    padding: 22px 24px;

    font-size: 18px;
    font-weight: 700;

    color: #222;

    border-bottom: 1px solid #ececec;

    background: #fafafa;
  }

  /* RESET */

  .mod_navigation ul {
    list-style: none;

    margin: 0;
    padding: 0;
  }

  .mod_navigation > ul {
    display: flex;
    flex-direction: column;

    gap: 0;

    padding: 10px 0 30px;
  }

  /* MAIN LINKS */

  .mod_navigation > ul > li {
    border-bottom: 1px solid #f0f0f0;
  }

  .mod_navigation > ul > li > a,
  .mod_navigation > ul > li > strong {
    width: 100%;

    display: flex !important;
    align-items: center;
    justify-content: space-between;

    padding: 16px 24px;

    border-radius: 0;

    background: transparent !important;

    font-size: 16px;

    color: #2f2f2f;
  }

  /* MOBILE HOVER */

  .mod_navigation > ul > li > a:hover,
  .mod_navigation > ul > li > strong:hover {
    background: rgba(212,0,0,0.05) !important;
  }

  /* ARROWS */

  .mod_navigation > ul > li > a::before,
  .mod_navigation > ul > li > strong::before {
    display: none !important;
  }

  .mod_navigation > ul > li > a::after,
  .mod_navigation > ul > li > strong::after {
    content: "›";

    font-size: 18px;

    color: #999;

    /* FIX SPACING */
    margin-left: 14px;

    flex-shrink: 0;

    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  /* REMOVE HOME ARROW */

  .mod_navigation li.nav-home > a::after,
  .mod_navigation li.nav-home > strong::after {
    display: none !important;
  }

  /* FIX HOME ICON */

  .mod_navigation li.nav-home > a,
  .mod_navigation li.nav-home > strong {
    font-size: 0 !important;

    color: transparent !important;
  }

  .mod_navigation li.nav-home > a::before,
  .mod_navigation li.nav-home > strong::before {
    content: "" !important;

    display: block !important;

    width: 18px !important;
    height: 18px !important;

    background:
      url("/files/Images/home_44428.png")
      no-repeat
      center !important;

    background-size: contain !important;

    opacity: 1 !important;

    border: none !important;

    transform: none !important;
  }

  /* SUBMENU */

  .mod_navigation li ul {
    display: none;

    background: #f7f7f7;

    padding: 6px 0 10px;
  }

  .mod_navigation li.open > ul {
    display: block;
  }

  .mod_navigation li ul li a {
    display: block;

    padding: 13px 32px;

    color: #555;

    font-size: 14px;

    border-left: 2px solid transparent;

    transition:
      background 0.25s ease,
      border-color 0.25s ease,
      color 0.25s ease;
  }

  .mod_navigation li ul li a:hover {
    background: rgba(212,0,0,0.05);

    border-left-color: #d40000;

    color: #c40000;
  }
   .mod_navigation li.nav-home {
    display: flex;
    justify-content: center;
  }

  .mod_navigation li.nav-home > a,
  .mod_navigation li.nav-home > strong {
    width: auto !important;

    padding-left: 24px;
    padding-right: 24px;
  }

}
/* ========================================= */
/* FULL WIDTH VIDEO */
/* ========================================= */

.fullwidth-video {
  width: 100vw;

  margin-left: calc(-50vw + 50%);

  position: relative;

  overflow: hidden;
}

.fullwidth-video video {
  width: 100%;
  height: 80vh;

  object-fit: cover;

  display: block;
}

@media (max-width: 1024px) {

  .fullwidth-video video {
    height: 50vh;
  }

}

@media (max-width: 768px) {

  .fullwidth-video video {
    height: 40vh;
  }
 

}

/* ========================================= */
/* HIDE SEARCH MOBILE */
/* ========================================= */




/* ========================================= */
/* REMOVE SKIP NAVIGATION */
/* ========================================= */

.skip-link,
.skipNavigation,
.mod_skipNavigation,
a[href="#skipNavigation"],
a[href="#skipnavigation"],
a[href*="skipNavigation"],
a[href*="skipnavigation"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;

  width: 0 !important;
  height: 0 !important;

  overflow: hidden !important;

  position: absolute !important;

  left: -999999px !important;
  top: -999999px !important;

  pointer-events: none !important;
}