@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&family=Salsa&display=swap");

@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

:root {
  --ink: #352414;
  --muted: #707070;
  --paper: #fff;
  --cream: #fff;
  --line: #eadfcf;
  --brown: #704825;
  --footer-brown: #56371b;
  --red: #f25141;
  --yellow: #ffd823;
  --green: #93c524;
  --blue: #28a8e3;
  --pink: #f7a091;
  --shadow: 0 10px 28px rgba(53, 36, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Open Sans", "Trebuchet MS", Arial, sans-serif;
  line-height: 1.65;
}

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

a {
  color: var(--brown);
}

a:hover {
  color: var(--green);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 0.8rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fdfdfd;
  box-shadow: 0 3px 12px rgba(52, 36, 20, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: slideInDown 0.28s ease both;
}

.site-header.is-affix {
  box-shadow: 0 2px 10px rgba(52, 36, 20, 0.18);
}

.nav-shell,
.section,
.footer-grid,
.footer-bottom {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: min-height 0.25s ease;
}

.site-header.is-affix .nav-shell {
  min-height: 60px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand img {
  width: 200px;
  height: auto;
}

.menu-toggle {
  display: none;
  width: 26px;
  height: 20px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin-bottom: 3px;
  background: var(--green);
  transition: background 0.2s ease, transform 0.2s ease;
}

.menu-toggle span:last-child {
  margin-bottom: 0;
}

.site-nav ul {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  min-width: 75px;
  min-height: 90px;
  display: block;
  position: relative;
  padding: 50px 16px 16px;
  border-radius: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease, min-height 0.25s ease, padding 0.25s ease;
}

.site-nav li {
  position: relative;
}

.nav-icon {
  display: block;
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-icon::before {
  display: inline-block;
  font-size: 28px;
  font-style: normal;
  font-weight: normal;
}

.flaticon-home118::before,
.flaticon-fly8::before,
.flaticon-send4::before {
  font-family: "Flaticon";
}

.flaticon-home118::before {
  content: "\f128";
}

.flaticon-fly8::before {
  content: "\f120";
}

.flaticon-send4::before {
  content: "\f13d";
}

.fa-calendar-check-o::before,
.fa-camera-retro::before,
.fa-facebook::before,
.fa-instagram::before {
  font-family: "FontAwesome";
}

.fa-calendar-check-o::before {
  content: "\f274";
}

.fa-camera-retro::before {
  content: "\f083";
}

.fa-facebook::before {
  content: "\f09a";
}

.fa-instagram::before {
  content: "\f16d";
}

.site-nav > ul > li:nth-child(4n+1) .nav-icon {
  color: var(--red);
}

.site-nav > ul > li:nth-child(4n+2) .nav-icon {
  color: var(--yellow);
}

.site-nav > ul > li:nth-child(4n+3) .nav-icon {
  color: var(--green);
}

.site-nav > ul > li:nth-child(4n+4) .nav-icon {
  color: var(--pink);
}

.site-nav > ul > li:nth-child(5n) .nav-icon {
  color: var(--blue);
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-nav li.is-current-ancestor > a {
  background: var(--green);
  color: #fff;
}

.site-nav a:hover .nav-icon {
  color: #fff;
}

.site-nav .nav-services:hover,
.site-nav .nav-services:hover .nav-icon {
  color: #fff;
}

.site-nav .nav-services[aria-current="page"] .nav-icon {
  color: #fff;
}

.site-header.is-affix .site-nav > ul > li > a {
  min-height: 60px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.site-header.is-affix .site-nav > ul > li > a .nav-icon {
  opacity: 0;
}

.site-nav .sub-menu {
  position: absolute;
  left: -999rem;
  top: 90px;
  z-index: 20;
  width: 214px;
  display: block;
  padding: 12px 0;
  background: #fdfdfd;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.site-header.is-affix .site-nav .sub-menu {
  top: 60px;
}

.site-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 214px;
  height: 4px;
  background: var(--green);
}

.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
  left: 0;
}

.site-nav .sub-menu a {
  width: 190px;
  min-width: 0;
  min-height: 0;
  margin: 0 12px;
  padding: 9px 12px;
  text-align: left;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a[aria-current="page"] {
  background: var(--green);
  color: #fff;
}

.home-slider {
  min-height: 590px;
  display: grid;
  place-items: center;
  background: #fff;
  overflow: hidden;
}

.slider-mark {
  width: min(1040px, calc(100% - 2rem));
  display: grid;
  justify-items: center;
  padding: 3.5rem 0 4.5rem;
}

.slider-mascots-frame {
  display: block;
  width: min(900px, 94%);
  aspect-ratio: 1240 / 610;
  overflow: hidden;
  margin-bottom: -1rem;
}

.slider-mascots {
  width: 100%;
  max-width: none;
  margin: 0;
  animation: sliderLayerIn 0.7s 0.1s ease both;
}

.slider-title {
  width: min(820px, 88%);
  animation: sliderLayerIn 0.7s 0.35s ease both;
}

.slider-logo {
  width: min(610px, 78%);
  margin-top: -0.2rem;
  animation: sliderLayerIn 0.7s 0.55s ease both;
}

.slider-tagline {
  width: min(720px, 84%);
  margin-top: 0.7rem;
  animation: sliderLayerIn 0.7s 0.75s ease both;
}

.slider-mark h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(33, 20, 10, 0.55)),
    var(--hero-image, url("../img/hero-garden.jpg")) center / cover;
}

.hero-inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 5rem;
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f8d73b;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
  letter-spacing: 0;
}

h1,
h2,
h3,
.feature h3,
.course h3,
.site-footer h2 {
  font-family: Salsa, "Comic Sans MS", "Trebuchet MS", cursive;
  font-weight: 400;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: 1.35rem;
}

.lead {
  max-width: 760px;
  margin: 1.2rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.section {
  padding: 5rem 0;
}

.intro-section {
  padding-top: 2.5rem;
}

.section-heading {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading h2 {
  color: var(--brown);
  font-size: clamp(2.35rem, 4vw, 2.65rem);
  max-width: none;
}

.section-heading h1 {
  color: var(--brown);
  font-size: clamp(2.35rem, 4vw, 2.65rem);
  max-width: none;
}

.section-heading::after,
.site-footer h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin: 0.9rem auto 0;
  background: var(--yellow);
}

.section.compact {
  padding-top: 3rem;
}

.intro-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: start;
}

.media-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.pill-list,
.feature-grid,
.course-grid,
.activity-grid,
.gallery-grid,
.gallery-choice-grid,
.info-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
}

.course-grid,
.activity-grid,
.gallery-grid,
.gallery-choice-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.course-grid {
  grid-template-columns: repeat(3, 224px);
  justify-content: center;
  gap: 30px;
  margin: 10rem auto 0;
}

.feature,
.course,
.activity,
.info-box {
  border: 0;
  border-radius: 8px;
  background: #fff;
  padding: 1.4rem;
}

.feature {
  text-align: center;
}

.feature-mark {
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  margin: 1rem auto;
  border-radius: 50%;
  color: inherit;
}

.feature-mark::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-sizing: content-box;
  box-shadow: 0 0 0 4px currentColor;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.25s, opacity 0.25s;
}

