@charset "utf-8";
/* Normalize.css minified (v8.0.1) */
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type="button"],[type="reset"],[type="submit"],button{-webkit-appearance:button}[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}

/* https://alligator.io/css/minimal-css-reset/  prefer default styled h?, p, ol, ul*/

html {
  box-sizing: border-box;
}

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

ol, ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: cursive, sans-serif;
}

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

/* ActiveFromAnywhere Styles */
/* font-family: 'Liu Jian Mao Cao', cursive; */
/* Principle Colors
  Scarlet Red: 254, 39, 18 
  Selective Yellow: 249,188,2 
  Silver Chalice: 170, 170, 170
  Alto Gray: 210, 210, 210
*/

:root {
 --main-red: rgb(254, 39, 18);
 --main-yellow: rgb(249,188,2);
 --main-darkGrey: rgb(170, 170, 170);
 --main-lightGrey: rgb(210, 210, 210);
 --main-white: rgb(255, 255, 255);
 --main-black: rgb(0, 0, 0);
}

/* General Styles */
html {
  overflow-y: scroll;
  overflow-x: auto;
  scroll-behavior: smooth;
  min-width: 360px;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
}

a.anchor {
  display: block;
  position: relative;
  top: -56px;
  visibility: hidden;
}

body {
  padding-top: 56px;
  background: black;
}

body > section {
  min-height: 600px; 
  overflow: hidden;
  color: white;
}

._mainRed {
  color: var(--main-red);
}

._mainYellow {
  color: var(--main-yellow);
}

._mainDarkGrey {
  color: var(--main-darkGrey);
}

._mainLightGrey {
  color: var(--main-lightGrey);
}

._mainBlack {
  color: var(--main-black);
}

._mainWhite {
  color: var(--main-white);
}

/* Specific Styles */
header.page {
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  height: 56px;
  background-color: rgba(0,0,0,.8);
  justify-content: space-between;
  padding: 0 10px;
  z-index: 100;
}

header.page > * {
  margin: auto 0; /* incase children are shorter then height - padding * 2, keep it centered (though still force padding if bigger) */
}
header.page .logo {
  font-family: 'Liu Jian Mao Cao', cursive;
  vertical-align: middle;
  color: var(--main-lightGrey);
  font-size: 36px;
  margin-left: 20px;
}

header.page .logo .star {
  font-size:56px;
  line-height: .5;
  color: var(--main-red);
}
header.page .logo .A {
  color: var(--main-yellow);
}

header.page .logo .slash {
  color: var(--main-white);
}


header.page > nav {
  width: 50%;
  font-family: cursive;
}

header.page nav > ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom-left-radius: 10px; 
}

header.page nav li {
  color: white;
  cursor: pointer;
}

header.page nav li:hover {
  color: var(--main-red);
}

header.page nav a {
  text-decoration: none;
  color: inherit;
  font-size: 20px;
}

header.page li.active a {
  color:var(--main-yellow);
}

/* css based X sandwich control */
#nav-toggle { 
  cursor: pointer; 
  padding: 10px 35px 16px 0px; 
}
#nav-toggle-btn, #nav-toggle-btn:before, #nav-toggle-btn:after {
	cursor: pointer;
	border-radius: 10px;
	height: 5px;
	width: 35px;
	background: white;
	position: absolute;
	display: block;
	content: '';
 }
#nav-toggle-btn:before {
	top: -10px; 
}
#nav-toggle-btn:after {
	bottom: -10px;
}
#nav-toggle-btn, #nav-toggle-btn:before, #nav-toggle-btn:after {
  transition: all 500ms ease-in-out;
}
#nav-toggle:checked ~ #nav-toggle-btn {
  background-color: transparent;
}
#nav-toggle:checked ~ #nav-toggle-btn:before,
#nav-toggle:checked ~ #nav-toggle-btn:after {
  top: 0;
}
#nav-toggle:checked ~ #nav-toggle-btn:before {
  transform: rotate(45deg);
}
#nav-toggle:checked ~ #nav-toggle-btn:after {
  transform: rotate(-45deg);
}
#nav-toggle, #nav-toggle-btn {
  display: none;
}
/* --end X-sandwich control -- */

