/*
blue - 003049
red - d62828
orange - f77f00
yellow - fcbf49
pale yellow - eae2b7

pastel
dark blue - 264653
teal - 2a9d8f
yellow - e9c46a
orange - f4a261
red orange - e76f51

newest blue/white/red
red - e63946
white - f1faee
pale blue - a8dadc
blue - 457b9d
dark blue - 1d3557
*/
html {
  overflow-x: hidden;
}

body {
  margin: 0;
  display: block;
  overflow-x: hidden;
  /*font-family: 'Exo', sans-serif;*/
  font-family: 'Quicksand', sans-serif;
  position: relative;
  background-color: #f6f6f6;
  color: #222222;
}

.body-inner-content {
  padding-top: 60px;
}

h1, h2, h3, h4, h5 {
  padding-top: 0;
  margin-top: 0;
  /*font-family: 'Exo', sans-serif;*/
  font-family: 'Quicksand', sans-serif;
  font-weight: 300;
}

main {
  padding: 0;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 2.5rem;
}

p {
  font-size: 1rem;
}

section:not(.site-header) img {
  max-width: 100%;
}

._am {
  margin: auto;
}

.rotate1 {
  transform: rotate(-.75deg);
}

.rotate2 {
  transform: rotate(.75deg);
}

.pt15 {
  padding-top: 15px;
}

.pb15 {
  padding-bottom: 15px;
}

.pt20 {
  padding-top: 20px;
}

.pb20 {
  padding-bottom: 20px;
}

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb100 {
  padding-bottom: 100px;
}

.text-center {
  text-align: center;
}

.fadeinleft {
  opacity: 0;
  margin-left: -300px;
  max-width: 100%;
}

.fadeinup {
  opacity: 0;
  margin-bottom: -300px;
  max-width: 100%;
}

.row:before,
.row:after {
  display: table;
  content: " ";
}

.row:after {
  clear: both;
}

.navbar {
  z-index: 400;
  padding: 15px 1rem;
  border-bottom: 2px solid #457b9d;
}

.navbar .navbar-brand {
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: -15px;
  margin-top: -15px;
}

.navbar .navbar-brand img {
  height: 60px;
}

.navbar-light .navbar-nav .show>.nav-link, .navbar-light .navbar-nav .active>.nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
  color: #222222;
}

.nav-item {
  position: relative;
}

.nav-item.middle:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #222222;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.25s ease-in-out;
}

.nav-item.middle.active:before {
  visibility: visible;
  transform: scaleX(1);
}

.underline {
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.cta-button {
  min-width: 200px;
  display: inline-block;
  border-radius: 5px;
  background-color: white;
  font-weight: 500;
  padding: 5px 10px;
  color: #457b9d;
  border: 2px solid #457b9d;
  cursor: pointer;
  transition: all .15s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0) 0px 5px 10px 0px;
  text-align: center;
  margin: 10px;
}

.cta-button:hover {
  text-decoration: none;
}

.cta-button.code::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f121";
}

.cta-button.vid::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f008";
}

.cta-button.vid.playing::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f144";
}

.cta-button.link::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f35d";
}

.cta-button a {
  text-decoration: none;
  color: inherit;
}

.cta-button:hover, .cta-button.vid.playing {
  background-color: #457b9d;
  border: 2px solid #457b9d;
  box-shadow: rgba(0, 0, 0, 0.2) -3px 3px 10px 0px;
  color: white;
}

footer {
  padding: 50px 0;
  background-color: #222222;
  position: relative;
  color: white;
}

footer i {
  color: white;
  padding: 0 10px;
}

footer i:hover {}

.pattern-animate {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: repeat;
  overflow: hidden;
  z-index: 0;
  height: 100%;
}

.pattern-animate::before {
  content: "";
  left: 0;
  position: absolute;
  top: 0;
}

.pattern-animate.leaves-white::before {
  animation: scroll-forward 70s linear 0s infinite forwards;
  background-image: url(assets/images/repeatingpng.png);
  background-size: 420px 420px;
  height: calc(100% + 420px);
  width: calc(100% + 420px);
  opacity: .3;
}

