/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.header-container {
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  min-height: 60px;
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
}

#header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "back logo burger" ". . nav";
}
#header .logo {
  height: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header-back {
  grid-area: back;
}

.header-logo {
  grid-area: logo;
  max-height: 100%;
}

.header-nav {
  grid-area: nav;
}

.header-burger {
  grid-area: burger;
}

.header-text {
  position: absolute;
  top: 50%;
  left: 58px;
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Lato", sans-serif;
  transform: translateY(-50%);
}

.header-back,
.header-logo,
.header-nav,
.header-burger {
  color: #2b2b2b;
  display: inline-block;
  font-size: 30px;
  margin: 8.5px 0;
  text-align: center;
}

.header-container a {
  color: #2b2b2b;
  position: relative;
  text-decoration: none;
}

.header-burger {
  justify-self: center;
  cursor: pointer;
  padding-top: 8px;
  text-align: right;
}

.header-burger #burger-close {
  display: none;
}

.header-burger #burger {
  display: block;
  position: relative;
}

.header-burger.open #burger-close {
  display: block;
}

.header-burger.open #burger {
  display: none;
}

/* Mobile nav */
.header-nav {
  background-color: #fff;
  border: 1px solid #363636;
  border-right: 0;
  position: fixed;
  right: -300px;
  top: 64px;
  transition: right 0.4s;
  z-index: 300;
}

.header-nav.open {
  right: 0 !important;
}

.header-nav ul {
  margin: 0;
  list-style: none;
  padding: 10px;
}
.header-nav ul li {
  margin-bottom: 10px;
}

.header-nav .nav-item {
  font-size: 24px;
  text-align: left;
}

.nav-item a::before {
  background-color: #4f4f4f;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.astronomy a::before {
  background-color: #3b48ea;
}

.hurricanes a::before {
  background-color: #3b48ea;
}

.biology a::before {
  background-color: #00df3f;
}

.chemistry a::before {
  background-color: #fa9c20;
}

.electronics a::before {
  background-color: #5f7295;
}

.energy a::before {
  background-color: #ffea4b;
}

.geology a::before {
  background-color: #a813f9;
}

.math a::before {
  background-color: #eb2222;
}

.nature a::before {
  background-color: #1f6926;
}

.physics a::before {
  background-color: #1597ff;
}

.olympics a::before {
  background-color: #b6d3e4;
}

a.header-promo {
  background-color: #1597ff;
  color: #fff;
  display: block;
  font-weight: bold;
  margin: 0 -15px;
  padding: 5px 70px;
  position: relative;
  text-align: center;
}

.header-promo h3 {
  color: #fff;
  display: none;
  font-size: 15px;
  font-weight: bold;
}

@media (max-height: 500px) {
  /* compact nav for horizontal screens */
  .header-nav {
    top: 50px;
  }

  .header-nav .nav-item {
    font-size: 16px;
  }
}
@media (max-width: 428px) {
  .container-fluid.header-container {
    padding: 0 0 0 5px;
  }

  #header {
    grid-template-columns: 1fr 3fr 1fr;
  }
  #header .header-logo img {
    margin-top: 5px;
  }
}
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
@media (min-width: 992px) {
  .header-container {
    height: 120px;
    -webkit-transition: height 0.3s ease-in-out;
    transition: height 0.3s ease-in-out;
  }

  #header {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 250px 650px 1fr;
    grid-template-rows: 1fr;
    grid-gap: 20px;
    grid-template-areas: ". logo nav .";
  }

  .header-burger,
.header-back {
    display: none;
  }

  .header-logo {
    justify-self: left;
    align-self: center;
    font-size: 36px;
    font-weight: 600;
    line-height: 0.9;
  }

  .header-nav ul {
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header-nav ul li {
    margin-bottom: 0;
  }

  .header-nav .nav-item {
    display: inline-block;
    font-size: 14px;
  }

  .header-nav {
    border: 0;
    left: 0;
    position: relative;
    top: 0;
    -webkit-transition: none;
    transition: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .small-header {
    height: 90px;
    min-height: 0;
  }

  .small-header .header-nav {
    margin: 10px 0;
  }

  .small-header .header-nav ul {
    margin: 0;
  }

  .small-header .header-promo {
    top: 0;
  }

  .nav-item:last-of-type {
    padding-right: 0;
  }

  .nav-item a::before {
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
  }

  .nav-item a:hover::before,
.nav-item.active a::before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  .nav-item.divider {
    height: 45%;
    border-left: 1px solid black;
  }
}
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  #header {
    grid-template-columns: 1fr 300px 900px 1fr;
  }

  .header-nav .nav-item {
    font-size: 17px;
  }

  .nav-item.divider {
    border-left: 2px solid black;
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.footer {
  width: 100%;
  position: relative;
  top: 20px;
}

.footer-container {
  background-color: #2b2b2b;
}

.footer-content-wrapper {
  padding: 10px 0;
  min-height: 50px;
  text-align: center;
}

.footer-content-wrapper span,
.footer-content-wrapper h3,
.footer-content-wrapper a {
  color: #FFF;
  line-height: 50px;
}

.footer-content-wrapper h3 {
  font-size: 46px;
}

#policy-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-logo {
  height: 50px;
  margin-bottom: 20px;
}

#social-links ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
  transition: all 0.1s ease;
}

#social-links ul li {
  display: inline;
  padding: 0 10px;
}

#social-links ul li a {
  line-height: 28px;
  text-decoration: none;
}

#social-links ul li i {
  color: #FFFFFF;
}

#social-links ul li i:hover {
  color: #1597FF;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
@media (min-width: 992px) {
  #policy-links ul li {
    padding-right: 15px;
    display: inline;
  }
}
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .footer-content-wrapper {
    padding: 20px 0;
    min-height: 100px;
    text-align: center;
  }

  .footer-content-wrapper span,
.footer-content-wrapper h3,
.footer-content-wrapper a {
    color: #FFF;
    line-height: 50px;
  }

  .footer-logo {
    height: 50px;
    margin: 12.5px 0;
  }

  #social-links ul {
    display: block;
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.article-column-content {
  position: relative;
  margin-bottom: 30px;
}

.home-article {
  box-shadow: 0 4px 4px 0 #cacaca;
}

.home-article-img-wrapper {
  width: 100%;
  height: 360px;
}

.home-article-text-wrapper {
  min-height: 145px;
  padding: 15px 0;
  background-color: #FFF;
  position: relative;
}

.home-article-category-wrapper {
  font-size: 14px;
  width: 100%;
  text-align: center;
}

.home-article-title-wrapper {
  padding: 0 10px;
  font-size: 20px;
  width: 100%;
  top: 45%;
  transform: translateY(-45%);
  text-align: center;
  position: absolute;
}

.featured-article-title-wrapper a,
.featured-article-category-wrapper a,
.home-article-category-wrapper a,
.home-article-title-wrapper a {
  color: black;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .featured-articles-row {
    padding-bottom: 80px;
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.category-header {
  height: 150px;
  position: relative;
}
.category-header h1 {
  color: #fff;
  font-size: 36px;
  padding: 20px 0 0 20px;
}
.category-header.energy h1 {
  color: #000;
}

.cat-description {
  color: #fff;
  display: none;
  float: right;
  font-size: 1.15em;
  padding: 10px;
  position: absolute;
  right: 10px;
  top: 0;
  width: 60%;
}

.category-header.astronomy,
.cat-color-bg.astronomy {
  background-color: #3b48ea;
}
.category-header.hurricanes,
.cat-color-bg.hurricanes {
  background-color: #3b48ea;
}
.category-header.biology,
.cat-color-bg.biology {
  background-color: #00DF3F;
}
.category-header.chemistry,
.cat-color-bg.chemistry {
  background-color: #fa9c20;
}
.category-header.electronics,
.cat-color-bg.electronics {
  background-color: #5f7295;
}
.category-header.energy,
.cat-color-bg.energy {
  background-color: #FFEA4B;
}
.category-header.geology,
.cat-color-bg.geology {
  background-color: #a813f9;
}
.category-header.math,
.cat-color-bg.math {
  background-color: #eb2222;
}
.category-header.nature,
.cat-color-bg.nature {
  background-color: #1f6926;
}
.category-header.physics,
.cat-color-bg.physics {
  background-color: #1597ff;
}
.category-header.scienceprojects,
.cat-color-bg.scienceprojects {
  background-color: #1b97a1;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
@media (min-width: 768px) {
  .cat-description {
    display: block;
  }
}
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
@media (min-width: 992px) {
  .cat-description {
    width: 50%;
  }
}
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .category-header {
    height: 200px;
    margin-bottom: 20px;
  }

  .category-header h1 {
    font-size: 50px;
  }

  .cat-description {
    font-size: 1.3em;
    top: 20px;
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.image-wrapper {
  position: relative;
  text-align: center;
  display: block;
}
.image-wrapper .article-image-credit {
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: white;
  font-size: 12px;
}
.image-wrapper .article-image-credit a {
  color: white;
}

#article-top {
  padding-top: 9px;
}

.astronomy #article-top {
  border-top: 7px solid #3b48ea;
}

.biology #article-top {
  border-top: 7px solid #00df3f;
}

.chemistry #article-top {
  border-top: 7px solid #fa9c20;
}