.feature:hover .feature-mark::after {
  opacity: 1;
  transform: scale(1);
}

.feature-mark img {
  width: auto;
  height: 60px;
  max-height: 50%;
}

.feature h3 {
  min-height: 68px;
  margin: 2rem 0;
  color: currentColor;
  font-size: 28px;
  word-spacing: 1px;
}

.feature p {
  margin: 0.9rem 0 0;
  color: #666;
  font-size: 0.96rem;
  line-height: 1.65;
}

.feature:nth-child(1) .feature-mark {
  background: var(--red);
}

.feature:nth-child(1) {
  color: var(--red);
}

.feature:nth-child(2) .feature-mark {
  background: var(--yellow);
}

.feature:nth-child(2) {
  color: var(--yellow);
}

.feature:nth-child(3) .feature-mark {
  background: var(--green);
}

.feature:nth-child(3) {
  color: var(--green);
}

.feature:nth-child(4) .feature-mark {
  background: var(--blue);
}

.feature:nth-child(4) {
  color: var(--blue);
}

.course {
  position: relative;
  width: 224px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 0;
  border-radius: 20px;
  color: #fff;
  padding: 0;
  text-align: center;
}

.course:nth-child(1) {
  background: var(--red);
}

.course:nth-child(2) {
  background: var(--green);
}

.course:nth-child(3) {
  background: var(--blue);
}

.course-icon {
  position: absolute;
  top: -60px;
  left: 50%;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  transform: translateX(-50%);
}

.course-icon img {
  max-height: 50%;
}

.course:nth-child(1) .course-icon {
  background: #ff614f;
}

.course:nth-child(2) .course-icon {
  background: #a4d638;
}

.course:nth-child(3) .course-icon {
  background: #42b7f3;
}

.course h3 {
  color: #fff;
  padding-top: 8rem;
  font-size: 24px;
}

