/* Imports */
/* Mobile First CSS - default styles for mobile.
    media queries change html font size to affect rem's throughout */
html {
  overflow: hidden;
  height: 100%;
  height: 100vh;
  width: 100%;
  font-size: 11px;
}

body {
  overflow: hidden;
  height: 100vh;
  width: 100%;
  background: #fff;
  margin-bottom: 50px;
  color: #212225;
  /*font-size: 16px;*/
  font-size: 1.5em;
  background: #eee;
  /*font-family: Helvetica Neue, Helvetica, Arial, sans-serif;*/
  color: #000;
  margin: 0;
  padding: 0;
}

html, body {
  position: relative;
  height: 100%;
}

body.loaded {
  opacity: 1;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Zoram', 'Open Sans', 'noto sans', 'Helvetica', 'Arial', sans-serif;
  font-weight: 300;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0 0 2rem;
  padding-right: 0;
  padding-left: 0;
}

.cover-up {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0 !important;
}

.blue-transparent {
  background: rgba(36, 142, 192, 0.9);
}

div {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Removes Bootstrap's default 15px side padding from most divs */
div[class^="col-"] {
  padding: 0;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 3.1rem;
}

h3 {
  font-size: 2.5rem;
  line-height: 1.3em;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5em;
}

h6 {
  font-size: 1.4rem;
}

p {
  margin: 0 0 2.5rem;
  line-height: 1.6em;
}

textarea.fill-in-the-blank,
textarea.fill-interaction {
  width: 100%;
  min-height: 20vh;
  resize: none;
  border: none;
  overflow: auto;
  outline: none;
  padding: 1rem;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: -1.5rem;
  margin-bottom: 0.25rem;
  color: #444;
  font-weight: 400;
  border-radius: 2px;
  background-color: #ffffff;
  border: solid 1px #979797;
  color: #1a1a1c;
}

textarea.fill-in-the-blank {
  min-height: 10vh;
}

textarea.fill-in-the-blank:active,
textarea.fill-interaction:active {
  border: solid 1px #979797;
  color: #1a1a1c;
}

textarea.fill-in-the-blank:focus,
textarea.fill-interaction:focus {
  	/*outline: none;
      border: none;*/
  border: solid 1px #3eb1c8;
}

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

:-moz-placeholder {
  /* Firefox 18- */
  color: #acabb1;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #acabb1;
}

:-ms-input-placeholder {
  color: #acabb1;
}

p.blue-txt,
.row {
  min-height: 50px;
}

.fill-in-the-blank-submit,
.fill-interaction-submit {
  float: right;
  overflow: hidden;
  position: relative;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
  margin-top: 0.4rem;
}

.fill-in-the-blank-submit.submitting,
.fill-interaction-submit.submitting {
  pointer-events: none;
  /* color: transparent; */
}

.icon-spacing {
  margin-right: 24px;
}

.fill-in-the-blank-submit.submitting::before,
.fill-interaction-submit.submitting::before {
  content: '';
  font-size: .5rem;
  display: block;
  background: #13557A;
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  animation-name: loadingButton;
  animation-duration: 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
}

.fill-in-the-blank-submit.submitting::after,
.fill-interaction-submit.submitting::after {
  content: '';
  border: 2px solid #fff;
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border-radius: 1rem;
  left: 100%;
  top: 50%;
  position: absolute;
  margin-top: -10px;
  margin-left: -28px;
  display: inline-block;
  animation-name: loadingRotation;
  animation-timing-function: linear;
  animation-duration: 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  border-bottom: 2px solid transparent;
}

@keyframes loadingRotation {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loadingButton {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
p {
  font-size: 1.3rem;
}

div {
  box-sizing: border-box;
}

.swiper-slide {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  -webkit-transition: background-size 500ms ease-in-out, opacity 500ms ease-in-out;
  -moz-transition: background-size 500ms ease-in-out, opacity 500ms ease-in-out;
  -ms-transition: background-size 500ms ease-in-out, opacity 500ms ease-in-out;
  -o-transition: background-size 500ms ease-in-out, opacity 500ms ease-in-out;
  transition: background-size 500ms ease-in-out, opacity 500ms ease-in-out;
  background-color: #fff;
}

.move-next {
  cursor: pointer;
}

.btn {
  min-width: 6rem;
  z-index: 1 !important;
}

.btn-green,
.btn-green:hover,
.btn-green:focus,
.btn-green:active,
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  font-size: .88em;
  padding: 1em;
  border-radius: 2.5px;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: button;
  display: inline-block;
  font-weight: 400;
  background: #3eb1c8;
  background: linear-gradient(to bottom right, #60bfd2, #3eb1c8 50%);
  color: #fff;
  line-height: 0;
  border: none;
  letter-spacing: -0.05em;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-bottom {
  position: absolute;
  bottom: 10%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-audio,
.btn-audio:hover,
.btn-audio:active,
.btn-audio:focus {
  padding-left: 1.5rem;
  padding-right: 2rem;
  /* box-shadow: 0 0 50px 0 rgba(255,255,255,.2); */
  -webkit-transition: opacity 300ms ease-in-out;
  -moz-transition: opacity 300ms ease-in-out;
  -ms-transition: opacity 300ms ease-in-out;
  -o-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.btn-audio.playing {
  opacity: 0;
}

.btn-audio::before {
  font-family: "Gideon";
  /*content: '\EB02';*/
  content: '\ED01';
  font-weight: 400;
  display: inline-block;
  position: relative;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 24px;
  width: 24px;
  /*border-radius: 50%;*/
  line-height: 24px;
  padding-left: 0px;
  padding-right: 1px;
  box-sizing: border-box;
  vertical-align: middle;
  margin-right: 0.7rem;
  margin-left: -0.3rem;
  margin-bottom: -2rem;
  margin-top: -2.1rem;
  color: #fff;
  /*background: rgba(255,255,255,.33);*/
}

.btn-audio.completed,
.btn-audio.completed:hover,
.btn-audio.completed:active,
.btn-audio.completed:focus {
  background: #272931;
  color: #666B6F;
}

.btn-audio.completed::before {
  display: inline;
  position: static;
  font-family: "Gideon";
  color: #666B6F;
  content: '\EA10';
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 0;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  background: transparent;
  margin-right: 1rem;
}

.btn-red,
.btn-red:hover,
.btn-red:focus,
.btn-red:active {
  font-size: .88em;
  padding: 1em;
  border-radius: 2.5px;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: button;
  display: inline-block;
  font-weight: 400;
  background: #E42A54;
  background: linear-gradient(to bottom right, #FA4966, #E42A54 50%);
  color: #fff;
  line-height: 0;
  border: none;
  letter-spacing: -0.05em;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-outline,
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  font-size: .95em;
  padding: 1.1em;
  border-radius: 2.5px;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: button;
  display: inline-block;
  font-weight: 400;
  background: transparent;
  line-height: 0;
  border: 1px solid #fff;
  letter-spacing: -0.05em;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active {
  color: #eaecec;
  border: 1px solid #eaecec;
}

.btn.active, .btn:active {
  box-shadow: none;
}

.btn-outline-blue,
.btn-outline-blue:hover,
.btn-outline-blue:focus,
.btn-outline-blue:active {
  font-size: .88em;
  padding: 1em;
  border-radius: 2.5px;
  color: #00BCDA;
  cursor: pointer;
  -webkit-appearance: button;
  display: inline-block;
  font-weight: 400;
  background: transparent;
  line-height: 0;
  border: 1px solid #00BCDA;
  letter-spacing: -0.05em;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-outline-blue:hover,
.btn-outline-blue:focus,
.btn-outline-blue:active {
  color: #129eb2;
  border: 1px solid #129eb2;
}

.btn-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  font-size: .88em;
  padding: 1em;
  border-radius: 2.5px;
  color: #00BCDA;
  cursor: pointer;
  -webkit-appearance: button;
  display: inline-block;
  font-weight: 400;
  background: #fff;
  line-height: 0;
  border: 1px solid #fff;
  letter-spacing: -0.05em;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn-dark,
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
  color: #333;
  border: 1px solid #333;
  -webkit-transition: opacity 200ms ease-in-out;
  -moz-transition: opacity 200ms ease-in-out;
  -ms-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.btn-xl,
.btn-xl:hover,
.btn-xl:focus,
.btn-xl:active {
  font-size: 1.1em;
  padding: 1.3em;
}

.btn-primary:hover {
  background: #3eb1c8 !important;
  color: #fff !important;
}

.btn-primary:hover:before {
  color: #fff !important;
}

.btn-green {
  background: #69B342;
  background: linear-gradient(to bottom right, #7AC342, #69B342 50%);
  margin-right: .75rem;
  float: right;
}

.btn-green:hover,
.btn-green:focus,
.btn-green:active {
  background: #69B342;
}

.btn-disabled,
.btn-disabled:hover,
.btn-disabled:focus,
.btn-disabled:active {
  background: #C8CECC;
  cursor: default;
  pointer-events: none;
}

.btn-sub-menu {
  cursor: pointer;
  position: relative;
  min-height: 90px;
  right: 70px;
}

.btn-sub-menu .inner-graphic {
  display: block;
  position: absolute;
  overflow: hidden;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-color: #444;
  -webkit-backface-visibility: hidden;
  border: 0px solid transparent;
  padding: 0;
}

.btn-sub-menu .inner-graphic .bg-graphic {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border: 0px solid transparent;
  -webkit-transition: -webkit-transform 300ms ease-in-out;
  -moz-transition: -moz-transform 300ms ease-in-out;
  -ms-transition: -ms-transform 300ms ease-in-out;
  -o-transition: -o-transform 300ms ease-in-out;
  transition: transform 300ms ease-in-out;
  -webkit-backface-visibility: hidden;
  margin: 0;
}

.disabled-custom .inner-graphic .bg-graphic {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}

.btn-sub-menu .inner-graphic .bg-graphic {
  background: url("../../media/images/img01.jpg");
  background-size: cover;
  background-position: center;
}

.btn-sub-menu .inner-txt {
  margin: 0 2rem;
  border-bottom: 1px solid #EEE;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 48%;
  height: 100%;
  box-sizing: border-box;
}

.btn-sub-menu.line-current .inner-txt {
  border-bottom: 2px solid #DDD;
  font-weight: 400 !important;
}

.btn-sub-menu:last-child .inner-txt {
  border-bottom: none;
}

.btn-sub-menu .inner-txt .middle-txt {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  font-size: 2.6rem;
  line-height: 2.8rem;
  font-weight: 300;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.btn-sub-menu.disabled-custom {
  cursor: default;
  pointer-events: none;
  opacity: .9;
}

.btn-wrapper-md {
  width: 330px;
  margin: 4% auto;
}

.btn-wrapper-md .btn {
  width: 100%;
  display: block;
  text-align: left;
  margin: .5rem 0;
}

.btn-wrapper-full {
  width: 100%;
}

.btn-wrapper-full .btn {
  width: 100%;
  display: block;
  text-align: center;
  margin: .5rem 0;
  white-space: normal;
  line-height: 1.33rem;
  padding: .8rem;
  height: auto !important;
}

.btn-sub-menu.completed-custom .inner-txt .middle-txt {
  color: #AAA;
  padding-left: 4rem;
}

.btn-sub-menu.completed-custom .inner-txt .middle-txt::before {
  color: #59A833;
  font-family: 'Gideon';
  font-size: 3.75rem;
  content: '\EA10';
  position: absolute;
  left: 1.75rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-sub-menu.disabled-custom .inner-txt .middle-txt {
  opacity: .33;
}

.btn-sub-menu:hover .inner-graphic .bg-graphic,
.btn-sub-menu:focus .inner-graphic .bg-graphic {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
  /*     -webkit-filter: blur(0);
  filter: blur(0); */
}

.btn-sub-menu:hover .inner-txt .middle-txt,
.btn-sub-menu:focus .inner-txt .middle-txt {
  margin-left: .5rem;
}

.btn-pop-up {
  position: relative;
}

.btn-pop-up.visited {
  opacity: .6;
  overflow: visible;
}

.btn-pop-up.visited::after {
  font-family: 'Gideon';
  font-size: 2rem;
  content: '\EA10';
  position: absolute;
  right: -3rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.btn-pop-out {
  position: relative;
}

.btn-pop-out.visited {
  opacity: .33;
  overflow: visible;
}

.btn-pop-out.visited::after {
  font-family: 'Gideon';
  font-size: 2rem;
  content: '\EA10';
  position: absolute;
  right: -3rem;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.show-correct {
  display: inline-block;
}

.btn-pop-out.btn-side.visited {
  color: #A9AEAD;
  opacity: 1;
  border: 1px solid #A9AEAD;
}

.icon-btn {
  font-family: 'Gideon';
  display: block;
  box-sizing: border-box;
  cursor: pointer !important;
  text-align: center;
  font-size: 36px;
  width: 33px;
  height: 26px;
  line-height: 26px;
  -webkit-transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  -moz-transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  -ms-transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  -o-transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.script-btn {
  font-family: 'Gideon';
  display: block;
  box-sizing: border-box;
  cursor: pointer !important;
  text-align: right;
  font-size: 36px;
  /*width: 110px;*/
  height: 28px;
  line-height: 28px;
  -webkit-transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  -moz-transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  -ms-transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  -o-transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  transition: font-size 200ms ease-in-out, color 200ms ease-in-out, opacity 200ms ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button, button {
  height: 38px;
}

.menu-item.current,
.menu-item.current:hover {
  color: #3eb1c8;
  border-color: #3eb1c8;
  z-index: 1;
  margin-top: -1px;
  font-weight: 600;
}

.completed {
  color: #69B342;
}

.completed .sub-icon {
  color: #69B342;
}

/* menu and nav */
.script-toggle,
.menu-toggle,
.navigation {
  color: #333333;
  opacity: .6;
}

.script.active ~ .script-toggle,
.menu.active ~ .menu-toggle {
  opacity: 0;
  pointer-events: none;
}

.script-toggle.white,
.menu-toggle.white {
  color: #FFFFFF;
}

.script-toggle.black,
.menu-toggle.black {
  color: #000000;
}

.menu,
.menu-toggle {
  position: fixed;
  z-index: 4000;
  left: 15px;
  top: 20px;
}

.script-toggle {
  z-index: 10;
  /* margin-right: 32px;*/
  /*position: fixed;
  left: 86%;*/
  position: absolute;
  left: auto;
  right: 15px;
  top: 20px;
  bottom: auto;
}

.script-text {
  font-family: "Zoram", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  font-style: normal;
}

.menu {
  left: -520px;
  top: 0;
  bottom: 0;
  display: block;
  background: #fff;
  width: 520px;
  max-width: 96%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  padding: 4rem 2rem 4rem 0;
  -webkit-transition: left 500ms ease-out, box-shadow 300ms ease-out;
  -moz-transition: left 500ms ease-out, box-shadow 300ms ease-out;
  -ms-transition: left 500ms ease-out, box-shadow 300ms ease-out;
  -o-transition: left 500ms ease-out, box-shadow 300ms ease-out;
  transition: left 500ms ease-out, box-shadow 300ms ease-out;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  z-index: 3000;
}

.script-panel {
  right: -520px;
  top: 0;
  bottom: 0;
  display: block;
  position: absolute;
  background: #fff;
  color: #333;
  width: 520px;
  max-width: 80%;
  text-align: left;
  height: 100vh;
  -webkit-transition: right 500ms ease-out, box-shadow 300ms ease-out;
  -moz-transition: right 500ms ease-out, box-shadow 300ms ease-out;
  -ms-transition: right 500ms ease-out, box-shadow 300ms ease-out;
  -o-transition: right 500ms ease-out, box-shadow 300ms ease-out;
  transition: right 500ms ease-out, box-shadow 300ms ease-out;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  z-index: 100;
  overflow: hidden;
}

.story-panel {
  top: 0;
  bottom: 0;
  display: block;
  position: absolute;
  background: #fff;
  color: #333;
  width: 100%;
  text-align: left;
  height: 100% !important;
  max-height: 100% !important;
  z-index: 100;
  overflow: hidden;
  -webkit-transition: all 700ms ease-in-out;
  -moz-transition: all 700ms ease-in-out;
  -ms-transition: all 700ms ease-in-out;
  -o-transition: all 700ms ease-in-out;
  transition: all 700ms ease-in-out;
}

.story-panel-inner {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 6rem 5rem 5rem 5rem;
}

.story-panel-inner h3 {
  cursor: pointer;
}

.story-panel-inner h3::before {
  color: #00BCDA;
  font-family: 'Gideon';
  content: '\EA02';
  font-size: 2.5rem;
  position: absolute;
  right: 5rem;
  top: 5.75rem;
  cursor: pointer;
  z-index: 0;
  /*pointer-events: hover;*/
}

.story-panel-inner hr {
  margin-top: -2rem;
  margin-bottom: 2rem;
}

.story-panel-inner h3 {
  z-index: 2;
}

.right-panel {
  right: -100%;
}

.left-panel {
  left: -100%;
}

.right-panel.activated {
  right: 0;
}

.left-panel.activated {
  left: 0;
}

.no-margin-half {
  margin: 0;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 50vh !important;
  -webkit-transition: opacity 700ms ease-in-out;
  -moz-transition: opacity 700ms ease-in-out;
  -ms-transition: opacity 700ms ease-in-out;
  -o-transition: opacity 700ms ease-in-out;
  transition: opacity 700ms ease-in-out;
}

.script-inner {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 6rem 5rem 0 2rem;
}

hr {
  border: 1px solid #EEE;
}

.script-panel.active {
  right: 0;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.2), 0 0 22px 0 rgba(0, 0, 0, 0.1);
}

.script-panel h1,
.script-panel h2,
.script-panel h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.menu-close,
.script-close {
  font-family: 'Gideon';
  position: absolute;
  right: .95em;
  top: .95em;
  font-size: 36px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #00BCDA;
  z-index: 300;
  text-align: center;
  cursor: pointer !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0;
  -webkit-transition: opacity 500ms ease-out;
  -moz-transition: opacity 500ms ease-out;
  -ms-transition: opacity 500ms ease-out;
  -o-transition: opacity 500ms ease-out;
  transition: opacity 500ms ease-out;
  transition-delay: 0;
}

.menu.active .menu-close,
.script-panel.active .script-close {
  transition-delay: 250ms;
  opacity: 1;
}

.menu-inner-top {
  position: absolute;
  display: block;
  height: 20px;
  width: 100%;
  top: 9rem;
  left: 0;
  right: 0;
  pointer-events: none;
  background: transparent;
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), white);
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0), white);
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0), white);
  background: linear-gradient(to top, rgba(255, 255, 255, 0), white);
  z-index: 200;
}

.menu-inner-bottom {
  position: absolute;
  display: block;
  height: 20px;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  background: transparent;
  background: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0), white);
  background: -o-linear-gradient(bottom, rgba(255, 255, 255, 0), white);
  background: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0), white);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  z-index: 200;
}

.menu h1 {
  font-size: 2rem;
  padding-bottom: .5rem;
  margin-left: 58px;
  margin-right: 24px;
  border-bottom: 2px solid #EEE;
  margin-top: 1.9rem;
}

.menu-inner {
  position: absolute;
  display: block;
  top: 9rem;
  left: 0;
  right: 1rem;
  bottom: 0;
  width: 100%;
  height: auto;
  overflow-y: auto;
  padding-top: 20px;
}

.menu-content-cover {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  display: block;
  -webkit-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -ms-transition: opacity 500ms ease-in-out;
  -o-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 1000;
}

body.ie-fix .menu-content-cover {
  z-index: -1;
}

.menu.active {
  left: 0;
  box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.4), 0 0 44px 0 rgba(0, 0, 0, 0.2);
}

.menu.active ~ .menu-content-cover {
  opacity: 1;
  display: block;
  pointer-events: all;
}

body.ie-fix .menu.active ~ .menu-content-cover {
  z-index: 1000;
}

.sub-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  height: 40px;
  font-size: 28px;
  color: #fff;
  width: 40px;
  line-height: 40px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: background 180ms linear, color 180ms linear;
  -moz-transition: background 180ms linear, color 180ms linear;
  -ms-transition: background 180ms linear, color 180ms linear;
  -o-transition: background 180ms linear, color 180ms linear;
  transition: background 180ms linear, color 180ms linear;
  font-weight: 300 !important;
}

.menu-item {
  display: block;
  padding: .5rem 1rem;
  padding-left: 58px !important;
  cursor: pointer;
  padding-left: 48px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transition: background 180ms linear, color 180ms linear;
  -moz-transition: background 180ms linear, color 180ms linear;
  -ms-transition: background 180ms linear, color 180ms linear;
  -o-transition: background 180ms linear, color 180ms linear;
  transition: background 180ms linear, color 180ms linear;
  position: relative;
  color: #484848;
  font-weight: 400;
  font-size: 20px;
}

.menu-item span {
  color: #666 !important;
  font-weight: 400 !important;
}

.menu-item:hover {
  color: #333;
}

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

.white-txt {
  color: #ffffff;
}

.white-bg {
  background: #fff;
  color: #333;
}

.grey-bg {
  background: #EEEFEF;
  color: #333;
}

.blue-bg {
  background: #00698C;
  color: #fff;
}

.light-blue-bg {
  background: #00BCDA;
  color: #fff;
}

.green-bg {
  background: #69B342;
  color: #fff;
}

.light-red-bg {
  background: #F05674;
  color: #fff;
}

.sub-heading {
  width: 75%;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  font-weight: 400i;
  font-size: 1em;
  font-style: italic;
}

.sub-heading-2 {
  font-style: italic;
  margin-bottom: 4rem;
  margin-top: -1rem;
}

.columns {
  padding: 0;
}

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

/* Rays Top */
.top.rays {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: top 800ms ease-in-out, transform 490ms linear;
  -moz-transition: top 800ms ease-in-out, transform 490ms linear;
  -ms-transition: top 800ms ease-in-out, transform 490ms linear;
  -o-transition: top 800ms ease-in-out, transform 490ms linear;
  transition: top 800ms ease-in-out, transform 490ms linear;
  z-index: 0;
  pointer-events: none;
}

.top.rays div {
  display: block;
  position: absolute;
  left: -95%;
  top: -90%;
  content: '';
  height: 100%;
  width: 300%;
  background: rgba(255, 255, 255, 0.1);
}

.top.rays div:nth-child(1) {
  top: -100%;
  opacity: 0;
  animation: topRay1 700ms 1 forwards ease-out;
  animation-delay: 180ms;
}

.top.rays div:nth-child(2) {
  top: -100%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  animation: topRay2 700ms 1 forwards ease-out;
  animation-delay: 90ms;
}

.top.rays div:nth-child(3) {
  top: -100%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  animation: topRay3 700ms 1 forwards ease-out;
  animation-delay: 90ms;
}

.top.rays div:nth-child(4) {
  top: -100%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  animation: topRay4 700ms 1 forwards ease-out;
  animation-delay: 180ms;
}

.top.rays.removed {
  top: -33%;
}

@keyframes topRay1 {
  0% {
    top: -100%;
    opacity: 0;
  }
  100% {
    top: -93.5%;
    opacity: .5;
  }
}
@keyframes topRay2 {
  0% {
    top: -100%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }
  100% {
    top: -88%;
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -ms-transform: rotate(4deg);
    -o-transform: rotate(4deg);
    transform: rotate(4deg);
    opacity: .33;
  }
}
@keyframes topRay3 {
  0% {
    top: -100%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }
  100% {
    top: -90.5%;
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
    -ms-transform: rotate(-8deg);
    -o-transform: rotate(-8deg);
    transform: rotate(-8deg);
    opacity: .33;
  }
}
@keyframes topRay4 {
  0% {
    top: -100%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }
  100% {
    top: -88%;
    -webkit-transform: rotate(-15deg);
    -moz-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    -o-transform: rotate(-15deg);
    transform: rotate(-15deg);
    opacity: .33;
  }
}
/* Rays Bottom */
.rays {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: bottom 800ms ease-in-out, transform 490ms linear;
  -moz-transition: bottom 800ms ease-in-out, transform 490ms linear;
  -ms-transition: bottom 800ms ease-in-out, transform 490ms linear;
  -o-transition: bottom 800ms ease-in-out, transform 490ms linear;
  transition: bottom 800ms ease-in-out, transform 490ms linear;
  z-index: 0;
  pointer-events: none;
}

body.ie-fix .rays {
  display: none;
}

.rays div {
  display: block;
  position: absolute;
  left: -95%;
  bottom: -90%;
  content: '';
  height: 100%;
  width: 300%;
  background: rgba(255, 255, 255, 0.66);
}

.rays div:nth-child(1) {
  bottom: -100%;
  opacity: 0;
  animation: ray1 700ms 1 forwards ease-out;
  animation-delay: 180ms;
}

.rays div:nth-child(2) {
  bottom: -100%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  animation: ray2 700ms 1 forwards ease-out;
  animation-delay: 90ms;
}

.rays div:nth-child(3) {
  bottom: -100%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  animation: ray3 700ms 1 forwards ease-out;
  animation-delay: 90ms;
}

.rays div:nth-child(4) {
  bottom: -100%;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  animation: ray4 700ms 1 forwards ease-out;
  animation-delay: 180ms;
}

.rays.removed {
  bottom: -33%;
}

@keyframes ray1 {
  0% {
    bottom: -100%;
    opacity: 0;
  }
  100% {
    bottom: -93.5%;
    opacity: .5;
  }
}
@keyframes ray2 {
  0% {
    bottom: -100%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }
  100% {
    bottom: -88%;
    -webkit-transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    transform: rotate(-4deg);
    opacity: .33;
  }
}
@keyframes ray3 {
  0% {
    bottom: -100%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }
  100% {
    bottom: -90.5%;
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -o-transform: rotate(8deg);
    transform: rotate(8deg);
    opacity: .33;
  }
}
@keyframes ray4 {
  0% {
    bottom: -100%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0;
  }
  100% {
    bottom: -88%;
    -webkit-transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    -o-transform: rotate(15deg);
    transform: rotate(15deg);
    opacity: .33;
  }
}
/* override featherlight defaults */
.featherlight-close-icon.featherlight-close {
  content: "" !important;
  color: transparent !important;
  background: transparent;
  font-size: 2.5rem;
  color: #fff;
  position: fixed;
  padding: 1rem;
  width: 0;
  height: 0;
  font-weight: 300;
  /*     right: 13%; */
}

.featherlight-close-icon.featherlight-close::before {
  content: '\EA02';
  color: #00BCDA;
  margin-left: -1.5rem;
  background: transparent;
  font-family: "Gideon" !important;
}

.featherlight-content {
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.content-custom.featherlight {
  background: rgba(0, 0, 0, 0.1);
}

.content-custom .featherlight-content {
  max-height: 100% !important;
}

.content-custom .featherlight-close-icon.featherlight-close {
  right: 13%;
  top: 2.5%;
}

.content-custom .featherlight-close-icon.featherlight-close::before {
  color: #aaa;
}

.brightcove {
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.lightbox.video {
  min-width: 200px;
  width: 90vw;
  padding-bottom: 56.25%;
}

.lightbox.content {
  background: #fff;
  height: 100vh;
  width: 80vw;
  overflow: hidden;
  /*     position: relative;
  overflow: hidden; */
}

.lightbox-content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
}

.lightbox-content-inner {
  /*     position: absolute;
      top: 0;
      border: 10px solid red; */
  background: #fff;
  padding: 8% 10%;
  height: 100vh;
  width: 100%;
  position: absolute;
  display: block;
  overflow: hidden;
  overflow-y: auto;
  /*     -webkit-overflow-scrolling:touch; */
}

/* override fullpage defaults */
.swiper-container {
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in-out;
  -moz-transition: opacity 300ms ease-in-out;
  -ms-transition: opacity 300ms ease-in-out;
  -o-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
}

.swiper-container.loaded {
  opacity: 1;
}

#fp-nav,
.menu-toggle,
.navigation {
  opacity: .6;
  -webkit-transition: opacity 200ms ease-in-out, color 200ms ease-in-out;
  -moz-transition: opacity 200ms ease-in-out, color 200ms ease-in-out;
  -ms-transition: opacity 200ms ease-in-out, color 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out, color 200ms ease-in-out;
  transition: opacity 200ms ease-in-out, color 200ms ease-in-out;
}

#fp-nav {
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

#fp-nav ul li a span {
  background: #333;
  -webkit-transition: background 200ms ease-in-out;
  -moz-transition: background 200ms ease-in-out;
  -ms-transition: background 200ms ease-in-out;
  -o-transition: background 200ms ease-in-out;
  transition: background 200ms ease-in-out;
}

#fp-nav.white ul li a span {
  background: #FFF;
}

.fp-slidesNav ul li a span {
  background: #333;
}

#fp-nav.white ul li a span,
.fp-slidesNav.white ul li a span {
  background: #FFF;
}

ul.blue-txt {
  margin-left: 1rem;
}

.fp-controlArrow.fp-next,
.fp-controlArrow.fp-prev,
.fp-controlArrow.fp-down,
.fp-controlArrow.fp-up {
  background: #FFF;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-family: 'Gideon';
  border: none;
  font-size: 36px;
  line-height: 46px;
  text-align: center;
  font-weight: normal !important;
  width: 44px;
  height: 44px;
  bottom: 20px;
  right: 20px;
  top: auto;
  left: auto;
  position: fixed;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
  -webkit-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out;
  -moz-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out;
  -ms-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out;
  -o-transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out;
  transition: background 200ms ease-in-out, opacity 200ms ease-in-out, color 200ms ease-in-out;
  user-select: none;
  cursor: pointer;
}

.fp-controlArrow.fp-next,
.fp-controlArrow.fp-prev,
.fp-controlArrow.fp-down,
.fp-controlArrow.fp-up {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
}

.white.fp-controlArrow.fp-next,
.white.fp-controlArrow.fp-prev,
.white.fp-controlArrow.fp-down,
.white.fp-controlArrow.fp-up {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.fp-controlArrow.fp-next {
  margin-right: -5px;
}

.fp-controlArrow.fp-prev {
  margin-right: 55px;
}

.fp-controlArrow.fp-down,
.fp-controlArrow.fp-up {
  right: 32px;
  bottom: 32px;
}

.fp-controlArrow.fp-next.fp-blue {
  background: #00BCDA;
  background: rgba(0, 188, 218, 0.9);
}

.fp-up {
  margin-bottom: 56px;
}

.fp-nav-instructions {
  position: absolute;
  font-size: 0.8em;
  bottom: 30px;
  text-align: right;
  right: 125px;
  display: none;
}

#fp-nav.right {
  right: 0.5%;
  opacity: 0;
  /* on mobile */
  -webkit-transition: opacity 300ms ease-in-out, right 300ms ease-in-out;
  -moz-transition: opacity 300ms ease-in-out, right 300ms ease-in-out;
  -ms-transition: opacity 300ms ease-in-out, right 300ms ease-in-out;
  -o-transition: opacity 300ms ease-in-out, right 300ms ease-in-out;
  transition: opacity 300ms ease-in-out, right 300ms ease-in-out;
}

.contain-bg {
  background-size: 80% auto;
  /* fallback */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.darken-on-mobile {
  background: transparent;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: background 600ms ease-in-out, opacity 500ms ease-in-out;
  -moz-transition: background 600ms ease-in-out, opacity 500ms ease-in-out;
  -ms-transition: background 600ms ease-in-out, opacity 500ms ease-in-out;
  -o-transition: background 600ms ease-in-out, opacity 500ms ease-in-out;
  transition: background 600ms ease-in-out, opacity 500ms ease-in-out;
  position: absolute;
  z-index: 0;
  box-sizing: border-box;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  opacity: .8;
}

.faded-out {
  opacity: 0;
}

.swiper-slide {
  text-align: left;
  color: #333333;
  position: relative;
  min-height: 100vh;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
}

.dark-txt {
  color: #333333;
}

.left-txt {
  text-align: left;
}

.pre-animated {
  display: none;
}

/* IScroll override */
.iScrollIndicator {
  background-color: rgba(100, 100, 100, 0.1) !important;
}

/* Dimensions */
.height33,
.height50,
.height66,
.height100 {
  box-sizing: border-box !important;
  position: relative;
  width: 100%;
  padding: 1% 10%;
  flex-basis: content;
  display: flex;
}

.height66 {
  display: block;
}

.full-width {
  width: 100%;
  width: 100vw;
}

.height33 {
  min-height: 33.33%;
  min-height: 33.33vh;
  padding-top: 6%;
  padding-bottom: 1%;
}

.height33 h1,
.height33 h2,
.height33 h3,
.height33 h4 {
  align-self: flex-end;
  display: block;
  margin: 4% 0 0 0;
}

.height66 {
  min-height: 66.66%;
  min-height: 66.66vh;
}

.question {
  padding: 0 5%;
  /*    height:auto;
      min-height: 95%;
      min-height: 95vh;*/
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  width: 100vw;
}

/*.question{
    height:auto;
    min-height: 95%;
    min-height: 95vh;
    width: 100%;
    width: 100vw;
    top: 0;
    left: 0;
    box-sizing: border-box;
    }*/
.question .height66 {
  height: auto;
  min-height: 30vh;
}

.question .height33 {
  padding: 0 10%;
  height: auto;
  min-height: 12vh;
}

.question .height33 h3 {
  margin: 0;
  margin-bottom: 2rem;
}

.row {
  width: 100%;
}

.padding-y-large {
  padding: 12% 8% 4% 4%;
}

.padding-large {
  padding: 8% 12%;
}

.padding-large-medium {
  padding: 4% 12%;
}

.padding-large-small {
  padding: 1% 12%;
}

.padding-top-small {
  padding: 0 12%;
}

.padding-huge {
  padding: 2% 10%;
}

.no-padding-margin {
  padding: 0px !important;
  margin: 0px !important;
}

.giant {
  font-size: 3rem;
  -webkit-transition: opacity 500ms ease-in-out;
  -moz-transition: opacity 500ms ease-in-out;
  -ms-transition: opacity 500ms ease-in-out;
  -o-transition: opacity 500ms ease-in-out;
  transition: opacity 500ms ease-in-out;
}

.xl {
  font-size: 6rem;
}

.uber {
  font-size: 10rem;
}

.dark-grey-bg {
  background: #343741;
  color: #fff;
}

.reddish-bg {
  background: #7F0047;
  color: #fff;
}

.limit-width-52 {
  max-width: 52%;
  margin: 4% auto;
}

.pad-bottom-10 {
  padding-bottom: 32px;
}

.semi-bold {
  font-weight: 500 !important;
}

.pop-up-link {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: color 700ms ease-in-out;
  -moz-transition: color 700ms ease-in-out;
  -ms-transition: color 700ms ease-in-out;
  -o-transition: color 700ms ease-in-out;
  transition: color 700ms ease-in-out;
}

.pop-up-link.activated {
  color: #00BCDA;
}

.pop-up-link.finished {
  color: #333;
}

.pop-up-link.visited {
  color: #AAA;
}

.pop-up-link::before {
  content: '';
  position: absolute;
  bottom: 1rem;
  left: 0.1rem;
  right: 0.1rem;
  border-bottom: 1px solid #00BCDA;
  opacity: 0.66;
}

.pop-up-link.finished::before {
  /* border-color: #888; */
}

.pop-up-link:hover {
  color: #00BCDA;
  -webkit-transition: color 200ms ease-in-out;
  -moz-transition: color 200ms ease-in-out;
  -ms-transition: color 200ms ease-in-out;
  -o-transition: color 200ms ease-in-out;
  transition: color 200ms ease-in-out;
}

.pop-up-bottom {
  width: 100%;
  width: 100vw;
  position: absolute;
  left: 0;
  top: 50%;
  top: 50vh;
  padding: 4% 12%;
  background: #fff;
  height: auto;
  min-height: 60vh;
  -webkit-transition: box-shadow 400ms ease-in-out, opacity 400ms ease-in-out, margin-top 400ms ease-in-out;
  -moz-transition: box-shadow 400ms ease-in-out, opacity 400ms ease-in-out, margin-top 400ms ease-in-out;
  -ms-transition: box-shadow 400ms ease-in-out, opacity 400ms ease-in-out, margin-top 400ms ease-in-out;
  -o-transition: box-shadow 400ms ease-in-out, opacity 400ms ease-in-out, margin-top 400ms ease-in-out;
  transition: box-shadow 400ms ease-in-out, opacity 400ms ease-in-out, margin-top 400ms ease-in-out;
  text-align: left;
  overflow: hidden;
  margin-top: 50%;
  margin-top: 50vh;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
}

.pop-up-bottom h3,
.pop-up-larger p:first-child,
.pop-up-bottom h2,
.pop-up-bottom h1 {
  overflow: visible;
  position: relative;
  cursor: pointer;
}

.pop-up-bottom h3::after,
.pop-up-larger p:first-child::after,
.pop-up-bottom h2::after,
.pop-up-bottom h1::after {
  overflow: visible;
  font-family: 'Gideon';
  content: '\EA02';
  position: absolute;
  right: -16%;
  top: -0.5rem;
  width: 100px;
  height: 100px;
  color: #00BCDA;
  cursor: pointer;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.pop-up-larger h4::after {
  top: -6rem;
}

h1.pop-up {
  margin-bottom: 0.5rem;
  padding-top: 3rem;
}

p.pop-up {
  margin-right: 10rem;
}

/*.pop-up-bottom::-webkit-scrollbar {
    width: 12px;
    right: -10%;
    }*/
.pop-up-bottom.popped-up {
  pointer-events: all;
  margin-top: 0;
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.02);
  opacity: 1;
  -webkit-transition: box-shadow 600ms ease-in-out, opacity 300ms ease-in-out, margin-top 600ms ease-in-out;
  -moz-transition: box-shadow 600ms ease-in-out, opacity 300ms ease-in-out, margin-top 600ms ease-in-out;
  -ms-transition: box-shadow 600ms ease-in-out, opacity 300ms ease-in-out, margin-top 600ms ease-in-out;
  -o-transition: box-shadow 600ms ease-in-out, opacity 300ms ease-in-out, margin-top 600ms ease-in-out;
  transition: box-shadow 600ms ease-in-out, opacity 300ms ease-in-out, margin-top 600ms ease-in-out;
}

.pop-up-larger {
  color: #333;
  top: 40%;
  top: 40vh;
  margin-top: 60%;
  margin-top: 60vh;
  min-height: 70%;
  min-height: 70vh;
  text-align: center !important;
  padding: 4% 14%;
}

.pop-up-larger.popped-up {
  margin-top: 0;
}

.pop-up-larger h4 {
  max-width: 1200px;
  margin: 2% auto 4% auto;
}

.pop-up-larger p:first-child {
  font-weight: 600;
  font-size: 1.4rem;
  padding-top: 3rem;
  margin-bottom: 3.5rem;
}

h4.pop-up-margins {
  margin-left: 3.2rem;
  margin-right: 3.2rem;
}

.mini {
  font-weight: 600;
  font-size: 1.2rem;
}

.pop-up-bottom-cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  height: 100vh;
  position: absolute;
  display: block;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 600ms ease-in-out;
  -moz-transition: opacity 600ms ease-in-out;
  -ms-transition: opacity 600ms ease-in-out;
  -o-transition: opacity 600ms ease-in-out;
  transition: opacity 600ms ease-in-out;
  z-index: 1;
}

.row {
  -webkit-transition: min-height 600ms ease-in-out;
  -moz-transition: min-height 600ms ease-in-out;
  -ms-transition: min-height 600ms ease-in-out;
  -o-transition: min-height 600ms ease-in-out;
  transition: min-height 600ms ease-in-out;
}

.pop-up-bottom-cover.covering {
  opacity: 1;
  pointer-events: all;
}

.pop-out-right {
  right: -400px;
  top: 0;
  bottom: 0;
  display: block;
  position: absolute;
  background: #fff;
  color: #333;
  width: 400px;
  max-width: 60%;
  text-align: left;
  height: 100vh;
  -webkit-transition: right 500ms ease-out, box-shadow 300ms ease-out;
  -moz-transition: right 500ms ease-out, box-shadow 300ms ease-out;
  -ms-transition: right 500ms ease-out, box-shadow 300ms ease-out;
  -o-transition: right 500ms ease-out, box-shadow 300ms ease-out;
  transition: right 500ms ease-out, box-shadow 300ms ease-out;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  z-index: 100;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 3%;
  min-height: 70%;
  min-height: 70vh;
}

.pop-out-right.active {
  right: 0;
  box-shadow: 0 0 11px 0 rgba(0, 0, 0, 0.2), 0 0 22px 0 rgba(0, 0, 0, 0.1);
}

.pop-out-right h1,
.pop-out-right h2,
.pop-out-right h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding: 5% 3% 0% 3%;
}

.pop-out-right h3,
.pop-out-right h2 {
  cursor: pointer;
  max-width: 80%;
}

.pop-out-right h3::after,
.pop-out-right h2::after {
  overflow: visible;
  font-family: 'Gideon';
  content: '\EA02';
  position: absolute;
  right: -16%;
  top: 0;
  width: 100px;
  height: 100px;
  color: #00BCDA;
  cursor: pointer;
  font-size: 32px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  padding-top: 14px;
}

.pop-out-right h5 {
  font-size: 1.5rem;
}

.giant {
  margin-bottom: 10%;
}

.giant.small-margin {
  margin-bottom: 4%;
}

div.padding-medium {
  padding: 3% 10%;
}

div.padding-small {
  padding: 1% 2%;
}

/* override skeleton defaults */
.max-h-80 {
  max-height: 80%;
  max-height: 80vh;
}

.pagination-controls-template .image-size {
  width: 100%;
  display: inline-block;
  position: relative;
  max-width: 700px;
}

.pagination-controls-template .image-size:after {
  padding-top: 126.8%;
  display: block;
  content: '';
}

.diagnostic-panel {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  z-index: 9999999999999;
  position: absolute;
  bottom: 0;
  left: 0;
}

.diagonal-shadow {
  -webkit-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.05);
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.diagonal-shadow::before {
  position: absolute;
  content: "";
  display: block;
  bottom: 15px;
  right: 9px;
  left: auto;
  width: 80%;
  max-width: 500px;
  height: 20.5%;
  top: 77%;
  background: transparent;
  -webkit-box-shadow: 0 19px 48px rgba(0, 0, 0, 0.33), 0 15px 26px rgba(0, 0, 0, 0.26);
  -moz-box-shadow: 0 19px 48px rgba(0, 0, 0, 0.33), 0 15px 26px rgba(0, 0, 0, 0.26);
  box-shadow: 0 19px 48px rgba(0, 0, 0, 0.33), 0 15px 26px rgba(0, 0, 0, 0.26);
  -webkit-transform: rotate(4deg);
  -moz-transform: rotate(4deg);
  -o-transform: rotate(4deg);
  -ms-transform: rotate(4deg);
  transform: rotate(4deg);
  z-index: -1;
}

.gallery {
  overflow-x: hidden;
  white-space: nowrap;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 0em;
  word-spacing: 0em;
}

.gallery .item {
  white-space: normal;
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  top: 0;
  left: 0;
  font-size: 0;
  letter-spacing: 0em;
  word-spacing: 0em;
  margin: 0;
  margin-right: -4px;
  padding: 0;
  box-sizing: border-box;
  -webkit-transition: left 500ms ease-in-out;
  -moz-transition: left 500ms ease-in-out;
  -ms-transition: left 500ms ease-in-out;
  -o-transition: left 500ms ease-in-out;
  transition: left 500ms ease-in-out;
  border: 1px solid transparent;
  vertical-align: top;
}

.gallery .item p {
  font-size: 1.4rem;
  font-style: italic;
  margin: 2px;
  overflow-y: auto;
}

span.normal-font {
  font-style: normal;
}

.btn-dot-wrap {
  display: inline-block;
  text-align: center;
  margin-top: 10px;
}

.gallery-dots span {
  cursor: pointer;
 /*-webkit-transition: background 200ms ease-in-out;
-moz-transition: background 200ms ease-in-out;
 -ms-transition: background 200ms ease-in-out;
  -o-transition: background 200ms ease-in-out;
  transition: background 200ms ease-in-out;*/
}

.dots {
  display: inline-block;
}

.dots span {
  /* background: #BBB;*/
  width: 32px;
  height: 32px;
  display: inline-block;
  margin: 2px;
  border-radius: 3px;
  /*vertical-align: middle;*/
  cursor: pointer;
  border: 1px solid #C8CECC;
  font-weight: 400;
  font-size: 20px;
}

.dots span:hover {
  border: 1px solid #fff;
}

.dots span.active {
  /*width: 12px;
  height: 12px;
  background: #333;*/
  border: 1px solid #333;
}

.gallery-spans {
  display: inline-block;
}

.gallery-next {
  border: none;
  background: none;
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: 100;
  color: #333;
  /* width: 1px;*/
  padding-left: 0;
  padding-right: 1rem;
  padding-top: 0;
}

.gallery-prev {
  border: none;
  background: none;
  font-family: sans-serif;
  font-size: 2rem;
  font-weight: 100;
  color: #333;
  /* width: 1px;*/
  padding-left: 0;
  padding-right: 1rem;
  padding-top: 0;
}

.disabled {
  opacity: .4;
  pointer-events: none;
}

.hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.empty {
  display: none;
}

#fp-nav.right {
  opacity: 0;
  z-index: -1;
}

