@font-face {
  font-family: -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Inter", "Helvetica", "Arial", sans-serif;
  src: url(../fonts/Merriweather-Regular.ttf);
}
@font-face {
  font-family: "Mali";
  src: url(../fonts/Mali-SemiBoldItalic.ttf);
}
@font-face {
  font-family: "Saira";
  src: url(../fonts/SairaStencilOne-Regular.ttf);
}
body {
  font-family: -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Inter", "Helvetica", "Arial", sans-serif;
  background-image: url("../img/bg.jpg");
  background-color: #000000;
  color: #c1e4eb;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Mali";
  text-transform: uppercase;
}

p {
  line-height: 1.5;
}

.background {
  background-color: rgba(0, 0, 0, 0.7);
}

.inner-container {
  background-image: url("../img/bg.png");
}

.text-faded {
  color: rgba(255, 255, 255, 0.4);
}

.site-heading {
  margin-top: 5rem;
  margin-bottom: 5rem;
  line-height: 1rem;
  font-family: "Mali";
  text-transform: uppercase;
}
.site-heading .site-heading-upper {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}
.site-heading .site-heading-lower {
  font-size: 5rem;
  font-weight: 100;
  line-height: 4rem;
}

.page-section {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.section-heading .section-heading-upper {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
}
.section-heading .section-heading-lower {
  display: block;
  font-size: 1.6rem;
  font-weight: 100;
}

.bg-faded {
  background-color: rgba(255, 255, 255, 0.85);
}

#mainNav {
  height: 80px;
  background-color: rgba(39, 111, 191, 0.8);
  font-family: "Mali";
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 1px 1px #2c3532;
}
#mainNav .navbar-brand {
  color: #ffb703;
  font-size: 1.1rem;
}
@media (min-width: 500px) {
  #mainNav .navbar-brand {
    font-size: 1.4rem;
  }
}
#mainNav .navbar-nav .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: #fb8500;
}
#mainNav .navbar-nav .nav-item.active .nav-link {
  color: #ffb703;
}
@media (min-width: 992px) {
  #mainNav .navbar-nav .nav-item .nav-link {
    font-size: 0.9rem;
  }
}

