/*******************************************************************************
* OIA Brand Colors
*******************************************************************************/
/*******************************************************************************
* Base Styles
*******************************************************************************/
* {
  box-sizing: border-box;
}

div,
header,
section,
nav,
a,
ul,
li,
p,
span,
label {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Akzidenz Grotesk';
  src: url("../fonts/AkzidenzGrotesk-Black.eot");
  src: url("../fonts/AkzidenzGrotesk-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/AkzidenzGrotesk-Black.woff") format("woff"), url("../fonts/AkzidenzGrotesk-Black.ttf") format("truetype"), url("../fonts/AkzidenzGrotesk-Black.svg#AkzidenzGrotesk-Black") format("svg");
  font-weight: bold;
}

@font-face {
  font-family: 'Akzidenz Grotesk';
  src: url("../fonts/AkzidenzGrotesk-Roman.eot");
  src: url("../fonts/AkzidenzGrostesk-Roman.eot?#iefix") format("embedded-opentype"), url("../fonts/AkzidenzGrotesk-Roman.woff") format("woff"), url("../fonts/AkzidenzGrotesk-Roman.ttf") format("truetype"), url("../fonts/AkzidenzGrotesk-Roman.svg#AkzidenzGrotesk-Roman") format("svg");
  font-weight: normal;
}

body {
  background: #fff;
  font-family: 'Benton Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: normal;
}

a {
  color: #f36d21;
  text-decoration: none;
}

a:hover {
  color: #55575c;
}

a[href*="mailto:"] {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Akzidenz Grotesk', sans-serif;
  font-weight: bold;
  margin: 0 0 15px 0;
  text-transform: uppercase;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #55575c;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
  color: #58b7b3;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 20px;
}

.inline-header {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  margin-top: 25px;
  padding-bottom: 3px;
}

ul {
  margin: 25px 0 0 50px;
}

ul.reset-list-styles {
  list-style: none;
}

ul.content-list {
  list-style-image: url(../images/list-arrow.png);
}

ul li {
  line-height: 22px;
  margin-bottom: 20px;
  padding-left: 10px;
}

p {
  font-size: 19px;
  line-height: 1.6;
}

img {
  height: auto;
  max-width: 100%;
}

/*******************************************************************************
* Structure
*******************************************************************************/
.row {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
}

.row.fullwidth {
  max-width: 100%;
  padding: 0;
}

.alignleft {
  float: left;
  margin: 0 15px 10px 0;
}

.alignright {
  float: right;
  margin: 0 0 10px 15px;
  text-align: right;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*******************************************************************************
* Buttons
*******************************************************************************/
button {
  border: 0;
  cursor: pointer;
}

.button {
  background: transparent;
  border: 1px solid #f36d21;
  color: #fff;
  display: inline-block;
  font-family: 'Akzidenz Grotesk', sans-serif;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1;
  padding: 12px 12px 9px 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.5s ease-in-out;
  width: auto;
  /* clipboard button styles */
}

.button.white, .button.orange:hover {
  background: #fff;
}

.button:hover, .button.orange, .button.white:hover {
  background: #f36d21;
}

.button:hover, .button.orange, .button.white:hover {
  color: #fff;
}

.button.white, .button.orange:hover {
  color: #000;
}

.button.action::after {
  border: 5px solid transparent;
  border-left: 7px solid #000;
  content: '';
  display: inline-block;
  margin-left: 10px;
  transition: all 0.5s ease-in-out;
}

.button.action:hover::after, .button.orange.action::after, .button.white.action:hover::after {
  border-left: 7px solid #000;
}

.button.orange.action:hover::after, .button.white.action::after {
  border-left: 7px solid #f36d21;
}

.button.back::before {
  border: 5px solid transparent;
  border-right: 7px solid #000;
  content: '';
  display: inline-block;
  margin-right: 10px;
  transition: all 0.5s ease-in-out;
}

.button.back:hover::before, .button.orange.back::before, .button.white.back:hover::before {
  border-right: 7px solid #000;
}

.button.orange.back:hover::before, .button.white.back::before {
  border-right: 7px solid #f36d21;
}

.button#clipboard {
  outline: none;
}