.fp-controlArrow.fp-down {
  /*margin-bottom: 4px;*/
}

/*=====================================================
QUIZ STYLING
=====================================================*/
form {
  width: 100%;
  box-sizing: border-box;
}

label {
  width: 100%;
  background: #F0F2F2;
  padding: .75em;
  margin: .25em 0;
  margin-top: 0;
  box-sizing: border-box;
  word-break: break-word;
  word-wrap: normal;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  line-height: 1.75rem;
  font-weight: 600;
}

label.img-label {
  background: transparent;
  padding: .25rem;
}

/* .radio-fpo{
    position: relative;
}
.radio-fpo::before{
    position: absolute;
    content: 'FPO';
    font-weight: 600;
    display: block;
    font-size: 7rem;
    z-index: 1;
    left: 50%;
    top: 50%;
    margin-left: 22px;
    -webkit-transform: translate(-50%,-50%);
       -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
         -o-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    color: #E42A54;
    opacity: .5;
    pointer-events: none;
    } */
/* Base for label styling */
[type="radio"]:not(:checked),
[type="radio"]:checked,
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}

[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label,
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 42px;
  cursor: pointer;
  box-sizing: border-box;
}

/* radio aspect */
[type="radio"]:not(:checked) + label::before,
[type="radio"]:checked + label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  width: 20px;
  height: 20px;
  border: 1px solid #D3D3D3;
  background: #f8f8f8;
  border-radius: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked) + label::before,
