* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* border: 1px solid lightblue; */
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #666666;
  font-weight: normal;
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.logo {
  width: 180px;
  padding: 80px 0 16px 0;
  opacity: 0.8;
}






/* ------ nav ------ */

nav {
  height: 160px;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 30px; /* my edit */
}

nav li {
  height: 50px;
}

nav a {
  height: 100%;
  /* padding: 0 0 0 30px; */  /* My edit to hide padding on the nav */
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #666666;
  font-size: 1.4rem;
}

nav a:hover {
  color: #cccccc;
  /* background-color: #f0f0f0; */
}

nav li:first-child {
  margin-right: auto;
  /* background-color: rgb(214, 240, 249); */
}

.sidebar {
  position: fixed;
  top: 0; 
  right: 0;
  padding-top: 62px; /* My edit to push the menu down */
  padding-left: 30px; /* My edit to add space to sidebar left */
  /* height: 320px; */
  height: 100vh;
  width: 250px;
  background-color: #f8f8f8;
  /* background-color: rgba(255, 255, 255, 0.15); */
  /* backdrop-filter: blur(12px);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1); */
  list-style: none;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.sidebar li {
  width: 100%;
}

.sidebar a {
  width: 100%;
}

.menu-button {
  display: none;
}

@media (max-width: 800px) {
  .hideOnMobile {
    display: none;
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 400px) {
  .sidebar {
    width: 100%;
  }
}






/* ------ typography ------ */

h1 {
  /* font-size: 1.6rem;
  line-height: 1.2rem; */
  font-size: 26px;
  line-height: 32px;
  font-weight: normal;
  margin: 0;
}

h2 {
  font-size: 26px;
  line-height: 30px;
  font-weight: normal;
  margin: 0 0 10px 0;
}

h3 {
  font-size: 20px;
  line-height: 24px;
  font-weight: normal;
  margin: 0 0 10px 0;
}

p {
  font-size: 16px;
  line-height: 20px;
}

a.email {
  font-size: 26px;
  line-height: 30px;
  color: #666666;
  text-decoration: none;
}

a.email:hover {
  font-size: 26px;
  line-height: 30px;
  color: #cccccc;
  text-decoration: none;
}

.services {
  font-size: 20px;
  line-height: 24px;
}






/* ------ layout ------ */

.container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 0 60px 0;
  /* border: 1px solid magenta; */
  /* background-color: cornsilk; */
}

.header-full-width {
  /* width: 90%;
  max-width: 1600px; */
  margin: 0 auto;
  padding: 20px 0 40px 0;
  /* border: 1px solid lightblue;
  background-color: cornsilk; */
}






/* ------ grids ------ */

.grid {
  display: grid;
  grid-gap: 60px;
  /* padding: 16px; */

  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (min-width: 960px) {
    grid-template-columns: repeat(3, 1fr);
  }

  @media (min-width: 1200px) {
    grid-template-columns: repeat(4, 1fr);
  }
}

.grid-3-columns {
  display: grid;
  grid-gap: 40px;
  /* padding: 16px; */
  /* overflow: auto; */

  @media (min-width: 768px) {
    grid-template-columns: repeat(2, 1fr);
  }

  @media (min-width: 992px) {
    grid-template-columns: repeat(3, 1fr);
  }

  @media (min-width: 1200px) {
    /* grid-template-columns: 33% 33% 33%; */
    grid-template-columns: 37% 25% 33%;
    /* grid-template-columns: repeat(3, 1fr); */
  }

  .col {
    margin-bottom: 16px;
    /* background-color: lightblue; */
    /* padding: 16px; */
    /* background-color: rgb(213, 251, 226); */
  }
}





/* ------ forms ------ */

.container-form {
  border-radius: 6px;
  background-color: #f2f2f2;
  padding: 20px;
  margin-top: 20px;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 0 solid #ccc;
  border-radius: 6px;
  margin-bottom: 30px;
  font-size: 1.2rem;
  resize: vertical;
}

/* form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px;
  border: 0 solid #ccc;
  border-radius: 6px;
  margin-bottom: 30px;
  font-size: 1.2rem;
} */

input[type="submit"] {
  background-color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
}

input[type="submit"]:hover {
  background-color: #CCCCCC;
}