body {
  max-width: 1400px;
  margin: auto !important;
}

p,
li,
a {
  font-family: roboto, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 18px;
  color: #757575;
  line-height: 1.75rem;
}

h2 {
  font-family: lora, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.75rem;
  color: #2c7e9e;
  margin-top: 0;
}

.container {
  width: 85%;
  margin: auto;
}

.block {
  margin-bottom: 3rem;
}

header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-bottom: 3rem;
}

header #logo {
  padding-left: 7rem;
  display: flex;
}

header #logo img {
  align-self: center;
  padding-top: 1rem;
  width: 50%;
  min-width: 300px;
}

header #contact {
  padding-right: 7rem;
  justify-self: end;
  text-align: right;
}

header #contact p {
  font-size: 1.25rem;
  line-height: 0.5rem !important;
}

header #contact p a {
  font-size: 1.25rem;
  line-height: 0.5rem !important;
}

#coloredBars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1rem;
}

.bar {
  height: 1.25rem;
}

#coloredBars div:nth-child(1) {
  background-color: #42bbeb;
}

#coloredBars div:nth-child(2) {
  background-color: #659aae;
}

#coloredBars div:nth-child(3) {
  background-color: #2c7e9e;
}

#coloredBars div:nth-child(4) {
  background-color: #88cfeb;
}

#coloredBars div:nth-child(5) {
  background-color: #1e556b;
}

header #contact>div:nth-child(2) {
  padding-top: 1rem;
}

#headline {
  background-color: #2c7e9e;
  font-family: lora, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}

#headline p {
  width: 70%;
  margin: 0 auto;
  padding: 3rem 0;
  color: #dee6eb;
  line-height: 1.5rem;
}

ul {
  margin: 0;
}

ul.dashed {
  list-style-type: none;
}

ul.dashed>li:before {
  content: "-  ";
  text-indent: -50px;
}

#services {
  background-color: #f0f0f0;
  padding: 1.5rem 0;
}

#about {
  border-top: 3px solid #1e556b;
  border-bottom: 3px solid #1e556b;
  padding-top: 1.5rem;
}

#about .container {
  /* position: relative; */
  /* width: 80%; */
  display: grid;
  grid-template-columns: 30% 70%;
}

#about .container img {
  min-width: 300px;
  width: 100%;
  height: auto;
  align-self: end;
}

#about .container div:nth-child(2) {
  max-width: 80vw;
  align-self: center;
  padding: 4rem 0 4rem 2rem;
}

footer {
  background-color: #f0f0f0;
}

footer p {
  margin: 0 auto;
  padding: 1rem 0;
  text-align: center;
  font-size: 14px;
}

@media only screen and (max-width: 1200px) {
  header #logo {
    padding-left: 3rem;
  }

  header #contact {
    padding-right: 3rem;
  }

  #about .container {
    grid-template-columns: 40% 60%;
  }
}

@media only screen and (max-width: 1024px) {
  #about {
    /* padding: 1.5rem;
    padding-bottom: 0; */
  }

  #about .container {
    grid-template-columns: 1fr;
  }

  #about .container img {
    /* display: none;
    height: 90%;
    width: auto; */
    width: 50%;
    height: auto;
    align-self: end;
    justify-self: center;
    order: 2;
  }
}

@media only screen and (max-width: 768px) {
  header {
    grid-template-columns: 1fr;
  }

  header #logo {
    padding-left: 0;
    margin-bottom: 2rem;
  }

  header #logo img {
    margin: auto;
  }

  header #contact {
    padding-right: 0;
    margin: auto;
    text-align: center;
  }

  #about .container {
    /* display: block; */
    /* grid-template-columns: 1fr;
    grid-template-rows: 50vh auto; */
  }


  #about .container div:nth-child(2) {
    /* height: 100%; */
    padding: 0;
    /* margin: 4rem 0 4rem 0; */
  }
}