.btn-xl {
  font-weight: 700;
  font-size: 0.8rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn {
  box-shadow: 0px 3px 3px 0px rgba(34, 38, 42, 0.1019607843);
}

.btn-primary {
  background-color: #276fbf;
  border-color: #276fbf;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #276fbf;
  border-color: #276fbf;
}

.btn-hex {
  position: relative;
}

.btn-hex-bg {
  display: inline-block;
  width: 74px;
  height: 64px;
  background-image: url("../img/btn-hex-bg.png");
  background-size: cover;
}

.btn-hex-img {
  margin-top: 16px;
  height: 32px;
}

.btn-hex-upper {
  margin-left: -24px;
}

.btn-hex-lower {
  top: 32px;
  margin-left: -24px;
}

@media (min-width: 500px) {
  .btn-hex-bg {
    width: 100px;
    height: 86px;
  }
  .btn-hex-img {
    margin-top: 18px;
    height: 48px;
  }
  .btn-hex-upper {
    margin-left: -30px;
  }
  .btn-hex-lower {
    top: 42px;
    margin-left: -30px;
  }
}
.btn-tooltip .btn-tooltiptext {
  visibility: hidden;
  bottom: 35px;
  left: 80px;
  width: 120px;
  background-color: #2a4f72;
  color: #ffb703;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0px;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.btn-tooltip:hover .btn-tooltiptext {
  visibility: visible;
}

.intro {
  position: relative;
  line-height: 0;
}
.intro .intro-img {
  float: center;
}
.intro .intro-banner {
  width: 100%;
  min-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 10% 0;
     object-position: 10% 0;
}
.intro .intro-text {
  float: left;
}
.intro .intro-overlay {
  position: absolute;
  left: 50%;
  top: 25%;
  transform: translate(-50%, 0);
  width: 400px;
  padding: 1rem;
  color: #fff;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
}
.intro .intro-overlay .title {
  font-family: "Saira Stencil One";
  text-transform: uppercase;
  font-size: 6rem;
  line-height: 6rem;
}
.intro .intro-overlay .subtitle {
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.6rem;
}
.intro .intro-overlay .text {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.intro .intro-overlay img {
  width: 200px;
  height: 200px;
}
@media (min-width: 992px) {
  .intro .intro-overlay {
    right: 5%;
    top: 25%;
    transform: none;
  }
  .intro .intro-img {
    float: right;
  }
  .intro .intro-text {
    width: 62%;
    margin-top: 2rem;
    position: absolute;
  }
}
@media (min-width: 1200px) {
  .intro .intro-overlay {
    right: 10%;
  }
  .intro .intro-text {
    width: 68%;
  }
}

.cta {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: rgba(42, 79, 114, 0.85);
}
.cta .cta-inner {
  position: relative;
  padding: 2rem;
  padding-bottom: 4rem;
  margin: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.cta .cta-inner:before {
  border-radius: 0.5rem;
  content: "";
  position: absolute;
  top: -0.5rem;
  bottom: -0.5rem;
  left: -0.5rem;
  right: -0.5rem;
  border: 0.25rem solid #fff;
  z-index: -1;
}
.cta .cta-link {
  text-decoration: none;
}
.cta .cta-link:hover {
  color: #fb8500;
}
.cta .cta-news-preview {
  display: block !important;
  width: 100%;
  padding-bottom: 1rem;
  text-align: justify;
  font-size: 1rem;
}
.cta .cta-news-preview .mw-halign-center {
  text-align: center;
}
.cta .cta-news-preview img {
  width: 100%;
  max-width: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta .cta-news-preview h4 {
  font-family: -apple-system, "BlinkMacSystemFont", "Segoe UI", "Roboto", "Inter", "Helvetica", "Arial", sans-serif;
  color: #ade6f0;
  font-size: 1rem;
  font-weight: 600;
}
.cta .cta-news-preview p {
  margin-bottom: 0.8rem;
}
.cta .cta-news-preview .cta-news-date {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: rgba(193, 228, 235, 0.8);
}
.cta .cta-news-preview .cta-news-button {
  text-align: right;
}
.cta .cta-news-preview .cta-news-button a {
  text-decoration: none;
  border-radius: 0.5rem;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 4px;
  padding-right: 6px;
  color: #fff;
  background-color: rgba(42, 79, 114, 0.8);
}
.cta .cta-news-preview .cta-news-button a:hover {
  color: #fb8500;
}

@media (min-width: 992px) {
  .about-heading .about-heading-img {
    position: relative;
    z-index: 0;
  }
  .about-heading .about-heading-content {
    margin-top: -5rem;
    position: relative;
    z-index: 1;
  }
}
.projects .section-heading-upper {
  font-family: "Saira Stencil One";
  text-transform: uppercase;
  font-size: 14pt;
  letter-spacing: 0.5px;
  color: #ade6f0;
}
.projects .projects-exsol-img {
  width: 300px;
  margin-bottom: 20px;
}
.projects .projects-exsol-grid-img {
  width: 300px;
  margin-bottom: 20px;
  border-radius: 2.5px;
}
.projects .projects-exsol-workshop-img {
  width: 300px;
  margin-bottom: 20px;
  border-radius: 2.5px;
}
.projects .projects-text {
  text-align: justify;
}
@media (min-width: 576px) {
  .projects .projects-exsol-img {
    width: 350px;
    margin-bottom: 20px;
  }
  .projects .projects-exsol-grid-img {
    width: 350px;
    margin-bottom: 20px;
  }
  .projects .projects-exsol-workshop-img {
    width: 350px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .projects .projects-exsol-img {
    width: 250px;
    float: left;
    margin-bottom: 0px;
    margin-right: 25px;
  }
  .projects .projects-exsol-grid-img {
    width: 400px;
    float: right;
    margin-bottom: 0px;
    margin-left: 25px;
  }
  .projects .projects-exsol-workshop-img {
    width: 400px;
    float: left;
    margin-bottom: 0px;
    margin-right: 25px;
  }
}
.footer {
  background-color: rgba(39, 111, 191, 0.8);
  font-family: "Mali";
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #2c3532;
}
.footer a.foot-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.footer a.foot-link:hover {
  color: #fb8500;
  text-decoration: none;
}

.text-primary {
  color: #276fbf !important;
}

.bg-primary {
  background-color: #276fbf !important;
}

.btn {
  box-shadow: 0px 3px 3px 0px rgba(33, 37, 41, 0.1);
}

.btn-primary {
  background-color: #276fbf;
  border-color: #276fbf;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #1e5695;
  border-color: #1e5695;
}

.font-weight-light {
  font-weight: 100 !important;
}