body {
  font-family: futura-pt, sans-serif;
  font-size: 30px;
  margin: 0px;
  /* padding-bottom: 100px; */
}


.header {
  font-family: montana, sans-serif;
  padding-top: 30px;
  width: 100%;
  display: inline-flex;
  position: fixed;
  height: auto;
  background-color: rgba(255, 255, 255, 1);
  z-index: 1;
}

.logo_container {
  padding-left: 60px;
  width: calc(50% - 60px);
}

.logo_container a {
  text-decoration: none;
}

.logo_container a:visited {
  text-decoration: none;
  color: black;
}

.logo {
  font-size: 70px;
}

.logo a {
  color: black !important;
}

.logo_description {
  font-family: futura-pt, sans-serif;
  font-weight: 300;
  font-size: 20px;
}

.logo_description a {
  color: black;
  text-decoration: none;
}

.logo_description a:visited {
  color: black;
  text-decoration: none;
}

.navigation-bar {
  width: calc(50% - 140px);
  padding-top: 35px;
  padding-right: 60px;
  position: absolute;
  right: 0;
}

.gears_mobile {
  display: none;
}

.header ul {
  display: inline-flex;
  margin-top: 0px;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.header li {
  list-style-type: none;
  font-size: 40px;
}

.header li a {
  color: black !important;
}

.header li a:link {
  text-decoration: none;
}

.header li a:hover {
  border-bottom: 4px solid #2ac28b;
}

.header li a:visited {
  text-decoration: none;
  color: black;
}

span a {
  text-decoration: none;
  color: #217ec5;
}


.col_right_clients ul {
  list-style: none;
  padding-left: 0;
}

.clients li::before {
  content: "•";
  color: #2ac28b;
  font-size: 24px;
}

.clients li {
  color: #217ec5;
  font-size: 24px;
  font-weight: 300;
}

.page_container {
  width: 100%;
  padding-top: 60px;
}

.col_left {
  padding-left: 60px;
  width: calc(50% - 60px); /*calculate actual width */
  float: left;
  padding-top: 100px;
  padding-bottom: 80px;
}

.col_right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 60px;
  width: calc(50% - 140px); /*calculate actual width */
  top: 133px;
  height: calc(100% - 250px);
  /*transform: translateY(-50%);*/
  right: 0;
  position: fixed;
}

.col_right img {
  max-width: 100%;
  max-height: 100%;
}

.col_right_clients {
  padding-right: 60px;
  width: calc(50% - 140px); /*calculate actual width */
  right: 0;
  position: absolute;
  padding-top: 100px;
}

.col_right_clients_header {
  font-size: 24px;
  font-weight: 300;
}

p.emphasized {
  color: #217ec5;
  font-weight: 400;
  font-size: 26px;
}

p.emphasized_contact {
  color: #217ec5;
  font-weight: 400;
  font-size: 26px;
}

p.body_text {
  color: black;
  font-weight: 300;
  font-size: 24px;
}

p.body_text_contact {
  color: black;
  font-weight: 300;
  font-size: 24px;
}

p.body_text_contact a {
  text-decoration: none;
  color: #217ec5;
}

p.body_text_smaller {
  color: black;
  font-weight: 300;
  font-size: 20px;
}

h2 {
  color: #217ec5;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 0px;
  cursor: pointer;
}

h2:hover {
  text-decoration: underline;
  text-decoration-color: #2ac28b !important;
}

h3 {
  font-weight: 300;
  font-size: 20px;
  color: #217ec5;
  margin-top: 0px;
}

h3 a {
  text-decoration: none;
  color: #217ec5;
}

p.employee_bio {
  font-weight: 300;
  color: black;
  font-size: 24px;
}

.drop-down-text {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.2s;
  /*padding-bottom: 10px;*/
}

.drop-down-text.expanded {
  max-height: none;
  transition: max-height 0.5s;
}

.drop-down-block {
  position: relative;

}

.drop-down-block span {
  top: 0;
  right: 0;
  position: absolute;
}

.drop-down-block span:after {
  content: '+';
}

.drop-down-block.expanded span:after {
  content: '-';
}

.footer {
  position: fixed;
  font-family: montana, sans-serif;
  width: 100%;
  bottom: 0px;
  text-align: right;
  padding-top: 60px;
  padding-bottom: 40px;
  margin-left: -80px;
  z-index: -1;
}

.footer a {
  color: black !important;
  text-decoration: none !important;
}

@media all and (max-width: 1000px) {
  .header li {
    font-size: 30px;
  }

  .logo_description {
    font-size: 18px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    margin-top: 10px;
  }

  p.body_text_contact a {
    text-decoration: none;
    color: #217ec5;
  }

}

@media all and (max-width: 800px) {
  .header {
    position: relative;
    display: block;
    height: auto;
  }

  .logo_container {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }

  .logo {
    font-size: 60px;
  }

  .logo_description {
    font-size: 13px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .logo_description a {
    color: black;
    text-decoration: none;
  }

  .logo_description a:visited {
    color: black;
    text-decoration: none;
  }

  .navigation-bar {
    width: 100%;
    padding-top: 0px;
    padding-right: 20px;
    position: relative;
  }

  .header ul {
    display: flex;
    margin-top: 0px;
    justify-content: space-between;
    padding: 10px 50px 10px 50px;
    margin-bottom: 0;
    box-sizing: border-box;
  }

  .header li {
    display: inline-block;
    font-size: 30px;
  }

   body {
    padding-bottom: 0px;
  }

  .page_container {
    padding-top: 0;
  }

  .col_left {
    padding: 50px;
    width: 100%;
    padding-top: 0;
    padding-bottom: 20px;
    box-sizing: border-box;
    text-align: center;

  }

  p.emphasized {
    margin-top: 10px;
    margin-bottom: 0;
    text-align: left;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    margin-top: 20px;
    font-size: 18px;
  }

  h3 a {
    text-decoration: none;
    color: #217ec5;
  }

  span a {
    text-decoration: none;
    color: #217ec5;
  }

  .drop-down-text.expanded {
    max-height: none !important;
  }

  .col_right {
    display: none;
  }

  .col_right_clients {
    width: 100%;
    padding: 0;
    position: relative;
    top: auto;
    text-align: left;
    padding: 50px;
    box-sizing: border-box;
  }

  .col_right_clients_header {
    padding-left: 0;
    margin: 0;
  }

  .col_right_clients ul {
    padding-left: 0;
  }

  .gears_mobile {
    display: block;
  }

  .gears_mobile img {
    width: 70%;
    margin: 0 auto;
    display: block;
  }

  p.body_text {
    text-align: left;
    margin-bottom: 0;
  }

  p.body_text_smaller {
    font-size: 19px;
    text-align: left;
  }

  p.employee_bio {
    text-align: left;
  }

  p.body_text_contact {
    padding-bottom: 20px;
  }

  p.body_text_contact a {
    text-decoration: none;
    color: #217ec5;
  }

  .drop-down-block {
    text-align: left;
  }

  /* .drop-down-block span {
    display: none;
  } */

  .footer {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0;
    color: black !important;
    text-decoration: none !important;
    z-index: -1;
    box-sizing: border-box;
    padding: 50px;
    font-size: 25px;
  }

  .footer a {
    color: black !important;
    text-decoration: none !important;
  }
}