[type="checkbox"]:checked + label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 12px;
  width: 18px;
  height: 18px;
  border: 1px solid #D3D3D3;
  background: #f8f8f8;
  border-radius: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  box-sizing: border-box;
}

/* checked mark aspect for radio*/
[type="radio"]:not(:checked) + label::after,
[type="radio"]:checked + label::after {
  font-family: "Gideon";
  content: '\EA10';
  color: white;
  font-size: 15px;
  padding-left: 4px;
  padding-top: 3px;
  /*background: red;*/
  background-image: linear-gradient(167deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)), linear-gradient(#3eb1c8, #3eb1c8);
  position: absolute;
  display: block;
  top: 49.8%;
  left: 12.3px;
  line-height: 0.8;
  width: 20px;
  height: 20px;
  border-radius: 7px;
  border-radius: 50%;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-top: -9px;
  box-sizing: border-box;
}

/* checked mark aspect for checkbox*/
[type="checkbox"]:not(:checked) + label::after,
[type="checkbox"]:checked + label::after {
  font-family: "Gideon";
  content: '\EA10';
  color: white;
  font-size: 15px;
  padding-left: 4px;
  padding-top: 3px;
  /*background: red;*/
  background-image: linear-gradient(167deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)), linear-gradient(#3eb1c8, #3eb1c8);
  position: absolute;
  display: block;
  top: 46%;
  left: 13px;
  line-height: 0.8;
  width: 18px;
  height: 18px;
  border-radius: 7px;
  border-radius: 50%;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  margin-top: -6px;
  margin-left: -3px;
  box-sizing: border-box;
}

