* {
    font-family: 'Open Sans', sans-serif;
}

/* mobile */
@media screen and (max-width: 768px) {
    .is-center-mobile {
        text-align: center;
    }

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

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

.section {
    padding: 60px 200px;
}

/* mobile */
@media screen and (max-width: 768px) {
    .section {
        padding: 30px 20px;
    }
}

.section.maroon {
    background-color: #582423;
    background-image: url('../images/maroon-background.png');
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center center;
}

.section .section-title {
    font-family: Georgia;
    color: #BB8D4A;
    text-transform: uppercase;
    padding-bottom: 30px;
    letter-spacing: 4px;
    font-weight: bold;
}

.section .section-text {
    line-height: 2.2em;
}

.section.maroon .section-text {
    color: #BEAB8F;
}

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

.section .accolade {
    text-align: center;
    text-transform: uppercase;
    color: #FFAE38;
    font-family: Georgia;
    letter-spacing: 3px;
    font-size: 0.8em;
    line-height: 1.6em;
}

.accolade .accolade-container {
  display: inline-block;
  padding-left: 22px;
  padding-right: 20px;
  position: relative;
}

.accolade .accolade-container:before {
  top: -2px;
  left: 0;
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 115%;
  content: " ";
  background-image: url(../images/leaf.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.accolade .accolade-container:after {
  top: -2px;
  right: 0;
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 115%;
  content: " ";
  background-image: url(../images/leaf.png);
  background-size: contain;
  background-repeat: no-repeat;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}

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

.section .accolade:first-of-type {
    padding-top: 0px;
}

.section .section-items .interview-image {
    width: 100%;
}

/* desktop */
@media screen and (min-width: 980px) {
    .section .section-items .column:first-of-type .interview-image {
        padding-right: 20px;
    }

    .section .section-items .column:last-of-type .interview-image {
        padding-left: 20px;
    }
}

/* mobile */
@media screen and (max-width: 768px) {
    .section .section-items .column:first-of-type .interview-image {
        padding-top: 0px;
    }

    .section .section-items .column .interview-image {
        padding-top: 15px;
    }
}

.section .section-items .experience {
    text-align: center;
    background-color: #FFFFFF;
    margin: 0px 55px;
    padding: 10px 0px;
    border-radius: 5px;
    min-height: 225px;
}

/* mobile */
@media screen and (max-width: 768px) {
    .section .section-items .column:first-of-type .experience {
        margin-top: 0px;
    }

    .section .section-items .column .experience {
        margin-top: 15px;
    }
}

.experience .experience-image {
  min-height: 148px;
  display: flex;
  align-items: center;
}

.experience .experience-title {
  text-transform: uppercase;
  font-size: 0.8em;
  line-height: 1.4em;
}

.section .section-items .initiative {
    text-align: center;
    background-color: #D8D8D8;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.initiative .initiative-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* desktop */
@media screen and (min-width: 980px) {
  .initiative .initiative-background {
    background: -moz-linear-gradient(bottom, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.70) 30%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(bottom, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.70) 30%, rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.70) 30% ,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  }
}

/* mobile */
@media screen and (max-width: 768px) {
  .initiative .initiative-background {
    background: rgba(0, 0, 0, 0.8);
  }
}

.initiative .initiative-image {
  display: block;
}

.initiative .initiative-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.initiative.initiative-1 .initiative-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url('../images/globeathon.png');
  background-size: cover;
  background-repeat:no-repeat;
  background-position: center center;
}

/* desktop */
@media screen and (min-width: 980px) {
  .initiative {
    min-height: 430px;
  }

  .initiative .initiative-text {
    padding: 0px 200px;
  }
}

/* mobile */
@media screen and (max-width: 768px) {
  .initiative {
    min-height: 220px;
  }

  .initiative .initiative-text {
    padding: 0px 20px;
  }
}

.initiative .initiative-text .heading {
  font-family: Georgia;
  color: #BEAB8F;
  text-transform: uppercase;
  padding-bottom: 15px;
  letter-spacing: 4px;
  font-weight: bold;
  display: table;
  white-space: nowrap;
  overflow: hidden;
}

/* desktop */
@media screen and (min-width: 980px) {
  .initiative .initiative-text .heading {
    margin-left: 160px;
    margin-right: 160px;
  }
}

.initiative .initiative-text .heading:before, .initiative .initiative-text .heading:after {
  border-top: 1px solid #BEAB8F;
  content: '';
  display: table-cell;
  position: relative;
  top: 0.5em;
  width: 45%;
}

.initiative .initiative-text .heading:before {
  right: 1.5%;
}

.initiative .initiative-text .heading:after {
  left: 1.5%;
}

.initiative .initiative-text .title {
  color: #FFA522;
  font-size: 2.2em;
  padding-bottom: 15px;
}

/* mobile */
@media screen and (max-width: 768px) {
  .initiative .initiative-text .title {
    font-size: 1.8em;
  }
}

.initiative .initiative-text .text {
  color: #BEAB8F;
  padding-bottom: 15px;
}

/*.section .section-items .initiative.initiative-1 {
    background-image: url('../images/globeathon.png');
    background-size: cover;
    background-repeat:no-repeat;
    background-position: center center;
}*/

/* desktop */
/*@media screen and (min-width: 980px) {
    .section .section-items .initiative-1 {
        margin-right: 5px;
    }

    .section .section-items .initiative-2 {
        margin-left: 5px;
    }

    .section .section-items .initiative-3 {
        margin-right: 5px;
    }

    .section .section-items .initiative-4 {
        margin-left: 5px;
    }
}*/

/* mobile */
/*@media screen and (max-width: 768px) {
    .section .section-items .column:first-of-type .initiative {
        margin-top: 0px;
    }

    .section .section-items .column .initiative {
        margin-top: 15px;
    }
}*/

.section .section-items .initiative .heading {
    padding-top: 70px;
}

.page-title {
    font-size: 5em;
    padding-left: 11px;
    font-weight: bold;
    color: #582423;
    opacity: 0.2;
}

/* mobile */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 2.8em;
        padding-left: 0px;
    }
}

.page-title-content {
    padding-top: 30px;
}

/* desktop */
@media screen and (min-width: 980px) {
    .page-title-content .column:last-of-type {
        padding-left: 30px;
    }
}

.page-title-content .small-title {
    padding-top: 5px;
    font-size: 0.9em;
    line-height: 1.9em;
}

.page-title-content .title {
    font-size: 2.1em;
    padding-top: 60px;
    padding-bottom: 30px;
    line-height: 1.4em;
}

.page-title-content .small-yellow-line {
    width: 70px;
    height: 4px;
    background-color: #FFAE38;
    border-radius: 2px;
}

/* mobile */
@media screen and (max-width: 768px) {

    .page-title-content .title {
        padding-top: 30px;
    }

    .page-title-content .small-yellow-line {
        width: 100%;
        margin-bottom: 25px;
    }

    .section-items .interview:not(:first-child) {
      padding-top: 20px;
    }
}

/* tablet */
@media screen and (min-width: 769px) and (max-width: 979px) {
  .page-title-content .title {
    padding-top: 5px;
    font-size: 1.4em;
    padding-bottom: 10px;
  }
}

/* desktop */
@media screen and (min-width: 980px) {

  .interview.interview-1 .interview-holder {
    margin-right: 15px;
  }

  .interview.interview-2 .interview-holder {
    margin-left: 15px;
  }
}
