:root {
  --color-black: #000;
  --color-white: #fff;
  --color-black-fade: rgba(0, 0, 0, 0.75);
  --color-primary: #044e4e;
}

*,
*:after,
*:before {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background-color: #0d0012;
  background-size: cover;
  color: var(--color-white);
  font-family: var(var(--body-font-family));
  font-size: 1.6em;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

blockquote {
  border-left: 0.3rem solid var(--color-quaternary);
  margin-left: 0;
  margin-right: 0;
  padding: 1rem 1.5rem;
}
blockquote *:last-child {
  margin-bottom: 0;
}

.buttons,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  background: linear-gradient(
    to left top,
    hsl(205, 95%, 10%),
    hsl(180, 95%, 20%)
  );
  border: 0;
  border-radius: 0.24rem;
  color: var(--color-white);
  cursor: pointer;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  padding: 1.2rem 3rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.2s ease all;
  white-space: nowrap;
}
.buttons:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background: linear-gradient(
    to left top,
    hsl(205, 95%, 15%),
    hsl(180, 95%, 25%)
  );
  color: var(--color-white);
}
.buttons[disabled],
button[disabled],
input[type="button"][disabled],
input[type="reset"][disabled],
input[type="submit"][disabled] {
  cursor: default;
  opacity: 0.5;
}
.buttons[disabled]:focus,
.buttons[disabled]:hover,
button[disabled]:focus,
button[disabled]:hover,
input[type="button"][disabled]:focus,
input[type="button"][disabled]:hover,
input[type="reset"][disabled]:focus,
input[type="reset"][disabled]:hover,
input[type="submit"][disabled]:focus,
input[type="submit"][disabled]:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.buttons.button-outline,
button.button-outline,
input[type="button"].button-outline,
input[type="reset"].button-outline,
input[type="submit"].button-outline {
  background: transparent;
  border: 1px solid var(--color-white);
}
.buttons.button-outline:hover,
button.button-outline:hover,
input[type="button"].button-outline:hover,
input[type="reset"].button-outline:hover,
input[type="submit"].button-outline:hover {
  background-color: hsla(0, 0%, 100%, 0.1);
}

code {
  background: var(--color-tertiary);
  border-radius: 0.4rem;
  font-size: 86%;
  margin: 0 0.2rem;
  padding: 0.2rem 0.5rem;
  white-space: nowrap;
}

pre {
  background: var(--color-tertiary);
  border-left: 0.3rem solid var(--color-primary);
  overflow-y: hidden;
}
pre > code {
  border-radius: 0;
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

hr {
  border: 0;
  margin: 0;
  background: transparent url("images/SHNKC_Divider.svg") no-repeat center
    center;
  height: 8px;
  width: 100%;
}

input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="url"],
input[type="week"],
input:not([type]),
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0.1rem solid var(--color-quaternary);
  border-radius: 0.4rem;
  box-shadow: none;
  box-sizing: inherit;
  height: 3.8rem;
  padding: 0.6rem 1rem 0.7rem;
  width: 100%;
}
input[type="color"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary);
  outline: 0;
}

select {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23-color-quaternary" d="M0,0l6,8l6-8"/></svg>')
    center right no-repeat;
  padding-right: 3rem;
}
select:focus {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23-color-primary" d="M0,0l6,8l6-8"/></svg>');
}
select[multiple] {
  background: none;
  height: auto;
}

textarea {
  min-height: 6.5rem;
}

