@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300:italic,600,700);
body {
  font: 16px/1.6 'Open Sans', sans-serif;
  color: #626262;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 300;
  text-transform: uppercase;
}

h1 p {
  margin: 0;
}

h2 {
  margin: 0 0 20px;
  font-style: italic;
  font-family: Georgia;
  font-weight: 700;
  text-align: center;
}

h2 p {
  margin: 0;
}

[call-to-action] button {
  display: block;
  margin: 40px auto 0;
  padding: 9px 61px;
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #8d8d8d;
  border: 1px solid #fff;
}

[call-to-action] button:hover {
  cursor: pointer;
  background: #a7a7a7;
}

header {
  padding: 10px 0;
  background-color: #202020;
  border-bottom: 1px solid #fff;
  color: #fff;
}

header .row {
  display: flex;
  align-items: center;
}

header #header-about-me.right {
  text-align: left;
}

header #header-about-me.right .profile-image {
  float: left;
  margin: 0 10px 0 0;
}

header #header-about-me.right social-media-links {
  display: none;
}

.social {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: right;
}

.social li {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  cursor: pointer;
}

.social li svg {
  width: 16px;
  height: 16px;
}

.social li svg path {
  fill: #bababa;
}

.social li:hover svg path {
  fill: #fff;
}

section {
  padding: 60px 0 0;
}

section.hero {
  position: relative;
  padding: 35px 0;
  background: url(../images/hero-bg.jpg) no-repeat;
  background-size: cover;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

section.hero .texture {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: url(../images/texture.png) repeat;
}

section #video {
  padding: 30px;
  border: 1px solid #c2c2c2;
}

section #video img {
  display: block;
  width: 100%;
}

footer {
  padding: 90px 0;
  margin-top: 60px;
  background: url(../images/footer-bg.png) no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.modal {
  text-align: left;
}

.modal .modal-header {
  background-color: #202020;
  color: #fff;
}

.modal .modal-header .inner h4 {
  color: #fff;
}

.modal .modal-body {
  color: #626262;
}

.modal .modal-body img {
  display: block;
  max-width: 100%;
}

.modal .modal-body img.left {
  margin-bottom: 20px;
}

.modal .row {
  padding: 0 !important;
}

#loadingGraphic {
  display: none;
}

#loader {
  width: 44px;
  height: 44px;
  margin: 6px auto;
  -webkit-animation: 1s ease-in-out infinite animball_two;
  animation: 1s ease-in-out infinite animball_two;
}

#loader .loaderBall {
  width: 44px;
  height: 44px;
  position: absolute;
}

#loader .loaderBall .ball {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-animation: 1s ease-in-out infinite animball_one;
  animation: 1s ease-in-out infinite animball_one;
}

#loader .loaderBall .ball.ball1 {
  background-color: #202020;
  top: 0;
  left: 0;
}

#loader .loaderBall .ball.ball2 {
  background-color: #202020;
  top: 0;
  left: 24px;
}

#loader .loaderBall .ball.ball3 {
  background-color: #202020;
  top: 24px;
  left: 0;
}

#loader .loaderBall .ball.ball4 {
  background-color: #202020;
  top: 24px;
  left: 24px;
}

@-webkit-keyframes animball_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}

@keyframes animball_one {
  0% {
    position: absolute;
  }
  50% {
    top: 12px;
    left: 12px;
    position: absolute;
    opacity: 0.5;
  }
  100% {
    position: absolute;
  }
}

@-webkit-keyframes animball_two {
  0% {
    -webkit-transform: rotate(0deg) scale(1);
  }
  50% {
    -webkit-transform: rotate(360deg) scale(1.3);
  }
  100% {
    -webkit-transform: rotate(720deg) scale(1);
  }
}

@keyframes animball_two {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(360deg) scale(1.3);
  }
  100% {
    transform: rotate(720deg) scale(1);
  }
}

@media (max-width: 767px) {
  body.modal-open {
    position: fixed;
    width: 100%;
  }
  button {
    font-size: 20px;
  }
  header .row {
    display: block;
  }
  .social {
    margin: 20px 0 0;
    text-align: center;
  }
  section #video {
    padding: 10px;
  }
}