.electronics #article-top {
  border-top: 7px solid #5f7295;
}

.energy #article-top {
  border-top: 7px solid #ffea4b;
}

.geology #article-top {
  border-top: 7px solid #a813f9;
}

.math #article-top {
  border-top: 7px solid #eb2222;
}

.nature #article-top {
  border-top: 7px solid #1f6926;
}

.physics #article-top {
  border-top: 7px solid #1597ff;
}

#breadcrumbs {
  margin-bottom: 5px;
}
#breadcrumbs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#breadcrumbs ul li {
  display: inline;
}
#breadcrumbs a {
  color: #000;
}

#article-title h1 {
  font-size: 36px;
  margin-bottom: 5px;
}

#article-byline {
  display: block;
  margin-bottom: 10px;
}

.widget-image-overlay {
  background-color: rgba(240, 240, 240, 0.7);
  box-sizing: border-box;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.article-image {
  margin-bottom: 10px;
  text-align: center;
}
.article-image img {
  display: inline-block;
}
.article-image .image-wrapper {
  position: relative;
  text-align: center;
  display: block;
}
.article-image .article-image-attribution {
  font-size: 12px;
  padding-top: 5px;
  color: #9e9d9d;
  text-align: right;
  display: inline-block;
}

#article-content {
  padding-bottom: 7px;
  margin-bottom: 7px;
}
#article-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
#article-content h2 ~ h2 {
  padding-top: 15px;
}
#article-content h2 + h2 {
  border-top: 1px solid #ccc;
  display: inline-block;
  padding-top: 10px;
}
#article-content p {
  font-size: 16px;
  line-height: 1.6em;
}

.astronomy #article-content {
  border-bottom: 7px solid #3b48ea;
}

.biology #article-content {
  border-bottom: 7px solid #00df3f;
}

.chemistry #article-content {
  border-bottom: 7px solid #fa9c20;
}

.electronics #article-content {
  border-bottom: 7px solid #5f7295;
}

.energy #article-content {
  border-bottom: 7px solid #ffea4b;
}

.geology #article-content {
  border-bottom: 7px solid #a813f9;
}

.math #article-content {
  border-bottom: 7px solid #eb2222;
}

.nature #article-content {
  border-bottom: 7px solid #1f6926;
}

.physics #article-content {
  border-bottom: 7px solid #1597ff;
}

.boxed {
  margin: 15px 0;
  padding: 10px;
  background-color: #fcfcfc;
  border: 1px solid #eaeaea;
  position: relative;
}
.boxed h4 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}
.boxed span {
  font-size: 16px;
  overflow-wrap: break-word;
}
.boxed li:not(:last-child) {
  margin: 0 0 5px;
}
.boxed ul {
  padding-left: 20px;
  list-style: none;
  margin: 0;
}
.boxed ul li a {
  color: black;
}

.author-img-wrapper,
.author-about-wrapper {
  display: inline-block;
}

.author-img-wrapper {
  width: 60px;
  float: left;
}

.author-img {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-repeat: no-repeat;
}

.astronomy .author-img {
  border: 2px solid #3b48ea;
}

.biology .author-img {
  border: 2px solid #00df3f;
}

.chemistry .author-img {
  border: 2px solid #fa9c20;
}

.electronics .author-img {
  border: 2px solid #5f7295;
}

.energy .author-img {
  border: 2px solid #ffea4b;
}

.geology .author-img {
  border: 2px solid #a813f9;
}

.math .author-img {
  border: 2px solid #eb2222;
}

.nature .author-img {
  border: 2px solid #1f6926;
}

.physics .author-img {
  border: 2px solid #1597ff;
}

.author-about-wrapper {
  width: 75%;
  margin-left: 10px;
}
.author-about-wrapper p {
  min-height: 60px;
  margin: 0;
  line-height: 17px;
}

#article-sidebar {
  margin-left: 40px;
}

.social-shares {
  position: relative;
  display: flex;
  margin: 4px 0 7px 0px;
}

.social-icon {
  position: relative;
  width: 35px;
  height: 35px;
}

.email-svg {
  fill: silver;
}

.print-svg {
  fill: black;
}

.facebook-svg {
  fill: #3b5998;
}

.twitter-svg {
  fill: #00aced;
}

.linkedin-svg {
  fill: #007bb6;
}

.pinterest-svg {
  fill: #cb2027;
}

.stumbleupon-svg {
  fill: #eb4823;
}

.reddit-svg {
  fill: #ff5700;
}

.social-icon:first-of-type {
  margin-left: 0px;
}

.social-icon:hover {
  filter: brightness(65%);
}

@media (min-width: 1600px) {
  .social-shares {
    position: fixed;
    z-index: 999;
    left: 8px;
    display: flex;
    margin: 4px 0 7px 0px;
  }
}
.socialshares {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.socialshares.floating {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 140px;
  left: 20px;
  width: 40px;
  font-size: 1.2em;
}

.socialshares.floating > div {
  margin-bottom: 20px;
}

.socialshares > div a:hover {
  filter: brightness(120%);
  transition: 0.2s filter linear, 0.2s -webkit-filter linear;
}

.socialshares a {
  color: #000;
}

.socialshares > .fb a {
  color: #3b5897;
}

.socialshares > .fb a:hover {
  filter: brightness(140%);
}

.socialshares > .twtr a {
  color: #00aced;
}

.socialshares > .eml a {
  color: #fadf86;
}

.socialshares > .eml a:hover {
  filter: brightness(80%);
}

.socialshares > .lnkn a {
  color: #0077b5;
}

.socialshares > .rdit a {
  color: #ff5700;
}

.socialshares > .rdit a:hover {
  filter: brightness(90%);
}

.socialshares > .stumblpn a {
  color: #eb4823;
}

.social-share-margin {
  margin-left: 40px;
}

/* calculator widget customizations */
.calculator-title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  text-transform: none;
}

.astronomy .calculator-widget {
  background-color: #3b48ea;
}

.biology .calculator-widget {
  background-color: #00df3f;
}

.chemistry .calculator-widget {
  background-color: #fa9c20;
}

.electronics .calculator-widget {
  background-color: #5f7295;
}

.energy .calculator-widget {
  background-color: #ffea4b;
}

.geology .calculator-widget {
  background-color: #a813f9;
}

.math .calculator-widget {
  background-color: #eb2222;
}

.nature .calculator-widget {
  background-color: #1f6926;
}

.physics .calculator-widget {
  background-color: #1597ff;
}

.radlinks {
  margin: 30px 0;
}

.radlinks h2 {
  font-weight: bold;
}

.radlinks-content {
  margin: 10px 0 0;
}

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

.radlinks li {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
}

.related-content {
  margin: 30px 0 0;
}

.related-content-header {
  font-weight: bold;
}