label,
legend {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

fieldset {
  border-width: 0;
  padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

.label-inline {
  display: inline-block;
  font-weight: normal;
  margin-left: 0.5rem;
}

:root {
  --container-xsmall: 24rem;
  --container-small: 40rem;
  --container-medium: 65rem;
  --container-large: 80rem;
  --container-xlarge: 112rem;
}

.container {
  margin: 0 auto;
  max-width: var(--container-xlarge);
  padding: 0 2rem;
  position: relative;
  width: 100%;
}
.container.container-small {
  max-width: var(--container-small);
}
.container.container-medium {
  max-width: var(--container-medium);
}
.container.container-large {
  max-width: var(--container-large);
}
.container.container-xlarge {
  max-width: var(--container-xlarge);
}

.row {
  display: flex;
  flex-direction: column;
  padding: 0;
  width: 100%;
}
.row.row-no-padding {
  padding: 0;
}
.row.row-no-padding > .column {
  padding: 0;
}
.row.row-wrap {
  flex-wrap: wrap;
}
.row.row-top {
  align-items: flex-start;
}
.row.row-bottom {
  align-items: flex-end;
}
.row.row-center {
  align-items: center;
}
.row.row-stretch {
  align-items: stretch;
}
.row.row-baseline {
  align-items: baseline;
}
.row .column {
  display: block;
  flex: 1 1 auto;
  margin-left: 0;
  max-width: 100%;
  width: 100%;
}
.row .column.column-offset-10 {
  margin-left: 10%;
}
.row .column.column-offset-20 {
  margin-left: 20%;
}
.row .column.column-offset-25 {
  margin-left: 25%;
}
.row .column.column-offset-33,
.row .column.column-offset-34 {
  margin-left: 33.3333%;
}
.row .column.column-offset-40 {
  margin-left: 40%;
}
.row .column.column-offset-50 {
  margin-left: 50%;
}
.row .column.column-offset-60 {
  margin-left: 60%;
}
.row .column.column-offset-66,
.row .column.column-offset-67 {
  margin-left: 66.6666%;
}
.row .column.column-offset-75 {
  margin-left: 75%;
}
.row .column.column-offset-80 {
  margin-left: 80%;
}
.row .column.column-offset-90 {
  margin-left: 90%;
}
.row .column.column-10 {
  flex: 0 0 10%;
  max-width: 10%;
}
.row .column.column-20 {
  flex: 0 0 20%;
  max-width: 20%;
}
.row .column.column-25 {
  flex: 0 0 25%;
  max-width: 25%;
}
.row .column.column-33,
.row .column.column-34 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.row .column.column-40 {
  flex: 0 0 40%;
  max-width: 40%;
}
.row .column.column-50 {
  flex: 0 0 50%;
  max-width: 50%;
}
.row .column.column-60 {
  flex: 0 0 60%;
  max-width: 60%;
}
.row .column.column-66,
.row .column.column-67 {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}
.row .column.column-75 {
  flex: 0 0 75%;
  max-width: 75%;
}
.row .column.column-80 {
  flex: 0 0 80%;
  max-width: 80%;
}
.row .column.column-90 {
  flex: 0 0 90%;
  max-width: 90%;
}
.row .column .column-top {
  align-self: flex-start;
}
.row .column .column-bottom {
  align-self: flex-end;
}
.row .column .column-center {
  align-self: center;
}

@media (min-width: var(--container-small)) {
  .row {
    flex-direction: row;
    margin-left: -1rem;
    width: calc(100% + 2rem);
  }
  .row .column {
    margin-bottom: inherit;
    padding: 0 1rem;
  }
}
.row {
  gap: 6rem;
}
@media only screen and (min-width: --container-small) {
  .row {
    gap: 1rem;
  }
}
.row .column.column-20 {
  flex: 1 1 auto;
  max-width: 100%;
}
@media only screen and (min-width: var(--container-small)) {
  .row .column.column-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.row .column.column-25 {
  flex: 1 1 auto;
  max-width: 100%;
}
@media only screen and (min-width: var(--container-small)) {
  .row .column.column-25 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.row .column.column-33,
.row .column.column-34 {
  flex: 1 1 auto;
  max-width: 100%;
}
@media only screen and (min-width: var(--container-small)) {
  .row .column.column-33,
  .row .column.column-34 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
.row .column.column-66,
.row .column.column-67 {
  flex: 1 1 auto;
  max-width: 100%;
}
@media only screen and (min-width: var(--container-small)) {
  .row .column.column-66,
  .row .column.column-67 {
    flex: 0 0 66.6667%;
    max-width: 66.6667%;
  }
}

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:focus,
a:hover {
  color: --color-secondary;
}

dl,
ol,
ul {
  list-style: none;
  margin-top: 0;
  padding-left: 0;
}
dl dl,
dl ol,
dl ul,
ol dl,
ol ol,
ol ul,
ul dl,
ul ol,
ul ul {
  font-size: 90%;
  margin: 1.5rem 0 1.5rem 3rem;
}

ol {
  list-style: decimal inside;
}

ul {
  list-style: circle inside;
}

li {
  list-style-position: outside;
  margin-left: 1.5rem;
}

ul.list--star {
  margin-bottom: 6rem;
}
ul.list--star:last-child {
  margin-bottom: 0;
}
ul.list--star li {
  list-style-position: inside;
  margin: 0;
  list-style: none;
}
ul.list--star li:before {
  content: "";
  display: inline-block;
  height: 1em;
  width: 1em;
  background-image: url("./images/sprites/STAR_GREEN_V3.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.5em;
  position: relative;
  top: 0.2em;
}
ul.list--star li:nth-child(2n):before {
  background-image: url("./images/sprites/STAR_PINK_V3.svg");
}
ul.list--star li:nth-child(3n):before {
  background-image: url("./images/sprites/STAR_YELLOW_V3.svg");
}

.button,
button,
dd,
dt,
li {
  margin-bottom: 1rem;
}

fieldset,
input,
select,
textarea {
  margin-bottom: 1.5rem;
}

blockquote,
dl,
figure,
form,
ol,
p,
pre,
table,
ul {
  margin-bottom: 2.5rem;
}

p:last-child {
  margin-bottom: 0;
}

table {
  border-spacing: 0;
  display: block;
  overflow-x: auto;
  text-align: left;
  width: 100%;
}

td,
th {
  border-bottom: 0.1rem solid var(--color-quinary);
  padding: 1.2rem 1.5rem;
}
td:first-child,
th:first-child {
  padding-left: 0;
}
td:last-child,
th:last-child {
  padding-right: 0;
}

@media (min-width: 40rem) {
  table {
    display: table;
    overflow-x: initial;
  }
}
body {
  font-family: "pelago", sans-serif;
  font-weight: 400;
  font-style: normal;
}

b,
strong {
  font-weight: bold;
}

p {
  margin-top: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: alda, serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 2rem;
  margin-top: 0;
  text-transform: uppercase;
}
h1 small,
.h1 small,
h2 small,
.h2 small,
h3 small,
.h3 small,
h4 small,
.h4 small,
h5 small,
.h5 small,
h6 small,
.h6 small {
  font-family: alda, serif;
  font-weight: 300;
  font-style: normal;
  font-size: 0.75em;
}

h1,
.h1 {
  font-size: 4.8rem;
  line-height: 1.2;
}

h2,
.h2 {
  font-size: 3.6rem;
  line-height: 1.25;
}

h3,
.h3 {
  font-size: 2.4rem;
  line-height: 1.3;
}
@media only screen and (min-width: 40rem) {
  h3,
  .h3 {
    font-size: 2.8rem;
  }
}

h4,
.h4 {
  font-size: 2.2rem;
  line-height: 1.35;
}

h5,
.h5 {
  font-size: 1.8rem;
  line-height: 1.5;
}

h6,
.h6 {
  font-size: 1.6rem;
  letter-spacing: 0;
  line-height: 1.4;
}

img {
  max-width: 100%;
}

.clearfix:after {
  clear: both;
  content: " ";
  display: table;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.not-sr-only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.sr-only-focusable {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

#skip-content {
  position: absolute;
  z-index: 9999;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 2rem;
  text-transform: uppercase;
  font-weight: 600;
  top: 6rem;
  left: 1rem;
  border-radius: 0.4rem;
  border: 2px solid white;
}

.background-waves {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.background-waves svg {
  position: absolute;
  inset: 0;
}
.background-waves .wave {
  width: 25%;
  height: 100%;
  position: relative;
  top: -100%;
}
.background-waves .wave-01 {
  box-shadow: 0 700px 200px blue;
  background-color: red;
}
.background-waves .wave-02 {
  box-shadow: 0 500px 200px rgb(104, 39, 43);
  background-color: rgb(212, 255, 0);
}
.background-waves .wave-03 {
  box-shadow: 0 800px 200px rgb(255, 0, 191);
  background-color: rgb(0, 255, 72);
}
.background-waves .wave-04 {
  box-shadow: 0 600px 200px rgb(0, 255, 251);
  background-color: rgb(0, 229, 255);
}

.background-waves-top {
  inset: 0;
}

body {
  position: relative;
}

#waves-slideshow {
  position: absolute;
  inset: 0;
  z-index: -1;
}
#waves-slideshow img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#waves-slideshow img:nth-of-type(1) {
  animation-name: slideshow-fader;
  animation-delay: 2s;
  animation-duration: 5s;
  z-index: 2;
}
#waves-slideshow img:nth-of-type(2) {
  z-index: 1;
}
#waves-slideshow img:nth-of-type(n + 3) {
  display: none;
}

nav#title-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
nav#title-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem;
}
nav#title-bar #gkids-logo {
  display: block;
  height: 3.6rem;
  width: 3.6rem;
  position: relative;
  z-index: 9999;
}
nav#title-bar .button {
  display: none;
}
@media only screen and (min-width: 28rem) {
  nav#title-bar {
    background-color: var(--color-black-fade);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  nav#title-bar .container {
    justify-content: space-between;
  }
  nav#title-bar #gkids-logo {
    display: block;
    height: 4.8rem;
    width: 4.8rem;
  }
  nav#title-bar .button {
    display: block;
    line-height: 4.8rem;
    height: 4.8rem;
    margin: 0;
    padding: 0 3rem;
  }
}