@keyframes scroll-forward {
  0% {
    transform: translate3d(0, 0, 1px)
  }

  100% {
    transform: translate3d(-420px, -420px, 1px)
  }
}

.section {
  position: relative;
}

.site-header {
  align-items: flex-start;
  display: flex;
  height: 650px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

.site-header .inner-header {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}

.mask-curve {
  -webkit-mask-image: url(assets/images/header-mask.png);
  mask-image: url(assets/images/header-mask.png);
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.mask-curve-up {
  -webkit-mask-image: url(assets/images/header-mask-up.png);
  mask-image: url(assets/images/header-mask-up.png);
  -webkit-mask-position: center top;
  mask-position: center top;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.site-header .inner-header .mask-image {
  background-image: url(assets/images/blue-abstract-8.jpg);
  /*background-position: 90% 61%;*/
  background-size: cover;
  right: 0;
  width: 100%;
  height: 1085px;
  opacity: 1;
}

.site-header .inner-header .parallax-figure {
  position: absolute;
  right: 16%;
  transition: opacity .2s;
  /*height: 800px;*/
}

.site-header .intro-text {
  align-content: center;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
  height: 100%;
  width: 100%;
  color: white;
  display: flex;
}

.site-header .intro-text h1 {
  font-size: 5rem;
  text-shadow: 5px 6px 6px rgb(0 0 0 / 40%);
}

.site-header hr {
  background-color: white;
  height: 1px;
}

.section.main.about {
  margin-top: -70px;
}

#about-me .intro-card, #contact .intro-card {
  margin-top: 70px;
}

.info-card {
  position: relative;
  padding: 12px;
  border-radius: 10px;
  color: #222222;
}

.info-card div {
  position: relative;
}

.corner-icon {
  position: absolute;
  right: -4%;
  top: -4%;
  z-index: 10;
}

.info-card::before {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  background-size: 10px 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 10px 20px 0px;
  border-radius: 10px;
  background-image: url('assets/images/pattern-dots.png');
}

.info-card.plain::before {
  background-image: none;
}

.info-card .info-inner {
  position: relative;
  background-color: rgb(255, 255, 255, .85);
  ;
  padding: 30px;
  border-radius: 10px;
}

.info-card.bg-white .info-inner {
  padding: 0;
}

.bg-yellow {
  background-color: rgba(241, 226, 111);
}

.bg-green {
  background-color: rgba(0, 128, 119);
}

.bg-blue {
  background-color: #457b9d;
}

.bg-dark-blue {
  background-color: #1d3557;
}

.bg-salmon {
  background-color: rgb(241, 162, 111);
}

.bg-purple {
  background-color: rgb(152, 129, 255);
}

.bg-white {
  background-color: rgb(255, 255, 255);
}

.section.main {
  position: relative;
}

.intro-card {
  z-index: 6;
  margin: auto;
  padding-top: 20px;
}

.intro-card h2 {
  font-weight: 600;
}

.intro-card hr {
  border-top: 3px solid #222222;
  width: 20%;
}

.intro-card div {
  position: relative;
}

.card-column {
  padding-bottom: 50px;
}

.section.skills {

}

.section.education {
  background-image: linear-gradient(180deg, #f6f6f6, #73a4c300);
}

.education .experience-logo {
  max-height: 50px;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 10px;
}

.education .exp-box:not(:last-of-type)::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  content: "\f054";
  position: absolute;
  right: -10px;
  top: 30%;
  font-size: 30px;
}

.education .exp-box:first-of-type::after {
  content: "\f141";
  right: -15px;
}

.skills .card-column img {
  margin: 0 auto;
  max-height: 100px;
  padding-bottom: 10px;
  text-align: center;
  vertical-align: middle;
  transition: all .15s ease-in-out;
}

.skills .card-column img:not(.extra):hover {
  margin-top: -10px;
  margin-bottom: 10px;
}

.notable-highlights .card-column .highlight-box {
  margin: 0 auto;
  height: 300px;
  width: 100%;
  text-align: center;
  vertical-align: middle;
  transition: all .15s ease-in-out;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: all .25s ease-in-out;
  position: relative;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.notable-highlights .card-column .highlight-box .overlay {
  opacity: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  transition: all .25s ease-in-out;
  box-shadow: inset 0 0 100px rgb(0, 0, 0, 0.05);
}

.notable-highlights .card-column .highlight-box .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all .25s ease-in-out;
}

.notable-highlights .card-column .highlight-box .text h5 {
  font-weight: 500;
}

.notable-highlights .card-column .highlight-box .learn-more {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all .25s ease-in-out;
}

.notable-highlights .card-column .highlight-box.hovered .text {
  top: 30%;
  opacity: 1;
}

.notable-highlights .card-column .highlight-box.hovered .learn-more {
  bottom: 30%;
  opacity: 1;
}

.notable-highlights .card-column .highlight-box.hovered .overlay {
  opacity: 1;
}

.section.highlights {
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 20px 0px;
}

.featherlight img {
  max-height: 400px;
  max-width: 100%;
}

.featherlight .inner-block {
  padding: 20px;
  border-top: 2px solid #212529;
  /*box-shadow: inset 0 0 50px rgb(0, 0, 0, 26%);*/
}

.featherlight .featherlight-content.scaled {
  transform: scale(1);
}

.featherlight h3 {
  font-weight: 700;
}

.featherlight h6 {
  color: #bdbdbd;
}

.example-vid {
  display: inline;
}

.loading-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(255 255 255 / 0.75);
  border-radius: 5px;
}

.loading-overlay::before {
  content: url('assets/images/loading50.svg');
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.contact {
  position: relative;
}

.section.contact {
  background-color: #454F9D;
  color: white;
}

.section.contact .intro-card {
  color: white;
}

.section.contact hr {
  border-top-color: white;
}

#contact-form {
  position: relative;
}

#contact-form input:not(.cta-button), #contact-form textarea {
  background: #222222;
  border: 0;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 12pt;
  margin-bottom: 3px;
  outline: none;
  padding: 10px 15px;
  width: 100%;
  border-radius: 5px;
}

