body, .header h2 {
  font-family: 'Open Sans Condensed', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', serif;
}

body {
  height: 245mm;
  width: 180mm;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
  color: #333;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  color: #5BC0BE;
  text-decoration: none;
  transition: 0.15s ease-in-out;
}
a:hover {
  color: #40a8a6;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 3px solid #333;
}
.header .header__name {
  flex: 0 0 auto;
  padding-bottom: 1em;
}
.header .header__name h1 {
  color: #5BC0BE;
}
.header h1, .header h2 {
  margin-top: 0;
  margin-bottom: 0;
}
.header h2 {
  font-weight: 300;
}
.header .header__contact {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header .header__contact .header__contact-field {
  flex: 0 0 auto;
  font-size: 1.2em;
  margin-bottom: 1em;
}
.header .header__contact .header__contact-label {
  display: inline;
  text-transform: uppercase;
  font-weight: 600;
}
.header .header__contact .header__contact-field {
  display: block;
}

.resume-body {
  display: flex;
  justify-content: space-between;
}
.resume-body .resume-body__left {
  flex: 0 0 auto;
  width: 70%;
}
.resume-body .resume-body__right {
  flex: 0 0 auto;
  width: 25%;
}
.resume-body .resume-body__right h2 {
  font-weight: bold;
}

.experience-list {
  padding-bottom: .5em;
  border-bottom: 2px solid #333;
}
.experience-list:last-of-type {
  border-bottom: 0;
}
.experience-list h2 {
  font-weight: bold;
  margin-bottom: 0;
}
.experience-list .experience {
  border-bottom: 1px solid #EBEBEB;
  padding-bottom: 1em;
}
.experience-list .experience:last-of-type {
  border-bottom: 0;
}
.experience-list .experience__title {
  display: flex;
  align-items: stretch;
  line-height: 1em;
}
.experience-list .experience__title h3 {
  flex: 0 0 auto;
  display: block;
  vertical-align: bottom;
  height: 16px;
  margin-bottom: 0;
  margin-right: 1em;
}
.experience-list .experience__title h5 {
  flex: 0 0 auto;
  display: block;
  vertical-align: bottom;
  height: 16px;
  margin-bottom: 0;
  line-height: 1em;
  font-style: italic;
}
.experience-list .experience__title h5 span {
  font-weight: 600;
  font-style: inherit;
}
.experience-list .experience__date {
  display: block;
  margin-bottom: 1em;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.experience-list .experience__info {
  margin: 0;
}

.skill-breakdown__field {
  display: flex;
  justify-content: flex-sart;
}
.skill-breakdown__field .skill-breakdown__label {
  flex: 0 0 auto;
  display: block;
  width: 40px;
}
.skill-breakdown__field .skill-breakdown__value {
  flex: 0 1 auto;
  display: block;
  width: 100%;
  color: red;
  height: 1em;
}
.skill-breakdown__field .skill-breakdown__value .value {
  background-color: #5BC0BE;
  width: 100%;
  height: 100%;
}
.skill-breakdown__field .skill-breakdown__value .value.val-100 {
  width: 100%;
}
.skill-breakdown__field .skill-breakdown__value .value.val-91 {
  width: 91%;
}
.skill-breakdown__field .skill-breakdown__value .value.val-75 {
  width: 75%;
}
.skill-breakdown__field .skill-breakdown__value .value.val-60 {
  width: 60%;
}
.skill-breakdown__field .skill-breakdown__value .value.val-50 {
  width: 50%;
}

.social {
  margin-bottom: 1.5em;
}
.social .fa {
  width: 25px;
}

.resume-note {
  font-size: .9em;
  color: #999999;
}

.resume-print {
  position: fixed;
  bottom: 1em;
  right: 1em;
  background-color: #5BC0BE;
  border-radius: 50%;
  height: 2em;
  width: 2em;
  font-size: 1.5em;
  cursor: hand;
  cursor: pointer;
  transition: 0.15s ease-in-out;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.75);
}
.resume-print:hover {
  color: white;
}
.resume-print:active, .resume-print:focus {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.resume-print .fa {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media print {
  .page-wrap .top-boxes,
  .page-wrap .resizer {
    display: none;
  }

  .skill-breakdown__value {
    -webkit-print-color-adjust: exact;
  }

  .resume-print {
    display: none;
  }
}
