html {
  height: 100%;
}

body {
    min-height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    font-family: 'Lato', sans-serif;
}

.section {
    position: relative;
    min-height: 100%;
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 15px;
}

.section:after {
    content: '';
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, .5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.section .container {
    z-index: 2;
    max-width: 600px;
}

.section p {
    color: #EEEEEE;
    font-size: 20px;
    line-height: 30px;
    font-weight: 700;
    letter-spacing: .3px;
}

.section h1 {
    color: #EEEEEE;
    font-size: 35px;
    font-weight: 700;
}

.section a {
    display: inline-block;
    margin: auto;
    background-color: #FFFFFF;
    color: #101010;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

.section__down-arrow {
    color: #EEEEEE;
    background-image: url('/images/down.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    position: absolute;
    height: 25px;
    width: 25px;
    left: 50%;
    margin-left: -12.5px;
    bottom: 15px;
    cursor: pointer;
}

#password-form input[type="password"] {
    width: 100%;
    background-color: #000000;
    border: none;
    padding: 10px 20px 13px 20px;
    color: #dddddd;
    letter-spacing: 6px;
    text-align: center;
}

#password-form input[type="submit"] {
    width: 100%;
    background-color: #000000;
    border: none;
    padding: 10px 20px 13px 20px;
    color: #dddddd;
    text-transform: uppercase;
    font-weight: 600;
}

.timeline {
  display: flex;
  margin: 0 auto;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 700px;
  position: relative;
}
.timeline__content-title {
  font-weight: 600;
  font-size: 20px;
  margin: 12px 0 7px 0;
  transition: .4s;
  padding: 0 10px;
  box-sizing: border-box;
  color: #101010;
  text-align: center;
}
.timeline__content-desc {
  margin: 0;
  font-size: 20px;
  box-sizing: border-box;
  color: #101010;
  font-weight: normal;
  line-height: 25px;
  text-align: center;
}
.timeline:before {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  content: "";
  background: #101010;
}
@media only screen and (max-width: 767px) {
  .timeline:before {
    left: 40px;
  }
}
.timeline-item {
  padding: 40px 0;
  transition: .5s;
  box-sizing: border-box;
  width: calc(50% - 40px);
  display: flex;
  position: relative;
}
.timeline-item .timeline__content-title {
  margin: -10 0 20px 0;
}
.timeline-item:before {
  content: attr(data-text);
  letter-spacing: 3px;
  width: 100%;
  position: absolute;
  color: #101010;
  font-size: 13px;
  border-left: 2px solid rgba(255, 255, 255, 0.5);
  margin-top: -5px;
  padding-left: 15px;
  right: calc(-100% - 56px);
  top: 50%;
  transition: .3s all .2s;
}
.timeline-item:nth-child(even) {
  align-self: flex-end;
}
.timeline-item:nth-child(even):before {
  right: auto;
  text-align: right;
  left: calc(-100% - 56px);
  padding-left: 0;
  border-left: none;
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  padding-right: 15px;
}
@media only screen and (max-width: 767px) {
  .timeline-item {
    align-self: baseline !important;
    width: 100%;
    padding: 0 30px 80px 80px;
  }
  .timeline-item:before {
    left: 10px !important;
    padding: 0 !important;
    top: 50px;
    text-align: center !important;
    width: 60px;
    border: none !important;
  }
  .timeline-item:last-child {
    padding-bottom: 40px;
  }
}
.timeline__img {
  max-width: 100%;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.4);
}
.timeline-container {
  width: 100%;
  position: relative;
  padding: 40px 5px;
  transition: .3s ease 0s;
}
.timeline-container:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #f5f4f0;
}
.timeline-header {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.timeline-header__title {
  color: #101010;
  font-size: 46px;
  font-weight: normal;
  margin: 0;
}