.related-content ul {
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.related-content li {
  margin-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.related-content li:nth-last-child(-n+1) {
  border-bottom: none;
}

.embed {
  position: relative;
  margin-bottom: 20px;
}

.embed > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 500px) {
  /* un-float social shares on smallest mobile */
  .socialshares.floating {
    flex-direction: row;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin-top: 20px;
  }

  #article-sidebar {
    margin-left: 0px;
  }

  .social-share-margin {
    margin-left: 0px;
  }
}
/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
@media (min-width: 768px) {
  .socialshares.floating {
    left: calc(50% - 360px);
  }
}
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
@media (min-width: 992px) {
  #article-sidebar {
    max-width: 300px;
    margin-left: 0px;
  }

  .socialshares.floating {
    left: calc(50% - 480px);
  }
}
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .article-main-col {
    border-right: 1px solid #eaeaea;
  }

  #article-title h1 {
    font-size: 42px;
  }

  .radlinks {
    margin: 0 0 30px;
  }

  .author-about-wrapper {
    width: 80%;
  }

  .socialshares.floating {
    left: calc(50% - 580px);
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
#rad-content-related-articles {
  margin-top: 10px;
}

#rad-content-related-articles h3 {
  margin-bottom: 10px;
}

#rad-content-related-articles ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.radlinks a,
#rad-content-related-articles li a {
  color: #C0392B;
}

.rad-content-article-title {
  font-family: Verdana;
  margin-bottom: 5px;
  font-size: 18px;
  font-style: italic;
  text-decoration: underline;
  letter-spacing: 1px;
  color: #C0392B;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.ad-center {
  text-align: center;
}

.ad-margin-bottom {
  margin-bottom: 20px;
}

.inline-text-ad {
  max-height: 100px;
}

.google span,
.google p {
  font-family: Helvetica;
  letter-spacing: 1px;
}

/* Article Inline */
.google.google_text {
  margin-bottom: 10px;
}

/* Rad Content */
.google .title-section {
  font-family: inherit;
  margin-bottom: 5px;
  font-size: 16px;
}

.google .title {
  font-family: Verdana;
  margin-bottom: 5px;
  font-size: 18px;
  font-style: italic;
  text-decoration: underline;
  letter-spacing: 1px;
  color: #C0392B;
}

.google .ad-content {
  margin: 0 0 10px;
}

.google .url {
  color: #333;
  font-weight: normal;
  font-family: inherit;
}

/* Inline Ad */
#google-single {
  margin-top: 1px;
  margin-bottom: 10px;
}

#google-single .google .label:after {
  content: "\a\a";
  white-space: pre;
}

#google-article-block .google .label,
#google-single .google .label {
  font-size: 15px;
  font-weight: 400;
  padding: 0;
  display: block;
  line-height: 1.23em;
  text-align: left;
  white-space: nowrap;
  vertical-align: top;
  border-radius: 0;
  margin-top: -4px;
}

#google-single .google .label {
  padding-top: 7px;
  margin-bottom: 10px;
  height: 19px;
}

#google-article-block .google .label {
  padding-top: 12px;
}

#google-article-block .title-section .title,
#google-single .title-section .title {
  font-family: Verdana;
  margin-bottom: 5px;
  font-size: 18px;
  font-style: italic;
  text-decoration: underline;
  letter-spacing: 1px;
  color: #C0392B;
}

#google-single .url {
  font-size: 14px;
  color: #333;
}

/* Google Block Small Screen */
#google-mobile-leaderboard {
  display: none;
  background: #fff;
  text-align: center;
  margin: -10px 0 10px;
  height: 50px;
  border-bottom: 1px solid #ccc;
}

#google-mobile-leaderboard iframe {
  margin: 0 auto;
}

/* Google Ads Override - Optimizely Winner [https://www.optimizely.com/edit?experiment_id=2235201132] */
#google-article-block {
  background: none;
  margin-bottom: 2em;
  padding: 0;
  margin-top: -9px;
}

#google-article-block .google {
  letter-spacing: 1px;
}

.google .label a {
  color: #333;
  margin: 0;
}

#google-article-block .ad-content {
  border-bottom: 2px solid #ccc;
  margin: 0;
  padding: 0.75em 0 0 0;
  clear: both;
}

#google-article-block .ad-content.even {
  background-color: #f7f7f7;
}

#google-article-block .title-section {
  font-style: italic;
  margin: 0 10px 0 0;
  text-decoration: underline;
  letter-spacing: 0.1em;
  font-size: 17px;
}

#google-article-block .ad-cell {
  display: block;
  margin: 1em;
}

#google-article-block .ad-text {
  display: inline;
  margin: 0;
  padding: 0;
}

#google-article-block .ad-line {
  display: block;
}

#google-article-block .url {
  color: #000000;
  display: block;
  text-decoration: none;
  margin-top: 0.33em;
  font-family: inherit;
}

/* Google Display Ads */
.google-display-ad-mobile,
.google-display-ad-desktop-leaderboard {
  text-align: center;
}

.google-display-ad-mobile {
  margin-bottom: 10px;
}

.google-display-ad-desktop-right {
  margin-bottom: 20px;
}

.leaderboard-ad-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
/* Featured Article Panel */
.featured-article-panel {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.featured-article-panel.small-panel {
  margin-bottom: 20px;
}

.featured-article-image-wrapper {
  height: 400px;
}

.featured-article-image-wrapper .image-overlay,
.standard-article-image-wrapper .image-overlay,
.category-article-image-wrapper .image-overlay,
.related-content-article-image-wrapper .image-overlay {
  width: 100%;
  height: 400px;
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
}

.standard-article-image-wrapper .image-overlay,
.category-article-image-wrapper .image-overlay,
.related-content-article-image-wrapper .image-overlay {
  height: 100%;
}

.small-panel .featured-article-image-wrapper .image-overlay {
  height: 200px;
}

.astronomy .featured-article-image-wrapper .image-overlay:hover,
.astronomy .standard-article-image-wrapper .image-overlay:hover,
.astronomy .category-article-image-wrapper .image-overlay:hover,
.astronomy .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #3b48ea;
}

.biology .featured-article-image-wrapper .image-overlay:hover,
.biology .standard-article-image-wrapper .image-overlay:hover,
.biology .category-article-image-wrapper .image-overlay:hover,
.biology .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #00DF3F;
}

.chemistry .featured-article-image-wrapper .image-overlay:hover,
.chemistry .standard-article-image-wrapper .image-overlay:hover,
.chemistry .category-article-image-wrapper .image-overlay:hover,
.chemistry .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #fa9c20;
}

.electronics .featured-article-image-wrapper .image-overlay:hover,
.electronics .standard-article-image-wrapper .image-overlay:hover,
.electronics .category-article-image-wrapper .image-overlay:hover,
.electronics .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #5f7295;
}

.energy .featured-article-image-wrapper .image-overlay:hover,
.energy .standard-article-image-wrapper .image-overlay:hover,
.energy .category-article-image-wrapper .image-overlay:hover,
.energy .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #FFEA4B;
}

.geology .featured-article-image-wrapper .image-overlay:hover,
.geology .standard-article-image-wrapper .image-overlay:hover,
.geology .category-article-image-wrapper .image-overlay:hover,
.geology .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #a813f9;
}

.math .featured-article-image-wrapper .image-overlay:hover,
.math .standard-article-image-wrapper .image-overlay:hover,
.math .category-article-image-wrapper .image-overlay:hover,
.math .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #eb2222;
}

.nature .featured-article-image-wrapper .image-overlay:hover,
.nature .standard-article-image-wrapper .image-overlay:hover,
.nature .category-article-image-wrapper .image-overlay:hover,
.nature .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #1f6926;
}

.physics .featured-article-image-wrapper .image-overlay:hover,
.physics .standard-article-image-wrapper .image-overlay:hover,
.physics .category-article-image-wrapper .image-overlay:hover,
.physics .related-content-article-image-wrapper .image-overlay:hover {
  opacity: 0.55;
  background-color: #1597FF;
}

.small-panel .featured-article-image-wrapper {
  height: 200px;
}

.featured-article-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.featured-article-text-panel {
  width: 90%;
  position: relative;
  margin-top: -50px;
  top: 80%;
  left: 5%;
  padding: 10px;
  background-color: #FFF;
  border: 1px solid #eaeaea;
}

.small-panel .featured-article-text-panel {
  margin-top: -40px;
}

