@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,400&family=Roboto:ital,wght@0,300;0,400;0,700;1,400&display=swap");
:root {
  /* Custom Colors */
  --color-black: hsl(0, 0%, 0%);
  --color-white: hsl(0, 0%, 100%);
  --color-accent: hsl(6, 73%, 61%);
  --color-bg-ltg: hsl(0, 0%, 98%);
  --color-bg-dark: hsl(0, 0%, 5%);
  --color-link: hsl(6, 73%, 61%);
  --color-hover: hsl(6, 63%, 51%);
  --color-dark-400: hsl(0, 0%, 60%);
  --color-dark-600: hsl(0, 0%, 40%);
  --color-dark-800: hsl(0, 0%, 20%);
  --color-light-200: hsl(0, 0%, 96%);
  --color-light-400: hsl(0, 0%, 80%);
  --color-light-600: hsl(0, 0%, 70%);
  --color-pink-100: hsl(336, 95%, 94%);
  --color-pink-200: hsl(338, 91%, 87%);
  --color-pink-300: hsl(339, 90%, 81%);
  --color-pink-400: hsl(339, 88%, 74%);
  --color-pink-500: hsl(339, 82%, 67%);
  --color-pink-600: hsl(339, 76%, 59%);
  --color-pink-700: hsl(339, 67%, 52%);
  --color-pink-800: hsl(339, 68%, 45%);
  --color-pink-900: hsl(339, 69%, 38%);
  /* Fonts */
  --font-primary: "Roboto", sans-serif;
  --font-accent: "Roboto Condensed", sans-serif;
  /* Drop Shadow */
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html,
body {
  width: 100vw;
  max-width: 100%;
  min-height: 100vh;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: calc(1rem + 0.390625vw);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-bg-ltg);
}

h1 {
  font-size: calc(2rem + 0.390625vw);
}

h2 {
  font-size: calc(1.625rem + 0.390625vw);
}

h3 {
  font-size: calc(1.375rem + 0.390625vw);
}

h1,
h2,
h3,
h4 {
  line-height: 1;
  font-weight: 600;
}

p {
  padding-bottom: 1.5em;
  /* 
  @include breakpoint-down(small) {
    text-align: justify;
  } */
}

b,
strong {
  font-weight: 700;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}

a {
  color: var(--link-color);
  font-weight: normal;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 
a:hover, 
a:active, 
a:focus {
  color: var(--primary-color);
  outline: none;
  text-decoration: none;
}

 */
/* 
a {
  text-decoration: none;
  //color: $link;
  text-decoration: none;
} */
/* 
a:focus,
a:hover {
  //color: $link-hover;
  //transform: scale(0.98);
} */
figure {
  padding: 0.625rem;
}

figcaption {
  color: black;
  font-size: calc(0.875rem + 0.390625vw);
  font-style: italic;
  text-align: center;
  padding: 1rem;
}

ul {
  font-size: calc(1rem + 0.390625vw);
}

/* SECTIONS */
section,
article {
  display: block;
  width: 100%;
}

.container {
  max-width: 69.375rem;
  margin: 0 auto;
}
.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;
}

.outline {
  outline: red 2px solid;
}

/* Flex */
.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.items-start {
  align-items: flex-start;
}

.items-stretch {
  align-items: stretch;
}

.items-center {
  align-items: center;
}

.content-center {
  justify-content: center;
}

.place-self-stretch {
  place-self: stretch;
}

/* Grid */
.grid {
  display: grid;
}

.grid-auto-fit-250 {
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}

.grid-auto-fit-350 {
  grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
}

