:root {
  --myHeaderFont: 'Merriweather Sans', sans-serif;
  --myTextFont: 'Alegreya', serif;
  --myLinkColor: royalblue;	
  --myHoverColor: crimson;
  --myHeaderColor1: steelblue;
  --myBtnColor1: rgba(0,150,70,1.0);
  --myBtnColor2: beige;
  --myNavMenuColor: teal;	
}
body {
  background: #FFFFFF;
  color: #000;
  font-family: var(--myTextFont);
  font-weight: 500;
  overflow-x: hidden;
}
a {
  color: var(--myLinkColor);
  transition: 0.5s;
}
a:hover, a:active, a:focus {
  color: var(--myHoverColor);
  outline: none;
  text-decoration: underline;
}
p {
  padding: 0;
  margin: 0 0 1em 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--myHeaderFont);
  font-weight: 400;
  margin: 1em 0 .5em 0;
  padding: 0;
}
.back-to-top {
  position: fixed;
  display: none;
  background: linear-gradient(45deg, royalblue, dodgerblue);
  color: #FFF;
  padding: 2px 18px 5px 18px;
  font-size: 1em;
  border-radius: 5px 5px 0 0;
  right: 4vw;
  bottom: 0;
  transition: none;
}
.back-to-top:hover {
  background: linear-gradient(225deg, royalblue, dodgerblue);
  color: #000;
}
/* Sections
--------------------------------*/
.section-header .section-title {
  font-size: 1.6em;
  color: #111;
  text-align: center;
  font-weight: 500;	 
}
.section-header .section-description {
  text-align: justify;
  color: #000;
  font-weight: 400;
  font-size: 1em;
}
#sc-members {
  padding: 1em 1em;
  overflow: hidden;
  background-color: lightgrey;
}
#stats {
  padding: 2em 0em;
  overflow: hidden;
  background-color: lightyellow;
}
#stats .stats-title {
  color: #000;
  font-size: 1.2em;
  font-weight: 700;
}
#stats .stats-text {
  color: #000;
}
#stats th, tbody, td {
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
/* Years
--------------------------------*/
#years {
  padding: 0em 0;
  overflow: hidden;
}
#years .member {
  text-align: center;
  margin-bottom: 0px;
  border-radius: 20px;
  background-color: #FFF;
}
#years .member .pic img {
  max-width: 75%;
  padding: 10px 15px;
  max-height: 115px;
}
#years h1 {
  font-size: 3em;
  color: #000;
  padding-top: 1.5em;
  padding-bottom: .5em;
  font-weight: 500;
  text-align: center;
}
/* Footer
--------------------------------*/
#footer {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  background: #FFF;
  padding: 30px 0;
  color: #000;
  font-size: 14px;
}
#footer .credits {
  font-size: 13px;
  color: #333;
}
#footer .footer-links a {
  color: #333;
  padding-left: 15px;
}
#footer .footer-links a:first-child {
  padding-left: 0;
}
#footer .footer-links a:hover {
  color: var(--myHoverColor);
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #FFF;
  color: var(--myLinkColor);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid var(--myLinkColor);
}
#footer .social-links a:hover {
  background: var(--myLinkColor);
  color: #FFF;
}

@media screen and (min-width: 576px) {
  html {
    font-size: calc(16px + 4 * ((100vw - 576px) / 416));
  }
}
@media (min-width: 768px) {
  #call-to-action .cta-btn-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
@media (max-width: 991.98px) {
  #header #logo img {
    max-height: 40px;
  }
  #nav-menu-container {
    display: none;
  }
  #mobile-nav-toggle {
    display: inline;
  }
  #advanced-features .advanced-feature-img-right, #advanced-features .advanced-feature-img-left {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 20px;
  }
  #intro {
    background-attachment: fixed;
  }
  #advanced-features .sub-heading {
    width: 75%;
  }
}