.featured-article-text-panel::before {
  content: "";
  display: block;
  height: 7px;
  width: 100.3%;
  position: absolute;
  bottom: 100%;
  left: -1px;
  top: -2px;
  background-color: white;
}

.small-panel .featured-article-text-panel::before {
  width: 100.7%;
}

.astronomy .featured-article-text-panel::before {
  background-color: #3b48ea;
}

.biology .featured-article-text-panel::before {
  background-color: #00DF3F;
}

.chemistry .featured-article-text-panel::before {
  background-color: #fa9c20;
}

.electronics .featured-article-text-panel::before {
  background-color: #5f7295;
}

.energy .featured-article-text-panel::before {
  background-color: #FFEA4B;
}

.geology .featured-article-text-panel::before {
  background-color: #a813f9;
}

.math .featured-article-text-panel::before {
  background-color: #eb2222;
}

.nature .featured-article-text-panel::before {
  background-color: #1f6926;
}

.physics .featured-article-text-panel::before {
  background-color: #1597FF;
}

.olympics .featured-article-text-panel::before {
  background-color: #2d9ee0;
}

.featured-article-text-panel a,
.standard-article-panel a,
.category-article-panel a,
.related-content-article-panel a {
  color: black;
  text-decoration: none;
}

.featured-article-category span {
  font-size: 16px;
}

.astronomy .featured-article-category span,
.astronomy .standard-article-category span {
  color: #3b48ea;
}

.biology .featured-article-category span,
.biology .standard-article-category span {
  color: #00DF3F;
}

.chemistry .featured-article-category span,
.chemistry .standard-article-category span {
  color: #fa9c20;
}

.electronics .featured-article-category span,
.electronics .standard-article-category span {
  color: #5f7295;
}

.energy .featured-article-category span,
.energy .standard-article-category span {
  color: #FFEA4B;
}

.geology .featured-article-category span,
.geology .standard-article-category span {
  color: #a813f9;
}

.math .featured-article-category span,
.math .standard-article-category span {
  color: #eb2222;
}

.nature .featured-article-category span,
.nature .standard-article-category span {
  color: #1f6926;
}

.physics .featured-article-category span,
.physics .standard-article-category span {
  color: #1597FF;
}

.featured-article-title span {
  font-size: 26px;
  line-height: 26px;
}

.small-panel .featured-article-title span {
  font-size: 18px;
  line-height: 16px;
}

/* Standard Article Panel */
.standard-article-panel {
  margin-bottom: 20px;
}

.standard-article-category {
  margin-bottom: 5px;
}

.standard-article-image-wrapper {
  height: 200px;
  position: relative;
}

.standard-article-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.astronomy .featured-article-image,
.astronomy .standard-article-image,
.astronomy .category-article-image,
.astronomy .related-content-article-image {
  border-bottom: 5px solid #3b48ea;
}

.biology .featured-article-image,
.biology .standard-article-image,
.biology .category-article-image,
.biology .related-content-article-image {
  border-bottom: 5px solid #00DF3F;
}

.chemistry .featured-article-image,
.chemistry .standard-article-image,
.chemistry .category-article-image,
.chemistry .related-content-article-image {
  border-bottom: 5px solid #fa9c20;
}

.electronics .featured-article-image,
.electronics .standard-article-image,
.electronics .category-article-image,
.electronics .related-content-article-image {
  border-bottom: 5px solid #5f7295;
}

.energy .featured-article-image,
.energy .standard-article-image,
.energy .category-article-image,
.energy .related-content-article-image {
  border-bottom: 5px solid #FFEA4B;
}

.geology .featured-article-image,
.geology .standard-article-image,
.geology .category-article-image,
.geology .related-content-article-image {
  border-bottom: 5px solid #a813f9;
}

.math .featured-article-image,
.math .standard-article-image,
.math .category-article-image,
.math .related-content-article-image {
  border-bottom: 5px solid #eb2222;
}

.nature .featured-article-image,
.nature .standard-article-image,
.nature .category-article-image,
.nature .related-content-article-image {
  border-bottom: 5px solid #1f6926;
}

.physics .featured-article-image,
.physics .standard-article-image,
.physics .category-article-image,
.physics .related-content-article-image {
  border-bottom: 5px solid #1597FF;
}

.standard-article-title {
  margin-top: 5px;
  font-size: 20px;
  line-height: 20px;
}

/* Category Article Panel */
.category-article-panel {
  margin-bottom: 20px;
}

.category-article-image-wrapper {
  height: 200px;
  position: relative;
}

.category-article-image {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.category-article-title {
  margin-top: 5px;
}

.category-article-title span {
  font-size: 20px;
  line-height: 20px;
}

/* Related Content Article Panel */
.related-content-article-panel {
  padding-bottom: 15px;
}

.related-content-article-image-wrapper {
  position: relative;
}

.related-content-article-image {
  width: 100%;
  min-height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
}

.related-content-article-title {
  margin-top: 5px;
  font-size: 16px;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  /* Featured Article Panel */
  .featured-article-panel {
    margin-bottom: 0;
  }

  .featured-article-panel.small-panel {
    margin-bottom: 0;
  }

  .featured-articles-row .small-panel:first-of-type {
    margin-bottom: 20px;
  }

  .featured-article-text-panel {
    min-height: 100px;
    top: 85%;
    left: 5%;
  }

  .featured-article-category span {
    font-size: 18px;
  }

  .featured-article-title span {
    font-size: 32px;
    line-height: 32px;
  }

  .small-panel .featured-article-text-panel {
    min-height: 50px;
    top: 75%;
    left: 5%;
  }

  .small-panel .featured-article-category span {
    font-size: 14px;
  }

  .small-panel .featured-article-title span {
    font-size: 18px;
  }

  .standard-article-panel {
    margin-bottom: 0;
  }
}
/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
#not-found-content h3 {
  margin-top: 10px;
}

#not-found-content span {
  font-size: 20px;
  margin-top: 10px;
  display: block;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
.logo {
  padding: 5px;
  overflow: hidden;
}

.bold-red {
  font-weight: bold;
  color: #eb2222;
  font-style: italic;
}

.bold-blue {
  font-weight: bold;
  color: #1597ff;
  font-style: italic;
}

.bold-green {
  font-weight: bold;
  color: #00df3f;
  font-style: italic;
}

.bold-yellow {
  font-weight: bold;
  background: #fbe330;
  font-style: italic;
  font-size: 18px;
}

#Oval-1-g {
  transform: rotate(40deg) translate(20px);
  transform-origin: 50%;
}

#Oval-2-g {
  transform: rotate(-40deg) translate(-15px);
  transform-origin: 50%;
}

#Oval-3-g {
  transform: rotate(-90deg) translate(-25px, -23px);
  transform-origin: 50%;
}

.left--header[data-id=about-us],
.right[data-id=about-us] {
  border: solid 1px #eb2222;
}
.left--header[data-id=who-we-serve],
.right[data-id=who-we-serve] {
  border: solid 1px #1597ff;
}
.left--header[data-id=what-we-are],
.right[data-id=what-we-are] {
  border: solid 1px #00df3f;
}
.left--header[data-id=our-writers],
.right[data-id=our-writers] {
  border: solid 1px #fbe330;
}

.desktop {
  display: none;
}

