/*  
    Contains the following: 
    - resets 
        - forms-resets
    - global variables 
    - common styles such as 
        - links
        - i_links
        - a
*/
@import url("https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap");
html {
  font-family: "Space Mono", monospace;
  background-color: var(--color-light);
  font-size: 0.8rem;
  --radious: 1rem;
}

a.act.apply {
  display: none;
}

h2 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

ul {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
ul li {
  display: inline-block;
  padding: 1rem;
  margin: 1rem 0rem;
  border: 0.2rem solid var(--color-accent);
  border-radius: var(--radious);
}

i-app > .foot {
  margin-top: 15rem;
  padding: var(--padding);
  text-align: center;
}
@media screen and (min-width: 600px) {
  i-onenav-objects-group {
    height: auto;
    grid-template-areas: "head body foot";
  }
  i-onenav-objects-group > .head {
    justify-self: center;
  }
  i-onenav-objects-group > .body > i-links-group > .body {
    flex-direction: row;
  }
  i-onenav-objects-group > .foot > i-links-group > .body {
    flex-direction: row;
  }
}
i-links-group.contacts .link:link, i-links-group.contacts .link:visited {
  display: inline-block;
  border-bottom: var(--border-width) solid var(--color-dark);
  padding-right: var(--padding);
  padding-left: var(--padding);
  transition: border-bottom-color 0.5s;
}
i-links-group.contacts .link:hover {
  border-bottom-color: var(--color-accent);
}
i-links-group.social {
  margin-top: var(--margin);
  margin-bottom: var(--margin);
}
i-links-group.social .link {
  font-weight: bold;
}
i-links-group.social .link:link, i-links-group.social .link:visited {
  color: var(--color-light);
  background-color: var(--color-dark);
  display: inline-block;
  padding: var(--padding);
  margin-top: var(--margin);
  transition: background-color 0.5s;
}
i-links-group.social .link:hover {
  background-color: var(--color-accent);
}

i-page > .head {
  height: 20rem;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
i-page > .head > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
i-page > .body {
  margin: 1rem auto;
  max-width: 900px;
  width: 100%;
}
i-page > .body > .content {
  margin: var(--margin);
}
i-page > .body > .content > .heading {
  font-size: var(--font-xlarge);
  font-weight: bolder;
  max-width: 30rem;
  margin-top: 6rem;
  margin-bottom: 6rem;
}
i-page[url="/"] > .head {
  height: 0rem;
}
i-page[url="/"] > .body > .content > .home-content {
  padding: 1rem var(--padding) 1rem var(--padding);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(var(--padding) * 4);
}
i-page[url="/"] > .body > .content > .home-content > .image {
  width: 40rem;
  height: 40rem;
  border-radius: 1000px;
}
i-page[url="/"] > .body > .content > .home-content > .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1000px;
}
i-page[url="/"] > .body > .content > .home-content > .content {
  font-size: calc(var(--font-large) * 1.5);
  max-width: 30rem;
  font-weight: bolder;
}
i-page[url="/"] > .body > .content .title-bar > .name {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: bold;
  margin: 1rem 0rem;
}
i-page[url="/"] > .body > .content .foot {
  text-align: center;
}
i-page[url="/"] > .body > .content .foot > .i-link {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.7rem;
  border-bottom: 0.1rem solid var(--color-accent);
}
i-page[url="/contacts"] > .body > .content .location-pix {
  display: grid;
  gap: 3rem;
  /* margin: 0px; */
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
}
i-page[url="/contacts"] > .body > .content .location-pix > img {
  width: 100%;
}
i-stack > .body > d-class > .body {
  display: grid;
  gap: 1rem;
  /* margin: 0px; */
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
}
i-stack > .body > d-class > .body > d-object {
  padding: var(--padding);
  display: block;
}
i-stack > .body > d-class > .body > d-object > .body > d-attr > d-attr-key {
  display: none;
}
i-stack[of=courses].selected > .body > d-class > .body {
  /* margin: 0px; */
  grid-template-columns: 1fr;
}
i-stack[of=courses].selected > .body > d-class > .body > d-object {
  padding: 0px;
}
i-stack[of=courses].selected > .body > d-class > .body > d-object > .body {
  display: grid;
  grid-template: "stack-area";
}
i-stack[of=courses].selected > .body > d-class > .body > d-object > .body > d-attr {
  grid-area: stack-area;
  width: 100%;
  display: block;
  padding: var(--padding);
}
i-stack[of=courses].selected > .body > d-class > .body > d-object > .body > d-attr.image {
  grid-area: stack-area;
  height: 14rem;
  padding: 0px;
}
i-stack[of=courses].selected > .body > d-class > .body > d-object > .body > d-attr.image > d-attr-value {
  display: block;
  height: 100%;
}
i-stack[of=courses].selected > .body > d-class > .body > d-object > .body > d-attr.image > d-attr-value > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
i-stack[of=courses].selected > .body > d-class > .body > d-object > .body > d-attr.title {
  font-weight: bolder;
  color: var(--color-light);
  font-size: var(--font-large);
}
i-stack[of=courses] > .body > d-class > .body > d-object > .body > d-attr > d-attr-value > img {
  border-radius: var(--radious);
}
i-stack[of=courses] > .body > d-class > .body > d-object > .body > d-attr.title {
  font-weight: bold;
  display: block;
  font-style: italic;
}
/* 



                    <p>Tune in on </p>
                    <p class="time">Saturday - 13th January 2024 - 06:00 PM </p>
                    <p> as we share our 2023 performances with you. </p>
*/
#event-soon {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radious);
  display: grid;
  grid-template-areas: "center";
}
#event-soon > video {
  grid-area: center;
  width: 100%;
  border-radius: var(--radious);
}
#event-soon > div {
  grid-area: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#event-soon > div > p {
  display: inline-block;
  padding: 1rem;
  color: white;
}
#event-soon > div > p.time {
  background-color: red;
  border-radius: var(--radious);
}

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