* {
  margin: 0;
  padding: 0;
}

h2 {
  font-family: "Bodoni Moda", serif;
  /* font-family: "Noto Sans", sans-serif; */
  display: block;
  width: 100%;
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

p {
  font-family: "Noto Sans", sans-serif;
  letter-spacing: 0.04em;
}

.content {
  box-sizing: border-box;
  width: 90vw;
  padding: 0 8px;
}

.banner {
  background-color: #89aae6;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;

  > p {
    font-family: "Bodoni Moda", serif;
    letter-spacing: 0.08em;
  }
}

nav {
  background-color: #6d597a;
  min-height: 180px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #eee;

  .content {
    max-width: 992px;
    display: flex;
    align-items: end;
    justify-content: space-between;
  }

  .brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 310px;
  }
  .links {
    color: #eee;
    margin-bottom: 24px;
    a {
      font-family: "Bodoni Moda", serif;
      margin-left: 16px;
      letter-spacing: 0.075em;
      color: #eee;
      text-decoration: unset;
    }
  }
}

.logo {
  height: 150px;
  width: 150px;
  display: block;
  border-radius: 50%;
}

.header-image {
  width: 100%;
  background-color: steelblue;
  display: block;
  margin: 0 auto;
}

#consultations {
  background-color: #355070;
  color: #fff;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 36px;

  h2 {
    text-align: center;
    padding-bottom: 24px;
  }

  .content {
    max-width: 992px;
  }
}

#about {
  background-color: aliceblue;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 36px;

  .content {
    max-width: 992px;
    align-items: start;

    img {
      display: block;
      min-width: 320px;
      background-color: darkcyan;
    }

    > div {
      max-width: 40vw;
    }
  }
}

#portfolio {
  background-color: aliceblue;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 36px;

  .content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    div {
      display: grid;
      justify-items: center;
      align-items: center;
      grid-template-columns: 320px 320px 320px;
      grid-template-rows: 180px 180px;
      grid-gap: 16px;
    }
  }

  h2 {
    text-align: center;
  }

  p {
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 24px;
  }

  img {
    display: block;
    width: 320px;
    height: 180px;
    background-color: darkcyan;
  }
}

/* 
#enquiries {
  background-color: aliceblue;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;

  h2 {
    text-align: center;
  }

  p {
    text-align: center;
    display: block;
    width: 100%;
    margin-bottom: 24px;
  }

  form {
    max-width: 992px;
    min-height: 250px;
    background-color: lightskyblue;
    margin: 0 auto;

    > label {
      display: block;
    }
    input {
      display: block;
      margin-bottom: 8px;
      width: 300px;
    }
    > input[type="submit"] {
      height: 45px;
      max-width: 165px;
      margin-top: 16px;
    }
  }
}
*/
footer {
  background-color: #355070;
  border-top: 4px solid lightskyblue;
  border-bottom: 24px solid #fff;
  min-height: 250px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 36px;
  color: #fff;

  p {
    display: block;
    font-family: "Bodoni Moda", serif;
    padding-top: 16px;
    a {
      font-family: "Noto Sans", sans-serif;
      color: #eee;
      text-decoration: underline;
    }
  }
  .content {
    max-width: 992px;
  }
}
