* {
  font-family: 'Poppins', Arial, sans-serif;
}
a {
  font-weight: 600;
  text-decoration: none !important;
  color: #1d78bd;
}
a:hover {
  font-weight: bolder;
}
button:hover {
  font-weight: bold;
}
h1 {
  font-size: 2.25em;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h1, h2, h3 {
  font-weight: 600;
}
.button-basic, 
.button-contact,
.button-reset {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  border: none;
  border-radius: 15px;
  margin-bottom: 1em;
  width: 250px;
  height: 40px;
}
.button-contact {
  background-color: #1d78bd;
}
.button-basic {
  background-color: #313e48;
}
.button-reset {
  background-color: #989fa4;
}
#two-buttons {
  margin-top: 1em;
}
#top-logo {
  width: 50%;
  display: block;
  margin: auto;
}
#header-button {
  display: none;
}
.bluebg {
  background: linear-gradient(25deg, #024872, #1d78bd );
  color: white;
}
.graybg {
  background-color: #313e48;
  color: white;
}
.darkbluebg {
  background-color: #024872;
}
.gradientbg {
  background: #024872;
  background: linear-gradient(69deg,rgba(2, 72, 114, 1) 0%, rgba(2, 72, 114, 1) 41%, rgba(29, 120, 189, 1) 52%, rgba(29, 120, 189, 1) 100%);
}
.ltgraybg {
  background-color: #dfe2e3;
}
#video-container {
  padding: 0;
  background-color: #313e48;
  max-height: 500px;
}
#intro-video {
  width: 100%;
  height: 100%;
  max-height: 500px;
}
#tools {
  padding-top: 1em;
  padding-bottom: 1em;
}
#tools img {
  padding: 1em;
  max-width: 85%;
}
#client-testimonial {
  display: none;
}
.lead {
  margin-bottom: 3em;
}
.stats p {
  color: #313e48;
}
.bold {
  font-weight: 600;
}
.emphasis {
  font-style: italic;
}
.graytxt {
  color: #313e48;
}
.ltgraytxt {
  color: #dfe2e3;
}
.medgraytxt {
  color: #989fa4
}
.bluetxt {
  color: #024872;
}
.bravebluetxt {
  color: #1d78bd;
}
.quote {
  padding: 0 8em;
}
#awards img {
  max-width: 250px;
}
footer {
  display: block;
}
.bottom-nav ul {
  display: block;
  margin: auto;
  text-align: center;
}
.bottom-nav a {
  font-weight: lighter;
}
.social-links ul {
  display: flex;
  margin: 1em 5em;
  padding: 0em;
  justify-content: center;
}
.social-icon i {
  padding: .5em;
  margin: auto;
}
.logo-text p {
  display: block;
  text-align: center;
  padding-bottom: 2em;
}
.footer-logo img {
    display: block;
    margin: auto;
    width: 30%;
}
/*SUBPAGE General Styles*/
.title-over {
  position: absolute;
  text-align: left;
  top: 1em;
  left: 1em; 
  color: white;
  font-size: 2.5em;
  max-width: 50%;
}
.hero-animate {
  width: 100%;
  height: 250px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.hero-animate div {
  opacity: 100%;
  animation: move 40s ease;
  /* Add infinite to loop. */
  -ms-animation: move 40s ease;
  -webkit-animation: move 40s ease;
  -0-animation: move 40s ease;
  -moz-animation: move 40s ease;
  position: fixed;
}
@-webkit-keyframes move {
  0% {
    -webkit-transform-origin: bottom left;
    -moz-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    -o-transform-origin: bottom left;
    transform-origin: bottom left;
    transform: scale(1.0);
    -ms-transform: scale(1.0);
    /* IE 9 */
    -webkit-transform: scale(1.0);
    /* Safari and Chrome */
    -o-transform: scale(1.0);
    /* Opera */
    -moz-transform: scale(1.0);
    /* Firefox */
  }
  100% {
    transform: scale(1.2);
    -ms-transform: scale(1.2);
    /* IE 9 */
    -webkit-transform: scale(1.2);
    /* Safari and Chrome */
    -o-transform: scale(1.2);
    /* Opera */
    -moz-transform: scale(1.2);
    /* Firefox */
  }
}
/*DIFFERENCE Styles*/
#diff-heading {
  width: 100%;
  background-image:
    linear-gradient(to right bottom, #313e48, transparent),
    url("images/difference.jpg");
}
.line {
  border-right: none;
  margin-bottom: 2em;
}
#newsletter iframe {
  display: none;
}
#newsletter img {
  width: 100%;
}
.stats {
  width: 100%;
  padding: 2em;
}
/*CONNECT Styles*/
.connect-head {
  height: 100px;
  width: 100%;
  padding: 1em 4em;
}
.intro {
  padding: 2em 2em;
}
.form-body form {
  margin: 1em auto;
  width: 75%;
}
/*COMMUNITY Styles*/
#community-heading {
  width: 100%;
  background-image:
    linear-gradient(to right bottom, #313e48, transparent),
    url("images/incommunity.jpg");
}
/*Medium Breakpoint*/
@media only screen and (min-width: 768px) {
  footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  .bottom-nav {
    flex-direction: column;
  }
  .bottom-nav ul {
      text-align: left;
  }
  .social-links {
    flex-direction: column;
    justify-content: flex-end;
  }
  .social-links ul {
    margin: 0;
  }
  .footer-logo img {
    margin: 0;
    width: 20%;   
  } 
  .logo-text p {
    text-align: end;
  }
  #two-buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
  }
  #two-buttons button {
    margin: 1em;
  }
  #tools img {
    max-width: 500px;
    padding: 2em;
  }
  #client-testimonial {
    display: block;
  }
  /*DIFFERENCE Styles*/
  .line {
    border-right: solid #989fa4;
  }
  .title-over {
    left: 2em;
    font-size: 4.5em;
  }
  .hero-animate {
    height: 500px;
  }
  #newsletter iframe {
    display: block;
  }
  #newsletter img {
    display: none;
  }
  .stats {
  width: 60%;
  }
  /*CONNECT Styles*/
  .connect-head {
    padding-left: 18em;
    height: 175px;
    padding-top: 2.5em;
  }
  .intro {
    padding: 2em 16em;
  }
  .form-body form {
    width: 50%;
  }
  /*COMMUNITY Styles*/
  .card-body {
    padding-top: 0em; 
    padding-left: 2em;
    margin-bottom: 1.5em;
  }
}
/*Large Breakpoint*/
@media only screen and (min-width: 991px) {
  #video-container {
    padding: 0 10em;
  }
  #top-logo {
    width: 15%;
  }
  #header-button {
    display: block;
  }
  #tools img {
    width: 60%;
    padding: 1em;
  }
}
/*Extra-Large Breakpoint*/
@media only screen and (min-width: 1199px) {
  .footer-logo img {
    width: 10%;
  }
  #video-container {
    padding: 0 15em;
  }
}