#contact-form textarea {
  height: 150px;
}

.g-recaptcha div:first-of-type {
  margin: auto;
}

.zangief.easter-egg img {
  height: 350px;
  position: absolute;
  left: 105%;
  top: -15%;
}

.easter-egg {
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

@media (max-width: 1750px) {
  .site-header .inner-header .parallax-figure {
      right: 0%;
    }
}

@media (max-width: 1200px) {
  .education .exp-box {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .education .exp-box:not(:last-of-type)::after {
    bottom: 0;
    bottom: -20px;
    top: unset;
    right: 50%;
    transform: rotate(90deg);
  }

}

@media (max-width: 992px) {
  .site-header .inner-header .parallax-figure {
    right: -17%;
  }
  .nav-item.middle.active:before {
    width: 10%;
}
}

@media (max-width: 767px) {
  .site-header .inner-header .parallax-figure {
    right: -30%;
    opacity: .35;
  }

  .mask-curve {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .site-header .intro-text h1 {
    font-size: 3.5em;
  }

  .site-header .intro-text h2 {
    font-size: 2em;
  }
}

@media (max-width: 500px) {
  .site-header .inner-header .parallax-figure {
    opacity: 0;
  }
}


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html {
    overflow: hidden;
  }
.ie-block {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  justify-content: center;
  align-items: baseline;
  height: 100%;
}

.ie-block-overlay {
  display: block;
  background-color: black;
  opacity: .75;
  position: absolute;
  z-index: 500;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
}

.outdated {
  z-index: 501;
  background: white;
  padding: 50px;
  opacity: 0;
  transition: all 0.25s ease-in-out;
}

}
/*@keyframes popIn {
  0% {
    transform: scale(0);
  }

  60% {
    opacity: 1;
    transform: scale(1.05);
  }

  80% {
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}*/
