body {
  font-family: "Noto Sans", sans-serif;
  background-image: url(img/bg-desktop.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: rgb(0, 0, 0);
  color: white;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6em;
  width: 100%;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2em;
}

.logo {
  width: 500px;
  margin: 1em 0em 0em 3em;
}

.contact {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 2rem;
  margin-top: -0.5em;
}

.contact i {
  margin-right: 0.4em;
  margin-top: 0.3em;
}

.contact a {
  margin-right: 1.8em;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.contact a:hover {
  color: rgb(209, 209, 209);
  border-bottom: 3px solid rgb(189, 189, 190);
}

nav {
  /* background-color: rgba(38, 45, 61, 0.493); */
  display: flex;
  justify-content: space-around;
  padding: 1em;
  margin-top: 6em;
}

nav a:link,
nav a:visited,
nav a:active {
  text-decoration: none;
  font-weight: 600;
  font-size: 3rem;
  color: var(--primarycolour);
}

nav a:hover {
  color: rgb(221, 221, 221);
  /* border-bottom: 3px solid rgb(198, 198, 201); */
}

.experience {
  width: 60%;
  margin-top: 6em;
  margin-left: 1em;
  position: relative;

  font-size: 4rem;
  letter-spacing: -0.3rem;
  line-height: 1.1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.experience p {
  margin-top: 1em;
  line-height: 1.2;
  letter-spacing: -0.2rem;
}

.redribbon {
  position: absolute;
  top: -5em;
  left: -1em;
}

/* form styling */

form h2 {
  font-weight: 500;
  text-shadow: 0px 0px 8px black;
}

.request {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 6em;

  display: flex;
  flex-direction: column;
}

.request input,
.request textarea {
  width: 100%;

  border: none;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  padding: 1em;
  font-size: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.request textarea {
  height: 14em;
}

.request button {
  min-width: 240px;
  margin-left: auto;
  /* margin-right: auto; */
  margin-top: 1em;
  padding: 0.4em;
  font-size: 1.5rem;
  background-color: white;
  color: black;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
}

/* about us styling */
.aboutus {
  width: 70%;
  margin-top: 20em;
  margin-left: 1em;
  font-size: 2rem;
  letter-spacing: -0.2rem;
  line-height: 1.1;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.aboutus p {
  margin-top: 1em;
  line-height: 1.2;
  letter-spacing: -0.05em;
}

/* Media Queries */

@media screen and (width < 1200px) {
  body {
    background-image: url(img/bg-mobile.jpg);
    background-size: cover;
  }

  header {
    margin: 0em;
  }

  .contact {
    font-weight: 600;
    font-size: 0.7rem;
    margin-top: 1em;
  }

  .contact i {
    margin-right: 0.4em;
    margin-top: 0.3em;
  }

  .contact a {
    text-decoration: none;
    color: rgb(255, 255, 255);
  }

  .contact a:hover {
    color: rgb(209, 209, 209);
    border-bottom: 1px solid rgb(189, 189, 190);
  }

  nav {
    margin: 1em auto;
  }

  nav a:link,
  nav a:visited,
  nav a:active {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.6rem;
    letter-spacing: -0.1rem;
  }

  .logo {
    width: 180px;
    margin: 1em 1em 0em 1em;
  }

  .experience {
    font-size: 1rem;
  }

  .experience p {
    margin-top: 1em;
    line-height: 1.2;
    letter-spacing: 0rem;
  }

  .redribbon {
    /* transform: scale(0.8); */
    position: absolute;
    top: -4em;

    width: 120px;
  }

  /* about us styling */
  .aboutus {
    width: 70%;
    margin-top: 10em;
    margin-left: 1em;
    font-size: 1rem;
    letter-spacing: -0.1rem;
    line-height: 1.1;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  }

  .aboutus p {
    margin-top: 1em;
    line-height: 1.2;
    letter-spacing: -0.05em;
  }
}
