@-webkit-keyframes smooth {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes smooth {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@font-face {
  font-family: "aquawax";
  src: url(http://joci.intuitivecomputers.eu/fonts/Aquawax.ttf);
}

body {
  height: 100vh;
  width: 100vw;
  margin: 0;
  font-family: "Rubik", sans-serif;
  overflow-x: hidden;
}

body #links a {
  padding: 0 10px;
  color: white;
}

p {
  color: white;
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
}

h1 {
  font-size: 60px;
  font-weight: 700;
}

h3 {
  font-family: "Rubik", sans-serif;
  font-size: 50px;
  font-weight: 700;
}

.navbar-background {
  opacity: 0.75;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 50px;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  background-color: black;
}

.navbar {
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 50px;
  z-index: 999;
  padding: 0;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
}

.navbar #logo {
  width: 100px;
  height: 30px;
  margin-left: 50px;
  -webkit-animation: smooth 0.3s ease-in-out;
          animation: smooth 0.3s ease-in-out;
  background-image: url(../assets/turtle_logo.png);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}

.navbar #links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 25vw;
  height: 50px;
}

.navbar #links a {
  color: white;
  text-decoration: none;
  -webkit-animation: smooth 0.3s ease-in-out;
          animation: smooth 0.3s ease-in-out;
}

.navbar #links a:hover {
  text-shadow: 0 0 20px white;
}

.navbar #burger {
  width: 30px;
  height: 18px;
  margin-right: 50px;
  margin-left: 70px;
  -webkit-animation: smooth 0.3s ease-in-out;
          animation: smooth 0.3s ease-in-out;
  background-image: url(../assets/burger_icon.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

#burger-menu {
  opacity: 0.7;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  margin-top: 50px;
  width: 100vw;
  height: auto;
  z-index: 999;
  background-color: black;
}

#burger-menu #burger-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#burger-menu #burger-links a {
  color: white;
  text-decoration: none;
  text-align: center;
  padding: 10px;
  -webkit-animation: smooth 0.3s ease-in-out;
          animation: smooth 0.3s ease-in-out;
}

#burger-menu #burger-links a:hover {
  text-shadow: 0 0 20px white;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  height: 100vh;
  width: 100vw;
  color: #3f95c2;
}

.header p {
  opacity: 1;
  color: #FFB545;
  font-weight: 500;
  line-height: 0;
  position: absolute;
  margin-top: 15vh;
}

.sky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 50vh;
  width: 100vw;
  z-index: -999;
  background-image: url(../assets/title_bg.png);
  background-position: center;
  background-size: cover;
}

.sky .intro-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.sky .intro-text-container #title-img {
  margin-top: 45px;
  width: 80vw;
  height: 30vh;
  background-image: url(../assets/title_img.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.water-background {
  height: 50vh;
  width: 100vw;
  z-index: -899;
  background-image: url(../assets/water_surface_bg.png);
  background-position: top;
  background-size: cover;
}

.intro-screen {
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  width: 100vw;
  color: white;
}

.intro-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 60vh;
  width: 60vw;
  z-index: 899;
}

.rock-left {
  width: 100vw;
  height: 100%;
  z-index: 699;
  margin-top: -300px;
  background-image: url(../assets/rock_left.png);
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 25vmax;
}

.rock-right {
  width: 100vw;
  height: 100%;
  z-index: 699;
  margin-top: -700px;
  background-image: url(../assets/rock_right.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 15vmax;
}

#intro-twilight {
  background-image: url(../assets/rock_right.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}

.ocean-container {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(60%, black), color-stop(90%, #144085), to(#3f95c2));
  background: linear-gradient(0deg, black 60%, #144085 90%, #3f95c2 100%);
  width: 100vw;
  z-index: -999;
}

.carousel {
  z-index: 899;
}

.slider-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  width: 100vw;
  font-size: 50px;
}

.slider-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 30vw;
  height: 60vh;
  margin: 20px;
  color: white;
}

.slider-text a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 300;
  margin-top: 20px;
}

.slider-text a:hover {
  text-shadow: 0 0 20px white;
}

.slider-img {
  width: 30vw;
  height: 60vh;
  margin: 0 20px 0 20px;
}