.course small {
  display: block;
  padding: 0 0 20px;
  color: #fff;
  font-family: Salsa, "Comic Sans MS", "Trebuchet MS", cursive;
  font-size: 18px;
  font-weight: 400;
}

.course p {
  margin: 0;
  width: 100%;
  padding: 10px 25px;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
}

.course p::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 3rem auto 0;
  background: #fff;
}

.activity img,
.gallery-grid a img,
.gallery-choice img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: none;
  margin-inline: 0;
  perspective: 1000px;
}

.gallery-choice {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 250px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-choice img {
  height: 100%;
  border-radius: 0;
  transition: transform 180ms ease;
}

.gallery-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(52, 36, 20, 0.38);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-choice span {
  position: absolute;
  inset: auto auto 28px 28px;
  z-index: 2;
  display: inline-block;
  min-width: 176px;
  background: #6dab3c;
  box-shadow: 0 3px 0 #53812d;
  border-radius: 4px;
  padding: 11px 20px;
  color: #fff;
  font-family: Salsa, "Comic Sans MS", "Trebuchet MS", cursive;
  font-size: 1.35rem;
  line-height: 1.1;
  text-align: center;
  text-shadow: none;
  backface-visibility: hidden;
  opacity: 0;
  visibility: hidden;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.gallery-choice:hover img {
  transform: scale(1.04);
}

.gallery-choice:hover {
  transform: rotateY(8deg);
}

.gallery-choice:hover::after {
  opacity: 1;
}

.gallery-choice:hover span {
  background: var(--green);
  box-shadow: 0 3px 0 #53812d;
  opacity: 1;
  transform: translateY(-1px);
  visibility: visible;
}

.activity {
  padding: 0;
  overflow: hidden;
}

.activity-content {
  padding: 1.2rem;
}

.band {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.content-flow {
  max-width: 850px;
}

.content-flow p,
.content-flow li {
  font-size: 1.06rem;
}

.content-flow h2,
.content-flow h3 {
  margin-top: 2rem;
}

.content-flow h2:first-child,
.content-flow h3:first-child {
  margin-top: 0;
}

.filosofia-page .split-grid + .split-grid {
  margin-top: 2rem;
}

.filosofia-page .media-panel {
  border-radius: 0;
  box-shadow: none;
}

.filosofia-page .media-panel img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.paroxes-title-section {
  padding: 0;
}

.paroxes-content-section {
  padding-top: 0;
}

.paroxes-page-title {
  margin: 0;
  text-align: center;
}

.paroxes-page-title::after {
  display: none;
}

.paroxes-page-title h1 {
  max-width: none;
  margin: 0;
  padding: 7rem 2rem;
  color: var(--brown);
  font-size: 42px;
  line-height: 1.2;
  text-align: center;
}

.paroxes-page-title h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 2rem auto 0;
  border-radius: 2px;
  background: var(--yellow);
}

.paroxes-entry {
  max-width: none;
}

.paroxes-entry p {
  margin: 0 0 1.5rem;
}

.paroxes-entry ol,
.paroxes-entry ul {
  margin: 0 0 1.5rem 3rem;
  padding: 0;
}

.drastiriotites-page-top {
  padding: 4.5rem 1rem 2.2rem;
  background: #fff;
  text-align: center;
}

.drastiriotites-page-top h1 {
  margin: 0;
  color: var(--brown);
  font-family: Salsa, "Comic Sans MS", cursive;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2;
}

.drastiriotites-gallery-wrap {
  padding: 1.5rem 1rem 5rem;
  background: #fff;
}

.activity-viewer {
  max-width: 760px;
  margin: 0 auto;
}

.activity-viewer .fg-item-inner,
.activity-viewer figure {
  margin: 0;
}

.activity-viewer .fg-thumb {
  display: block;
  max-width: 640px;
  margin: 0 auto;
  color: inherit;
  text-decoration: none;
}

.activity-viewer .fg-image-wrap {
  display: block;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
}

.activity-viewer .fg-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.activity-viewer .fiv-ctrls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  max-width: 640px;
  margin: 1.1rem auto 0;
  color: #777;
  font-size: 14px;
  line-height: 34px;
}

.activity-viewer .fiv-prev,
.activity-viewer .fiv-next {
  min-width: 34px;
  height: 34px;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background: #fdfdfd;
  color: var(--muted);
  padding: 0 0.7rem;
  font: inherit;
  cursor: pointer;
  line-height: 32px;
}

.activity-viewer .fiv-prev:hover,
.activity-viewer .fiv-next:hover,
.activity-viewer .fiv-prev:focus,
.activity-viewer .fiv-next:focus {
  background: var(--green);
  color: #fff;
  outline: none;
}

.activity-viewer .fiv-count {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
}

.space-page {
  padding-top: 3.1rem;
}

.space-page-title {
  margin-bottom: 2.1rem;
}

.space-page-title::after {
  display: none;
}

.space-gallery-viewer {
  width: min(640px, 100%);
  margin: 0 auto;
  text-align: center;
}

.space-gallery-stage {
  overflow: hidden;
  padding: 5px;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.18);
}