.smaller-screen {
  display: block;
}
.smaller-screen div,
.smaller-screen span,
.smaller-screen ul,
.smaller-screen li {
  font-family: "Lato", sans-serif;
  font-size: 12px;
}
.smaller-screen .left,
.smaller-screen .right {
  margin: 10px;
}
.smaller-screen .left {
  position: relative;
  height: calc(100% - 20px);
}
.smaller-screen .left--header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  white-space: nowrap;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  text-align: center;
}
.smaller-screen .left svg {
  display: block;
  margin: 0 auto 5px auto;
}
.smaller-screen .right {
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.smaller-screen .right ul {
  padding-left: 10px;
  margin: 0;
}
.smaller-screen .team {
  padding: 40px 0;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
}
.smaller-screen .team__row {
  justify-content: space-evenly;
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.smaller-screen .team__header {
  text-align: center;
  font-size: 24px;
  font-weight: 200;
  margin: 20px auto;
  font-family: "Lato", sans-serif;
}
.smaller-screen .team__member {
  width: calc(33% - 10px);
  height: 180px;
  position: relative;
  border: solid 1px white;
  background: rgba(255, 255, 255, 0.7);
  margin: 5px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.smaller-screen .team__member--image {
  position: absolute;
  top: 70px;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
}
.smaller-screen .team__member--image img {
  width: 100%;
  transition: 0.2s all ease-in-out;
}
.smaller-screen .team__member--image img:hover {
  transform: scale(1.1);
  backface-visibility: hidden;
}
.smaller-screen .team__member--name {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: 100%;
  text-align: center;
  overflow: hidden;
  transform: translateX(-50%);
  color: black;
  padding: 10px;
  border-radius: 4px;
  background: white;
  font-weight: 200;
  font-family: "Lato", sans-serif;
}
.smaller-screen .team__member:nth-child(8) img {
  transform: scale(1.5);
  padding-top: 15px;
}
.smaller-screen .team__member:nth-child(8) img:hover {
  transform: scale(1.6);
}
.smaller-screen .team__member:nth-child(3) img {
  transform: scale(1.3);
}
.smaller-screen .team__member:nth-child(3) img:hover {
  transform: scale(1.4);
}

.contact__header {
  text-align: center;
  font-size: 24px;
  font-weight: 200;
  margin: 20px auto;
  font-family: "Lato", sans-serif;
  display: block;
}
.contact__row {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.contact__row > div {
  width: 40%;
  margin: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  padding: 25px;
  font-family: inherit;
}
.contact__row > div span {
  display: block;
  line-height: 1.5;
}
.contact__row > div a {
  margin-top: 10px;
  font-family: "Lato", sans-serif;
  color: #1597ff;
}
.contact__row--editorial-header, .contact__row--info-header {
  font-weight: bold;
  font-family: "Lato", sans-serif;
}
.contact__row--editorial span {
  margin: 10px 0;
}
.contact__row--info-header {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .smaller-screen .row div[class^=col-] {
    width: 100%;
  }
  .smaller-screen .row div[class*=col-sm-4] {
    height: 100px;
  }
  .smaller-screen .row div[class*=col-sm-4] .left--header {
    width: 100%;
  }
  .smaller-screen .team__row {
    margin: 0 auto;
  }
  .smaller-screen .team__member {
    width: 45%;
  }

  .contact__row {
    flex-direction: column;
  }
  .contact__row > div {
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (min-width: 768px) {
  .smaller-screen .row {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .smaller-screen {
    display: none;
  }

  .desktop {
    display: block;
  }

  .desktop-row {
    display: flex;
    flex-direction: row;
    height: 600px;
    align-items: center;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 20px;
    font-family: "Lato", sans-serif;
  }
  .desktop-row .center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    border-radius: 4px;
  }
  .desktop-row .center-logo img {
    width: 80px;
    height: auto;
  }
  .desktop-row .header {
    position: absolute;
    display: block;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 200;
    width: 300px;
    z-index: 2;
    opacity: 0.8;
    transition: 0.2s all ease-in-out;
    color: black;
    font-weight: 200;
    cursor: pointer;
  }
  .desktop-row .header span {
    display: block;
    position: unset;
  }
  .desktop-row .header.red {
    color: #eb2222;
  }
  .desktop-row .header.blue {
    color: #1597ff;
  }
  .desktop-row .header.yellow {
    color: #fbe330;
  }
  .desktop-row .header.green {
    color: #00df3f;
  }
  .desktop-row .column {
    width: 50%;
    height: 100%;
  }
  .desktop-row .column-top, .desktop-row .column-bottom {
    height: calc(50% - 80px);
    position: relative;
    text-align: center;
    border-radius: 4px;
    flex: 1;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.2);
    border: solid 1px white;
    margin: 40px 40px 80px;
    overflow: hidden;
  }
  .desktop-row .middle-column {
    transition: 0.2s all ease-in-out;
    position: absolute;
    transform: scale(0);
    width: calc(50% - 80px);
    height: calc(100% - 80px);
    background: white;
    z-index: 3;
    font-size: 15px;
    border-radius: 4px;
    line-height: 1.6;
    color: black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 6;
    font-weight: 200;
    font-family: "Lato", sans-serif;
  }
  .desktop-row .middle-column > div {
    position: relative;
    padding: 30px;
    height: 100%;
    border-radius: 4px;
  }
  .desktop-row .middle-column ul {
    padding: 0;
    list-style: none;
  }
  .desktop-row .middle-column svg {
    display: block;
    height: auto;
    margin: 10px auto 20px;
    text-align: center;
  }
  .desktop-row .middle-column div[data-id=about-us] {
    background-image: linear-gradient(to bottom, white, #fcdddd);
  }
  .desktop-row .middle-column div[data-id=about-us]::before {
    content: "";
    position: absolute;
    top: 65px;
    left: -80px;
    width: 65px;
    height: 1px;
    background: #eb2222;
    border-radius: 1px;
  }
  .desktop-row .middle-column div[data-id=about-us]::after {
    content: "";
    position: absolute;
    top: 65px;
    left: -15px;
    width: 1px;
    height: 75%;
    background: #eb2222;
    border-radius: 1px;
  }
  .desktop-row .middle-column div[data-id=who-we-serve] {
    background-image: linear-gradient(to bottom, white, #aedbff);
  }
  .desktop-row .middle-column div[data-id=who-we-serve]::before {
    content: "";
    position: absolute;
    bottom: 50px;
    left: -80px;
    width: 65px;
    height: 1px;
    border-radius: 1px;
    background: #1597ff;
  }
  .desktop-row .middle-column div[data-id=who-we-serve]::after {
    content: "";
    position: absolute;
    top: 130px;
    left: -15px;
    width: 1px;
    border-radius: 1px;
    bottom: 50px;
    background: #1597ff;
  }
  .desktop-row .middle-column div[data-id=what-we-are] {
    background-image: linear-gradient(to bottom, white, #acffc3);
  }
  .desktop-row .middle-column div[data-id=what-we-are]::before {
    content: "";
    position: absolute;
    top: 65px;
    right: -80px;
    width: 65px;
    height: 1px;
    border-radius: 1px;
    background: #00df3f;
  }
  .desktop-row .middle-column div[data-id=what-we-are]::after {
    content: "";
    position: absolute;
    top: 65px;
    right: -15px;
    width: 1px;
    border-radius: 1px;
    height: 50%;
    background: #00df3f;
  }
  .desktop-row .middle-column div[data-id=our-writers] {
    background-image: linear-gradient(to bottom, white, #fef7c6);
  }
  .desktop-row .middle-column div[data-id=our-writers]::before {
    content: "";
    position: absolute;
    bottom: 50px;
    right: -80px;
    width: 65px;
    height: 1px;
    border-radius: 1px;
    background: #fbe330;
  }
  .desktop-row .middle-column div[data-id=our-writers]::after {
    content: "";
    position: absolute;
    top: 105px;
    right: -15px;
    width: 1px;
    border-radius: 1px;
    bottom: 50px;
    background: #fbe330;
  }

  .team {
    padding: 40px 0;
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
  }
  .team__row {
    justify-content: space-evenly;
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  .team__header {
    text-align: center;
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 30px;
    font-family: "Lato", sans-serif;
  }
  .team__member {
    width: calc(20% - 10px);
    height: 230px;
    position: relative;
    border: solid 1px white;
    background: rgba(255, 255, 255, 0.7);
    margin: 5px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  .team__member--image {
    position: absolute;
    top: 90px;
    left: 50%;
    width: 76%;
    height: 140px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    overflow: hidden;
  }
  .team__member--image img {
    width: 100%;
    transition: 0.2s all ease-in-out;
  }
  .team__member--image img:hover {
    transform: scale(1.1);
    backface-visibility: hidden;
  }
  .team__member--name {
    position: absolute;
    bottom: 10px;
    left: 50%;
    width: 100%;
    text-align: center;
    overflow: hidden;
    transform: translateX(-50%);
    color: black;
    padding: 10px;
    border-radius: 4px;
    background: white;
    font-weight: 200;
    font-family: "Lato", sans-serif;
  }
  .team__member:nth-child(8) img {
    transform: scale(1.5);
    padding-top: 22px;
  }
  .team__member:nth-child(8) img:hover {
    transform: scale(1.7);
  }
  .team__member:nth-child(3) img {
    transform: scale(1.3);
  }
  .team__member:nth-child(3) img:hover {
    transform: scale(1.4);
  }

  .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: radiate 7s infinite;
    transition: 2s all ease-in-out;
  }
  .circle:nth-child(2) {
    animation-delay: 0.3s;
  }
  .circle:nth-child(3) {
    animation-delay: 0.5s;
  }
  .circle.red-circle {
    border: solid 8px #eb2222;
  }
  .circle.blue-circle {
    border: solid 8px #1597ff;
  }
  .circle.green-circle {
    border: solid 8px #00df3f;
  }
  .circle.yellow-circle {
    border: solid 8px #fbe330;
  }

  @keyframes radiate {
    0% {
      transform: translate(-50%, -50%) scale(0);
      opacity: 0.3;
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(2);
    }
  }
  .column-top[data-id=about-us] {
    border: solid 1px #eb2222;
  }

  .column-bottom[data-id=who-we-serve] {
    border: solid 1px #1597ff;
  }

  .column-top[data-id=what-we-are] {
    border: solid 1px #00df3f;
  }

  .column-bottom[data-id=our-writers] {
    border: solid 1px #fbe330;
  }
}
.flag-img {
  border: 1px solid #dedede;
  clear: left;
  display: inline-block;
  float: left;
  margin: 5px 10px;
  max-height: 50px;
  max-width: 80px;
}

.olympics-image {
  background-color: #dce9f0;
  background-position-y: -100px;
  background-repeat: no-repeat;
  margin: 10px 0 50px;
  position: relative;
}

.sport-icon-lg {
  margin: 0 20px;
}

#article-content .main-img {
  font-size: 28px;
  padding: 10% 0 5%;
  text-align: center;
  width: 100%;
}

#article-content .main-img h3 {
  color: #0c7567;
  font-size: 1.1em;
}

#article-content .countdown-clock .countdown-days,
#article-content .countdown-clock .countdown-hours,
#article-content .countdown-clock .countdown-minutes {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 40px;
  color: #0c7567;
  display: inline-block;
  padding: 20px;
  width: 20%;
}

#article-content .countdown-clock .countdown-seconds {
  background: #fff;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(0, #aee5f8));
  background-image: linear-gradient(to right, transparent 50%, #aee5f8 0);
  border-radius: 50%;
  display: inline-block;
  height: 80px;
  position: relative;
  top: 20px;
  width: 80px;
}

#article-content .countdown-clock .countdown-seconds::before {
  background-color: inherit;
  border-radius: 0 100% 100% 0/50%;
  content: "";
  display: block;
  height: 100%;
  margin-left: 50%;
  -webkit-transform-origin: left;
  transform-origin: left;
}

#article-content .olympic-event-schedule ul {
  background-color: #e7f5fa;
  display: none;
  list-style: none;
  margin: -10px 5px 5px;
  padding: 10px 20px;
}

#article-content .olympic-event-schedule ul li {
  color: #67749e;
  font-size: 14px;
  padding: 4px 0;
}

#article-content .olympic-event-schedule h3.expand-link {
  color: #0c7567;
  cursor: pointer;
  font-size: 19px;
  padding: 20px 0;
  text-align: center;
  text-decoration: underline;
}

#article-content .olympic-event-schedule h3.expand-link span {
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 10px;
  padding: 3px 6px;
}

ul.fun-facts {
  background-color: #e4f2fa;
  border-radius: 8px;
  float: right;
  height: 250px;
  list-style: none;
  margin: 10px;
  padding: 5px;
  position: relative;
  width: 30%;
}

ul.fun-facts .fun-fact-number {
  background-color: #fff;
  border-radius: 50%;
  color: #49988c;
  display: inline-block;
  float: left;
  font-size: 2em;
  margin: -3px 10px 0 -3px;
  padding: 5px;
}

ul.fun-facts li {
  height: 240px;
  opacity: 0;
  overflow: hidden;
  padding: 4px;
  position: absolute;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

ul.fun-facts li.active {
  opacity: 1;
}

ul.fun-facts li h5 {
  font-size: 18px;
}

ul.fun-facts li p {
  font-size: 14px !important;
  line-height: 16px;
}

#article-content .anchornav {
  list-style: none;
  margin: 10px 0 50px;
}

#article-content .anchornav li {
  font-size: 19px;
  padding: 5px 0;
}

.olympics-content h2 {
  margin-top: 30px;
}

.maincol-olympics-nav .athlete-to-watch,
.maincol-olympics-nav > h2 {
  display: none;
}

ul.sports-links {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}

ul.sports-links li {
  border-radius: 10px;
  margin: 0 6px;
  padding: 8px;
  text-align: center;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  width: 90px;
}

ul.sports-links li:hover {
  background-color: #e1e2ff;
}

ul.sports-links li a {
  text-align: center;
}

ul.sports-links li img {
  height: auto;
  width: 100%;
}

#article-content .olympic-event-icon {
  margin: 15px 0 0;
  max-height: 100%;
  max-width: 100%;
}

