/* Apply color scheme dynamically */
@import url(https://fonts.bunny.net/css?family=montserrat:300,400,500,600,700,800,900);
:root {
  --primary_main_colour_1: {{ color_scheme.primary_main_colour_1 | default:"rgba(18, 15, 45, 1.00)" }};
  --primary_main_colour_2: {{ color_scheme.primary_main_colour_2 | default:"rgba(89, 40, 229, 1.00)" }};
  --primary_main_colour_3: {{ color_scheme.primary_main_colour_3 | default:"rgba(232, 69, 199, 1.00)" }};
  --primary_main_colour_4: {{ color_scheme.primary_main_colour_4 | default:"rgba(35, 30, 60, 1.00)" }};
  --primary_black: {{ color_scheme.primary_black | default:"rgba(12, 10, 30, 1.00)" }};
  --primary_white: {{ color_scheme.primary_white | default:"rgba(240, 240, 255, 1.00)" }};
  --primary_site_danger: {{ color_scheme.primary_site_danger | default:"rgba(255, 77, 105, 1.0)" }};
  --primary_site_success: {{ color_scheme.primary_site_success | default:"rgba(82, 210, 132, 1.0)" }};
  --primary_site_background: {{ color_scheme.primary_site_background | default:"rgba(22, 19, 48, 1.00)" }};
  --primary_site_text: {{ color_scheme.primary_site_text | default:"rgba(230, 230, 255, 1.00)" }};
  --primary_button_gray: {{ color_scheme.primary_button_gray | default:"rgba(90, 90, 110, 1.00)" }};
  --primary_button_white: {{ color_scheme.primary_button_white | default:"rgba(255, 255, 255, 0.1)" }};
  --primary_shadows_spreed: {{ color_scheme.primary_shadows_spreed | default:"rgba(143, 98, 229, 0.15)" }};
  --primary_grey: {{ color_scheme.primary_grey | default:"rgba(130, 130, 150, 1.0)" }};
  --primary_grey_light: {{ color_scheme.primary_grey_light | default:"rgba(160, 160, 190, 1.0)" }};
  --primary_grey_light_2: {{ color_scheme.primary_grey_light_2 | default:"rgba(200, 180, 240, 0.1)" }};
  --primary_grey_light_3: {{ color_scheme.primary_grey_light_3 | default:"rgba(190, 190, 250, 0.07)" }};
  --primary_grey_light_4: {{ color_scheme.primary_grey_light_4 | default:"rgba(255, 255, 255, 0.04)" }};
  --primary_grey_dark: {{ color_scheme.primary_grey_dark | default:"rgba(90, 90, 120, 1.0)" }};
  --primary_footer_bg: {{ color_scheme.primary_footer_bg | default:"rgba(10, 8, 40, 1.00)" }};
}

.menu {
  float: right;
  line-height: 4.5em;
  text-align: right;
  padding: 0px;
  display: flex;
}
.menu a:link, .menu a:active, .menu a:visited {
  color: var(--primary_site_text);
  text-transform: capitalize;
  text-decoration: none;
  padding: 0 20px;
  font-weight: 500;
  border: none;
  outline: none;
  font-size: 0.95rem;
  text-align: right;
  transition: all 1.3s ease-in-out;
}
.menu a:link:hover, .menu a:active:hover, .menu a:visited:hover {
  color: var(--primary_main_colour_3);
  transition: all 1.3s ease-in-out;
}

.show-menu-btn, .hide-menu-btn {
  transition: 0.4s;
  font-size: 30px;
  cursor: pointer;
  display: none;
  transition: all 1.3s ease-in-out;
}
.show-menu-btn:hover, .hide-menu-btn:hover {
  color: var(--primary_main_colour_3);
  transition: all 1.3s ease-in-out;
}

.show-menu-btn {
  float: right;
  padding: 10px 0px 0px 0px;
}
.show-menu-btn:hover {
  color: var(--primary_main_colour_3);
  transition: all 1.3s ease-in-out;
}
.show-menu-btn iconify-icon {
  line-height: 50px;
  color: var(--primary_site_text);
  transition: all 1.3s ease-in-out;
}
.show-menu-btn iconify-icon:hover {
  color: var(--primary_main_colour_3);
  transition: all 1.3s ease-in-out;
}

#chk {
  position: absolute;
  visibility: hidden;
  z-index: -11;
}

.content {
  padding: 0px;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon styling */
.dropdown-toggle {
  cursor: pointer;
  margin-left: -1rem;
  font-size: 2rem;
}

/* Dropdown menu (hidden by default) */
.dropdown-menu {
  display: none;
  position: absolute;
  background: color-mix(in srgb, var(--primary_white) 10%, var(--primary_site_background));
  min-width: 150px;
  border: solid 1px color-mix(in srgb, var(--primary_white) 30%, var(--primary_site_background));
  z-index: 1000;
  text-align: left;
  top: 45px;
  border-radius: 10px;
}
.dropdown-menu a:link, .dropdown-menu a:active, .dropdown-menu a:visited {
  color: var(--primary_site_text);
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 500;
  border: none;
  outline: none;
  display: block;
  padding: 10px;
  text-align: left;
  font-size: 0.9rem;
  line-height: 1.1rem;
  border-bottom: 1px solid var(--primary_main_colour_1);
  transition: all 1.3s ease-in-out;
}
.dropdown-menu a:link:hover, .dropdown-menu a:active:hover, .dropdown-menu a:visited:hover {
  color: var(--primary_main_colour_3);
  background-color: var(--primary_main_colour_1);
  transition: all 1.3s ease-in-out;
}
.dropdown-menu a:link:hover:first-child, .dropdown-menu a:active:hover:first-child, .dropdown-menu a:visited:hover:first-child {
  border-radius: 10px 10px 0px 0px;
}
.dropdown-menu a:link:hover:last-child, .dropdown-menu a:active:hover:last-child, .dropdown-menu a:visited:hover:last-child {
  border-radius: 0px 0px 10px 10px;
}
.dropdown-menu a:last-child {
  border-bottom: none;
}

/* Show dropdown on hover for desktop */
@media screen and (min-width: 1222px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
/* Mobile dropdown */
@media screen and (max-width: 1221px) {
  .show-menu-btn, .hide-menu-btn {
    display: block;
  }
  .menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary_main_colour_1) 0%, var(--primary_main_colour_2) 40%, var(--primary_main_colour_3) 100%);
    background-attachment: fixed;
    right: -100%;
    top: 0;
    text-align: center;
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    transition: all 1.3s ease-in-out;
    animation: gradientShift 15s ease infinite;
    background-size: 400% 400%;
  }
  .menu a {
    padding: 20px;
    text-align: center;
    font-size: 2.5rem !important;
  }
  .dropdown {
    flex-wrap: wrap;
    max-width: 250px;
  }
  .dropdown-menu {
    position: relative;
    z-index: 1000;
    text-align: center;
    flex-direction: column;
    top: 0px;
  }
  .dropdown-menu a {
    font-size: 0.95rem !important;
  }
  .hide-menu-btn {
    position: absolute;
    top: 20px;
    right: 40px;
  }
  #chk:checked ~ .menu {
    right: 0;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

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