* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.container {
  display: flex; /* or inline-flex */
  flex-wrap: wrap;
  justify-content: center;

  column-gap: 8px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.container-horizontal {
  display: flex; /* or inline-flex */
  flex-direction: row;
  column-gap: 8px;
}
.container-vertical {
  display: flex; /* or inline-flex */
  flex-direction: column;
}

.item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7, .item-8, .item-9, .item-10, .item-11 {
  margin-right: 16px;
  min-height: 40px;
}
.last-item {
  margin-right: 0;
}
@media (min-width: 1200px) {
  .header {
    display: none !important;
  }
  .item-1 { width: 80px; }
  .item-2 { width: 176px; }
  .item-3 { width: 272px; }
  .item-4 { width: 368px; }
  .item-5 { width: 464px; }
  .item-6 { width: 560px; }
  .item-7 { width: 656px; }
  .item-8 { width: 752px; }
  .item-9 { width: 848px; }
  .item-10 { width: 944px; }
  .item-11 { width: 1040px; }
  .item-12 { width: 1136px; }
  #jobs .container-horizontal :nth-child(1) { order: 2; }
  #jobs .container-horizontal :nth-child(2) { order: 1; }
  #jobs .container-horizontal :nth-child(3) { order: 4; }
  #jobs .container-horizontal :nth-child(4) { order: 3; }
}
@media (min-width: 940px) and (max-width: 1199px) {
  .header {
    display: none !important;
  }
  .item-1 { width: 64px; }
  .item-2 { width: 144px; }
  .item-3 { width: 224px; }
  .item-4 { width: 304px; }
  .item-5 { width: 384px; }
  .item-6 { width: 464px; }
  .item-7 { width: 544px; }
  .item-8 { width: 624px; }
  .item-9 { width: 704px; }
  .item-10 { width: 784px; }
  .item-11 { width: 864px; }
  .item-12 { width: 924px; }
  .item-2 img { max-width: 100%; }
}
@media (max-width: 939px) {
  menu {
    display: none;
  }
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .container, .container-horizontal, .container-vertical {
    display: block;
  }
  .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7, .item-8, .item-9, .item-10, .item-11, .item-12 {
    width: 100%;
  }
  button {
    max-width: 50%;
    float: right;
  }
  #footer .logo, #footer .copyright {
    max-width: 40%;
  }
}

.left-margin-8 {
  margin-left: 8px;
}
h2 {
  font-family: 'DM Serif Display', 'Times New Roman', Times, serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 56px;
  margin-bottom: 24px;
}
h3 {
  font-family: 'DM Serif Display', 'Times New Roman', Times, serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 16px;
}
p, label, a {
  font-size: 16px;
  font-weight: 200;
  line-height: 24px;
  margin-bottom: 18px;
}
a {
  color: #000;
  text-decoration: none;
}
a.button {
  color: #fff;
  background-color: #009DFF;
  border-radius: 20px;
  padding: 10px 18px;
}

input, textarea {
  width: 100%;
  height: 40px;
  border-color: #C8C9CB;
  border-width: 2px;
  border-style: solid;
  border-radius: 2px;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}
textarea {
  height: 138px;
  resize: none;
}
label {
  margin-top: 12px;
  margin-bottom: 12px;
}
input, label {
  display:block;
}
button {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  background-color: #009DFF;
  border-style: none;
  border-radius: 20px;
  padding: 10px 12px;
  width: 100%;
}
a.button:hover, button:hover {
  background-color: #63B6E2;
}
a.button:active, a.button:focus, button:active, button:focus {
  background-color: #3579A5;
}

#header {
  height: 100px;
  /* background-image: url('images/Wave_1x.png'); */
  /* background-image: -webkit-image-set(      
    url('images/Wave_1x.png') 1x,      
    url('images/Wave_2x.png') 2x
  );      
  background-image: image-set(      
    url('images/Wave_1x.png') 1x,      
    url('images/Wave_2x.png') 2x
  );    
  background-repeat: repeat-x;
  background-position-y: bottom; */
  padding-top: 42px;
  padding-bottom: 60px;
  z-index: 2;
  position: relative;
}

#header menu{
  float: right;
  padding-top: 16px;
}
#burger {
  display: none;
}
#hamburger {
  display: none;
}
menu a {
  margin-left: 48px;
}
#wave {
  height: 400px;
  position: relative;
  /* border: 2px solid green; */
  z-index: 1;
  margin-bottom: -80px;
}
#wave img {
  width: 100%;
}
@media (max-width: 1440px) {
  #wave {
    height: 320px;
    overflow: hidden;
    text-align: center;
  }
  #wave img {
    width: 1440px;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;

  }
}
.wave {
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  /* margin-top: -100px;
  margin-bottom: -100px; */
  height: 500px;
  /* border: 1px solid grey; */
  /* background-color: yellow; */
}
#intro {
  z-index: 1;
  position: relative;
}
#about-us, #leads, #team {
  color: #fff !important;
}
#about-us {
  background-color: #3B3F46;
}
#team {
  background-color: #5B5E63;
}
#leads {
  background-color: #797C82;
}
#jobs {
  background-color: #C8C9CB;
}
#contact-us {
  background-color: #E7E8E9;
}
#footer {
  height: 144px;
  color: #3A3F4772;
  padding-top: 48px;
}
#footer .logo {
  height: 48px;
  float: left;
  opacity: 0.16;
}
#footer .copyright {
  color: #C8C9CB;
  margin-top: 16px;
  float: right;
  text-align: right;
}