.question .feedback {
  /*margin-top:-2px;*/
  margin-top: 10px;
  border-top: 1px transparent solid;
  position: relative;
}

.question .row {
  position: relative;
}

.feedback p {
  margin: .5rem 0;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.standard-question.feedback-mark-correct {
  padding-left: 0.8rem;
  /*CHANGED FOR SMALLER SIZE*/
  margin-left: 3rem;
}

.standard-question.feedback-mark-incorrect {
  padding-left: 0.8rem;
  /*FOR SMALLER SIZE MOBILE FIRST*/
  margin-left: 3rem;
}

.standard-question.feedback-mark-correct p.strong-txt::before {
  color: #59A833;
  font-family: 'Gideon';
  font-size: 3.8rem;
  content: '\EA10';
  position: absolute;
  left: -2rem;
  /*CHANGED FOR SMALLER SIZE*/
  top: 0.5rem;
  /*CHANGED FOR SMALLER SIZE*/
}

.standard-question.feedback-mark-incorrect p.strong-txt::before {
  color: #EE3E5F;
  font-family: 'Gideon';
  font-size: 3.8rem;
  content: '\EA02';
  position: absolute;
  left: -1.7rem;
  /*FOR SMALLER SIZE*/
  top: 0.5rem;
  /*FOR SMALLER SIZE*/
}

.picture-question.feedback-mark-correct {
  padding-left: 1.8rem;
  margin-left: 3rem;
}

.picture-question.feedback-mark-incorrect {
  padding-left: 1.8rem;
  margin-left: 3rem;
}

.picture-question.feedback-mark-correct p::before {
  color: #59A833;
  font-family: 'Gideon';
  font-size: 3.3rem;
  content: '\EA10';
  position: absolute;
  left: -1rem;
  top: 0.5rem;
}

.picture-question.feedback-mark-incorrect p::before {
  color: #EE3E5F;
  font-family: 'Gideon';
  font-size: 3.8rem;
  content: '\EA02';
  position: absolute;
  left: -1rem;
  top: 0.5rem;
}

.standard-question.feedback-mark-noanswer::before {
  content: url("../../media/images/warn-small24.png");
  width: 20px;
  height: 20px;
  position: absolute;
  left: 10%;
  top: 15rem;
}

.standard-question.feedback-mark-noanswer {
  padding-left: 1rem;
  margin-left: 3rem;
}

.strong-txt {
  font-weight: 600;
}

.black-txt,
.green-txt,
.red-txt,
.blue-txt {
  font-weight: 400;
  padding-bottom: 0.75rem;
}

.green-txt {
  color: #59A833;
}

.feed-green-txt {
  /*color: #59A833;*/
  font-style: normal;
}

.light.green-txt {
  color: #58A833;
}

.red-txt {
  /*color: #E42A54;*/
}

.blue-txt {
  /*color: #00BCDA;*/
}

.black-txt {
  color: black;
}

.blue-txt-instruct {
  /*color: #00BCDA;*/
  font-size: 1.5rem;
  font-weight: 400;
}

.animating-txt,
.animating-txt span {
  -webkit-transition: color 500ms ease-in-out;
  -moz-transition: color 500ms ease-in-out;
  -ms-transition: color 500ms ease-in-out;
  -o-transition: color 500ms ease-in-out;
  transition: color 500ms ease-in-out;
}

.normal-list {
  list-style-type: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
  margin-left: 0.9rem;
  margin-top: -1.8rem;
}

.normal-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: #000000;
  position: absolute;
  border-radius: 2px;
  top: 50%;
  left: -.5rem;
  margin-top: -2px;
}