.olympic-table.prediction-table {
  margin-bottom: 30px;
}

.olympic-data-preview {
  margin-bottom: 30px;
  position: relative;
}

.olympic-data-preview > ol {
  margin-left: 0;
}

.olympic-data-preview > ol li {
  background-color: #f3f8f9;
  border: 1px solid #cdcdcd;
  padding: 5px 20px;
}

.olympic-data-preview > ol li.more {
  background-color: #d3fafb;
  border: 0;
  list-style: none;
  text-decoration: underline;
}

.olympic-data-preview .olympic-table-container {
  -webkit-box-shadow: 8px 8px 3px #333;
  box-shadow: 8px 8px 3px #333;
  height: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: width 0.5s;
  transition: width 0.5s;
  width: 0;
  z-index: 99;
}

.olympic-data-preview:hover .olympic-table-container {
  height: auto;
  width: 100%;
}

/* colors showing accuracy of predictions */
.olympic-table.prediction-table tr td.color-1 {
  background-color: #0a8670;
  font-weight: bold;
  color: #fff;
}

.olympic-table.prediction-table tr td.color-1::after {
  content: "*";
}

.olympic-table.prediction-table tr td.color-0_9 {
  background-color: rgba(10, 134, 112, 0.8);
}

.olympic-table.prediction-table tr td.color-0_8 {
  background-color: rgba(10, 134, 112, 0.6);
}

.olympic-table.prediction-table tr td.color-0_7 {
  background-color: rgba(10, 134, 112, 0.4);
}

.olympic-table.prediction-table tr td.color-0_6 {
  background-color: rgba(10, 134, 112, 0.2);
}

.olympic-table.prediction-table tr td.color-0_5 {
  background-color: rgba(10, 134, 112, 0);
}

.olympic-table.prediction-table tr td.color-0_4 {
  background-color: rgba(103, 116, 158, 0.2);
}

.olympic-table.prediction-table tr td.color-0_3 {
  background-color: rgba(103, 116, 158, 0.4);
}

.olympic-table.prediction-table tr td.color-0_2 {
  background-color: rgba(103, 116, 158, 0.6);
}

.olympic-table.prediction-table tr td.color-0_1 {
  background-color: rgba(103, 116, 158, 0.8);
}

.olympic-table.prediction-table tr td.color-0_05 {
  background-color: #67749e;
  color: #fff;
}

.accuracy-legend-text {
  display: inline-block;
  font-size: 13px;
  position: relative;
  top: -6px;
}

.olympic-table.prediction-table.accuracy-legend {
  border: 1px solid #aaa;
  color: #000;
  display: inline-block;
  font-weight: bold;
  margin: 10px 0 0;
}

.olympic-table.prediction-table.accuracy-legend td {
  width: 20px;
  height: 20px;
}

.sidebar-olympics-nav {
  margin: 30px 0;
}

.athlete-to-watch {
  background: #ddecf6;
  padding: 10px;
  text-align: center;
}

.athlete-to-watch .athlete-portrait {
  border: 4px white solid;
  border-bottom: 0;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  box-sizing: content-box;
  display: inline-block;
  height: 180px;
  margin: 10px 10px 0;
  overflow: hidden;
  text-align: center;
}

