* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: white;
}

p,
a,
address {
  font-size: 1em;
}

a {
  text-decoration: none;
  color: #000000;
}

address {
  font-style: normal;
}

header,
section,
footer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.content {
  width: 100%;
  max-width: 1200px;
}

header .content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: white;
  padding: 0 1em;
  position: fixed;
  top: 2em;
  width: 100%;
  z-index: 1000;
}

.header-item {
  margin: auto 0.5em;
  background-color: #ffffffcc;
  color: black;
  padding: 0.5em 1em;
  border-radius: 1em;
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 2px 5px #00000033;
  white-space: nowrap;
  flex: 1;
  transition: all 0.15s ease-out;
}

.header-item:hover{
  transform: scale(1.1);
}

.main {
  min-height: 100vh;
  background: url("/assets/docks.png") no-repeat center center fixed;
  background-size: cover;
  border-bottom: 50px solid #609cf4;
}

.main h1 {
  text-align: center;
  font-size: 4.5em;
  margin: 25vh 0 0;
  text-shadow: 0 0 1em #000000;
}

.main p {
  max-width: 600px;
  margin: 0.25em auto 0;
  text-align: center;
  font-size: 1.5em;
  text-shadow: 0 0 1em #000000;
}

.about {
  background: url("/assets/warehouseman.png") no-repeat right center;
  background-size: contain;
}

.about .left {
  max-width: 60%;
  padding: 6em 0;
  margin: 0 0 0 1em;
  position: relative;
}

.about p {
  color: #000000;
  font-size: 1.25em;
  margin: 0 0 1.5em;
}

.about .cold-icon {
  width: 150px;
  position: absolute;
  right: calc(-150px * 2);
  bottom: 4em;
}

.services {
  padding: 5em 1em;
  background: #003968;
  background: linear-gradient(
    180deg,
    #003968 0%,
    #023562 33%,
    #0a2d51 66%,
    #102746 100%
  );
}

.services .content {
  display: flex;
}

.services .half {
  width: 50%;
}

.services .half:first-child div {
  padding: 1em 4em 1em 0;
  border-right: 8px solid #ffffff;
}

.services .half:last-child {
  padding: 1em 0 1em 4em;
}

.services img {
  height: 100%;
  max-height: 400px;
  margin: 0 auto;
  display: block;
}

.services h2 {
  font-size: 54px;
}

.services p {
  font-size: 1.5em;
}

.address {
  padding: 2em 0;
}

.address .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.address h2 {
  color: #013664;
  font-size: 40px;
  font-weight: bold;
}

.address p {
  margin: 0;
  color: #000000;
  font-size: 1.5em;
}

.address .bubble {
  margin: 4em 0 0;
  min-width: 700px;
}

footer {
  padding: 3em 0;
  background-color: #001523;
}

footer p {
  margin: 0;
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
}

/* General */
.bubble {
  padding: 0.25em 1em;
  margin: 0 0 0 -1em;
  border-radius: 1em;
  background-color: #053477;
}

.bubble > p {
  margin: 0;
  color: #ffffff;
  text-align: center;
}

.show {
  display: unset;
}

.hide {
  display: none;
}

@media screen and (max-width: 750px) {
  .show {
    display: none;
  }
  .hide {
    display: unset;
  }

  header .content {
    flex-wrap: wrap;
    top: 1em;
  }

  .header-item {
    width: unset;
    min-width: unset;
    margin: 0.25em;
    font-size: 1em;
    white-space: nowrap;
  }

  .main {
    padding: 0 1em;
    min-height: 60vh;
    background: url("/assets/docks.png") no-repeat center top fixed;
    background-size: 100vh 60vh;
    border-bottom: 20px solid #609cf4;
  }

  .main h1 {
    font-size: 2em;
    margin: 40% 0 0.5em;
  }
  .main p {
    max-width: 375px;
    font-size: 1em;
  }

  section + .cold-icon {
    display: block;
    width: 40%;
    margin: calc(-25% + 10px) auto 0;
  }

  .about {
    padding: 4em 1em;
    background: none;
  }

  .about .left {
    max-width: 100%;
    padding: 0;
    margin: 0 0 0 1em;
  }

  .about .bubble {
    margin: 4em 0 0;
  }

  .services {
    padding: 4em 2em;
  }

  .services .content {
    display: flex;
    flex-wrap: wrap;
  }

  .services .half {
    width: 100%;
  }

  .services .half:first-child div {
    padding: 0 0 2em;
    border-right: none;
    border-bottom: 2px solid #ffffff;
  }

  .services .half:last-child {
    padding: 1em 0 0;
  }

  .services img {
    width: 80%;
    height: unset;
    max-height: unset;
    margin: 0 auto;
    display: block;
  }

  .services h2 {
    font-size: 2em;
    text-align: center;
  }

  .services p {
    font-size: 1em;
  }

  .address {
    padding: 2em 2em 4em;
  }

  .address .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .address h2 {
    font-size: 2em;
    text-align: center;
  }

  .address p {
    font-size: 1em;
    text-align: center;
  }

  .address .bubble {
    margin: 3em 0 0;
    min-width: 100%;
  }

  footer {
    padding: 3em 4em;
  }

  footer p {
    margin: 0 0 1em;
    font-size: 1em;
  }

  /* General */
  .bubble {
    border-radius: 5em;
  }
}