.normal-list li {
  margin: 0;
  padding-left: 1rem;
  position: relative;
  overflow: visible;
}

.italic-list {
  list-style-type: none;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.8rem;
}

.italic-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background: #00BCDA;
  position: absolute;
  border-radius: 2px;
  top: 50%;
  left: -.5rem;
  margin-top: -2px;
}

.italic-list li {
  margin: 0;
  padding-left: 1rem;
  position: relative;
  overflow: visible;
}

.italic {
  font-style: italic !important;
}

.serif {
  font-family: "McKay", "Palatino", "Palatino Linotype", "Georgia", "Times New Roman", serif;
  font-weight: 400;
  /* letter-spacing: 0.002rem; */
  /* word-spacing: 0.05rem; */
  line-height: 1.3;
}

.lightbox {
  display: none;
  position: relative;
}

.lightbox .btn-outline {
  display: inherit;
  /*     background: rgba(0,0,0,.2); */
  position: fixed;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -150%);
  -moz-transform: translate(-50%, -150%);
  -ms-transform: translate(-50%, -150%);
  -o-transform: translate(-50%, -150%);
  transform: translate(-50%, -150%);
}

/* Feedback Correct */
[type="radio"]:not(:checked).answer-correct + label::after,
[type="radio"]:checked.answer-correct + label::after {
  background: #59A833;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 22px;
  height: 22px;
  border: 1px solid #F0F2F2;
  margin-top: -11px;
}

/* Feedback okCorrect */
[type="radio"]:not(:checked).answer-okcorrect + label::after,
[type="radio"]:checked.answer-okcorrect + label::after {
  background: #00BCDA;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 22px;
  height: 22px;
  border: 1px solid #F0F2F2;
  margin-top: -11px;
}

[type="checkbox"]:not(:checked) + label::before,
[type="checkbox"]:checked + label::before,
[type="checkbox"]:not(:checked) + label::after,
[type="checkbox"]:checked + label::after {
  border-radius: 0;
}

.indicator {
  z-index: 0;
  color: #fff;
  height: 20px;
  display: block;
  position: absolute;
  left: 1rem;
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0.9);
  -moz-transform: translateY(-50%) scale(0.9);
  -ms-transform: translateY(-50%) scale(0.9);
  -o-transform: translateY(-50%) scale(0.9);
  transform: translateY(-50%) scale(0.9);
  top: 50%;
  border-radius: 21px;
  width: 20px;
  font-size: 15px;
  font-family: "Gideon";
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

[type="checkbox"] ~ label .indicator {
  border-radius: 0;
}

