html {
  box-sizing: border-box;
  font-family: "Urbanist";
  letter-spacing: 0.1rem;
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0rem;
  padding: 0rem;
}

/* header */

.header-container {
  width: 100%;
  padding: 1.5rem 0rem;
  background-color: #fefefe;
  position: relative;
  z-index: 150;
  height: 8.1rem;
}

.logo {
  height: 4.8rem;
}

.header-wrapper {
  position: relative;
  width: 120rem;
  margin: 0rem auto;
  z-index: 150;
  background: white;
  height: 100%;
}

.burger-menu-wrapper {
  position: relative;
  width: 120rem;
  margin: 0rem auto;
  background: white;
  top: -6.7rem;
}

.nav-links-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 150;
  background: white;
}

.nav-burger-menu-container {
  border: 0.2rem solid #00004d;
  border-radius: 1rem;
  height: 5.4rem;
  width: 5.4rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  z-index: 200;
  background: white;
  transition: transform 0.2s linear;
}

.nav-burger-menu-container:active {
  transform: scale(0.9) translateY(-50%);
}

.burger-divide {
  height: 0.2rem;
  width: 80%;
  background: rgba(127, 127, 128, 0.6);
}

.line {
  height: 0.3rem;
  width: 70%;
  background: #00004d;
}

.burger-menu-container {
  position: absolute;
  top: 0rem;
  right: 0rem;
  top: 6.6rem;
  background: white;
  width: 100%;
  height: 30rem;
  border: 0.3rem solid #2c2c36;
  border-top: none;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  z-index: 50;
  border-bottom-left-radius: 2.3rem;
  border-bottom-right-radius: 2.3rem;
  background: linear-gradient(rgba(12, 48, 59, 0.95), rgba(42, 20, 54, 0.95));
  transform: translateY(-100%) translateZ(-800rem);
  transition: transform 0.7s ease-out;
}

.burger-link a {
  text-decoration: none;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-family: "HyperspaceRace-bold";
  color: rgba(255, 255, 255, 0.8);
}

.nav-checkbox:checked ~ .burger-menu-wrapper .burger-menu-container {
  transform: translateY(0);
}

.nav-link {
  margin-left: 5rem;
  font-family: "HyperspaceRace-Bold";
  font-size: 2rem;
  text-transform: uppercase;
}

.nav-link a:hover {
  border-bottom: 0.2rem solid #fa991c;
}

.nav-link a {
  text-decoration: none;
  color: #00004d;
  padding-bottom: 0.3rem;
}

.nav-hire-btn {
  padding: 1.5rem 3rem;
  font-family: "HyperspaceRace-Bold";
  text-transform: uppercase;
  font-size: 2rem;
  outline: none;
  border: none;
  background: linear-gradient(to top, rgb(5, 13, 59), rgb(8, 59, 94));
  color: white;
  border-radius: 0.8rem;
  cursor: pointer;
  box-shadow: 0.2rem 0.2rem 1.6rem rgba(0, 0, 0, 0.1);
}

.nav-hire-btn:hover {
  background: linear-gradient(to top, rgb(10, 22, 88), rgb(11, 78, 122));
}

/* end of header */

/* under construction */

.under-construction-div {
  width: 100%;
  height: calc(100vh - 8.1rem);
}

.under-construction-div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55%;
  margin-bottom: 8rem;
}

/* end of under construction */

/* blog */

.blog-section-container {
  margin: 8rem 0rem;
  padding: 4rem;
}

.blog-section-wrapper {
  width: 120rem;
  margin: 0rem auto;
}

.blog-heading-wrapper {
  margin-top: 8rem;
  margin-bottom: 5rem;
}

.blog-heading {
  font-size: 4rem;
  color: #00004d;
  border-bottom: 0.3rem solid #fa991c;
  display: inline;
}

.blog-container {
  width: 100%;
  padding: 3rem;
  border-radius: 2.6rem;
  box-shadow: 1rem 1rem 2.8rem rgba(0, 0, 0, 0.2);
  display: flex;
  position: relative;
}