.button#clipboard.copied {
  background: #fff;
  color: #000;
}

/*******************************************************************************
* Helper Classes
*******************************************************************************/
.bold,
strong {
  font-weight: bold;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.vertical-align-center {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
}

.img-wrap {
  background-size: cover;
}

.grey {
  background: #ebebeb;
}

.arrow-top {
  padding-top: 30px;
  position: relative;
}

.arrow-top::before {
  border: 30px solid transparent;
  border-top: 30px solid #ebebeb;
  content: '';
  display: block;
  left: 50%;
  margin-left: -30px;
  position: absolute;
  top: 0;
}

.arrow-top.grey::before {
  border-top: 30px solid #fff;
}

.pre-header-link {
  margin-bottom: 15px;
}

.clearfix {
  clear: both;
  width: 100%;
}

.padding-10 {
  padding-top: 10px;
}

.padding-15 {
  padding-top: 15px;
}

.padding-20 {
  padding-top: 20px;
}

.padding-25 {
  padding-top: 25px;
}

.padding-30 {
  padding-top: 30px;
}

.padding-35 {
  padding-top: 35px;
}

.padding-40 {
  padding-top: 40px;
}

.padding-45 {
  padding-top: 45px;
}

.padding-50 {
  padding-top: 50px;
}

.padding-55 {
  padding-top: 55px;
}

.padding-60 {
  padding-top: 60px;
}

.padding-65 {
  padding-top: 65px;
}

.padding-70 {
  padding-top: 70px;
}

.padding-75 {
  padding-top: 75px;
}

.padding-80 {
  padding-top: 80px;
}

.padding-85 {
  padding-top: 85px;
}

.padding-90 {
  padding-top: 90px;
}

/*******************************************************************************
* Icons
*******************************************************************************/
.icon {
  display: block;
  margin: 0 auto;
  width: 92px;
  height: 92px;
  background-repeat: no-repeat;
  background-image: url(../images/icon-sprite.png);
}

.icon.icon-dollar-sign {
  background-position: 0 0;
}

.icon.icon-hiker {
  background-position: 0 -92px;
}

.icon.icon-operations {
  background-position: 0 -184px;
}

.icon.icon-medal {
  background-position: 0 -276px;
}

.icon.icon-owl {
  background-position: 0 -368px;
}

.icon.icon-handshake {
  background-position: 0 -460px;
}

.icon.icon-people, .icon.icon-member {
  background-position: 0 -552px;
}

.icon.icon-globe {
  background-position: 0 -644px;
}

.icon.icon-money-badge {
  background-position: 0 -736px;
}

.icon.icon-person-question {
  background-position: 0 -828px;
}

.icon.icon-paper {
  background-position: 0 -920px;
}

.icon.icon-leaf {
  background-position: 0 -1012px;
}

.icon.icon-shoe {
  background-position: 0 -1104px;
}

.icon.icon-newspaper {
  background-position: 0 -1196px;
}

.icon.icon-person-add {
  background-position: 0 -1288px;
}

/*******************************************************************************
* Misc
*******************************************************************************/
.slick-next::before,
.slick-prev::before {
  display: none;
}

.column,
.column-1,
.column-2,
.column-3,
.column-4,
.column-5 {
  float: left;
}

.column-5 {
  width: 20%;
}

.column-4 {
  width: 25%;
}

.column-3 {
  width: 33%;
}

.column-2 {
  width: 50%;
}

.column-1 {
  width: 100%;
}

/*******************************************************************************
* Bitly Link
*******************************************************************************/
#bitly {
  opacity: 0;
}

/*# sourceMappingURL=base.css.map */