#item01 {
  background-image: url(../assets/dolphin.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item02 {
  background-image: url(../assets/vaquita.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item03 {
  background-image: url(../assets/the_great_auk.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item04 {
  background-image: url(../assets/beluga_whale.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item05 {
  background-image: url(../assets/strawberry_squidd.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item06 {
  background-image: url(../assets/tuna.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item07 {
  background-image: url(../assets/leatherback_turtle.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item08 {
  background-image: url(../assets/dragon_fish.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item09 {
  background-image: url(../assets/chimaera.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item10 {
  background-image: url(../assets/jellyfish.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item11 {
  background-image: url(../assets/abyssal_grenadier.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item12 {
  background-image: url(../assets/threewarted_sea_devil.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item13 {
  background-image: url(../assets/amphipod.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item14 {
  background-image: url(../assets/cusk_eel.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item15 {
  background-image: url(../assets/snailfish.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item16 {
  background-image: url(../assets/hawksbill_turtle.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#item17 {
  background-image: url(../assets/white_spotted_greyling.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#submarine-yellow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 12vh;
  width: 100vw;
  position: fixed;
  bottom: 15vh;
  z-index: 3;
  background-image: url(../assets/submarine_yellow.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#submarine-black {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 12vh;
  width: 100vw;
  position: fixed;
  bottom: 15vh;
  z-index: 2;
  background-image: url(../assets/submarine_black.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#scrolly {
  position: fixed;
  top: 20%;
}

#pageContainer {
  min-height: 100vh;
  padding: 100px;
  background-image: url(../assets/water.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
  min-width: 100vw;
  -webkit-transition: 1s ease-in;
  transition: 1s ease-in;
}

@media (max-width: 1024px) {
  #pageContainer {
    padding: 15px;
    margin: 0 auto;
  }
}

#pageContainer #whitespace {
  height: 100px;
}

#pageContainer .sHeadline {
  margin: 0 auto !important;
  text-align: center;
}

#pageContainer .sHeadline h1 {
  border-radius: 10px;
  -webkit-animation: smooth 0.5s ease-in-out;
          animation: smooth 0.5s ease-in-out;
}

#pageContainer .sHeadline p {
  font-weight: bold;
  padding: 25px;
  border-radius: 5px;
  -webkit-animation: smooth 1s ease-in-out;
          animation: smooth 1s ease-in-out;
}

#pageContainer .sPicsContainer {
  padding: 0 50px;
  margin: auto;
}

@media (min-width: 1280px) {
  #pageContainer .sPicsContainer {
    margin: 0 200px !important;
  }
}

#pageContainer .sPicsContainer .sPics {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

@media (max-width: 768px) {
  #pageContainer .sPicsContainer .sPics {
    -ms-grid-columns: (1fr)[1] !important;
        grid-template-columns: repeat(1, 1fr) !important;
  }
}

@media (max-width: 1280px) {
  #pageContainer .sPicsContainer .sPics {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

#pageContainer .sPicsContainer .sPics .pic {
  border-radius: 15px;
  position: relative;
  min-height: 300px;
  max-width: 600px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  background-size: 100% 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 5px #050941;
  overflow: hidden;
}

@media (min-width: 1280px) {
  #pageContainer .sPicsContainer .sPics .pic {
    max-width: 1200px !important;
  }
}

#pageContainer .sPicsContainer .sPics .pic #picBg {
  border-radius: 15px;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
}

#pageContainer .sPicsContainer .sPics .pic #picBg a {
  text-decoration: none;
}

#pageContainer .sPicsContainer .sPics .pic #picBg h3 {
  margin-left: 15px;
  margin-right: 15px;
  -webkit-text-stroke: 1px black;
  color: white;
  text-align: center;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#pageContainer .sPicsContainer .sPics .pic #picBg:hover {
  -webkit-backdrop-filter: blur(5px) !important;
          backdrop-filter: blur(5px) !important;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

#pageContainer .sPicsContainer .sPics .pic #picBg:hover h3 {
  opacity: 1;
  visibility: visible;
}

#pageContainer .sPicsContainer .sPics #pic1 {
  -webkit-animation: smooth 1s ease-in-out;
          animation: smooth 1s ease-in-out;
  background-image: url(../assets/Abyssal-Grenadier.jpg);
}

#pageContainer .sPicsContainer .sPics #pic2 {
  -webkit-animation: smooth 1.2s ease-in-out;
          animation: smooth 1.2s ease-in-out;
  background-image: url(../assets/Amphipod.jpg);
}

#pageContainer .sPicsContainer .sPics #pic3 {
  -webkit-animation: smooth 1.4s ease-in-out;
          animation: smooth 1.4s ease-in-out;
  background-image: url(../assets/belugawhale.jpg);
}

#pageContainer .sPicsContainer .sPics #pic4 {
  -webkit-animation: smooth 1.6s ease-in-out;
          animation: smooth 1.6s ease-in-out;
  background-image: url(../assets/BlackDragonfish.jpg);
}

#pageContainer .sPicsContainer .sPics #pic5 {
  -webkit-animation: smooth 1.8s ease-in-out;
          animation: smooth 1.8s ease-in-out;
  background-image: url(../assets/bluefin-tuna.jpg);
}

#pageContainer .sPicsContainer .sPics #pic6 {
  -webkit-animation: smooth 2s ease-in-out;
          animation: smooth 2s ease-in-out;
  background-image: url(../assets/Chimaera.jpg);
}

#pageContainer .sPicsContainer .sPics #pic7 {
  -webkit-animation: smooth 2.2s ease-in-out;
          animation: smooth 2.2s ease-in-out;
  background-image: url(../assets/crossotamilsae.jpg);
}

#pageContainer .sPicsContainer .sPics #pic8 {
  -webkit-animation: smooth 2.4s ease-in-out;
          animation: smooth 2.4s ease-in-out;
  background-image: url(../assets/cuskeel.jpg);
}

#pageContainer .sPicsContainer .sPics #pic9 {
  -webkit-animation: smooth 2.6s ease-in-out;
          animation: smooth 2.6s ease-in-out;
  background-image: url(../assets/GreatAuk.jpg);
}

#pageContainer .sPicsContainer .sPics #pic10 {
  -webkit-animation: smooth 2.8s ease-in-out;
          animation: smooth 2.8s ease-in-out;
  background-image: url(../assets/Hawksbillturtle.jpg);
}

#pageContainer .sPicsContainer .sPics #pic11 {
  -webkit-animation: smooth 3s ease-in-out;
          animation: smooth 3s ease-in-out;
  background-image: url(../assets/IrrawaddyDolphin.jpg);
}

#pageContainer .sPicsContainer .sPics #pic12 {
  -webkit-animation: smooth 3.2s ease-in-out;
          animation: smooth 3.2s ease-in-out;
  background-image: url(../assets/LeatherbackTurtle.jpg);
}

#pageContainer .sPicsContainer .sPics #pic13 {
  -webkit-animation: smooth 3.4s ease-in-out;
          animation: smooth 3.4s ease-in-out;
  background-image: url(../assets/NewZealandGreyling.jpg);
}

#pageContainer .sPicsContainer .sPics #pic14 {
  -webkit-animation: smooth 3.6s ease-in-out;
          animation: smooth 3.6s ease-in-out;
  background-image: url(../assets/marianasnailfish.png);
}

#pageContainer .sPicsContainer .sPics #pic15 {
  -webkit-animation: smooth 3.8s ease-in-out;
          animation: smooth 3.8s ease-in-out;
  background-image: url(../assets/strawberrysquid.jpg);
}

#pageContainer .sPicsContainer .sPics #pic16 {
  -webkit-animation: smooth 4s ease-in-out;
          animation: smooth 4s ease-in-out;
  background-image: url(../assets/Triplewartseadevil.jpg);
}

#pageContainer .sPicsContainer .sPics #pic17 {
  -webkit-animation: smooth 4.2s ease-in-out;
          animation: smooth 4.2s ease-in-out;
  background-image: url(../assets/Vaquita.jpg);
}

.subsite #sub {
  min-height: 100vh;
  padding: 100px;
  background-image: url(../assets/water.jpg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 1024px) {
  .subsite #sub {
    padding: 15px;
    margin: 0 auto;
  }
}

.subsite #sub #returnBtn {
  -webkit-animation: smooth 3s ease-in-out;
          animation: smooth 3s ease-in-out;
  border-radius: 15px;
  margin-bottom: 30px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#13547a), to(#80d0c7));
  background-image: linear-gradient(#13547a, #80d0c7);
  border: none;
  font-size: 30px;
  color: white;
  padding: 10px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0.9;
}

.subsite #sub #returnBtn:hover {
  margin-bottom: 0px !important;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  color: #7ee5ff;
  padding-top: 25px !important;
  padding-bottom: 25px !important;
  padding-left: 25px !important;
  padding-right: 10px !important;
  -webkit-clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
          clip-path: polygon(40% 0%, 40% 20%, 100% 20%, 100% 80%, 40% 80%, 40% 100%, 0% 50%);
  opacity: 0.9;
}

.subsite #sub #subText {
  /* background: linear-gradient(to right, rgba(173, 216, 230, 0.438), rgba(0, 128, 128, 0.479)); */
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  opacity: 0.9;
  border-radius: 5px;
  padding: 15px;
  margin: 0px;
  -webkit-animation: smooth 0.3s ease-in-out;
          animation: smooth 0.3s ease-in-out;
}

.subsite #sub #subText h1 {
  -webkit-animation: smooth 0.8s ease-in-out;
          animation: smooth 0.8s ease-in-out;
  font-size: 60px;
}