.indicator.visible {
  opacity: 1;
  left: -2.75rem;
  border-radius: 21px;
  -webkit-transform: translateY(-50%) scale(1);
  -moz-transform: translateY(-50%) scale(1);
  -ms-transform: translateY(-50%) scale(1);
  -o-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

[type="checkbox"] ~ label .indicator.visible {
  border-radius: 21px;
}

.indicate-correct {
  background-color: #59A833;
}

.indicate-correct::before {
  content: '\EA10';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.indicate-okcorrect {
  background-color: #00BCDA;
}

.indicate-okcorrect::before {
  /*content: '\EA10';*/
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.indicate-incorrect {
  /* background-color: #E42A54; */
  background-color: transparent;
}

.indicate-incorrect::before {
  content: '\EA02';
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}

.slide-in {
  position: relative;
  left: 55%;
}

.covering-feedback {
  position: relative;
  top: 0.25rem;
  right: 0;
  bottom: 0.75rem;
  font-size: 2rem;
  text-align: center;
  padding: 10%;
  color: #fff;
  font-weight: 400;
  font-style: italic;
  z-index: 10;
  width: 100% !important;
}

.check-mark-icon,
.question-mark-icon {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 40px;
  /* border: 1px solid #fff; */
  font-style: normal;
  margin-bottom: 8%;
  overflow: hidden;
}

.check-mark-icon::before,
.question-mark-icon::before {
  color: #fff;
  font-family: "Gideon";
  content: '';
}

.check-mark-icon::before {
  content: '\EA10';
}

.question-mark-icon {
  border-radius: 16px;
  width: 30px;
  height: 30px;
  line-height: 32px;
}

.question-mark-icon::before {
  content: '\E907';
  margin-left: -5px;
  margin-top: -10px;
}

.covering-feedback .btn,
.covering-feedback .btn:hover,
.covering-feedback .btn:focus,
.covering-feedback .btn:active {
  font-size: 0.66em !important;
  padding: 1.2em;
  border-radius: 2.5px;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: button;
  display: inline-block;
  font-weight: 400;
  background: transparent;
  line-height: 0;
  border: 1px solid #fff;
  letter-spacing: -0.05em;
  text-transform: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  margin-top: 6%;
  font-style: normal;
}

[type="radio"]:not(:checked).answer-incorrect + label::after,
[type="radio"]:checked.answer-incorrect + label::after {
  background: #E42A54;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 22px;
  height: 22px;
  border: 1px solid #F0F2F2;
  margin-top: -11px;
}

.missed-at-first {
  transition-duration: 500ms;
  opacity: .9;
}

[type="radio"]:not(:checked).answer-ok + label::after,
[type="radio"]:checked.answer-ok + label::after {
  background: #00BCDA;
  position: absolute;
  top: 50%;
  left: 11px;
  width: 22px;
  height: 22px;
  border: 1px solid #F0F2F2;
  margin-top: -11px;
}

.feedback {
  display: none;
}

.feedback-blue-bg {
  /*background: #00698C;*/
  background: #00BCDA;
  color: #fff;
  position: relative;
  height: auto;
  /*min-height: 70%;*/
  min-height: inherit;
  width: 108%;
  /*box-sizing: border-box;*/
  box-sizing: padding-box;
}

.feedback-blue-bg .center-txt {
  vertical-align: middle;
  text-align: center;
  padding: 26% 13%;
}

.feedback-blue-bg .center-txt.lg-padding {
  padding: 36% 13%;
}

.copy-stmt {
  font-family: 'Zoram', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 40px;
}

.full-height {
  position: relative;
  height: 100vh;
  /*height: auto;*/
  min-height: 66%;
  min-height: 66vh;
  width: 100%;
  width: 100vw;
  top: 0;
  left: 0;
  box-sizing: border-box;
}

/* checked mark aspect changes */
[type="radio"]:not(:checked) + label::after,
[type="checkbox"]:not(:checked) + label::after {
  opacity: 0;
  transform: scale(1.2);
  box-sizing: border-box;
}

[type="radio"]:checked + label::after,
[type="checkbox"]:checked + label::after {
  opacity: 1;
  transform: scale(1);
  box-sizing: border-box;
}

[type="checkbox"]:not(:checked) + label::before,
[type="checkbox"]:checked + label::before {
  transform: scale(1.2) translateY(-40%);
  left: 19px;
}

[type="checkbox"]:not(:checked) + label::after,
[type="checkbox"]:checked + label::after {
  transform: scale(1.1);
  left: 22px;
}

[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  padding-left: 54px;
}

.mc-btn {
  float: right;
  margin-top: 1rem;
}

.mc-img {
  max-width: 100%;
}

/* Loading Screen */
.loading-overlay {
  position: fixed;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.9);
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.loading-inner {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.loading-text {
  margin: 1em;
}

@-webkit-keyframes uil-rolling-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-rolling-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-rolling-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes uil-rolling-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes uil-rolling-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes uil-rolling-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes uil-rolling-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes uil-rolling-anim {
  0% {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.uil-rolling-css {
  width: 80px;
  height: 80px;
  left: 50%;
  display: inline-block;
}

.uil-rolling-css > div {
  width: 80px;
  height: 80px;
  position: relative;
  -ms-animation: uil-rolling-anim 1.8s linear infinite;
  -moz-animation: uil-rolling-anim 1.8s linear infinite;
  -webkit-animation: uil-rolling-anim 1.8s linear infinite;
  -o-animation: uil-rolling-anim 1.8s linear infinite;
  animation: uil-rolling-anim 1.8s linear infinite;
}

.uil-rolling-css > div div {
  position: absolute;
  width: 80px;
  height: 40px;
  border-radius: 40px 40px 0 0;
  border-color: #ffffff;
  border-style: solid;
  border-width: 4px;
  border-bottom-width: 0;
}

.uil-rolling-css > div div:nth-of-type(2) {
  -ms-transform: translate(0, 20px) rotate(88deg) translate(0, -20px);
  -moz-transform: translate(0, 20px) rotate(88deg) translate(0, -20px);
  -webkit-transform: translate(0, 20px) rotate(88deg) translate(0, -20px);
  -o-transform: translate(0, 20px) rotate(88deg) translate(0, -20px);
  transform: translate(0, 20px) rotate(88deg) translate(0, -20px);
}

.question-btn {
  opacity: 1;
  padding: 1em;
  -webkit-transition: opacity 300ms linear,padding 300ms linear;
  -moz-transition: opacity 300ms linear,padding 300ms linear;
  -ms-transition: opacity 300ms linear,padding 300ms linear;
  -o-transition: opacity 300ms linear,padding 300ms linear;
  transition: opacity 300ms linear,padding 300ms linear;
}

.hidden-up {
  pointer-events: none;
  opacity: 0;
  padding: 0;
}

button.question-btn.hidden-up {
  height: 0 !important;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.content-area {
  overflow: hidden;
  /*width: auto;*/
  padding: 0;
  min-height: 100vh;
}

.content-area .block {
  background: #EEEFEF;
  height: auto;
  min-height: 100vh;
  position: relative;
  top: 0;
  -webkit-transition: top 700ms ease-in-out, min-height 700ms ease-in-out, opacity 500ms ease-in-out;
  -moz-transition: top 700ms ease-in-out, min-height 700ms ease-in-out, opacity 500ms ease-in-out;
  -ms-transition: top 700ms ease-in-out, min-height 700ms ease-in-out, opacity 500ms ease-in-out;
  -o-transition: top 700ms ease-in-out, min-height 700ms ease-in-out, opacity 500ms ease-in-out;
  transition: top 700ms ease-in-out, min-height 700ms ease-in-out, opacity 500ms ease-in-out;
  opacity: 1;
}

.content-area .block.no-show {
  height: 0;
  min-height: 0;
  opacity: 0;
  top: 100%;
}

.content-area .top-image {
  content: '';
  height: 50%;
  height: 50vh;
  display: block;
  background-image: url("../../media/images/subMenu1.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
}

.content-area .bottom-content {
  padding: 1rem 2rem;
  font-size: 1.4rem;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  min-height: 50vh;
  height: auto;
}

.bottom-content .italic {
  font-style: italic;
  font-weight: 500;
  margin-top: 1rem;
}

.bottom-content .inspect-text {
  color: #990040;
  font-size: 1rem;
  font-weight: 400;
  margin: 2.5rem;
  position: relative;
}

.bottom-content .inspect-text::before {
  content: " ";
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 30px;
  height: 30px;
  fill: #990040;
  background-image: url("../../media/template/research_icon_burgundy.svg");
  background-size: 30px;
}

/* .bottom-content .inspect-text::after{
    font-family: 'Gideon';
    font-size: 2.5rem;
    content: '\EA09';
    position: absolute;
    left: -3rem;
    top: -2rem;
    } */
.instructions {
  font-style: italic;
  margin-bottom: .5rem;
  font-size: 1.2rem;
  font-weight: 400;
  color: #990040;
  padding: .5rem;
}

.side-bar {
  height: auto;
  min-height: 100vh;
  line-height: 1.8rem;
  padding: 5rem 0.5rem;
  vertical-align: top;
  background: #fff;
}

.side-bar {
  float: left;
}

.side-btn {
  padding: .5rem;
  border-bottom: 1px solid #f4f4f4;
  position: relative;
  display: block;
  line-height: 3rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  padding-right: 2rem;
  -webkit-transition: font-weight 200ms linear, background 200ms ease-in-out, padding 300ms ease-in-out;
  -moz-transition: font-weight 200ms linear, background 200ms ease-in-out, padding 300ms ease-in-out;
  -ms-transition: font-weight 200ms linear, background 200ms ease-in-out, padding 300ms ease-in-out;
  -o-transition: font-weight 200ms linear, background 200ms ease-in-out, padding 300ms ease-in-out;
  transition: font-weight 200ms linear, background 200ms ease-in-out, padding 300ms ease-in-out;
}

.side-btn.visited {
  border-bottom: 1px solid #f4f4f4;
}

.side-btn::after {
  display: block;
  font-family: 'Gideon';
  position: absolute;
  right: 0.33rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 600;
}

.side-btn:hover {
  background: #f4f4f4;
  padding-left: .5rem;
}

.side-btn.visited::after {
  content: '\EA10';
  color: #eee;
}

.side-btn.current {
  border-bottom: 1px solid #ddd;
  font-weight: 600;
}

.side-btn.current::after {
  content: '\EA1A';
  color: #333;
}

.content-area .block:nth-of-type(1) .top-image {
  background-image: url("../../media/images/sub2a.jpg");
  background-position: 50% 12%;
}

.content-area .block:nth-of-type(2) .top-image {
  background-image: url("../../media/images/sub2b.jpg");
}

.content-area .block:nth-of-type(3) .top-image {
  background-image: url("../../media/images/sub2c.jpg");
}

.content-area .block:nth-of-type(4) .top-image {
  background-image: url("../../media/images/sub2d.jpg");
}

.content-area .block:nth-of-type(5) .top-image {
  background-image: url("../../media/images/sub2e.jpg");
}

.content-area .block:nth-of-type(6) .top-image {
  background-image: url("../../media/images/sub2f.jpg");
}

.content-area .block:nth-of-type(7) .top-image {
  background-image: url("../../media/images/sub2g.jpg");
}

.content-area .block:nth-of-type(8) .top-image {
  background-image: url("../../media/images/sub2h.jpg");
  background-position: 0 0;
}

.text-wrapper .serif {
  font-size: 1.5rem;
  padding-right: 3.5rem;
  padding-top: 1rem;
}

.text-wrapper .inspect-text {
  padding-right: 3rem;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}

.limit1400 {
  max-width: 1400px !important;
  margin: 0 auto;
}

.column-full-height {
  position: relative !important;
}

.left-bottom {
  clear: both;
  float: none;
  position: relative;
  /* bottom: 1rem; */
  margin: 0 !important;
  left: 0;
}

.left-align {
  text-align: left !important;
}

.pop-up-larger.left-align {
  height: 50%;
  height: 50vh;
  min-height: 50%;
  min-height: 50vh;
  overflow-y: auto;
  top: 50%;
  top: 50vh;
}

.conclusion .columns {
  /*     min-height: 50%;
  min-height: 50vh; */
  width: 100%;
  /*padding: 16% 8%;*/
}

.conclusion hr {
  border-color: #DDD;
}

.conclusion .columns:last-child {
  margin-left: 0 !important;
  /* background: #EFEFEF;*/
}

.conclusion h3 {
  position: relative;
}

.conclusion h3:first-child {
  padding-top: 3rem;
}

.conclusion hr {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.conclusion h3::before {
  color: #69B342;
  font-family: "Gideon";
  content: '\EA10';
  position: absolute;
  left: 50%;
  top: -2rem;
  font-size: 80px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.match-list label:last-of-type {
  margin-bottom: 0 !important;
}

.match-height-feedback {
  margin-top: 0 !important;
}

.match-h .feedback {
  position: relative;
}

.match-h .feedback h4 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.instruct {
  font-size: 1.3rem !important;
}

div[id^="question"] {
  padding-left: 0;
  padding-right: 0;
}

@media (orientation: portrait) {
  .text-wrapper .serif {
    padding-right: 1rem;
    padding-top: 1rem;
  }

  .text-wrapper .inspect-text {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    font-size: 1.5rem !important;
  }

  /*.script-toggle{
      left: 80%;
      }*/
}
/* .full-height {
    height: 100%!important;
    height: 100vh!important;
}
.full-width,
.full-width .row{
    width: 100%!important;
    width: 100vw!important;
    max-width: 100%!important;
    max-width: 100vw!important;
} */
/*=====================================================
                    MEDIA_QUERIES
The majority of media queries have been moved to partials 
=====================================================*/
/* Landscape / Portrait */
@media (orientation: landscape) {
  .lightbox.video {
    max-width: 100vh;
  }
}
/* Nav overlaps with buttons when height is too small, we must hide it */
@media (min-height: 420px) and (min-width: 480px) {
  #fp-nav.right {
    opacity: .6;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  p.pop-up {
    margin-right: 0;
  }
}
.swiper-container {
  width: 100%;
  height: 100%;
  z-index: 0;
}

.swiper-slide {
  text-align: center;
  overflow-y: auto;
  overflow-x: hidden;
  text-align: left;
}

.swiper-slide.overflow-hidden {
  overflow: hidden;
}

.swiper-pagination {
  display: none;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction,
.fp-controlArrow.fp-prev,
.fp-controlArrow.fp-next {
  bottom: 20px;
  -webkit-transition: bottom 400ms ease-in-out;
  -moz-transition: bottom 400ms ease-in-out;
  -ms-transition: bottom 400ms ease-in-out;
  -o-transition: bottom 400ms ease-in-out;
  transition: bottom 400ms ease-in-out;
}

.swiper-container-horizontal > .swiper-pagination-bullets.audio-open,
.swiper-pagination-custom.audio-open,
.swiper-pagination-fraction.audio-open,
.fp-controlArrow.audio-open {
  bottom: 61px;
  -webkit-transition: bottom 400ms ease-in-out;
  -moz-transition: bottom 400ms ease-in-out;
  -ms-transition: bottom 400ms ease-in-out;
  -o-transition: bottom 400ms ease-in-out;
  transition: bottom 400ms ease-in-out;
}

.swiper-slide-active.audio-open {
  min-height: 80vh;
  /*height: calc(100vh - 40px);*/
  -webkit-transition: height 400ms ease-in-out;
  -moz-transition: height 400ms ease-in-out;
  -ms-transition: height 400ms ease-in-out;
  -o-transition: height 400ms ease-in-out;
  transition: height 400ms ease-in-out;
}

.swiper-slide-active {
  height: 100vh;
  -webkit-transition: height 400ms ease-in-out;
  -moz-transition: height 400ms ease-in-out;
  -ms-transition: height 400ms ease-in-out;
  -o-transition: height 400ms ease-in-out;
  transition: height 400ms ease-in-out;
}

.swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background-color: #333;
  display: none;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: .4;
}

.swiper-pagination-bullet-active {
  background: #333;
  opacity: .4;
  width: 12px;
  height: 12px;
}

#fp-nav {
  z-index: -1000 !important;
  opacity: 0 !important;
}

*:active,
*:focus {
  outline: none !important;
}

.expand-title {
  margin: 5px 0 0 58px;
  font-size: 18px;
  font-weight: bold;
  border-top: 2px solid #efefef;
  padding: 4px 0;
  cursor: pointer;
  position: relative;
}

.expand-title:after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #444;
  border-right: 2px solid #444;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.expand-title.opened:after {
  margin-top: 4px;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.expand-section {
  display: none;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome and Opera */
}

/* Audio Bar */
.audio-bar-btn {
  font-family: "Gideon";
  height: 35px;
  width: 35px;
  font-size: 20px;
  line-height: 35px;
  background-color: #fff;
  text-align: center;
  margin: 0 auto;
  border-radius: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.17);
  cursor: pointer;
}

.audio-btn-container {
  display: none;
  position: fixed;
  bottom: 40px;
  z-index: 9999;
  width: 100%;
  text-align: center;
}

.audio-bar {
  width: 100%;
  background-color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  height: 45px;
  padding-top: 3px;
  bottom: -50px;
  background: #fff;
  -webkit-transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  -moz-transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  -ms-transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  -o-transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
  margin-top: 41px;
}

.audio-bar.popped-up {
  pointer-events: all;
  box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.04), 0 -1px 5px rgba(0, 0, 0, 0.08);
  bottom: 0;
  -webkit-transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  -moz-transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  -ms-transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  -o-transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
  transition: box-shadow 400ms ease-in-out, bottom 400ms ease-in-out;
}

.audio-bar div {
  display: inline-block;
  height: 40px;
  width: auto;
  background: #FFF;
  color: #53575b;
  font-family: 'Gideon';
  font-size: 24px;
  font-weight: normal;
  box-shadow: none;
  line-height: 21px;
  padding: 10px;
  cursor: default;
}

.audio-bar .time {
  font-family: "Zoram";
  font-weight: 400;
  font-size: 15px;
  opacity: 0.75;
  top: -4px;
  position: relative;
  background: transparent;
  z-index: -1;
  position: relative;
}

.audio-bar .audio-timeline,
.audio-bar .audio-progress {
  background-color: #d0d3d3;
  width: 40%;
  height: 6px;
  padding: 0;
  margin: 6px -5px 6px 12px;
  border-radius: 1px;
}

.audio-bar .audio-progress {
  background-color: #01b6d1;
  width: 0;
  margin: 0;
  float: left;
  position: relative;
  overflow: visible !important;
  z-index: 2;
  max-width: 100% !important;
}
.audio-bar .audio-progress:after {
  content: '';
  display: block;
  position: absolute;
  left: 100%;
  top: 50%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1), 0 1px 5px 0 rgba(0, 0, 0, 0.2), 0 0 1px 0 rgba(0, 0, 0, 0.4);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.audio-bar .pause,
.audio-bar .muted-icon {
  display: none;
}

/* Too Small Screen */
.too-small-overlay {
  position: fixed;
  z-index: 0;
  background: #002a4e;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  opacity: 0;
}

.too-small-inner {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.too-small-text:nth-child(1) {
  font-size: 1.5em;
}

.too-small-inner, .too-small-text {
  height: 0;
}

.too-small-text {
  margin: 0;
}

@media (max-width: 650px) {
  .too-small-overlay {
    z-index: 99999;
    opacity: 0.98;
    height: 100%;
    -webkit-transition: opacity 400ms ease-in-out;
    -moz-transition: opacity 400ms ease-in-out;
    -ms-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
  }

  .too-small-inner, .too-small-text {
    height: auto;
  }

  .too-small-text:nth-child(1) {
    margin-bottom: 0.5em;
  }

  span.tall-or-narrow:after {
    content: 'wider';
  }
}
@media (max-height: 600px) {
  .too-small-overlay {
    z-index: 9999;
    opacity: 0.98;
    height: 100%;
    -webkit-transition: opacity 400ms ease-in-out;
    -moz-transition: opacity 400ms ease-in-out;
    -ms-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition: opacity 400ms ease-in-out;
  }

  .too-small-inner, .too-small-text {
    height: auto;
  }

  .too-small-text:nth-child(1) {
    margin-bottom: 0.5em;
  }

  span.tall-or-narrow:after {
    content: 'taller';
  }
}
@font-face {
  font-family: "Gideon";
  font-weight: normal;
  font-style: normal;
  src: url("fonts/gideon.eot");
  src: url("fonts/gideon.eot?#iefix") format("embedded-opentype"), url("fonts/gideon.woff") format("woff");
}
@font-face {
  font-family: Gideon;
  font-weight: 400;
  font-style: normal;
  src: url("//edge.ldscdn.org/cdn2/common/fonts/gideon/20150519/gideon.eot");
  src: url("//edge.ldscdn.org/cdn2/common/fonts/gideon/20150519/gideon.eot?#iefix") format("embedded-opentype"), url("//edge.ldscdn.org/cdn2/common/fonts/gideon/20150519/gideon.woff") format("woff");
}
/*light (300) normal*/
@font-face {
  font-family: "Zoram";
  font-weight: 300;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Light-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Light-Normal.woff") format("woff");
}
/*light (300) italic*/
@font-face {
  font-family: "Zoram";
  font-weight: 300;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Light-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Light-Italic.woff") format("woff");
}
/*regular (400) normal*/
@font-face {
  font-family: "Zoram";
  font-weight: 400;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Regular-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Regular-Normal.woff") format("woff");
}
/*regular (400) italic*/
@font-face {
  font-family: "Zoram";
  font-weight: 400;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Regular-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Regular-Italic.woff") format("woff");
}
/*regular (400) normal*/
@font-face {
  font-family: "Zoram";
  font-weight: 500;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Regular-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Regular-Normal.woff") format("woff");
}
/*regular (400) italic*/
@font-face {
  font-family: "Zoram";
  font-weight: 500;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Regular-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Regular-Italic.woff") format("woff");
}
/* semi-bold (600) normal*/
@font-face {
  font-family: "Zoram";
  font-weight: 600;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-SemiBold-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-SemiBold-Normal.woff") format("woff");
}
/* semi-bold (600) italic*/
@font-face {
  font-family: "Zoram";
  font-weight: 600;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-SemiBold-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-SemiBold-Italic.woff") format("woff");
}
/* bold (700) normal*/
@font-face {
  font-family: "Zoram";
  font-weight: 700;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Bold-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Bold-Normal.woff") format("woff");
}
/* bold (700) italic*/
@font-face {
  font-family: "Zoram";
  font-weight: 700;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Bold-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-Bold-Italic.woff") format("woff");
}
/* ExtraBold (800) normal*/
@font-face {
  font-family: "Zoram";
  font-weight: 800;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-ExtraBold-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-ExtraBold-Normal.woff") format("woff");
}
/* Extrabold (800) italic*/
@font-face {
  font-family: "Zoram";
  font-weight: 800;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-ExtraBold-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/zoram/v1/Zoram-GWeb-ExtraBold-Italic.woff") format("woff");
}
/*******
 
McKay
 
*******/
/*regular (400) normal*/
@font-face {
  font-family: "McKay";
  font-weight: 400;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-Regular-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-Regular-Normal.woff") format("woff");
}
/*regular (400) italic*/
@font-face {
  font-family: "McKay";
  font-weight: 400;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-Regular-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-Regular-Italic.woff") format("woff");
}
/*medium (500) normal*/
@font-face {
  font-family: "McKay";
  font-weight: 500;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-SemiBold-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-SemiBold-Normal.woff") format("woff");
}
/*medium (500) italic*/
@font-face {
  font-family: "McKay";
  font-weight: 500;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-SemiBold-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-SemiBold-Italic.woff") format("woff");
}
/*bold (700) normal*/
@font-face {
  font-family: "McKay";
  font-weight: 700;
  font-style: normal;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-Bold-Normal.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-Bold-Normal.woff") format("woff");
}
/*bold (700) italic*/
@font-face {
  font-family: "McKay";
  font-weight: 700;
  font-style: italic;
  src: url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-Bold-Italic.woff2") format("woff2"), url("https://test.ldscdn.org/cdn2/common/fonts/mckay/v1/McKay-GWeb-Bold-Italic.woff") format("woff");
}
@media (min-width: 300px) and (min-height: 400px) {
  .nomo {
    display: none;
  }

  .shomo {
    display: block;
  }

  .standard-question.feedback {
    width: 93%;
    margin: 0;
    float: right;
  }

  .mo-height25 {
    height: 25vh;
    min-height: 25vh;
  }

  .mo-height33 {
    height: 33.33333337vh;
    min-height: 33.33333337vh;
  }

  .mo-height66 {
    height: 66.66666663vh;
    min-height: 66.66666663vh;
  }

  .mo-height50,
  .full-height.mo-height50 {
    /*height: 50vh;
    min-height: 50vh;*/
    max-height: 50vh;
  }

  .height33,
  .height66 {
    padding: 0;
  }

  .gallery.mo-height50 {
    max-height: 40vh;
  }

  .question .height33,
  .question .height66 p {
    padding-right: 5%;
    padding-left: 5%;
  }

  .question .feedback p {
    padding-left: 0;
  }

  .question-text {
    padding-right: 0;
    padding-left: 0;
  }

  .audio-btn-container {
    bottom: 15px;
  }

  .audio-bar div.mute {
    display: none;
  }

  .pop-up-bottom h3::after,
  .pop-up-bottom h2::after,
  .pop-up-bottom h1::after {
    right: -32%;
  }

  .pop-up-larger p:first-child::after {
    right: -28%;
  }

  h1.pop-up {
    padding: 1rem 0 0;
    margin-bottom: 0;
  }

  p.pop-up {
    overflow-y: auto;
  }

  .btn-wrapper-md {
    width: 87%;
  }

  /* 1/3 Text 2/3 Image Template */
  .text-one-third-template .height33 h2 {
    padding: 0 10%;
  }

  /* Text With Pagination Controls Template */
  .pagination-controls-template h2 {
    /*padding-top: 2.0em;*/
    padding-top: 0;
    margin-bottom: 0;
  }

  .pagination-controls-template .col-sm-8 {
    padding-left: 0;
  }

  .pagination-controls-template h2 {
    font-size: 2.3rem;
  }

  /* Essay Question Template */
  .essay-question h3 {
    font-size: 2rem;
  }

  .essay-question h5 {
    font-size: 1.5rem;
  }

  .essay-question {
    position: absolute;
    top: 50px;
    overflow-y: auto;
  }

  /* Highlighted Words Template */
  .pop-up-bottom {
    top: 25vh;
    min-height: 75vh;
  }

  /* Centered Button Tabs Template */
  .centered-button-tabs-template .pop-up-bottom {
    top: 15vh;
    min-height: 85vh;
  }

  /* Image Selection Template */
  .hints {
    margin-left: 2%;
    margin-bottom: 10vh;
  }

  .hints .question-btn {
    width: 60%;
    margin: 0 20% !important;
  }

  .image-selection-template {
    padding-top: 10vh;
  }

  .image-selection-template .height33 {
    margin: 4em 0 0;
  }

  /* Image Checkbox Question Template */
  .image-checkbox-question-template .full-height {
    padding-top: 4em;
    padding-bottom: 50px;
  }

  .image-checkbox-question-template .col-sm-7 {
    padding: 0;
  }

  .image-checkbox-question-template .image {
    padding: 10px 0 100px;
    float: left;
  }

  .image-checkbox-question-template .image.shomo {
    padding: 10px 0 30px;
  }

  .image-checkbox-question-template .question-btn {
    margin-bottom: 9rem;
    float: left;
  }

  /* Half and Half Template */
  .half-half-template .padding-y-large {
    padding: 6% 8% 4% 4%;
  }

  /* Image Only Template */
  .image-only-template .contain-bg {
    background-size: 100% auto;
  }

  /* Text Only Template */
  .text-only-template .full {
    padding: 3% 7% 3%;
  }

  .text-only-template h2 {
    font-size: 2.5rem;
  }

  /* Conclusion Template */
  .conclusion hr {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .copy-stmt {
    bottom: 70px;
  }

  /*********************** Recent changes *********************/
  .headphones-template .center-txt {
    padding: 0 15px;
  }

  .headphone {
    margin-top: 1.2em;
  }

  	/******************************************************************************
      	Text above this line is template styling. 
      	You run the risk of breaking the template styling by modifying this code. 
      ******************************************************************************/
  #section05 #half-image {
    background-position: center 15%;
  }

  #section02 .row.height33 {
    padding: 3% 5%;
  }

  #section02 .height33 h3 {
    font-size: 1.75rem;
  }

  .video-wrap {
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 25vh;
    position: absolute;
  }
}
/* Larger than mobile */
@media (min-width: 400px) and (min-height: 300px) {
  /* Pagination Controls Template */
  .gallery {
    margin-bottom: 1.5em;
  }

  /* Conslusion Template */
  .copy-stmt {
    bottom: 40px;
  }

  /******************************************************************************
      Text above this line is template styling. 
      You run the risk of breaking the template styling by modifying this code. 
  ******************************************************************************/
}
/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) and (min-height: 400px) {
  html {
    font-size: 12px;
  }

  div[class^="col-"] {
    float: left;
  }

  .col-sm-1 {
    width: 8.333333333%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-8 {
    width: 66.66666666%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .nomo {
    display: block;
  }

  .shomo {
    display: none;
  }

  .padding-top-small {
    padding: 0 5%;
  }

  .darken-on-mobile {
    background: rgba(0, 0, 0, 0);
    opacity: 0;
  }

  .empty {
    display: inherit;
  }

  .menu {
    padding: 4rem 3rem;
  }

  .script-inner {
    padding: 6rem 8rem 6rem 4rem;
  }

  .menu h1 {
    margin-right: 0;
  }

  .menu-inner {
    padding: 1rem 3rem;
    bottom: 40px;
  }

  .menu-inner-bottom {
    bottom: 40px;
  }

  .story-panel {
    width: 50%;
  }

  h1.pop-up {
    padding-top: 3rem;
    margin-bottom: 0.5rem;
  }

  .no-margin-half {
    width: 50% !important;
    max-width: 50% !important;
    min-height: 100vh !important;
    float: left;
  }

  .padding-y-large,
  .half-half-template .padding-y-large {
    padding: 12% 8% 4% 0;
  }

  .covering-feedback {
    position: absolute;
    width: inherit !important;
    right: 4%;
    margin-right: -1rem;
  }

  .nudge-column {
    margin-left: 1rem;
  }

  .full-height {
    height: auto;
    min-height: 100vh;
  }

  .full-height {
    height: 100vh !important;
    margin: 0;
    transform: none;
  }

  .swiper-pagination-bullet {
    display: inline-block;
  }

  .mo-height50,
  .mo-height33,
  .mo-height66 {
    height: auto;
    min-height: 0;
  }

  .standard-question.feedback-mark-correct,
  .standard-question.feedback-mark-incorrect {
    padding-left: 1.5rem;
  }

  .standard-question.feedback-mark-correct p.strong-txt::before,
  .standard-question.feedback-mark-incorrect p.strong-txt::before {
    left: -1.1rem;
  }

  .pop-up-bottom h3::after,
  .pop-up-larger p:first-child::after,
  .pop-up-bottom h2::after,
  .pop-up-bottom h1::after {
    right: -25%;
  }

  .btn-wrapper-md {
    width: 330px;
  }

  .audio-btn-container {
    bottom: 40px;
  }

  .audio-bar div.mute {
    display: inline-block;
  }

  /* Headphone Template */
  .headphone {
    margin-top: 3.2em;
  }

  /* Essay Questio Template */
  .essay-question,
  .question {
    position: static;
  }

  /* Half and Half Template */
  .half-half-template hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
  }

  /* Highlighted Words Template */
  /* Centered Button Tabs Template */
  .pop-up-bottom,
  .centered-button-tabs-template .pop-up-bottom {
    top: 50vh;
    min-height: 50vh;
  }

  /* Image Selection Template */
  .image-selection-template {
    padding-top: 0;
  }

  .image-selection-template .height33 {
    margin: 2em 0;
  }

  .hints {
    margin-left: 0;
    float: left;
  }

  .hints .question-btn {
    width: auto;
    margin: 0 !important;
  }

  .picture-question.feedback-mark-correct,
  .picture-question.feedback-mark-incorrect {
    padding-left: 1.5rem;
    margin-left: 0;
  }

  /* Image Question Checkbox Template */
  .image-checkbox-question-template .image {
    padding-top: 0;
    padding-left: 15px;
  }

  /* Text With Pagination Controls Template */
  .pagination-controls-template h2 {
    padding-top: 1.0em;
    margin-bottom: 2rem;
  }

  .pagination-controls-template .col-sm-8 {
    padding-left: 6%;
  }

  /* Image Only Template */
  .image-only-template .contain-bg {
    background-size: 62% auto;
  }

  /* Text Only Template */
  .text-only-template h2 {
    font-size: 3.1rem;
  }

  /* Conclusion Template */
  .conclusion .columns {
    min-height: 100%;
    min-height: 100vh;
    padding: 16% 22%;
  }

  .conclusion .col-sm-12 {
    float: none;
  }

  .conclusion hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;
  }

  /******************************************************************************
      Text above this line is template styling. 
      You run the risk of breaking the template styling by modifying this code. 
  ******************************************************************************/
  #section05 #half-image {
    background-position: center;
  }

  #section02 .row.height33 {
    padding: 5% 10%;
  }

  #section02 .height33 h3 {
    font-size: 2.55rem;
    margin: 0 0 1.5rem;
  }

  .video-wrap {
    width: auto;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 20vh;
    position: absolute;
    padding: 0 20vh 10vh;
  }
}
/* Larger than tablet */
@media (min-width: 767px) and (min-height: 500px) {
  .height33,
  .height50,
  .height66,
  .height100 {
    display: flex;
    padding: 1% 10%;
  }

  .full-height {
    position: relative;
    /*height:auto;*/
    height: 100vh;
    min-height: 66%;
    min-height: 66vh;
    top: 0;
    left: 0;
    box-sizing: border-box;
  }

  .height100 {
    min-height: 100%;
    min-height: 100vh;
  }

  #fp-nav.right {
    right: 21px;
  }

  .btn-sub-menu {
    min-height: 20%;
    min-height: 20vh;
  }

  .instructions,
  .side-btn {
    padding-left: 0;
  }

  .padding-top-small {
    padding: 0 10%;
  }

  .content-area .bottom-content {
    padding: 3rem 4rem;
    font-size: 2.2rem;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    min-height: 50vh;
    height: auto;
  }

  .bottom-content .italic {
    font-style: italic;
    font-weight: 500;
  }

  .bottom-content .inspect-text {
    color: #990040;
    font-size: 1.25rem;
    font-weight: 400;
    margin: 2.5rem 5rem;
    position: relative;
  }

  .bottom-content .inspect-text::before {
    left: -3rem;
  }

  .giant {
    font-size: 4rem;
  }

  .padding-huge {
    padding: 3% 14%;
  }

  .side-bar {
    padding: 5rem 2rem;
  }

  .fp-controlArrow.fp-down,
  .fp-controlArrow.fp-up {
    right: 24px;
    bottom: 24px;
  }

  .question .feedback {
    margin-top: -2px;
    margin-left: 5px;
  }

  .standard-question.feedback-mark-noanswer::before {
    left: 49.3%;
    top: 0.8rem;
  }

  .standard-question.feedback-mark-noanswer {
    padding-left: 6px;
    margin-left: 6px;
  }

  .picture-question.feedback-mark-correct,
  .picture-question.feedback-mark-incorrect {
    margin-left: 0;
  }

  .picture-question.feedback-mark-correct::before,
  .picture-question.feedback-mark-incorrect::before {
    left: -1.6rem;
    top: -1.6rem;
  }

  .picture-question.feedback-mark-noanswer::before {
    left: 49.3%;
    top: 0.8rem;
  }

  .picture-question.feedback-mark-noanswer {
    padding-left: 6px;
    margin-left: 6px;
  }

  .nudge-column {
    margin-top: 5px;
    overflow: hidden;
  }

  .nudge-column .feedback {
    width: 100% !important;
  }

  p.pop-up {
    margin-right: 7rem;
  }

  .col-md-12 {
    width: 100%;
    float: left;
  }

  .pop-up-bottom h3::after,
  .pop-up-larger p:first-child::after,
  .pop-up-bottom h2::after,
  .pop-up-bottom h1::after {
    right: -16%;
  }

  .question .height33 h3 {
    padding: 0 5%;
  }

  /* Course Title Template */
  .sub-heading {
    line-height: 1.5em;
  }

  /* 1/3 Text 2/3 Image Template */
  .text-one-third-template .height33 h2 {
    padding: 0;
  }

  /* Image Selection Template */
  .hints .question-btn {
    width: auto;
    margin: 0 !important;
  }

  .hints {
    margin-bottom: 0;
  }

  .picture-question.feedback-mark-correct,
  .picture-question.feedback-mark-incorrect {
    padding-left: 1.8rem;
    margin-left: 1rem;
  }

  .picture-question.feedback-mark-correct p::before,
  .picture-question.feedback-mark-incorrect p::before {
    left: -1rem;
    top: 0.5rem;
  }

  /* Image Checkbox Question Template */
  .image-checkbox-question-template .question-btn {
    margin-bottom: 0;
    float: right;
  }

  .image-selection-template .height66 {
    padding: 3% 5%;
  }

  /* Text Only Template */
  .text-only-template .full {
    padding: 1% 10%;
  }

  /* Conclusion Template */
  .conclusion .columns {
    padding: 11% 22%;
  }

  /******************************************************************************
      Text above this line is template styling. 
      You run the risk of breaking the template styling by modifying this code. 
  ******************************************************************************/
}
/* Larger than desktop */
@media (min-width: 1024px) and (min-height: 600px) {
  html {
    font-size: 13px;
  }

  .feedback p {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .content-area .bottom-content {
    font-size: 2.2rem;
  }

  .bottom-content .inspect-text {
    font-size: 1.33rem;
  }

  .text-wrapper .serif {
    font-size: 1.6rem;
    padding-top: 4rem;
  }

  .bottom-content .text-wrapper {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    display: block;
  }

  .giant {
    font-size: 5rem;
  }

  .pop-up-link::before {
    border-bottom: 2px solid #00BCDA;
  }

  .left-bottom {
    position: absolute;
    bottom: 1rem;
    left: 15px;
  }

  .script-toggle {
    right: 32px;
    top: 32px;
  }

  .menu-toggle {
    left: 32px;
    top: 32px;
  }

  .fp-controlArrow.fp-down,
  .fp-controlArrow.fp-up {
    right: 32px;
    bottom: 32px;
  }

  p.pop-up {
    margin-right: 2rem;
  }

  .standard-question.feedback-mark-correct::before {
    left: -1%;
    top: -0.5em;
  }

  .standard-question.feedback-mark-incorrect::before {
    left: -1.9%;
    top: -0.4em;
  }

  .standard-question.feedback-mark-noanswer::before {
    left: 49.3%;
    top: 1.3rem;
  }

  .picture-question.feedback-mark-correct::before,
  .picture-question.feedback-mark-incorrect::before {
    left: -0.5rem;
    top: -1.6rem;
  }

  /* Image Selection Template */
  .image-selection-template .height66 {
    padding: 0 5%;
  }

  .content-area .block:nth-of-type(1) .top-image {
    background-position: 0 12%;
  }

  .content-area .block:nth-of-type(8) .top-image {
    background-position: 0 0;
  }

  /******************************************************************************
      Text above this line is template styling. 
      You run the risk of breaking the template styling by modifying this code. 
  ******************************************************************************/
  .video-wrap {
    max-width: 900px;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 13vh;
    position: absolute;
    padding: 0;
  }

  #section05 #half-image {
    background-position: center 30%;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1200px) and (min-height: 700px) {
  html {
    font-size: 14px;
  }

  h5 {
    font-size: 1.8rem;
  }

  .row {
    max-width: 2000px;
    margin: 0 auto;
  }

  .row.full {
    max-width: 100% !important;
    max-width: 100vw !important;
  }

  .gallery .item p {
    font-size: 1.8rem;
  }

  .indicator.visible {
    left: -2.15rem;
  }

  h2.serif {
    font-size: 3.6rem;
  }

  .mc-btn {
    max-width: 360px;
  }

  /******************************************************************************
      Text above this line is template styling. 
      You run the risk of breaking the template styling by modifying this code. 
  ******************************************************************************/
}
/* Course Title Template */
.course-title-template {
  background-image: url("../../media/images/PSD161114_DSF8402.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top !important;
}

#section01 h1, #section01 h5 {
  font-weight: 500;
  word-wrap: normal;
}

/* 1/3 Text 2/3 Image Template */
.text-one-third-template .full-height {
  background: #fff;
}

.text-one-third-template .height33 {
  padding-bottom: 20px;
}

.text-one-third-template .height33 h4,
.text-one-third-template .height33 h3,
.text-one-third-template .height33 h2 {
  width: 100%;
  text-align: left;
}

#two-thirds-image {
  background-image: url("../../media/backgrounds/global-research.jpg");
  background-size: cover;
  position: absolute;
  bottom: 0;
}

/* Text With Pagination Controls Template */
.pagination-controls-template {
  background: #C8CECC;
}

.pagination-controls-template #image {
  background-image: url("../../media/images/letter.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

/* Section Menu Template */
.btn-sub-menu:nth-child(1) .inner-graphic .bg-graphic {
  background-image: url("../../media/images/subMenu1.jpg");
  background-position: 0% 35%;
}

.btn-sub-menu:nth-child(2) .inner-graphic .bg-graphic {
  background-image: url("../../media/images/subMenu2.jpg");
}

.btn-sub-menu:nth-child(3) .inner-graphic .bg-graphic {
  background-image: url("../../media/images/subMenu3.jpg");
}

.btn-sub-menu:nth-child(4) .inner-graphic .bg-graphic {
  background-image: url("../../media/backgrounds/NewLightImage.jpg");
  background-position: 0% 75%;
}

.btn-sub-menu:nth-child(5) .inner-graphic .bg-graphic {
  background-image: url("../../media/images/subMenu5.jpg");
}

/* Half Half Template */
.half-half-template #half-image {
  background-image: url("../../media/images/subMenu2.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Image Story Explorer Template */
.image-story-explorer-template #left-image {
  background-image: url("../../media/images/boy.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.image-story-explorer-template #right-image {
  background-image: url("../../media/images/picking-fruit.jpg");
  background-size: cover;
  background-position: center center;
  padding-bottom: -56.6%;
  background-repeat: no-repeat;
}

/* Image Selection Template */
.image-selection-template h3 {
  margin-bottom: 0;
}

/* Image Only Template */
.image-only-template .contain-bg {
  background-image: url("../../media/images/square_book_NEW2.jpg");
  max-width: 1200px;
  margin: 0 auto;
  background-repeat: no-repeat;
}

/* Text Only Template */
.swiper-slide.text-only-template {
  display: block;
}

.text-only-template div.row {
  display: block;
  width: 100%;
}

/* Conclusion Template */
.conclusion-template .conclusion hr {
  width: 80%;
}

@media (orientation: portrait), (max-width: 1024px) {
  #section04,
  #section05 {
    background-size: auto 77vh !important;
    background-repeat: no-repeat;
  }
}
#fp-nav {
  z-index: -10;
}

svg {
  width: 100px;
  height: 100px;
  display: inline-block;
  visibility: hidden;
  margin: 1rem;
}

#medium1a,
#medium1b,
#medium1c,
#medium1d,
#medium2a,
#medium2b,
#medium2c,
#medium2d,
#sad1a,
#sad1b,
#sad1c,
#sad1d,
#sad2a,
#sad2b,
#sad2c,
#sad2d {
  visibility: hidden;
}

