@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap");
html {
  font-size: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  text-align: justify;
  color: rgba(29, 29, 29, 0.7);
  line-height: 30px;
  min-height: 100vh;
  overflow-x: hidden;
}
body.noscroll {
  overflow: hidden;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

h1,
h2,
h3 {
  font-weight: 500;
  line-height: 50px;
  margin-top: 0;
}

h1 {
  font-size: 2.31rem;
  margin-bottom: 2.023rem;
}
@media (min-width: 64em) {
  h1 {
    font-size: 1.5rem;
  }
}

p {
  margin-top: 1.375rem;
  margin-bottom: 2.25rem;
}

a,
a:visited,
a:hover {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
}
.container--my {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 64em) {
  .container--my {
    margin-top: 2.375rem;
    margin-bottom: 2.375rem;
  }
}
.container--pall {
  padding-top: 4.375rem;
  padding-right: 1.5rem;
  padding-bottom: 4.375rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

header {
  position: relative;
}
@media (min-width: 64em) {
  header {
    background-color: #fff;
    z-index: 4;
  }
}
header .header__logo {
  order: 1;
  display: inline-block;
  width: 100%;
}
@media (min-width: 40em) {
  header .header__logo {
    width: calc(100% - 78vw);
  }
}
@media (min-width: 64em) {
  header .header__logo {
    width: 180px;
  }
}
@media (min-width: 40em) {
  header nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  header nav .container .nav__links {
    order: 2;
  }
}
header .nav__item {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  padding: 1rem 0;
}
header .nav__item .nav__link {
  display: inline-block;
  transition: 0.2s;
}
header .nav__item .nav__link:hover {
  cursor: pointer;
  opacity: 0.4;
}
header .nav__item:not(:last-child) {
  margin-right: 2rem;
}

@media (max-width: 63.9375em) {
  .menu__toggle {
    order: 2;
    position: relative;
    display: block;
    width: 26px;
    margin-left: auto;
    z-index: 10;
  }
}
.menu__toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: #000;
  opacity: 0.5;
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.menu__toggle span:not(:last-child) {
  margin-bottom: 5px;
}
.menu__toggle.open span:first-child {
  transform: rotate(45deg);
}
.menu__toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu__toggle.open span:last-child {
  transform: rotate(-45deg);
}

.spacer {
  height: 4rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 0;
  max-height: 150px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0 1rem;
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: 0.8s;
  z-index: 5;
}
.mobile-menu .menu__list {
  margin: 0;
  padding: 2rem 0;
}
.mobile-menu .menu__list .menu__item {
  padding: 0.2rem 0.4rem;
  width: max-content;
}

footer {
  padding: 1rem;
  padding-top: 2rem;
}
footer .container {
  justify-self: center;
}
footer .container .social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
footer .container .social-icons:hover {
  opacity: 0.7;
}
footer .container .social-icons span {
  display: inline-block;
  max-width: 1.875rem;
}
footer .container .social-icons span:not(:last-child) {
  margin-right: 1rem;
}
footer .container .social-icons span:hover {
  opacity: 0.6;
}

section {
  padding: 2rem 0;
}
@media (min-width: 62em) {
  section {
    padding: 4rem 0;
  }
}
section .title {
  font-size: 2rem;
  font-weight: 550;
  color: rgba(29, 29, 29, 0.75);
}
@media (min-width: 40em) {
  section .title {
    font-size: 2.5rem;
  }
}
section:last-of-type {
  padding-bottom: 4rem;
}
@media (min-width: 62em) {
  section:last-of-type {
    padding-bottom: 8rem;
  }
}

.hero__image {
  position: relative;
  width: 100%;
  height: 40vh;
  background-image: url("../assets/asap_bg1.png");
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.hotspot {
  position: absolute;
  display: block;
  z-index: 2;
}

/* Adjust these values to position the hotspots correctly */
.instagram {
  top: 10%;
  left: 7%;
  width: 15%;
  height: 10%;
}

.instagram1 {
  top: 30%;
  left: 7%;
  width: 18%;
  height: 63%;
}

.youtube {
  top: 20%;
  left: 7%;
  width: 25%;
  height: 7%;
}

.schedule {
  top: 83%;
  left: 36%;
  width: 30%;
  height: 15%;
}


@media (min-width: 40em) {
  .hero__image {
    height: 80vh;
    max-height: 800px;
    background-position: center;
  }
}

@media (min-width: 64em) {
  .hero__image {
    height: 110vh;
    min-height: 600px;
    max-height: 1000px;
    margin-top: 0;
    background-position: center;
  }
}

.artwork__details .artwork__description {
  margin-bottom: 2.398rem;
}
.artwork__details .artwork__description div {
  padding: 0.2rem 0;
  font-weight: 500;
}
.artwork__details .artwork__text p {
  max-width: 106ch;
}
.artwork__details .artwork__text p:last-child {
  margin-bottom: 0;
}

.characters-design .character-carousel {
  margin-top: 3.5rem;
}

@media (min-width: 64em) {
  .owl-carousel .owl-item img {
    max-width: 85%;
    margin: auto;
  }
}

.owl-dots {
  width: fit-content;
  margin: 4rem auto 0 auto;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.owl-dot span {
  height: 0.8rem;
  width: 0.8rem;
  margin: 0 0.5rem;
  border-radius: 100%;
  border: 1px solid #132F82;
  display: block;
}

.owl-dot:focus {
  outline: none;
}

.owl-dot.active span {
  background-color: #052b5d;
}

@media (min-width: 64em) {
  .floating-school__wrapper {
    display: flex;
    align-items: center;
  }
}
.floating-school__image img {
  object-fit: cover;
  object-position: bottom;
}
.floating-school__image figcaption {
  font-size: 0.82rem;
}
@media (min-width: 40em) {
  .floating-school__image {
    order: 2;
    margin: auto;
    flex: 1 1 45%;
  }
}
.floating-school__text {
  flex: 1 1 55%;
  margin-top: 2.023rem;
}
@media (min-width: 40em) {
  .floating-school__text {
    margin-right: 3rem;
    order: 1;
  }
}
@media (min-width: 64em) {
  .floating-school__text {
    margin-top: 0;
  }
}
.floating-school__text p {
  margin-bottom: 0;
}
.floating-school__text p:first-child {
  margin-top: 0;
}
.floating-school__text p .link:hover {
  text-decoration: underline;
}

.footer-hero__image {
  height: 26vh;
  max-height: 800px;
  background-image: url("../assets/asap_bg.jpg");
  background-color: #ddd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 40em) {
  .footer-hero__image {
    height: 40vh;
    max-height: 800px;
    background-position: 100% 90%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media (min-width: 64em) {
  .footer-hero__image {
    height: 100vh;
    max-height: 800px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

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