.subsite #sub #subText p {
  -webkit-animation: smooth 1s ease-in-out;
          animation: smooth 1s ease-in-out;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 18px;
}

@media (max-width: 768px) {
  .subsite #sub #subText h1 {
    font-size: 40px;
  }
  .subsite #sub #subText p {
    font-size: 16px;
    padding: 5px;
  }
}

@media (min-width: 768px) {
  .subsite #sub #subText {
    margin: 0 100px;
  }
}

@media (min-width: 1024px) {
  .subsite #sub #subText {
    margin: 0 150px;
  }
}

@media (min-width: 1440px) {
  .subsite #sub #subText {
    margin: 0 200px;
  }
}

.subsite #sub #subText .pic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px;
  float: right;
  border: 2px solid black;
  border-radius: 15px;
  height: 120px;
  width: auto;
  -webkit-animation: smooth 0.9s ease-in-out;
          animation: smooth 0.9s ease-in-out;
}

@media (min-width: 576px) {
  .subsite #sub #subText .pic {
    height: 150px;
  }
}

@media (min-width: 768px) {
  .subsite #sub #subText .pic {
    height: 190px;
  }
}

@media (min-width: 1024px) {
  .subsite #sub #subText .pic {
    height: 320px;
  }
}

@media (min-width: 1440px) {
  .subsite #sub #subText .pic {
    height: 300px;
  }
}