.st0 {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
}

.st1 {
  fill: #FFFFFF;
  stroke: none;
}

.warn-img {
  width: 5%;
  height: 5%;
  align-content: center;
}

.reduce-img {
  height: 70% !important;
}

.btn-sub-menu {
  height: 20vh;
}

/* Bootstrap Supplemental Styling (Global regardless of size) */
.row {
  margin-left: 0;
  margin-right: 0;
}

.text-one-third-template .height33 h3,
.text-one-third-template .height33 h4,
.text-one-third-template .height33 p {
  align-self: left;
  margin-bottom: 0;
}

.text-one-third-template .height33 {
  flex-direction: column;
  align-items: flex-end;
  display: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

/******************************************************************************
    Text above this line is template styling. 
    You run the risk of breaking the template styling by modifying this code. 
******************************************************************************/
/* Make navigation dots white on pages that require it */
#section02 #half-image {
  background-image: url("../../media/images/PSD161114_T0A1757.jpg");
}

#section03 #half-image {
  background-image: url("../../media/images/PSD161114_DSF0344.jpg");
}

#section04 #half-image {
  background-image: url("../../media/images/PSD161129_T0A8497.jpg");
}

#section05 #half-image {
  background-image: url("../../media/images/PSD161129_T0A8497.jpg");
}

#section05 ul {
  margin-top: 2rem;
  font-size: 2rem;
}

#section06 #two-thirds-image {
  background-image: url("../../media/images/AfricanPrintedHistory.jpg");
}

#section07 .national-txt {
  display: none;
}

#section07 #two-thirds-image {
  background-image: url("../../media/images/PSD161114_T0A2029.jpg");
}

#section07 h2:first-of-type {
  align-self: center;
}

li {
  margin-bottom: 0.5em;
}

h3 {
  margin-bottom: 1.5rem;
}

.half-half-template hr {
  margin: 0 0 2rem;
}

.conclusion-template img {
  max-width: 200px;
}

.menu-toggle,
.script-toggle {
  opacity: 0.8;
}

.lightbox.video {
  margin: 0 auto;
  padding-bottom: 75.25%;
  width: 90vw;
}

.open-lightbox,
a {
  color: #337ab7;
  font-weight: 500;
}

.open-lightbox:hover {
  cursor: pointer;
  color: #333;
}

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