.gap-6 {
  gap: 1.5rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-14 {
  gap: 3.5rem;
}

.gap-24 {
  gap: 6rem;
}

.gap-40 {
  gap: 10rem;
}

.justify-center {
  justify-content: center;
}

.justify-items-stretch {
  justify-items: stretch;
}

.items-stretch {
  align-items: stretch;
}

/* BG OVERLAY */
/* 
  .bg-overlay {
    background: var(--dark-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.85;
  } */
/* Text */
.lead {
  font-size: calc(1.375rem + 0.390625vw);
  margin-bottom: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Line height */
.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.leading-loose {
  line-height: 2;
}

/* Text Size */
.text-lg {
  font-size: calc(1.125rem + 0.390625vw);
  line-height: 1.75rem;
}

.text-2xl {
  font-size: calc(1.5rem + 0.390625vw);
  line-height: 2rem;
}

.text-3xl {
  font-size: calc(1.875rem + 0.390625vw);
  line-height: 2.25rem;
}

.text-4xl {
  font-size: calc(2.25rem + 0.390625vw);
  line-height: 2.5rem;
}

.text-5xl {
  font-size: calc(3rem + 0.390625vw);
  line-height: 1;
}

.text-6xl {
  font-size: calc(3.75rem + 0.390625vw);
  line-height: 1;
}

/* Font Weight */
.font-normal {
  font-weight: 400;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

/* Max width in character  */
.max-w-prose {
  max-width: 65ch;
}

/* Text Color  */
.text-white {
  color: var(--color-white);
}

.dark {
  background: #333;
  color: #fff;
}

/* Color  */
.accent {
  color: #e46152;
}

/* No Wrap  */
.nowrap {
  white-space: nowrap;
}

/* List */
/* .list-outside {
  list-style-position: outside;
} */
/* 
.list-sq {
  list-style-type: square;
}
 */
/* Spacing Margin & Padding */
/* Margins */
.ml-4 {
  margin-left: 1rem;
}

.ml-5 {
  margin-left: 1.25rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.ml-7 {
  margin-left: 1.75rem;
}

.ml-8 {
  margin-left: 2rem;
}

.ml-9 {
  margin-left: 2.25rem;
}

.mr-4 {
  margin-right: 1rem;
}

.mr-5 {
  margin-right: 1.25rem;
}

.mr-6 {
  margin-right: 1.5rem;
}

/* Padding Top & Bottom*/
.text-4xl .py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

/* Padding Top */
.pt-2 {
  padding-top: 0.5rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pt-7 {
  padding-top: 1.75rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-9 {
  padding-top: 2.25rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pt-11 {
  padding-top: 2.75rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pt-14 {
  padding-top: 3.5rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pt-20 {
  padding-top: 5rem;
}

.pt-32 {
  padding-top: 8rem;
}

/* Padding Bottom */
.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-14 {
  padding-bottom: 3.5rem;
}

.pb-28 {
  padding-bottom: 7rem;
}

.pb-32 {
  padding-bottom: 8rem;
}

.pb-36 {
  padding-bottom: 9rem;
}

.pb-40 {
  padding-bottom: 10rem;
}

.pb-44 {
  padding-bottom: 11rem;
}

.pb-48 {
  padding-bottom: 12rem;
}

.pb-52 {
  padding-bottom: 13rem;
}

.brand {
  font-family: var(--font-accent);
}
.brand img {
  max-width: 100%;
  height: 3.125rem !important;
}
.brand__title {
  font-size: 1.375rem;
  font-weight: 400;
  color: black;
}
.brand__title span {
  font-size: 1.625rem;
  font-weight: 600;
  color: var(--color-accent);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 100;
  margin: 0 auto;
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  height: 4rem;
  margin: 0 auto;
}
.header .menu > .menu-item {
  position: relative;
  display: inline-block;
  margin: 0 0.75rem;
}
.header .menu > .menu-item > a {
  display: block;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  padding: 1rem 0;
  border: none;
  outline: none;
  color: var(--color-black);
  text-transform: capitalize;
  transition: all 0.35s ease;
}
.header .menu > .menu-item > a .expand {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 0.35rem;
  pointer-events: none;
  border: none;
  outline: none;
}
.header .menu > .menu-item > a .expand:before, .header .menu > .menu-item > a .expand:after {
  position: absolute;
  box-sizing: inherit;
  content: "";
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--color-bg-dark);
  transform: translate(-50%, -50%);
  transition: all 0.35s ease;
}
.header .menu > .menu-item:hover > a {
  color: var(--color-pink-700);
}
.header .menu > .menu-item:hover > a .expand::before, .header .menu > .menu-item:hover > a .expand::after {
  background: var(--color-pink-700);
}
.header .menu > .menu-item > a .expand::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: var(--color-pink-700);
}
.header .menu > .menu-item > .sub-menu {
  position: absolute;
  top: 100%;
  left: -1rem;
  width: 13rem;
  height: auto;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  opacity: 0;
  visibility: hidden;
  border-top: 3px solid var(--color-pink-600);
  background: var(--color-bg-ltg);
  box-shadow: var(--shadow-medium);
  transform: translateY(1rem);
}
.header .menu > .menu-item > .sub-menu > .menu-item {
  display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: inherit;
  padding: 0.5rem 1.25rem;
  color: var(--color-black);
  text-transform: capitalize;
  transition: all 0.35s ease;
}
.header .burger {
  position: relative;
  cursor: pointer;
  display: none;
  width: 1.75rem;
  height: 1rem;
  margin-top: -0.25rem;
  outline: none;
  opacity: 0;
  visibility: hidden;
  background: none;
  transform: rotate(0deg);
  transition: all 0.35s ease;
}
.header .burger-line {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  left: 0;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 0.25rem;
  background: var(--color-bg-dark);
  transform: rotate(0deg);
  transition: all 0.25s ease;
}
.header .burger-line:nth-child(1) {
  top: 0;
}
.header .burger-line:nth-child(2), .header .burger-line:nth-child(3) {
  top: 0.5rem;
}
.header .burger-line:nth-child(4) {
  top: 1rem;
}
.header .overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.65);
  transition: all 0.35s ease;
}

@media only screen and (min-width: 993px) {
  .header .menu > .menu-item-child:hover > .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .header .menu > .menu-item-child:hover > a .expand::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@media only screen and (max-width: 992px) {
  .header .overlay.active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    background: var(--color-bg-ltg);
    box-shadow: var(--shadow-medium);
    transition: all 0.5s ease;
  }
  .header .navbar.active {
    left: 0rem;
    opacity: 1;
    visibility: visible;
  }
  .header .menu {
    width: 100%;
    height: auto;
    margin: 1rem 0;
  }
  .header .menu > .menu-item {
    display: block;
    margin: 0;
  }
  .header .menu > .menu-item-child > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header .menu > .menu-item > a {
    padding: 0.625rem 1.25rem;
    color: var(--color-black);
  }
  .header .menu > .menu-item > a .expand::before, .header .menu > .menu-item > a .expand::after {
    background: var(--color-bg-dark);
  }
  .header .menu > .menu-item-child.active > a .expand:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  .header .menu > .menu-item > .sub-menu {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-height: 0;
    padding: 0px;
    border: none;
    outline: none;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    transform: translateY(0px);
  }
  .header .menu > .menu-item > .sub-menu > .menu-item > a {
    padding: 0.625rem 2rem;
    color: var(--color-black);
  }
  .header .burger {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}
.footer {
  background-color: var(--color-light-200);
  font-size: calc(1rem + 0.390625vw);
  text-align: center;
}
.footer__logo img {
  width: 100px;
  height: 100px;
}
.footer__logo h3 {
  font-size: calc(1.125rem + 0.390625vw);
}
.footer__logo h3 a {
  font-weight: 600;
}
.footer__contact-social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  margin: 0 auto;
}
.footer__contact-social-icon img {
  width: 25px;
  height: 25px;
}
.footer a:link,
.footer a:focus,
.footer a:visited {
  color: black;
  padding: 0 0.3125em;
  display: inline-block;
}
.footer a:hover,
.footer a:active {
  outline: var(--color-hover) 1px solid;
}
.footer hr {
  height: 1px;
  border: none;
  background-color: var(--color-accent);
}
.footer__copyright {
  font-size: calc(0.8rem + 0.390625vw);
  text-align: center;
  padding-top: 0.5em;
  padding-bottom: 0;
}

.error li {
  list-style: square;
  list-style-position: outside;
  line-height: 1.8;
  margin-left: 1.25rem;
}
.error li li {
  list-style: circle;
}
.error a {
  text-decoration: underline;
}
.error a:focus,
.error a:hover {
  color: var(--color-link);
}

/* Index */
/* Landing Page */
.landing {
  background-color: var(--color-bg-ltg);
  max-width: 69.375rem;
  font-family: var(--font-accent);
  margin: 0 auto;
  box-shadow: 30px 0px 40px rgba(0, 0, 0, 0.1), -30px 0px 40px rgba(0, 0, 0, 0.1);
}
.landing__content {
  display: flex;
  flex: 0 1 40vw;
  height: 50vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
}
.landing__content h1 {
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  line-height: initial;
  margin: 0;
  padding: 0;
}
.landing__content h1 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: none;
}
.landing__content h2 {
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: capitalize;
  line-height: initial;
  color: #888;
  margin: 0;
  padding: 0;
}
.landing__image {
  background: url("../images/background/bg-csc-min.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  flex: 0 1 60vw;
  margin: 0;
}
.landing .btn {
  padding: 0.5em 2em;
  border: 1px #ccc solid;
  display: inline-block;
  margin: 2em 0 0; /* top right left */
  border-radius: 50px;
  text-decoration: none;
  color: #333;
  transition: background 500ms ease;
}
.landing .btn:hover {
  background: #f4f4f4;
}
.landing__footer {
  text-align: center;
  color: #333;
  margin: 0 auto;
}
.landing__footer .footer-logo {
  max-width: 150px;
  margin: 0 auto;
  padding-bottom: 1rem;
}
.landing__footer p {
  padding: 0;
  text-align: center;
}
.landing__footer h3 {
  font-size: calc(2.5rem + 0.390625vw);
}
.landing__footer a {
  color: currentColor;
  transition: all 0.3s ease-in-out;
}
.landing__footer a:link,
.landing__footer a:focus,
.landing__footer a:visited {
  color: black;
  padding: 0 0.3125em;
  display: inline-block;
}
.landing__footer a:hover,
.landing__footer a:active {
  color: var(--color-link);
  outline: var(--color-hover) 1px solid;
}

/* Screen Sizes 576px and Up */
@media (min-width: 576px) {
  .landing {
    display: flex;
    height: 100%;
  }
  .landing__content {
    height: 100vh;
  }
  .landing__image {
    height: 100vh;
  }
}
/* Screen Sizes 768px and Up */
@media (min-width: 768px) {
  .btn {
    padding: 1em 3em;
  }
}
/* About */
.about {
  position: relative;
}
.about .logo img {
  max-width: 60%;
  margin: 0 auto;
}
.about .logo h1 {
  font-weight: 400;
}
.about .logo h1 span {
  display: block;
  font-size: calc(2.5rem + 0.390625vw);
  font-weight: 600;
}
.about__content p {
  text-align: justify;
}

.philosophy img {
  width: 100%;
}
.philosophy__content P {
  max-width: 72ch;
  text-align: justify;
}

.mission {
  position: relative;
}
.mission__image {
  background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1)), url("../images/background/bg-csc-min.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  /* Add the blur effect */
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
.mission__card {
  text-align: center;
}
.mission__card-content {
  background-color: rgb(226, 219, 219);
  opacity: 0.7;
  padding: 1em;
}

.instructor p {
  text-align: justify;
}
.instructor li {
  list-style-type: square;
  list-style-position: outside;
  margin-left: 1.25rem;
}

/* Children's Class */
.children-class figure {
  align-self: baseline;
}
.children-class .lead {
  padding-bottom: 1.5rem;
}
.children-class p {
  text-align: justify;
}

.children-benefit {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/children/children-bg-min.jpg);
  background-position: center;
  background-size: cover;
  color: var(--color-white);
}
.children-benefit li {
  list-style: square;
  list-style-position: outside;
  margin-left: 1.25rem;
}

.children-location {
  background-color: var(--color-light-200);
}
.children-location li {
  font-size: calc(1.25rem + 0.390625vw);
}

/* Children's Gallery */
.children-gallery {
  text-align: center;
  background-color: var(--color-bg-ltg);
  margin: 0 auto;
}
.children-gallery__title h2 {
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 1rem;
}
.children-gallery__item {
  width: 100%;
  height: 100%;
  position: relative;
}
.children-gallery__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.children-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.children-gallery__item:hover .children-gallery__image img {
  transform: scale(1.5);
}
.children-gallery__text {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  font-size: 1.5rem;
  pointer-events: none;
  z-index: 4;
  transition: 0.3s ease-in-out;
  -webkit-backdrop-filter: blur(5px) saturate(1.8);
  backdrop-filter: blur(5px) saturate(1.8);
}
.children-gallery__item:hover .children-gallery__text {
  opacity: 1;
  animation: move-down 0.3s linear;
  padding: 1em;
  width: 100%;
}
@media screen and (min-width: 40rem) {
  .children-gallery {
    /* 640px */
  }
  .children-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 11.25rem);
    gap: 1rem;
  }
  .children-gallery__content:nth-child(1) {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .children-gallery__content:nth-child(2) {
    grid-column: 2/span 3;
    grid-row: 1/span 3;
  }
  .children-gallery__content:nth-child(3) {
    grid-column: 3/span 1;
    grid-row: 5/span 1;
  }
  .children-gallery__content:nth-child(4) {
    grid-column: 1/span 1;
    grid-row: 2/span 2;
  }
  .children-gallery__content:nth-child(5) {
    grid-column: 4/span 1;
    grid-row: 4/span 2;
  }
  .children-gallery__content:nth-child(6) {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .children-gallery__content:nth-child(7) {
    grid-column: 2/span 1;
    grid-row: 4/span 1;
  }
  .children-gallery__content:nth-child(8) {
    grid-column: 3/span 1;
    grid-row: 4/span 1;
  }
  .children-gallery__content:nth-child(9) {
    grid-column: 1/span 1;
    grid-row: 5/span 1;
  }
  .children-gallery__content:nth-child(10) {
    grid-column: 2/span 1;
    grid-row: 5/span 1;
  }
}
@media screen and (min-width: 64rem) {
  .children-gallery {
    /* 1024px */
  }
  .children-gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(4, 11.25rem);
    gap: 1rem;
  }
  .children-gallery__content:nth-child(1) {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
  }
  .children-gallery__content:nth-child(2) {
    grid-column: 2/span 3;
    grid-row: 1/span 3;
  }
  .children-gallery__content:nth-child(3) {
    grid-column: 5/span 1;
    grid-row: 1/span 1;
  }
  .children-gallery__content:nth-child(4) {
    grid-column: 1/span 1;
    grid-row: 2/span 2;
  }
  .children-gallery__content:nth-child(5) {
    grid-column: 5/span 1;
    grid-row: 2/span 2;
  }
  .children-gallery__content:nth-child(6) {
    grid-column: 1/span 1;
    grid-row: 4/span 1;
  }
  .children-gallery__content:nth-child(7) {
    grid-column: 2/span 1;
    grid-row: 4/span 1;
  }
  .children-gallery__content:nth-child(8) {
    grid-column: 3/span 1;
    grid-row: 4/span 1;
  }
  .children-gallery__content:nth-child(9) {
    grid-column: 4/span 1;
    grid-row: 4/span 1;
  }
  .children-gallery__content:nth-child(10) {
    grid-column: 5/span 1;
    grid-row: 4/span 1;
  }
}

/* for Children's Gallery animated text drop down */
@keyframes move-down {
  0% {
    top: 10%;
  }
  50% {
    top: 35%;
  }
  100% {
    top: 50%;
  }
}
/* end of Children */
/* Adult */
.venue {
  background-color: var(--color-white);
}
.venue__title {
  margin-bottom: 3.125em;
  max-width: calc(100% - 1em);
  text-align: center;
  margin: 0 auto;
}
.venue__title h1 {
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.venue__title p {
  font-size: calc(1.5rem + 0.390625vw);
  line-height: 1;
}
.venue__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: stretch;
}
.venue__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.venue__text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-bg-ltg);
}
@media (min-width: 40em) {
  .venue__text {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 64em) {
  .venue__text {
    padding-left: 2.5rem;
    padding-right: 2.5em;
  }
}
.venue__text h2 {
  text-transform: capitalize;
  margin: 0;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.venue li {
  font-size: calc(1.125rem + 0.390625vw);
  list-style: none;
  line-height: 2;
}
.venue li:last-child {
  padding-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .venue__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .venue__content :nth-child(1) {
    order: 1;
  }
  .venue__content :nth-child(2) {
    order: 2;
  }
  .venue__content :nth-child(3) {
    order: 4;
  }
  .venue__content :nth-child(4) {
    order: 3;
  }
  .venue__content :nth-child(5) {
    order: 5;
  }
  .venue__content :nth-child(6) {
    order: 6;
  }
  .venue__content :nth-child(7) {
    order: 8;
  }
  .venue__content :nth-child(8) {
    order: 7;
  }
  .venue__content :nth-child(9) {
    order: 9;
  }
  .venue__content :nth-child(10) {
    order: 10;
  }
}
/* ChoKa */
.choga p {
  text-align: justify;
}
.choga__logo img {
  width: 85%;
  margin: 0 auto;
}
@media (min-width: 40em) {
  .choga__logo img {
    width: 50%;
  }
}
.choga__logo h1 {
  color: hsl(6deg, 73%, 61%);
  font-weight: 700;
}
.choga__intro {
  background-color: var(--color-white);
}
.choga__intro li {
  list-style: square;
  list-style-position: outside;
  line-height: 1.8;
  margin-left: 1.25rem;
}
.choga__showcase {
  position: relative;
  background-color: var(--color-bg-dark);
  z-index: -10;
  padding: 5rem 0;
}
.choga__showcase .showcase__image {
  background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  /* Add the blur effect */
  /*  filter: blur(4px);
  -webkit-filter: blur(4px); */
}
.choga__showcase .showcase__image--1 {
  background-image: url("../images/background/bg-csc-min.jpg");
  filter: blur(4px);
  -webkit-filter: blur(4px);
}
.choga__showcase .showcase__image--2 {
  background-image: url("../images/choga/choga-banner-merlion.jpg");
}
@media (max-width: 63.9375em) {
  .choga__showcase .showcase__image--2 {
    background-position: right -90px center;
  }
}
@media (max-width: 39.9375em) {
  .choga__showcase .showcase__image--2 {
    background-position: right -380px center;
  }
}
.choga__showcase .showcase__content h3 {
  font-size: calc(1.25rem + 0.390625vw);
  font-style: italic;
  background-color: rgb(226, 219, 219);
  opacity: 0.55;
  padding: 1rem;
}
.choga__showcase .showcase__content p {
  font-size: calc(1.25rem + 0.390625vw);
  font-style: italic;
  background-color: rgb(226, 219, 219);
  opacity: 0.55;
  padding: 1rem;
}
.choga__characteristics {
  background-color: var(--color-light-200);
}
.choga__history .newspaper {
  column-width: 300px;
  column-count: 3;
  column-gap: 2rem;
  column-rule: 1px solid black;
  text-align: justify;
}
.choga__venue h2 {
  color: #d71827;
}
.choga__venue li {
  font-size: calc(1.25rem + 0.390625vw);
  line-height: 1.8;
}
.choga__pioneers {
  background-color: var(--color-white);
  text-align: center;
}
.choga__pioneers p {
  text-align: center;
}
.choga__pioneers .card__item {
  background-color: var(--color-bg-ltg);
  display: grid;
  align-items: stretch;
  justify-content: space-between;
}
.choga__pioneers .card__image {
  width: 100%;
  padding-bottom: 2rem;
}
.choga__pioneers .card__image img {
  display: block;
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.choga__pioneers .card__txt {
  padding: 1.5rem;
  margin-top: auto;
}

/* Bahad Zubu */
.bahadzubu .banner {
  background: url("../images/bahadzubu/bz-banner-yuli-lg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 70vh;
  margin-top: 8rem;
}
@media (max-width: 39.9375em) {
  .bahadzubu .banner {
    background: url("../images/bahadzubu/bz-banner-yuli-sm.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 70vh;
    margin-top: 6rem;
  }
}
.bahadzubu .banner2 {
  background-color: black;
  background: url("../images/bahadzubu/bz-knives-min.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  margin-top: 6rem;
}
.bahadzubu__venue li {
  font-size: calc(1.25rem + 0.390625vw);
  line-height: 1.8;
}
.bahadzubu__venue h2 em {
  color: #e46152;
  font-weight: 700;
  text-transform: uppercase;
}

.credit p {
  font-size: 1rem;
  margin-left: 1.5rem;
}

/* Syllabus */
.syllabus p {
  text-align: justify;
  max-width: 72ch;
}
.syllabus li {
  list-style: square;
  list-style-position: outside;
  margin-left: 1.25rem;
}
.syllabus .img-divider {
  background: url("../images/background/bg-csc-neon.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 30vh;
}
@media (min-width: 40em) {
  .syllabus .img-divider {
    background-position: bottom center;
    height: 40vh;
  }
}
@media (min-width: 64em) {
  .syllabus .img-divider {
    background-position: left bottom -40px;
    height: 60vh;
  }
}

/* training-schedules */
.schedules {
  background-color: var(--color-white);
  margin: 0 auto;
  /* Table  Layout */
  /* Table End */
}
.schedules__intro {
  text-align: center;
}
.schedules__intro h1 {
  text-transform: uppercase;
}
.schedules table {
  border: 0;
  border-collapse: collapse;
  table-layout: fixed;
  max-width: 100%;
  background-color: #fefefe;
  /* end of caption */
}
.schedules table caption {
  border-bottom: 1px solid #b2b2b2;
}
.schedules table caption p {
  font-size: 1.5rem;
  padding-bottom: 3rem;
}
.schedules table thead {
  display: none;
  background-color: #f5f5f5;
}
.schedules table tr {
  display: block;
  padding: 1em 1em 1em; /* Top Right Left */
}
.schedules table tr + tr {
  margin-top: 0.625em;
}
.schedules table tr:nth-child(even) {
  background-color: #f5f5f5;
}
.schedules table td {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.25rem;
  line-height: 1.35;
  /* padding: 0.5em; */
  padding: 0.35em;
}
.schedules table td:before {
  content: attr(data-label);
  font-size: 1rem;
  text-align: left;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 45%;
}
.schedules table td + td {
  margin-top: 0.8em;
}
.schedules table td:last-child {
  border-bottom: 0;
}
.schedules table .table-footnote {
  text-align: center;
  font-size: calc(0.8rem + 0.390625vw);
  margin: 0 auto;
}

/* Schedules End */
/* 600px */
@media screen and (min-width: 40rem) {
  .schedules table caption p {
    font-size: 1.5rem;
  }
  .schedules table thead {
    display: table-header-group;
  }
  .schedules table tr {
    display: table-row;
    border: 0;
    border-bottom: 1px solid #b2b2b2;
  }
  .schedules table th,
.schedules table td {
    text-align: left;
    padding: 1em;
  }
  .schedules table th {
    font-size: 1rem;
    text-transform: uppercase;
  }
  .schedules table td {
    display: table-cell;
  }
  .schedules table td:before {
    display: none;
  }
  .schedules table td:last-child {
    border-bottom: 1px solid #b2b2b2;
  }
}
/* Wing Chun System */
.system {
  /* end of introduction */
}
.system figure {
  padding: 0;
}
.system p {
  text-align: justify;
}
.system .newspaper {
  column-width: 300px;
  column-count: 2;
  column-gap: 3rem;
  column-rule: 1px solid black;
}
.system .seal {
  max-width: 100px;
  float: left;
  padding-top: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 0.5em;
}
.system li {
  list-style: square;
  list-style-position: outside;
  line-height: 1.8;
  margin-left: 1.25rem;
}
.system .introduction__image {
  align-self: flex-end;
}
.system .characteristic {
  background-color: var(--color-white);
  margin-top: 5rem;
}
.system .characteristic h2 {
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.system .benefit,
.system .chum-kiu,
.system .chi-sau,
.system .long-pole {
  background-color: var(--color-light-200);
}

/* end of system */
.img-divider {
  background-image: linear-gradient(to bottom, rgba(8, 8, 8, 0.52), rgba(112, 111, 112, 0.73)), url("../images/background/csc-bg.jpg");
  width: 100%;
  height: 50%;
  background-size: cover;
  background-position: center;
}

/* FAQ */
.Accordion {
  margin-top: 8rem;
  padding-bottom: 60px;
  background-color: var(--color-dark-600);
  color: var(--color-white);
}
.Accordion h2 {
  text-transform: uppercase;
  text-align: left;
  padding: 20px 15px;
}
.Accordion p {
  text-align: justify;
}
.Accordion__tabs {
  max-width: 800px;
  list-style: none;
  margin: 0 auto;
}
.Accordion__tab {
  width: 100%;
}
.Accordion__tab__headline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(248, 248, 248, 0.5);
  transition: 0.2s ease all;
  padding: 20px 15px;
  cursor: pointer;
  font-weight: 400;
}
.Accordion__tab__headline:hover {
  background-color: #c4c4c8;
}
.Accordion__tab__headline > h4 {
  user-select: none;
  text-transform: uppercase;
  margin: 0;
}
.Accordion__tab__headline .icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
  position: relative;
}
.Accordion__tab__headline .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 10px;
  left: 6px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.Accordion__tab__headline .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 6px;
  left: 10px;
  width: 2px;
  height: 10px;
  background: currentColor;
  transition: 0.2s ease all;
}
.Accordion__tab__content {
  overflow: hidden;
  padding: 0px 15px;
  box-sizing: border-box;
  height: 100%;
  max-height: 0;
  transition: 0.4s ease all;
}
.Accordion__tab--open .Accordion__tab__headline .icon::after {
  transform: scaleY(0);
}

/* Contact */
.contact-banner {
  background: url("../images/background/bg-csc-neon.jpg");
  background-position: left bottom;
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
}
@media (min-width: 40em) {
  .contact-banner {
    background-position: left center;
    height: 50vh;
  }
}
@media (min-width: 64em) {
  .contact-banner {
    background-position: center bottom -80px;
    height: 70vh;
  }
}

.contact {
  padding-top: 8rem;
}
.contact__details {
  /* flex: 1; */
}
.contact__details a:hover {
  color: red;
  outline: red solid 1px;
}
.contact__details p {
  line-height: 1.3;
  padding: 0;
}
.contact .contact__wrapper {
  background: #f9f9f9;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}
.contact__wrapper p {
  padding-bottom: 1em;
}

.contact__details,
.contact__wrapper {
  max-width: 100%;
  padding: 1em;
}

#contactForm input[type=text],
#contactForm input[type=email],
#contactForm input[type=tel],
#contactForm textarea,
#contactForm button[type=submit] {
  font-family: inherit;
  font-size: initial;
}

#contactForm input[type=text],
#contactForm input[type=email],
#contactForm input[type=tel],
#contactForm textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #fff;
  margin: 0 0 5px;
  padding: 0.625em; /* 10px */
}

#contactForm input[type=text]:hover,
#contactForm input[type=email]:hover,
#contactForm input[type=tel]:hover,
#contactForm textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contactForm textarea {
  height: 400px;
  max-width: 100%;
  resize: none;
}

#contactForm button[type=submit] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #d6d6d6;
  color: #333;
  margin: 0 0 5px;
  padding: 0.625em;
  font-size: calc(1rem + 0.390625vw);
}

#contactForm button[type=submit]:hover {
  background: #bfbbbb;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contactForm button[type=submit]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}/*# sourceMappingURL=style.css.map */