/* .fullscreen-img {
    #img-1 {
        @include fullscreen();
        background-image: url(../assets/turtle_web.jpg);
    }
}

.animal-description {
    color: black;
    p {
        color: black;
    }
} */
.quiz-container #topic-trash {
  background-image: url(../assets/trashinocean.png);
  background-size: cover;
}

.quiz-container #topic-energy {
  background-image: url(../assets/wave_background.png);
  background-size: cover;
}

.quiz-container #topic-cleaning {
  background-image: url(../assets/cleanup_background.png);
  background-size: cover;
}

.topic-screen {
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  width: 100vw;
  color: white;
}

.topic-text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 60vh;
  width: 60vw;
  z-index: 899;
}

.question-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: white;
}

.question-container .question-text {
  height: auto;
  width: 60vw;
}

.question-container .question-text p {
  color: black;
}

.question-container .answer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 60vw;
  height: 30vh;
  margin: 0;
}

.question-container .answer-container .answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  width: 15vw;
  height: 25vh;
  text-align: center;
  text-decoration: none;
  background-image: url(../assets/circle_icon.png);
  background-size: 15vh;
  background-position: bottom 25% center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer p {
  line-height: 0;
  color: black;
  text-shadow: 0 0 0px black;
}

.question-container .answer-container .answer #check1 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/pipa_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer #check2 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/x_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer #check3 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/x_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer #check4 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/x_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer #check5 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/x_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer #check6 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/pipa_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer #check7 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/x_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer #check8 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/pipa_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.question-container .answer-container .answer #check9 {
  opacity: 0;
  width: 15vw;
  height: 15vh;
  background-image: url(../assets/x_icon.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#aboutus {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(20%, #ffb545), color-stop(80%, #f9d548));
  background: linear-gradient(0deg, #ffb545 20%, #f9d548 80%);
}

.aboutus-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80vw;
  height: auto;
}

