body, html {
  margin: 0;
  padding: 0;
  width:100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  color: #343734;
  font-family: 'Source Sans Pro', sans-serif;
}

.page-header {
  position: relative;
}

.page-content {
  max-width: 1140px;
  margin: 50px auto;
  padding: 0 15px;
}

.navbar {
  background-color: #fff;
  padding: 30px 0;
}

.navbar__container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  max-width: 1140px;  
  padding-left: 15px;
  padding-right: 15px;
}

.navbar__item {
  color: rgb(61 84 66);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--brand);
  letter-spacing: 1px;
  margin-left: 30px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-out;
  -moz-transition: color 0.2s ease-out;
  -o-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.navbar__item:hover {
  color: #27b642;
}

.navbar__logo {
  margin-right: auto;
}

.navbar__logo img {
  height: 18px;
  width: auto;
}

@media(max-width: 600px) {
  .navbar__item {
    display: none;
  }

  .navbar__logo {
    margin-left: auto;
  }
}

.address {
  background-color: #556057;
  color: #fff;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 18px;  
  line-height: 28px;
  padding: 50px 0;
  text-align: center;
}
  
.address__container {
  display: flex;
  flex-flow: row nowrap;
  margin: 0 auto;
  justify-content: space-around;
  max-width: 1140px;
}

.address__title {
font-family: var(--brand);
font-size: 30px;
font-weight: 700;
margin-top: 0;
}

.address__item {
font-style: normal;
flex: 0 0 50%;
}

@media(max-width: 600px) {
.address__container {
    flex-flow: column nowrap;
}

.address__item {
    margin-bottom: 40px;
}

.address__item:last-child {
    margin-bottom: 0;
}

.address__title {
    margin-bottom: 15px
}
}
  
.footerbar {
  background-color: #38473a;
  color: #fff;
  font-family: var(--brand);
  font-size: 14px;
  font-weight: 400;
  padding: 20px 0;
}

.footerbar__container {
  max-width: 1140px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
}

.footerbar__nav {
  margin-left: auto;
}

.footerbar__link {
  color: #fff;
}

@media(max-width: 600px) {
  .footerbar__container {
    flex-flow: column nowrap;
    align-items: flex-start;
  }

  .footerbar__text {
    text-align: left;
    margin-bottom: 5px;
  }

  .footerbar__nav {
    margin-left: 0;
  }
}

.page--modal-open {
  overflow: hidden;
}

.page--landing .navbar {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 500
}