#header-slideshow {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  filter: saturate(0.5);
  pointer-events: none;
}
#header-slideshow img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#header-slideshow img:nth-of-type(1) {
  animation-name: slideshow-fader;
  animation-delay: 4s;
  animation-duration: 1s;
  z-index: 2;
}
#header-slideshow img:nth-of-type(2) {
  z-index: 1;
}
#header-slideshow img:nth-of-type(n + 3) {
  display: none;
}

@keyframes slideshow-fader {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#header {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  padding: 6rem 2.4rem 4.8rem;
}
#header .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
  position: relative;
  z-index: 4;
}
#header .content h1 {
  margin: 0;
  margin-top: 3.6rem;
  text-align: center;
}
#header .content h1 img {
  width: 26rem;
  display: block;
}
#header .content .button {
  margin: 0;
}
#header .call-to-action {
  text-align: center;
}
@media only screen and (min-width: 40rem) {
  #header .call-to-action {
    font-size: 2rem;
  }
  #header .call-to-action h2 {
    margin: 0;
  }
}
@media only screen and (min-width: 28rem) {
  #header {
    padding: 12rem 2.4rem;
    top: 0;
  }
  #header .content {
    padding: 9.6rem 0 0;
    height: auto;
    gap: 4.8rem;
  }
  #header .content h1 img {
    width: 64rem;
    display: block;
  }
  #header small {
    margin-bottom: 7.2rem;
  }
}