.aboutus-column .profile-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30vh;
  margin-top: 50px;
}

.aboutus-column .profile-card .aboutus-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 20vw;
  height: 200px;
}

.aboutus-column .profile-card .aboutus-text p {
  font-size: 25px;
  color: black;
}

.aboutus-column .profile-card .aboutus-text .sig {
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.aboutus-column .profile-card .aboutus-text #laura-sig {
  background-image: url(../assets/sig_laura.png);
}

.aboutus-column .profile-card .aboutus-text #jake-sig {
  background-image: url(../assets/sig_jake.png);
}

.aboutus-column .profile-card .aboutus-text #joci-sig {
  background-image: url(../assets/sig_joci.png);
}

.aboutus-column .profile-card .aboutus-text #bendi-sig {
  background-image: url(../assets/sig_bendi.png);
}

.aboutus-column .profile-card .profile {
  width: 300px;
  height: 300px;
  background-size: contain;
  background-repeat: no-repeat;
}

.aboutus-column .profile-card #plaura {
  background-image: url(../assets/profile_laura.png);
}

.aboutus-column .profile-card #pjoci {
  background-image: url(../assets/profile_joci.png);
}

.aboutus-column .profile-card #pjake {
  background-image: url(../assets/profile_jake.png);
}

.aboutus-column .profile-card #pbendi {
  background-image: url(../assets/profile_bendi.png);
}

@media (max-width: 768px) {
  .navbar #links {
    display: none;
  }
  .slider-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slider-text {
    width: 60vw;
    height: 30vh;
  }
  .slider-text a {
    font-size: 15px;
  }
  .slider-img {
    width: 60vw;
    height: 30vh;
  }
  p {
    color: white;
    font-size: 15px;
    font-weight: 300;
  }
  h1 {
    font-size: 30px;
    font-weight: 700;
  }
  h3 {
    font-family: "Rubik", sans-serif;
    font-size: 50px;
    font-weight: 700;
  }
  .question-container .answer-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100vw;
    height: 50vh;
  }
  .question-container .answer-container .answer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 60vw;
    height: 15vh;
    margin: 0;
    text-align: center;
    text-decoration: none;
    background-image: url(../assets/circle_icon.png);
    background-size: 10vh;
    background-position: bottom center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check1 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/pipa_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check2 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/x_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check3 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/x_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check4 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/x_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check5 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/x_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check6 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/pipa_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check7 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/x_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check8 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/pipa_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .question-container .answer-container .answer #check9 {
    opacity: 0;
    width: 60vw;
    height: 15vh;
    background-image: url(../assets/x_icon.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .topic-screen {
    height: 150vh;
    width: 100vw;
  }
  .aboutus-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 60vw;
  }
  .aboutus-column #bendi {
    -webkit-animation: smooth 0.5s ease-in-out;
            animation: smooth 0.5s ease-in-out;
  }
  .aboutus-column #jake {
    -webkit-animation: smooth 0.7s ease-in-out;
            animation: smooth 0.7s ease-in-out;
  }
  .aboutus-column #joci {
    -webkit-animation: smooth 0.9s ease-in-out;
            animation: smooth 0.9s ease-in-out;
  }
  .aboutus-column #laura {
    -webkit-animation: smooth 1.1s ease-in-out;
            animation: smooth 1.1s ease-in-out;
  }
  .aboutus-column .profile-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40vw;
    margin-top: 50px;
  }
  .aboutus-column .profile-card .aboutus-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 200px;
    width: 40vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .aboutus-column .profile-card .aboutus-text p {
    font-size: 15px;
    color: black;
    margin: 0;
    width: 40vw;
  }
  .aboutus-column .profile-card .aboutus-text .sig {
    height: 50px;
    width: 30vw;
  }
  .aboutus-column .profile-card .profile {
    width: 200px;
    height: 400px;
    background-image: url(../assets/profile_joci.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
/*# sourceMappingURL=project_style.css.map */