@charset "UTF-8";

.pconly {
display: none;
visibility: hidden;
}

/* HEADER */

.header {
    font-family: "League Gothic-Regular", "Arial Narrow", Arial, sans-serif;
}

.mobiles {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 5px 3%;
  border-top: 2px solid var(--menuback);
  border-bottom: 2px solid var(--menuback);
}

  .header {
  padding: 5px 0;  
  max-width: 98%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-content: center;
}

@media (max-width: 599px) {
  .BIGemail {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 600px) {
  .SMALLemail {
    display: none;
    visibility: hidden;
  }
    .topcontact {
    column-gap: 2rem;
}
}

.logo {
	width: 100%;
  text-align: center;
}
.logo img {
	display: block;
	width: 100%;
	height: auto;
}

  .topcontact {
  display: flex;
  justify-content: flex-end;
    font-size: 2rem;
}
.topcontact a {
padding: 0 10px;
}
.topcontact, .topcontact a {
    color: var(--LTgreen);
    text-decoration: none;
	padding: 0;
}
.topcontact a:hover {
    color: var(--orange);
}
.topcontact i {
	padding-right: 1rem;
	font-size: 2rem;
}

/*NAV*/

#menu {
  font-family: "League Gothic-Regular", "Arial Narrow", Arial, sans-serif;
}

#menu, #menu ul ul {
  border-right: 1px dotted var(--menuback);
}
  #menu ul {
    height: 100%;
    overflow: auto;
  }

  #toggleheader {
    padding: 0;
   color: var(--LTgreen);
    font-size: 2.2rem;
  }
#toggleheader:hover {
  color: var(--orange);
}

  .navblock {
    padding: 0 10px;
    position: fixed;
    top: 0;
    z-index: 9999;
    height: 100vh;
  }

  #main-nav-check,
  #menu .sub-nav-check {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  #main-nav-check:checked~#menu,
  #menu .sub-nav-check:checked~[id$="-sub"] {
    left: 0;
  }

  #menu a {
    text-decoration: none;
  }

  #menu .toggle-sub {
    cursor: pointer;
    display: block;
  }

  .closehead {
    font-size: 4rem;
    position: absolute;
    color: var(--menuwhite);
    line-height: 50px;
    background: var(--menuback);
    width: 100%;
    text-align: right;
    padding-right: 10px;
  }

  #menu,
  #menu .sub-nav {
    position: fixed;
    top: 0;
    left: -100%; /* Moves it completely off-screen */
    width: 100vw; /* Ensures it fills the screen when opened */
    max-width: 400px; /* Limits the width to 400px on larger screens */
    height: 100%;
    background: var(--menuwhite);
    transition: left 0.25s ease-in-out; /* Smooth slide effect */
    overflow: auto;
  }

#menu .sublink {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    width: 100%; 
    border-left: 0;
    background: transparent;
    color: var(--menuback);
    padding: 5px 20px 5px 10px;
    text-decoration: none;
  }
#menu .sublink i {
    margin-left: auto; 
    color: var(--menuback)
}

  #menu .sublink a {
    color: var(--menuback);
    line-height: 2.5rem;
    text-decoration: none;
    font-size: 2rem;
  }

  #menu > ul {
    text-decoration: none;
    list-style: none;
    padding-top: 3.5rem;
  }

  #menu li {
    width: 100%;
    line-height: 2.5rem;
    background: #fff;
    border-bottom: 1px dotted var(--menuback);
  }

  #menu .sub-nav {
    text-decoration: none;
    list-style: none;
    height: 100vh;
    background: var(--menuwhite)
  }

  #menu .sub-nav .sub-heading {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: var(--menuwhite);
    font-size: 2rem;
    line-height: 3rem;
    background: var(--submenu);
    padding-left: 10px;
  }

  #menu .sub-nav .toggle {
    padding-right: 10px;
    font-size: 2rem;
    color: var(--menuwhite);
  }

  #menu li .sublink {
    font-size: 2rem;
  }

  #menu .sub-nav li a {
    color: var(--menuback);
    display: block;
  }







