@charset "UTF-8";

/* General Definitions */
html,body {
  margin: 0 0 5px 10px;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #000;
}

a:hover {
  color: #1589e8;
}

a.notxtdecor {
  text-decoration: none;
  background-color: inherit;
  color: inherit;
}

header#header-master {
  position: fixed;
  top: 0;
  padding: 20px 0 10px 0;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  z-index: 999;
}

div#wallpaper {
  background-image: url("../images/background.jpg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center top;
  background-size: cover;
  width: 100%;
  min-width: 500px;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  z-index: -999;
}

div#content {
  padding: 90px 0 0 0;
  max-width: 1000px;
}

div#tagline {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 200%;
  min-height: 40vh;
}

div#after-tagline {
  font-size: 225%;
  font-weight: 300;
}

div.major-subtitle {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 100%;
  margin: 5vh 0 5vh 0;
}

div.major-section {
  min-height:70vh;
}

div.minor-section {
  margin: 2vh 0;
  font-size:200%;
  color: #000;
}

span.minor.subtitle {
  color: #ccc;
}

p.minor-section.description {
  font-size:50%;
  text-transform:none;
  font-weight: normal;
  color: #aaa;
}

img#header-logo {
  height:35px;
}

img.social-icon {
  height: .7em;
}

span.tagline-tag {
  display: block;
  margin: 7vh 0;
}

div.contact-item {
  margin: 5vh 0;
}

table#education-courses {
  font-size: 50%;
  text-align: center;
  width: 80%;
  margin: 2.5vh 0 0 5vw;
  border-collapse: collapse;
}

table#education-courses td {
  padding: 2vh;
}

span.contact.title {
  color: #aaa;
}

span.contact {
  font-size: 200%;
}

div#copyright {
  color: #555;
  font-size: 80%;
}

.unselectable {
  -moz-user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
  cursor: default;
}

/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fade-in.one {
  -webkit-animation-delay: 0.5s;
  -moz-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.fade-in.two {
  -webkit-animation-delay: 1.0s;
  -moz-animation-delay:1.0s;
  animation-delay: 1.0s;
}

.fade-in.three {
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.fade-in.four {
  -webkit-animation-delay: 2.0s;
  -moz-animation-delay: 2.0s;
  animation-delay: 2.0s;
}
