.instrument-sans {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.instrument-serif-regular {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.instrument-serif-regular-italic {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}


body {
  background-color: #f9fafb;
  color: #1f2937;
  font-family: "Instrument Serif", serif;
  font-weight: 400;      
  min-height: 100vh;
  font-size: 20px;
  display: flex;
  flex-direction: column;
}

nav {
  font-family: "Instrument Sans", sans-serif;
  font-weight: 700;
  background: #fff;
  font-size: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.pure-menu-has-children > .pure-menu-link{
  &:after {
  font-size: 1em;
  }
}

.nav-container {
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.triskele-top{
  width: 30px;
}

.site-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #047857;
  text-decoration: none;
}

.site-title:hover {
  color: #065f46;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}

.primary-menu li {
  display: inline-block;
  margin-left: 1rem;
}
.primary-menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
}
.primary-menu a:hover {
  color: #047857;
}
#menu-toggle {
  background: none;
  border: none;
  display: inline-flex;
  cursor: pointer;
}
#mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
}
#mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0.75rem 1rem;
}
#mobile-menu li {
  margin-bottom: 0.5rem;
}
#mobile-menu a {
  display: block;
  text-decoration: none;
  color: #1f2937;
}
#mobile-menu a:hover {
  color: #047857;
}
.banner{
  background-color: #047857;
  overflow-y: hidden;
}

@keyframes banner {
  0% { left: 25%; }
  100% { left: -25%; }
}

a.banner{
  text-decoration: none;
  overflow-y: hidden;
  &:hover{
    text-decoration: underline;
    text-decoration: solid 1px white;
  }
}
.banner p{
  position: relative;
  font-family: "Instrument Sans";
  font-weight: 700;
  color: white;
  text-wrap: nowrap;
  animation: banner 20s linear infinite;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  &:hover{
    animation-play-state: paused;
  }
}

.banner p a{
  text-decoration: none;
  overflow-y: hidden;
  color: white;
  &:hover{
    text-decoration: underline;
  }
}

main {
  flex-grow: 1;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.header{
  font-size: 42px;
}

.home-p-text{
    font-family: "Instrument Sans", sans-serif;
}

.hp-logo{
  width: 250px;
}

.page-title{
  font-family: "Instrument Sans", sans-serif;
  font-size: 42px;
  padding-right: 0px;
}

.page-left-title{
  font-size: 4em;
  margin-right: 1em;
  top: 20vh;
  text-align: right;
}
article h2, article h3, article h4{
  font-family: "Instrument Sans", sans-serif;
}

article.page{
  font-family: "Instrument Serif", serif;
  font-size: 32px;
  padding-top: 48px;
  line-height: 42px;
  max-width: 100vw;
}
.key_img{
  width: 90%;
  margin-left: 5%;
}

.registration-link{
  color: white;
  margin: 0 auto;
  font-family: "Instrument Sans";
  display: block;
}
.button-success {
  background: #047857;;
}

footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  & a{
    color:white;
  }
}

div.practical-info{
  font-family: "Instrument Sans";
  font-size: 24px;
}

strong{
  /* font-weight: normal;
  font-style: italic; */
}

@media (min-width: 768px) {
  .primary-menu {
    display: block;
  }
  #menu-toggle {
    display: none;  
  } 
  #mobile-menu {
  display: none !important; 
  }
  .header{
    font-size: 72px;
  }
  .l-box {
    padding: 24px;
  }
  .page-title{  
  padding-right: 48px;
}
}