#Feature {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#Feature h1.stay_active {
  background-color: var(--main-yellow);
    display: inline;
    padding: 0 10px;
    z-index: 10;
}

#Feature h1.from_anywhere {
  margin-left: 70px;
  display: inline;
  background: var(--main-red);
  padding: 0px 10px;
  z-index: 0;
  line-height: 45px;
}

.swiper-container {
  width:100%;
  height: 600px;
}

#Feature .swiper-slide article {
  margin-top: 56px;
  padding: 40px;
  background:rgb(0,0,0,.6);
  width: 400px;
}

#Feature .swiper-slide header {
  font-size: 30px;
}

#Feature .swiper-slide aside {
  padding: 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  text-align: center;
}

#Feature .main {
  background: url(../images/carousel0Background.png) center center;
  background-size: 100% 100%
}

#Feature .yoga {
  background: url(../images/carousel1Background.png) center center;
  background-size: 100% 100%
}

#Feature .cooking {
  background: url(../images/carousel2Background.png) center center;
  background-size: 100% 100%
}

#Feature .games {
  background: url(../images/carousel3Background.png) center center;
  background-size: 100% 100%
}

#Activities {
  color: black;
  background-color: white;
  padding: 40px;
}

#Activties .criteria {
  display: flex;
}

#Activities button, #Activities input {
  border-radius: 20px;
  padding: 3px 12px;
   border: 1px solid gray;

}


#Activities .content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

#Activities .content > h1 {
  font-size: 3em;
  font-weight: 400;
}

#Activities .results {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#Activities .results > div{
  padding: 10px;
  text-align: center;
  flex: 1;
}

#About .content > p {
  padding-top: 50px;
  font-size: 2em;
  font-weight: 300;
}

#Platforms {
  background-image: url(../images/devicesBackground_wOpacity_graphics.png);
  background-size: 100% 100%;
  height: 600px;
}

#Platforms article {
  width: 480px;
  padding: 40px;
  background:rgb(0,0,0,.4);
}

footer .social >li {
  display: inline;
}

footer {
  background-color: var(--main-yellow);
  background-size: 100% 100%;
  color: white;
  text-align: center;
  height: 67px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  font-weight: 100;
  padding-top: 3px;
}


/* @media only screen and (max-width: 1200px) {
} */

@media only screen and (max-width: 768px) {

  header.page {
    padding-right: 55px;
  }

  header.page > nav {
    width: 20%
  }

  header.page nav ul {
		width: 0;
		right: 0;
		top: 56px;
		display: block;
		background: rgba(0, 0, 0, 0.6);
		transition: all 500ms ease-in-out;
		position: absolute;
    text-align: center;
  }

  header.page nav li {
    margin: 5px 0;
  }

  #nav-toggle {
    position: absolute;
    top: 18px;
    right: 12px;
    width: 35px;
    height: 25px;
    margin: 0;
    opacity: 0;
    display: block;
  }

  #nav-toggle-btn {
    display: inline;
    right: 12px;
  }

  #nav-toggle:checked ~ ul {
    width: 96px;
  }

  #Feature > h1 {
    font-size: 2.6em;
    width: 80%
  }

  #Activities .activityCard.third {
    display: none;
  }

}

@media only screen and (max-width: 420px) {
  header.page > nav {
    width: 5%
  }

  #Feature .swiper-slide article {
    padding:0;
    width:auto;
  }

  #Feature > h1 {
    font-size: 2em;
    width: 100%;
  }

  #Activities .activityCard.second {
    display: none;
  }

  #Platforms {
    background-size: cover;
  }

  #Platforms article {
    padding:0;
    width:auto; 
  }

}