.splide {
  background-color: rgba(0, 0, 0, 0.25);
  color: var(--color-white);
  padding: 2.4rem 0;
}
.splide .splide__slide {
  width: 26rem;
}
.splide .title-item {
  margin: 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.splide .title-item img {
  aspect-ratio: 2/3;
  object-fit: cover;
  border-radius: 0.24rem;
  width: 100%;
}
.splide .title-item .button {
  margin: 0;
}
@media only screen and (min-width: 960px) {
  .splide {
    padding: 4.8rem;
  }
  .splide .splide__track {
    all: unset;
  }
  .splide .splide__slide {
    all: unset;
    width: auto;
  }
  .splide #splide-posters-list {
    all: unset;
    display: flex;
    gap: 2.4rem;
  }
  .splide .title-item {
    margin: 0;
  }
}

#posters {
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--color-white);
  padding: 2.4rem 0;
  display: none;
}
#posters .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
}
#posters .poster-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: 100%;
}
#posters .poster-item img {
  border-radius: 0.24rem;
}
#posters .poster-item .button {
  margin: 0;
}
@media only screen and (min-width: 25rem) {
  #posters .poster-item {
    width: calc(50% - 1.2rem);
  }
}
@media only screen and (min-width: 40rem) {
  #posters {
    padding: 4.8rem 0;
  }
  #posters .poster-item {
    width: calc(33.3333333333% - 2.4rem);
  }
}
@media only screen and (min-width: 60rem) {
  #posters .container {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  #posters .poster-item {
    width: 20%;
  }
}