.space-gallery-slide {
  display: none;
  margin: 0;
}

.space-gallery-slide.is-active {
  display: block;
}

.space-gallery-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.space-gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.85rem;
  color: #777;
  font-size: 14px;
  line-height: 34px;
}

.space-gallery-controls button {
  min-width: 34px;
  height: 34px;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background: #fdfdfd;
  color: var(--muted);
  padding: 0 0.7rem;
  font: inherit;
  cursor: pointer;
  line-height: 32px;
}

.space-gallery-controls button:hover {
  background: var(--green);
  color: #fff;
}

.space-gallery-count {
  display: inline-flex;
  gap: 0.25rem;
  align-items: baseline;
}

.pill-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.pill {
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background: #fff;
  padding: 1rem 1.1rem;
  box-shadow: 0 8px 22px rgba(53, 36, 20, 0.07);
}

.contact-card {
  border-radius: 8px;
  background: var(--brown);
  color: #fff;
  padding: 1.5rem;
}

.contact-card a {
  color: #fff2a8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--brown);
  padding: 0.75rem 1.1rem;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--brown);
  color: var(--yellow);
}

.map-link {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  padding: 1.25rem;
  text-decoration: none;
}

.contact-page {
  padding-top: 4.5rem;
}

.contact-page h1 {
  margin: 0 0 1.4rem;
  color: var(--brown);
  font-size: 42px;
}

.wpb_gmaps_widget {
  margin-top: 2rem;
}

.wpb_map_wraper {
  background: #f7f7f7;
  padding: 5px;
}

.wpb_map_wraper iframe {
  width: 100%;
  border: 0;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes sliderLayerIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-footer {
  background: var(--footer-brown);
  color: #e8e8e8;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  padding: 3.3rem 0 3rem;
}

.site-footer h2 {
  color: #fff;
  font-size: 1.55rem;
}

.site-footer h2::after {
  margin-left: 0;
}

.site-footer a {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 0;
  color: #d9d0c7;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-news ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-news li {
  padding-left: 2rem;
  padding-bottom: 0.5rem;
  text-indent: -2rem;
}

.footer-news li::before {
  content: "\f116";
  padding-right: 1.5rem;
  color: #fff;
  font-family: "Flaticon";
}

#ztl-copyright a {
  color: var(--yellow);
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 0;
  justify-content: flex-end;
}

.social-links a {
  display: inline-block;
  padding: 0 3px;
  color: #fff;
  text-decoration: none;
}

.social-icon {
  display: inline-block;
  width: 36px;
  height: 36px;
  color: #fff;
  line-height: 36px;
  text-align: center;
  transition: transform 0.05s ease-in-out, color 0.05s ease-in-out;
}

.social-icon::before {
  font-family: "FontAwesome";
  font-size: 1.4em;
}

.social-links a:hover .social-icon {
  color: var(--yellow);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    inset: 90px 0 auto;
    display: none;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    width: min(1120px, calc(100% - 2rem));
    display: grid;
    margin: 0 auto;
    padding: 0.8rem 0 1rem;
  }

  .site-nav a {
    min-height: 58px;
    padding: 16px;
    text-align: left;
  }

  .nav-icon {
    display: none;
  }

  .site-nav .sub-menu {
    position: static;
    width: auto;
    padding: 0 0 0 2rem;
    box-shadow: none;
  }

  .site-nav .sub-menu::before {
    display: none;
  }

  .site-nav .sub-menu a {
    width: auto;
    margin: 0;
    padding: 0.7rem 1rem;
  }

  .intro-grid,
  .split-grid,
  .contact-grid,
  .feature-grid,
  .course-grid,
  .activity-grid,
  .gallery-grid,
  .gallery-choice-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-slider {
    min-height: 500px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .site-header.is-affix .site-nav {
    inset: 60px 0 auto;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 170px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .slider-mark {
    padding: 2rem 0 3rem;
  }

  .slider-mascots {
    width: 100%;
  }

  .slider-title,
  .slider-logo,
  .slider-tagline {
    width: 94%;
  }

  .pill-list {
    grid-template-columns: 1fr;
  }
}
