:root {
  --husky-purple: #32006e;
  --spirit-purple: #4b2e83;
  --husky-gold: #b7a57a;
  --husky-web-gold: #e8e3d3;
  --heritage-gold: #85754d;
  --spirit-gold: #ffc700;
  --accent-green: #aadb1e;
  --accent-teal: #2ad2c9;
  ---accent-pink: #e93cac;
  --accent-lavender: #c5b4e3;
  --accent-gray: rgb(245, 245, 245);
  --accent-purple: rgb(97, 59, 169);
}

@font-face {
  font-family: "Encode Sans Compressed Regular";
  src: url(../fonts/EncodeSansCompressed-400-Regular.ttf);
}

@font-face {
  font-family: "Encode Sans Compressed SemiBold";
  src: url(../fonts/EncodeSansCompressed-600-SemiBold.ttf);
}

@font-face {
  font-family: "Encode Sans Compressed Bold";
  src: url(../fonts/EncodeSansCompressed-700-Bold.ttf);
}

body {
  margin: 0;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Encode Sans Compressed Bold", sans-serif;
  color: var(--husky-purple);
  line-height: 1.2;
  margin-bottom: 20px;
}

h1 {
  text-transform: uppercase;
  font-size: 2.25rem;
}

h2 {
  font-size: 2rem;
}

a {
  color: var(--husky-purple);
  text-decoration: none;
}

a:hover {
  color: var(--heritage-gold);
}

header nav {
  font-family: "Encode Sans Compressed SemiBold", sans-serif;
}

header nav ul {
  list-style-type: none;
  display: inline-flex;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

header nav ul li {
  padding: 0 0 0.25rem 0;
}

header nav ul a {
  font-size: 16px;
}

.navbar-inner-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2rem;
}

.container {
  padding: 0 10%;
  max-width: 100vw;
}

.hero-wrapper {
  min-height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--husky-purple);
  margin-bottom: 2rem;
}

.hero-wrapper img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
}

.hero-wrapper h1 {
  color: #ffffff;
  position: relative;
}

footer {
  color: #ffffff;
  background-color: var(--husky-purple);
  text-align: center;
  padding: 40px 0;
  border-top: 7px solid #d1d1d1;
  font-size: 14px;
  margin-top: 50px;
}

footer ul {
  list-style-type: none;
  display: inline-flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

footer nav ul li:not(:last-child):after {
  content: "|";
  margin: 0 13px;
}

footer nav ul a {
  font-size: 1.1rem;
  text-decoration: underline;
}

footer a {
  color: #ffffff;
  font-family: "Encode Sans Compressed SemiBold";  
}

footer a:hover {
  color: var(--husky-gold);
  text-decoration: none;
}

footer .logo-link {
  display: block;
  max-width: 600px;
  margin: 0 auto 25px;
  transition: all 0.2s ease-in-out;
}

footer .logo-link.boundless:hover {
  opacity: 0.70;
}

footer img {
  max-width: 100%;
}

footer nav {
  font-family: "Encode Sans Compressed Regular", sans-serif;
}

.uw-footer-social {
  position: relative;
  margin: 80px 0;
}

.uw-footer-social h4 {
  font-family: "Encode Sans Compressed SemiBold", sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
}

.uw-footer-social:before,
.uw-footer-social:after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  background: #ffffff;
  opacity: 0.8;
  position: absolute;
  left: 50%;
  top: -27px;
  margin-left: -37px;
}

.uw-footer-social:after {
  top: unset;
  bottom: -27px;
}

.uw-footer-social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
  align-items: center;
}

.uw-footer-social a {
  color: white;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.uw-footer-social i {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-size: 2rem;
}

.uw-footer-social .newsletter i {
  font-family: "Font Awesome 6 Free";
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 7%;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 5%;
  }

  .navbar-inner-wrapper {
    justify-content: center;
  }

  .engr-logo {
    height: 50px;
    padding: 7px 0;
  }

  header nav ul li {
    padding: 0 0 0.5rem 0;
  }

  footer {
    margin-top: 30px;
    padding: 40px 0;
  }

  footer img {
    max-width: 400px;
  }

  footer ul {
    justify-content: center;
  }

  footer .uw-footer-links ul {
    row-gap: 0.5rem;
  }
}

@media screen and (max-width: 600px) {
  header nav ul li {
    padding: 0 0 1rem 0;
  }
}