#biography .container {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding: 2.4rem;
}
#biography .container:after {
  clear: both;
  content: " ";
  display: table;
}
#biography .bio-image {
  margin: 0 auto;
  width: 20rem;
}
#biography .bio-content h2 {
  text-align: center;
}
#biography img {
  border-radius: 0.24rem;
}
@media only screen and (min-width: 30rem) {
  #biography .container {
    display: block;
  }
  #biography .container .bio-image {
    float: right;
    padding: 0 0 2.4rem 2.4rem;
  }
  #biography .container .bio-image img {
    width: 40rem;
  }
  #biography .container .bio-content h2 {
    text-align: left;
  }
}
@media only screen and (min-width: 40rem) {
  #biography .container {
    display: flex;
    padding: 4.8rem 2.4rem;
    flex-direction: row;
  }
  #biography .container .bio-image {
    float: unset;
    padding: 0;
    width: auto;
  }
  #biography .container .bio-image img {
    position: sticky;
    top: 9.6rem;
    width: auto;
  }
}

footer#footer {
  background-color: var(--color-black-fade);
  backdrop-filter: blur(10px);
  color: white;
  padding: 4rem 0 2rem;
}
footer#footer img {
  max-width: 12rem;
  margin-bottom: 2rem;
}
footer#footer h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
}
footer#footer .gkids-nav {
  margin-bottom: 4rem;
}
footer#footer .gkids-nav ul.gkids-nav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
footer#footer .gkids-nav ul.gkids-nav-list li {
  margin: 0;
  padding: 0;
}
footer#footer .gkids-nav a {
  color: #fff;
}
footer#footer .gkids-nav a:hover {
  color: var(--color-primary);
}
footer#footer .copyright {
  margin-top: 3rem;
}
footer#footer .copyright,
footer#footer .privacy-policy {
  font-size: 0.8em;
  text-align: center;
}
footer#footer .privacy-policy {
  margin-top: 1rem;
  text-transform: uppercase;
}
footer#footer .privacy-policy a {
  color: white;
}
footer#footer .privacy-policy a:hover {
  color: white;
  text-decoration: underline;
}

footer .row {
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}
footer .row .social-list {
  justify-content: center;
  font-size: 1.6em;
}
@media only screen and (min-width: 60rem) {
  footer .row {
    flex-direction: row;
    text-align: left;
  }
  footer .row .social-list {
    justify-content: flex-start;
    font-size: 1em;
  }
}
footer .row .column.column-20 {
  flex: 1 1 auto;
  max-width: 100%;
}
@media only screen and (min-width: 60rem) {
  footer .row .column.column-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.social-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-list li {
  margin: 0;
  padding: 0;
}
.social-list a {
  color: #fff;
  display: block;
  padding: 0.5rem;
  transition: 0.2s ease color;
}
.social-list a:hover {
  color: var(--color-primary);
} /*# sourceMappingURL=style.css.map */