.blog-img-wrapper {
  width: 100%;
  margin-right: 2rem;
}

.blog-img {
  width: 100%;
  height: 100%;
  border-radius: 0.6rem;
  object-fit: cover;
  object-position: right;
}

.blog-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-title-wrapper {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.blog-blurb {
  font-size: 1.7rem;
  margin-bottom: 2rem;
}

.blog-btn-wrapper {
  align-self: flex-end;
}

.blog-btn {
  padding: 1.5rem 3rem;
  font-size: 1.8rem;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 0.5rem;
  color: white;
  background-color: #00004d;
  box-shadow: 0.5rem 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}

.blog-btn:hover {
  background-color: #2f2f8d;
}

/* end of blog */

/* footer */

.footer-section-container {
  background: linear-gradient(to right, rgb(237, 246, 255), rgb(221, 239, 250));
  width: 100%;
  padding-top: 5rem;
  position: relative;
}

.footer-border-top {
  height: 2.1rem;
  width: 100%;
  background: linear-gradient(to right, #4f89c0, #12416d);
  position: absolute;
  top: 0rem;
}

.footer-container {
  margin: 0rem 18%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navigation-container {
  display: flex;
  margin-bottom: 2.5rem;
}

.footer-logo img {
  width: 40rem;
}

.footer-email {
  margin-top: 1rem;
  text-align: right;
}

.footer-email a {
  color: rgb(17, 86, 151);
  border-bottom: 0.2rem solid rgb(17, 86, 151);
  font-size: 1.8rem;
  text-decoration: none;
}

.footer-links-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 0.3rem solid #00004d;
  margin-left: 6rem;
}

.legal {
  font-size: 1.4rem;
  color: white;
  background: linear-gradient(to right, #4f89c0, #12416d);
  text-align: center;
  padding: 0.2rem 0rem;
}

.legal a {
  color: white;
  text-decoration: none;
  border-bottom: 0.1rem solid white;
}
/* end of footer */

@media screen and (max-width: 1250px) {
  .header-wrapper {
    width: 110rem;
  }

  .blog-section-wrapper {
    width: 90rem;
  }
}

@media screen and (max-width: 1150px) {
  .nav-links-container {
    display: none;
  }

  .nav-burger-menu-container {
    display: flex;
  }

  .header-wrapper {
    width: 85%;
    margin: 0rem auto;
  }

  .burger-menu-wrapper {
    width: 85%;
  }
}

@media screen and (max-width: 1075px) {
  .navigation-container {
    flex-direction: column;
  }

  .footer-email {
    width: 30rem;
    text-align: right;
    margin: 1rem auto 3rem;
  }

  .footer-email a {
    font-size: 1.4rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-logo img {
    width: 30rem;
  }

  .footer-links-container {
    border-left: none;
    margin-left: 0;
  }
}

@media screen and (max-width: 1000px) {
  .blog-section-wrapper {
    width: 100%;
    padding: 0rem 5%;
  }
}

@media screen and (max-width: 900px) {
  .blog-img-wrapper {
    min-width: 20rem;
  }
}

@media screen and (max-width: 700px) {
  .footer-links-container {
    flex-direction: column;
  }

  .nav-link {
    margin: 1rem 0rem 1rem 0rem;
  }
}

@media screen and (max-width: 650px) {
  .blog-heading {
    font-size: 2.5rem;
  }

  .blog-container {
    flex-direction: column;
  }

  .blog-img-wrapper {
    min-width: unset;
    height: 10rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 525px) {
  .logo {
    height: 3.4rem;
    margin-top: 1.2rem;
  }
}

@media screen and (max-width: 500px) {
  .legal {
    font-size: 0.8rem;
  }

  .footer-border-top {
    height: 1.4rem;
  }
}

@media screen and (max-width: 400px) {
  .footer-logo img {
    max-width: 26rem;
  }
}

@media screen and (max-width: 380px) {
  .logo {
    height: 2.4rem;
    margin-top: 1.8rem;
  }
}
