body {
  font-family: "Open Sans", sans-serif;
  color: #737c95;
  font-weight: 400;
  margin: 0;
  font-size: 19px;
  background: #fdfdfd;
  background-image: url("//static.schoolyourself.org/images/bg_texture.png");
}

a img {
  border: none;
}

h1 {
  font-size: 45px;
  font-weight: 300;
  margin-bottom: 10px;
  margin-top: 10px;
}

h2 {
  font-size: 23px;
  color: #6eb535;
  font-weight: 700;
  margin-top: 0px;
}


h3 {
  font-size: 22px;
  font-weight: 400;
}

hr {
  background-color: #d1d1d1;
  color: #d1d1d1;
  height: 1px;
  border: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

p {
  font-size: 19px;
  margin-bottom: 10px;
  margin-top: 10px;
}

a {
  text-decoration: none;
  color: #08a0dc;
}
a:hover {
  color: #f15a22;
}

.caps {
  font-size: 21px;
  font-weight: 300;
}

.header-container, .header-container-fluid {
  background: #232323;
  background-image: linear-gradient(top, #232323 0%, #000 100%);
  background-image: -webkit-linear-gradient(top, #232323 0%, #000 100%);
  background-image: -o-linear-gradient(top, #232323 0%, #000 100%);
  background-image: -moz-linear-gradient(top, #232323 0%, #000 100%);
  background-image: -ms-linear-gradient(top, #232323 0%, #000 100%);

  height: 67px;
  width: 100%;
  text-align: center;
  position: relative;
}

.header-container > .header {
  display: inline-block;
  width: 960px;
  height: 100%;
  position: relative;
}

.header-container-fluid > .header {
  position: relative;
  height: 100%;
  margin-left: 20px;
}

.logo {
  margin-top: 7px;
  position: absolute;
  left: 0;
}

.header-items-container {
  position: absolute;
  right: 0;
  height: 100%;
  line-height: 67px;
  font-size: 0;
}

.header-item {
  font-size: 14px;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-block;
  height: 100%;
  color: #d1d1d1;
  position: relative;
  cursor: pointer;
  cursor: hand;
}

.header-item:hover {
  background: rgba(255,255,255,0.1);
}

.nav-dropdown {
  position: absolute;
  right: 0;
  width: 100%;
  top: 100%;
  z-index: 999999;
  text-align: left;
  line-height: 50px;
  display: none;

  background: #232323;
  background-image: linear-gradient(top, #232323 0%, #000 100%);
  background-image: -webkit-linear-gradient(top, #232323 0%, #000 100%);
  background-image: -o-linear-gradient(top, #232323 0%, #000 100%);
  background-image: -moz-linear-gradient(top, #232323 0%, #000 100%);
  background-image: -ms-linear-gradient(top, #232323 0%, #000 100%);
}

.header-item:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-item {
  padding: 0 20px;
  background: rgba(255,255,255,0.1);
}

.nav-dropdown-item {
  border-top: 1px solid #d1d1d1;
}

.header-item:hover .nav-dropdown-item:hover {
  background: rgba(255,255,255,0.15);
}

a .nav-dropdown-item {
  color: #d1d1d1;
}

.content-container {
  width: 100%;
  text-align: center;
}

.content {
  text-align: center;
  display: inline-block;
  width: 960px;
}

.copyright {
  display: inline-block;
  vertical-align: middle;
}

.footer {
  text-align: left;
  font-size: 12px;
  margin-bottom: 30px;
}

.footer a, .footer a:visited {
  color: #737c95;
}
.footer a:hover {
  color: #f15a22;
}

.footer > img {
  vertical-align: middle;
  margin-left: 20px;
}

.footer-sitemap {
  font-size: 0;
}
.footer-section {
  display: inline-block;
  width: 240px;
  font-size: 14px;
  vertical-align: top;
  margin-bottom: 50px;
}

.social-media-links {
  text-align: left;
  display: inline-block;
}

.social-media-links img {
  opacity: 0.9;
  margin-left: 3px;
  margin-right: 3px;
  vertical-align: middle;
}

.social-media-links img:hover {
  opacity: 1;
}

/* HOMEPAGE */
.greenbg {
  background: #6eb535;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  height: 475px;
  border-bottom: 2px solid #56a10f;
}

#big-fade-in {
  -webkit-animation-name: big-fade-in-animation;
  -webkit-animation-duration: 300ms;
  -webkit-animation-delay: 100ms;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;

  -moz-animation-name: big-fade-in-animation;
  -moz-animation-duration: 300ms;
  -moz-animation-delay: 100ms;
  -moz-animation-fill-mode: forwards;
  -moz-animation-timing-function: linear;
  -moz-animation-iteration-count: 1;

  animation-name: big-fade-in-animation;
  animation-duration: 300ms;
  animation-delay: 100ms;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
  animation-iteration-count: 1;

  opacity: 0;
}

@-webkit-keyframes big-fade-in-animation {
  0% { -webkit-transform: translateY(-20px); opacity: 0; }
  50% { -webkit-transform: translateY(0); opacity: 0.5; }
  100% { -webkit-transform: translateY(0); opacity: 1; }
}

@-moz-keyframes big-fade-in-animation {
  0% { -moz-transform: translateY(-20px); opacity: 0; }
  50% { -moz-transform: translateY(0); opacity: 0.5; }
  100% { -moz-transform: translateY(0); opacity: 1; }
}

@keyframes big-fade-in-animation {
  0% { transform: translateY(-20px); opacity: 0; }
  50% { transform: translateY(0); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}

.as-seen-in {
  font-size: 0;
}

.as-seen-in img {
  vertical-align: middle;
  margin-left: 15px;
  margin-right: 15px;
}

.bluebg {
  background: #737c95;
  color: #eee;
  text-align: center;
  border-bottom: 2px solid #555d73;
}

.bluebg a, .bluebg a:visited {
  color: #f0b300;
}
.bluebg a:hover {
  color: #f15a22;
}

.comparison {
  font-size: 0;
}

.comparison-row {
  display: inline-block;
  width: 850px;
  border-bottom: 1px solid #555d73;
}

.comparison-cell {
  font-size: 17px;
  display: inline-block;
  width: 200px;
  text-align: center;
  height: 80px;
  vertical-align: top;
}

.comparison-cell.top {
  height: 170px;
}

.comparison-cell.top > h2 {
  position: relative;
}

.comparison-cell.top > img {
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(80,80,80,1);
  -webkit-box-shadow: 0 0 5px rgba(80,80,80,1);
  -moz-box-shadow: 0 0 5px rgba(80,80,80,1);
  -ms-box-shadow: 0 0 5px rgba(80,80,80,1);
  -o-box-shadow: 0 0 5px rgba(80,80,80,1);
}

.comparison-cell-inner {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 100%;
}

.comparison-cell.yes {
  vertical-align: top;
  height: 80px;
  line-height: 80px;
}

.comparison-cell.yes:after {
  color: #6eb535;
  font-size: 40px;
  content: "\2714";
}


.heightfix {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  font-size: 0;
  width: 0;
}

.content-pad {
  padding-top: 50px;
  padding-bottom: 70px;
}

.teacher-link {
  text-align: center;
  margin-top: 3px;
  height: 50px;
}

.teacher-link a {
  color: #eee;
  text-decoration: underline;
  font-size: 17px;
  font-style: italic;
}

.teacher-link a:hover {
  color: #08a0dc;
}

/** MEET THE TEAM */
.team-section {
  clear: both;
  width: 800px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: inline-block;
}

.team-headshot {
  float: left;
  margin-right: 30px;
}

.team-name, .team-title {
  font-weight: bold;
  font-size: 16px;
}

.team-bio p {
  font-size: 14px;
}
.team-bio {
  text-align: left;
  font-size: 13px;
  overflow: hidden;
}

/** ABOUT */
.about {
  text-align: left;
  margin-bottom: 30px;
  width: 700px;
  display: inline-block;
}

.about-news {
  text-align: left;
}

.about-sidebar {
  text-align: left;
  font-size: 14px;
  float: right;
  width: 300px;
  margin-left: 20px;
}

.news-title {

}

.news-caption {
  font-size: 14px;
  margin-bottom: 10px;
}

/** GET IT NOW **/
.get-it-now-header {
  background: #6eb535;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #56a10f;
}


.get-it-now {
  text-align: center;
}


.get-it-now-row {
  display: inline-block;
  width: 850px;
  border-bottom: 1px solid #737c95;
}

.get-it-now-cell {
  display: inline-block;
  width: 200px;
  text-align: center;
  height: 80px;
  vertical-align: top;
}

.get-it-now-cell.top {
  height: 170px;
}

.get-it-now-cell.top > h2 {
  position: relative;
}

.get-it-now-cell-inner {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 100%;
}

.get-it-now-cell.yes {
  vertical-align: top;
  height: 80px;
  line-height: 80px;
}

.get-it-now-cell.yes:after {
  color: #6eb535;
  font-size: 40px;
  content: "\2714";
}

.get-it-now-button {
  background: #f1a700;
  border: 2px solid #f0b300;
  margin: auto;
  margin-top: 10px;
  height: 40px;
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  width: 50%;
  cursor: hand;
  cursor: pointer;
}

.get-it-now-button:hover {
  background: #f0b300;
}

.back-to-top {
  font-size: 14px;
}


.review-snippets-container {
  margin-top: 20px;
  display: inline-block;
  position: relative;
  height: 240px;
}

.review-snippet {
  text-align: center;
  width: 460px;
  display: inline-block;
  vertical-align: middle;
}

.review-bubble-container {
  position: absolute;
  top: 0;
  width: 460px;
  opacity: 0;
  transition: opacity 400ms linear;
  -webkit-transition: opacity 400ms linear;
  -moz-transition: opacity 400ms linear;
  -ms-transition: opacity 400ms linear;
  -o-transition: opacity 400ms linear;
}

.review-bubble-container.shown {
  opacity: 1;
}

.review-bubble {
  background: #8d97ad;
  border: 2px solid #a5afbf;
  border-radius: 10px;
  height: 150px;
  margin: 20px;
  position: relative;
}

.review-bubble:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: 40px;
  top: 100%;

  border: 25px solid;
  border-top: 34px solid;
  border-left: 0px solid;

  border-color: #a5afbf transparent transparent #a5afbf;
}

.review-bubble:after {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: 41px;
  top: 100%;
  border: 22px solid;
  border-top: 29px solid;
  border-left: 0;
  border-color: #8d97ad transparent transparent #8d97ad;
}

.review-bubble-inner {
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  width: 360px;
}


.review-attribution {
  font-style: italic;
  text-align: left;
  padding-left: 26px;
  padding-top: 20px;
}

.approach-row {
  width: 800px;
  display: inline-block;
  text-align: left;
  clear: both;
  margin-top: 20px;
  margin-bottom: 20px;
}

.approach-description {
  overflow: hidden;
}

.approach-image1 > img {
  float: left;
  width: 300px;
  height: 200px;
  margin-right: 30px;
  box-shadow: 3px 3px 3px #a7adbd;
  -webkit-box-shadow: 3px 3px 3px #a7adbd;
  -moz-box-shadow: 3px 3px 3px #a7adbd;
  -o-box-shadow: 3px 3px 3px #a7adbd;
  -ms-box-shadow: 3px 3px 3px #a7adbd;
  border: 1px solid #a7adbd;
}

.approach-image2 > img {
  float: right;
  width: 300px;
  margin-left: 30px;
  box-shadow: 3px 3px 3px #a7adbd;
  -webkit-box-shadow: 3px 3px 3px #a7adbd;
  -moz-box-shadow: 3px 3px 3px #a7adbd;
  -o-box-shadow: 3px 3px 3px #a7adbd;
  -ms-box-shadow: 3px 3px 3px #a7adbd;
  border: 1px solid #a7adbd;
}

.partner-logo {
  display: inline-block;
  width: 200px;
  height: 54px;
  margin: 10px;
  padding: 10px;
  text-align: center;
  border: 1px solid #a7adbd;
  position: relative;
}
.partner-logo img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  opacity: 0.8;
  transition: opacity 200ms linear;
  -webkit-transition: opacity 200ms linear;
  -moz-transition: opacity 200ms linear;
  -ms-transition: opacity 200ms linear;
  -o-transition: opacity 200ms linear;
}

.partner-logo img:hover {
  opacity: 1.0;
}

/**LTI INTEGRATION*/
.lti-support {
  width: 100%;
  text-align: center;
}

.lti-support td {
  width: 25%;
  padding: 0 20px;
}

.lti-support img {
  width: 100%;
  height: auto;
}

.lti-tutorial-contents {
  width: 100%;
  text-align: center;
}

.lti-tutorial-contents td {
  width: 25%;
  padding: 0 25px;
  border: 1px solid #737c95;
  border-radius: 10px;
}

.lti-tutorial-contents img {
  width: 100%;
  height: auto;
}

.lti-tutorial-box {
  padding: 20px;
  border-radius: 10px;
}

.lti-tutorial-image > img {
  float: left;
  width: 600px;
  margin-right: 30px;
  box-shadow: 3px 3px 3px #a7adbd;
  -webkit-box-shadow: 3px 3px 3px #a7adbd;
  -moz-box-shadow: 3px 3px 3px #a7adbd;
  -o-box-shadow: 3px 3px 3px #a7adbd;
  -ms-box-shadow: 3px 3px 3px #a7adbd;
  border: 1px solid #a7adbd;
}
