/*
 * Globals
 */

/*
 * Base structure
 */
body {
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  background-color: #333;
  color: #dadada;
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  text-align: center;
}

h2 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
  color: #adb5bd;
  text-align: center;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 1.05rem;
}
img {
  width: 100%;
  height: auto;
}
/* Links */
a,
a:focus,
a:hover,
.clickable:focus,
.clickable:hover {
  color: #fff;
}
blockquote {
  margin-bottom: .25rem;
}
.fa-li {
  color: #e0dede;
  left: -2.25rem;
  width: 2.25rem;
}
.fa-external-link-alt, fa-external-link-square-alt {
  vertical-align: super;
  font-size: .5rem;
  font-weight: 600;
}
.popover-header {
  display: none;
}
.popover-body {
  background-color: black;
  color: #fff;
  font-size: .75rem;
}
.image-caption {
  font-size: .8rem;
  margin-top: .25rem;
}
.content {
  margin: 0 auto;
  height: 100%;
}
main {
  margin-top: auto;
}
#landing {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
#logo {
  position: fixed;
  top: 35%;
}
#scroll-down {
  position: fixed;
  top: 55vh;
  right: 50%;
}
.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  left: -14px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  -webkit-animation: move 3s linear infinite;
  animation: move 3s linear infinite;
}

.chevron:first-child {
  -webkit-animation: move 3s linear .5s infinite;
  animation: move 3s linear .5s infinite;
}

.chevron:nth-child(2) {
  -webkit-animation: move 3s linear 1s infinite;
  animation: move 3s linear 1s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #656565;
}

.chevron:before {
  left: 0;
  -webkit-transform: skew(0deg, 30deg);
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  -webkit-transform: skew(0deg, -30deg);
  transform: skew(0deg, -30deg);
}

@-webkit-keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  67% {
    opacity: 1;
    -webkit-transform: translateY(40px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(63px);
  }
  67% {
    opacity: .5;
    transform: translateY(80px);
  }
  100% {
    opacity: 0;
    transform: translateY(110px) scale3d(0.5, 0.5, 0.5);
  }
}
section {
  position: relative;
  min-height: 100vh;
  height: 100%;
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #333;
  z-index: 100;
}
section .row {
  margin-bottom: 1rem;
}
.welcome-message {
  min-height: 65vh;
  text-align: left;
}
.welcome-message p:first-child {
  text-align: center;
}
span.gray-letter {
  text-transform: uppercase;
  font-family: Impact, Bookman, "Open Sans", Arial, Helvetica, sans-serif;
}
span.gray-letter:nth-child(1){
  color: #656565;
}
span.gray-letter:nth-child(2){
  color: #797979;
}
span.gray-letter:nth-child(3){
  color: #a0a0a0;
}
span.gray-letter:nth-child(4){
  color: #c5c5c5;
}
span.gray-letter:nth-child(5){
  color: #d8d8d8;
}
span.gray-letter:nth-child(6){
  color: #c5c5c5;
}
span.gray-letter:nth-child(7){
  color: #a0a0a0;
}
span.gray-letter:nth-child(8){
  color: #797979;
}
span.gray-letter:nth-child(9){
  color: #656565;
}
.but-first {
  font-weight: 600;
  color: #92908c;
}
/** HELLO WORLD **/
section.hello-world {
  background-attachment: scroll;
  background-size: auto;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(img/hello_world_xs_test.svg);
  background-color: #171616;
  height: 30vh;
  min-height: 30vh;
  margin: 0 -15px;
}

@media (min-width: 576px) {
  section.hello-world {
    background-image: url(img/hello_world_sm.svg);
    min-height: 65vh;
    height: 65vh;
  }
}
@media (min-width: 768px) {
  section.hello-world {
    background-attachment: fixed;
    background-image: url(img/hello_world_md.svg);
  }
}
@media (min-width: 992px) {
  section.hello-world {
    background-size: auto;
  }
}
section.education-and-certs, section.awards {
  min-height: 85vh;
}

section img {
  max-width: 125px;
}

/* EXPERIENCE */
.toggler {
  float: right;
  font-family: "Font Awesome 5 Free";
}
.toggler i.fas.fa-chevron::before {
  content: "\f077";
}
.collapsed .toggler i.fas.fa-chevron::before {
  content: "\f078";
}
.job {
  text-align: left;
}
.card, .card-header {
  background-color: initial;
}
.card-header {
  border: none;
}
.job-header {
  cursor: pointer;
  margin-bottom: 0;
}
.job-header:hover {
  background-color: rgba(0, 0, 0, .05);
}
.job h3 {
  font-weight: 800;
}
.job h3, .job h4 {
  margin-bottom: .15rem;
}
.dates-employed {
  color: #969696;
  font-size: .95rem;
  font-weight: 800;
}
.job .card-body {
  padding-top: 0;
}
.job .intro p {
  margin-bottom: .5rem;
}
.job li {
  margin-bottom: .5rem;
}

/** TESTIMONIALS **/
.testimonials {
  font-size: .8rem;
}
.testimonials img {
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .attributes {
  margin-top: .5rem;
  font-family: Teko, "Open Sans", Arial, Helvetica, sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #868686;
}
.testimonials .attributes ul {
  list-style-type: none;
  margin: auto;
  padding: 0;
  width: auto;
  display: inline-block;
}
.testimonials .attributes li {
  float: left;
  padding-right: .33rem;
  position: relative;
  line-height: .25rem;
}
.testimonials .content {
  text-align: left;
  max-width: 350px;
  margin: auto;
}

.testimonials .referee {
  margin-top: .25rem;
  margin-bottom: 2rem;
  margin-left: 1rem;
}
cite.company {
  padding-left: .75rem;
}

/* AWARDS */
.clarification {
  margin-top: -1.5rem;
  margin-bottom: 1rem;
  font-size: .8rem;
}

/** SKILLS **/
section.skills {
  min-height: unset;
  margin-bottom: unset;
}
section.skills .row {
  margin-bottom: .5rem;
}
.skills-block {
  max-width: 150px;
}
.skill-cell {
  margin: 0;
  padding: .5px;
  opacity: 1;
}
.skills img {
  width: 75px;
}
.skills .large-skill-cell img {
  width: 151px;
}

.v-spacer {
  position: relative;
  min-height: 4.25rem;
  background-color: #333;
  z-index: 100;
}

/*
 * Page Footer
 */
 .page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4.25rem;
  width: 100%;
  background-color: #333;
  padding-top: .5rem;
  z-index: 100;
 }
.page-footer .inner {
  margin-bottom: 1rem;
  margin-top: .5rem;
}
.page-footer, .page-footer a {
  color: rgba(255, 255, 255, .5);
  line-height: 0;
}
.page-footer ul.more-info {
  margin-bottom: .5rem;
  padding: 0;
}
.page-footer ul.more-info li {
  display: inline-block;
  padding: 0 .5rem;
}
#copy-email-address:hover {
  cursor: copy;
}
img.footer-logo {
  max-width: 10rem;
}
@media (min-width: 768px) {
  section.skills {
    min-height: 85vh;
  }
  .w-md-100 {
    width: 100%!important;
  }
}

@media (min-width: 992px) {
  .skills-block {
    max-width: 180px;
  }
  .skills img {
    width: 90px;
  }
  .skills .large-skill-cell img {
    width: 181px;
    max-width: 181px;
  }
}