.athlete-to-watch .athlete-portrait img {
  height: 100%;
  margin: 0 auto;
  width: auto;
}

.athlete-to-watch .athlete-facts {
  float: left;
  line-height: 16px;
  list-style: none;
  margin: 0 0 5px 10px;
  padding: 0;
  text-align: left;
}

.athlete-to-watch .athlete-info {
  background-color: #fff;
  border-radius: 10px;
  color: #67749e;
  font-size: 15px;
  line-height: 22px;
  margin: -5px 10px 10px;
  overflow: hidden;
  padding: 10px;
  text-align: left;
}

.athlete-to-watch .athlete-info a {
  color: #67749e;
}

.athlete-to-watch .athlete-info-text {
  clear: both;
  color: #333;
}

.athlete-to-watch .flag-img {
  float: right;
  margin-bottom: 10px;
  margin-top: 0;
}

.athlete-to-watch .athlete-photo-credit,
.athlete-to-watch .athlete-photo-credit a {
  color: #999;
  font-size: 12px;
  line-height: 15px;
}

.data-table {
  width: 100%;
}

.data-table td, .data-table th {
  background-color: #f3f8f9;
  border: 1px solid #cdcdcd;
  padding: 5px 10px;
  text-align: center;
}

.data-table td.nation {
  text-align: left;
}

.data-table tr:nth-child(even) td, .data-table tr:nth-child(even) th {
  background-color: #fcfcff;
}

.data-table tr:nth-child(even) .gold {
  background-color: #f7f6bd;
}

.data-table tr:nth-child(even) .silver {
  background-color: #e7e9e1;
}

.data-table tr:nth-child(even) .bronze {
  background-color: #e5d2a2;
}

.data-table tr:nth-child(odd) .gold {
  background-color: #efeeb7;
}

.data-table tr:nth-child(odd) .silver {
  background-color: #e1e3db;
}

.data-table tr:nth-child(odd) .bronze {
  background-color: #dcc99b;
}

.olympic-table-footnote {
  color: #999;
  padding: 5px;
  position: relative;
  text-align: center;
  top: -25px;
}

#allTimeMedalsWorldMap {
  background-color: #eef9fb;
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 992px) {
  .maincol-olympics-nav .athlete-to-watch,
.maincol-olympics-nav > h2 {
    display: block;
  }

  .sidebar-olympics-nav {
    display: none;
  }
}
@media (max-width: 700px) {
  #article-content .main-img {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  #article-content .main-img {
    font-size: 18px;
    line-height: 20px;
  }

  ul.fun-facts {
    height: 120px;
    margin: 0 auto;
    width: 100%;
  }

  ul.fun-facts .fun-fact-number {
    font-size: 1.5em;
  }

  ul.fun-facts p {
    clear: both;
  }

  .sport-icon-lg {
    margin: 0 10px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  #article-content .countdown-clock .countdown-days,
#article-content .countdown-clock .countdown-hours,
#article-content .countdown-clock .countdown-minutes {
    padding: 10px;
  }

  #article-content .countdown-clock .countdown-seconds {
    height: 50px;
    top: 10px;
    width: 50px;
  }

  #article-content .countdown-clock .abbrev,
.header-container .countdown-clock .abbrev {
    display: none;
  }

  .data-table td, .data-table th {
    padding: 4px;
  }

  .data-table td img, .data-table th img {
    display: none;
  }

  ul.fun-facts {
    height: 160px;
  }
}
@media (max-width: 420px) {
  #article-content .main-img {
    padding: 10px 0;
  }

  .sport-icon-lg {
    margin: 0 5px;
    height: 100px;
  }

  .olympic-table.prediction-table.accuracy-legend td {
    width: 10px;
  }
}
#suggestions {
  background-color: #fcfcfc;
  border: 1px solid #ddd;
  box-shadow: 2px 2px 6px #666;
  float: left;
  list-style: none;
  margin: 2px 0 0;
  max-width: 40%;
  padding: 10px;
  position: absolute;
  z-index: 100;
}
#suggestions:empty {
  border: 0;
  box-shadow: none;
  padding: 0;
}
#suggestions .close {
  background-color: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  font-size: 12px;
  line-height: 12px;
  opacity: 0.6;
  padding: 1px;
  position: absolute;
  right: 2px;
  text-align: center;
  top: 2px;
}
#suggestions .close:hover {
  opacity: 1;
}
#suggestions li {
  background-color: #1b97a1;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin: 2px 4px;
  padding: 2px 4px;
}
#suggestions li:hover {
  background-color: #23c4d1;
}

#search-results {
  background-color: #eee;
  box-sizing: border-box;
  float: right;
  line-height: 1.8em;
  margin: 0;
  margin-left: 10px;
  padding: 20px;
  width: 50%;
}
#search-results .one-result {
  font-size: 20px;
  margin: 20px 0;
}
#search-results .one-result .cat-color-bg {
  clear: both;
  float: left;
  font-size: 16px;
  margin-right: 20px;
}
#search-results .one-result .cat-color-bg:hover {
  box-shadow: none;
}

.cat-color-bg {
  background-color: #1b97a1;
}

.science-fair-top {
  margin-bottom: 70px;
}
.science-fair-top .category-header {
  background-position-x: 10px;
  background-position-y: 15px;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
.science-fair-top .category-header h1 {
  margin-left: 60px;
}
.science-fair-top .categories-search .cat-color-bg {
  cursor: pointer;
  margin: 4px;
}
.science-fair-top .cat-color-bg {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  padding: 2px 6px;
}
.science-fair-top .cat-color-bg.energy {
  color: #000;
}
.science-fair-top .cat-color-bg:hover {
  box-shadow: 2px 6px 6px #aaa;
}
.science-fair-top .search-filter {
  background-color: #cee4e8;
  border-radius: 10px;
  margin: 0 0 20px;
  padding: 10px 20px 35px;
  text-align: center;
  width: 40%;
}
.science-fair-top .search-filter h3 {
  color: #15767d;
  margin-bottom: 20px;
}
.science-fair-top .search-filter button {
  display: block;
}

.category-article-title {
  height: 50px;
}

h2.grade-row {
  border-bottom: 2px solid #1b97a1;
  clear: both;
}

.projects-grade-row {
  height: 300px;
  margin: 20px 0 70px;
  overflow: hidden;
  position: relative;
  transition: left 0.5s;
  width: 100%;
}
.projects-grade-row .projects-grade-row__slider {
  display: flex;
  flex-wrap: nowrap;
  left: 25px;
  position: absolute;
}
.projects-grade-row .projects-grade-row__slider > div {
  width: 300px;
}
.projects-grade-row .projects-grade-row__arrow-r,
.projects-grade-row .projects-grade-row__arrow-l {
  background-color: rgba(252, 252, 252, 0.8);
  bottom: 0;
  box-sizing: border-box;
  color: #15767d;
  cursor: pointer;
  font-size: 30px;
  font-weight: bold;
  height: 270px;
  min-width: 25px;
  padding-top: 70px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 5%;
  z-index: 100;
}
.projects-grade-row .projects-grade-row__arrow-r {
  right: 0;
}
.projects-grade-row .projects-grade-row__arrow-l {
  left: 0;
}

.grade-anchors a {
  background-color: #1b97a1;
  color: #fff;
  display: inline-block;
  margin: 8px;
  padding: 4px 8px;
  text-decoration: none;
}
.grade-anchors a:hover {
  box-shadow: 2px 6px 6px #aaa;
}

@media (max-width: 550px) {
  #search-results {
    float: none;
    margin-left: 0;
    width: 100%;
  }

  .science-fair-top .search-filter {
    margin-top: 20px;
    width: 100%;
  }
}
.print-button {
  cursor: pointer;
}

@media print {
  .header-container {
    position: relative;
    display: block;
  }

  a[href]:after {
    content: "";
  }

  .freestyle-content img {
    width: 4in !important;
    float: left;
    position: relative;
    display: inline-block;
    margin: 0.25in 0.5in 0.25in 0in;
  }

  .no-print {
    display: none !important;
  }

  .content-container {
    margin: 0 !important;
    padding-top: 0 !important;
  }

  .resources,
.references,
.tip {
    page-break-inside: avoid;
  }
}
.jwplayer-section {
  margin: 30px 0;
  padding: 20px 25px 40px;
  border-top: 1px solid rgba(151, 151, 151, 0.3);
  border-bottom: 1px solid rgba(151, 151, 151, 0.3);
}

.jwplayer-section .jwplayer__label {
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
}

.jwplayer-section .jwplayer__container-outer {
  background-color: #FFFFFF;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container.jwplayer__container--sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 400px;
  height: auto;
  padding: 7px;
  border-radius: 2px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
  background-color: #FFFFFF;
  z-index: 999999;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container.jwplayer__container--sticky .jwplayer__close {
  display: block;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container.jwplayer__container--sticky #jw-player {
  position: relative;
  top: auto;
  left: auto;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close {
  position: absolute;
  top: -10px;
  right: -10px;
  display: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  text-align: center;
  background-color: #000000;
  z-index: 999999;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close:hover {
  cursor: pointer;
  opacity: 0.8;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x {
  position: relative;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-top: 6px;
  overflow: hidden;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x::after,
.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  margin-top: -1px;
  background: #FFFFFF;
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x::before {
  transform: rotate(45deg);
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container .jwplayer__close .close-x::after {
  transform: rotate(-45deg);
}

.jwplayer-section .jwplayer__container-outer .jwplayer__container #jw-player {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
}

.low-match {
  color: red;
}

.moderate-match {
  color: #fbc02d;
}

.high-match {
  color: green;
}

.half-height {
  height: 50%;
}

.header-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

ul.search-container {
  display: none;
  justify-content: center;
}

@media (max-width: 768px) {
  .search-indicator {
    display: none;
  }

  ul.category-container {
    margin-top: 60px;
  }

  ul.search-container {
    display: block;
    position: absolute;
    top: 0px;
  }
}
* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container-fluid {
  margin-right: auto;
  margin-left: auto;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

.container {
  width: 100vw;
}

.row {
  flex-direction: column;
}
.row div[class*=xs-1],
.row div[class*=sm-1] {
  width: 8.3333333333%;
}
.row div[class*=xs-2],
.row div[class*=sm-2] {
  width: 16.666666666%;
}
.row div[class*=xs-3],
.row div[class*=sm-3] {
  width: 25%;
}
.row div[class*=xs-4],
.row div[class*=sm-4] {
  width: 33.333333333%;
}
.row div[class*=xs-5],
.row div[class*=sm-5] {
  width: 41.666666666%;
}
.row div[class*=xs-6],
.row div[class*=sm-6] {
  width: 50%;
}
.row div[class*=xs-7],
.row div[class*=sm-7] {
  width: 58.333333333%;
}
.row div[class*=xs-8],
.row div[class*=sm-8] {
  width: 66.666666666%;
}
.row div[class*=xs-9],
.row div[class*=sm-9] {
  width: 75%;
}
.row div[class*=xs-10],
.row div[class*=sm-10] {
  width: 83.3333333333%;
}
.row div[class*=xs-11],
.row div[class*=sm-11] {
  width: 91.6666666666%;
}
.row div[class*=xs-12],
.row div[class*=sm-12] {
  width: 100%;
}

.row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

div[class^=col-] {
  position: relative;
  min-height: 1px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }

  .row {
    flex-direction: column;
  }
  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=xs-1],
.row div[class*=sm-1] {
    width: 8.3333333333%;
  }
  .row div[class*=xs-2],
.row div[class*=sm-2] {
    width: 16.666666666%;
  }
  .row div[class*=xs-3],
.row div[class*=sm-3] {
    width: 25%;
  }
  .row div[class*=xs-4],
.row div[class*=sm-4] {
    width: 33.333333333%;
  }
  .row div[class*=xs-5],
.row div[class*=sm-5] {
    width: 41.666666666%;
  }
  .row div[class*=xs-6],
.row div[class*=sm-6] {
    width: 50%;
  }
  .row div[class*=xs-7],
.row div[class*=sm-7] {
    width: 58.333333333%;
  }
  .row div[class*=xs-8],
.row div[class*=sm-8] {
    width: 66.666666666%;
  }
  .row div[class*=xs-9],
.row div[class*=sm-9] {
    width: 75%;
  }
  .row div[class*=xs-10],
.row div[class*=sm-10] {
    width: 83.3333333333%;
  }
  .row div[class*=xs-11],
.row div[class*=sm-11] {
    width: 91.6666666666%;
  }
  .row div[class*=xs-12],
.row div[class*=sm-12] {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }

  .row {
    flex-direction: row;
  }
  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=md-1] {
    width: 8.3333333333%;
  }
  .row div[class*=md-2] {
    width: 16.666666666%;
  }
  .row div[class*=md-3] {
    width: 25%;
  }
  .row div[class*=md-4] {
    width: 33.333333333%;
  }
  .row div[class*=md-5] {
    width: 41.666666666%;
  }
  .row div[class*=md-6] {
    width: 50%;
  }
  .row div[class*=md-7] {
    width: 58.333333333%;
  }
  .row div[class*=md-8] {
    width: 66.666666666%;
  }
  .row div[class*=md-9] {
    width: 75%;
  }
  .row div[class*=md-10] {
    width: 83.3333333333%;
  }
  .row div[class*=md-11] {
    width: 91.6666666666%;
  }
  .row div[class*=md-12] {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }

  .row div[class^=col-] {
    position: relative;
    min-height: 1px;
    padding: 0 15px;
  }
  .row div[class*=lg-1],
.row div[class*=xl-1] {
    width: 8.3333333333%;
  }
  .row div[class*=lg-2],
.row div[class*=xl-2] {
    width: 16.666666666%;
  }
  .row div[class*=lg-3],
.row div[class*=xl-3] {
    width: 25%;
  }
  .row div[class*=lg-4],
.row div[class*=xl-4] {
    width: 33.333333333%;
  }
  .row div[class*=lg-5],
.row div[class*=xl-5] {
    width: 41.666666666%;
  }
  .row div[class*=lg-6],
.row div[class*=xl-6] {
    width: 50%;
  }
  .row div[class*=lg-7],
.row div[class*=xl-7] {
    width: 58.333333333%;
  }
  .row div[class*=lg-8],
.row div[class*=xl-8] {
    width: 66.666666666%;
  }
  .row div[class*=lg-9],
.row div[class*=xl-9] {
    width: 75%;
  }
  .row div[class*=lg-10],
.row div[class*=xl-10] {
    width: 83.3333333333%;
  }
  .row div[class*=lg-11],
.row div[class*=xl-11] {
    width: 91.6666666666%;
  }
  .row div[class*=lg-12],
.row div[class*=xl-12] {
    width: 100%;
  }
}
html {
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
}

/* Main content wrapper (used with mobile menu slider) */
#panel {
  background-color: #FBFBFB;
  min-height: 100%;
}

.shadow {
  -webkit-box-shadow: 0 2px 4px 0 #cacaca;
  -moz-box-shadow: 0 2px 4px 0 #cacaca;
  box-shadow: 0 2px 4px 0 #cacaca;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
}

span, p {
  font-family: "Lato", sans-serif;
}

.title-font {
  font-family: "Nunito Sans", sans-serif;
}

.logo-underline {
  text-decoration: underline;
}

.margin-top-row {
  margin-top: 20px;
}

.margin-bottom-row {
  margin-bottom: 20px;
}

/**
 * =====================================
 * Mobile, small device styles (default)
 * =====================================
 */
.padded-top-row {
  padding-top: 0;
}

/* Bootstrap container div*/
.content-container {
  padding-top: 165px;
  padding-bottom: 50px;
}

/**
 * =====================================
 * Tablet, medium device styles
 * =====================================
 */
@media (max-width: 768px) {
  .content-container {
    padding-top: 100px;
  }
}
/**
 * =====================================
 * Smaller desktop styles
 * =====================================
 */
/**
 * =====================================
 * Larger desktop styles
 * =====================================
 */
@media (min-width: 1200px) {
  .padded-top-row {
    padding-top: 30px;
  }
}

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