@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Lato:100,300,400,700");
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

img {
  width: 100%;
  height: auto;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

.header {
  background: rgba(238, 238, 238, 0.5);
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1040;
  transition: all 0.3s ease;
}
.header.is--active {
  opacity: 1;
  position: fixed;
}
.header__title {
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: white;
  text-align: center;
  font-weight: 300px;
}

.footer {
  background: #333;
  color: #eee;
}
.footer__copyright {
  text-align: center;
  font-weight: 300;
  margin: 0;
  padding-bottom: 12px;
}
.footer__text {
  text-align: center;
  text-transform: uppercase;
  margin: 0;
  padding-top: 16px;
  padding-bottom: 16px;
}

.section-navigate {
  position: fixed;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  z-index: 1031;
  opacity: 1;
  transition: opacity 0.05s ease;
}
.section-navigate.is--inactive {
  opacity: 0;
}
.section-navigate__items:before {
  content: "";
  width: 1px;
  height: 180%;
  background: linear-gradient(transparent 0, white 15%, white 85%, transparent);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-navigate__link {
  text-decoration: none;
  position: relative;
}
.section-navigate__link:before {
  content: "●";
  width: 20px;
  height: 20px;
  font-size: 13px;
  line-height: 26px;
  color: white;
  position: relative;
  left: 2px;
}
.section-navigate__link:hover .section-navigate__name {
  opacity: 1;
}
.section-navigate__link.is--active:before {
  content: "●";
  width: 20px;
  height: 20px;
  font-size: 20px;
  left: 0;
}
.section-navigate__name {
  position: absolute;
  top: 5px;
  right: 23px;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 100;
  letter-spacing: 2px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.section__first, .section__second, .section__third, .section__fourth, .section__fifth {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 6em;
  text-transform: uppercase;
  font-weight: bold;
  font-weight: 300;
  color: white;
  transition: opacity 0.4s ease;
}
.section__first.is--inactive, .section__second.is--inactive, .section__third.is--inactive, .section__fourth.is--inactive, .section__fifth.is--inactive {
  opacity: 0;
}
.section__first {
  position: relative;
}
.section__first-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  width: 85%;
}
.section__second {
  background: seagreen;
}
.section__second .section-card__content, .section__second .section-card__title {
  text-align: center;
}
.section__second .section-card__title {
  font-size: 16px;
}
.section__second .section-card__content {
  font-size: 14px;
  text-transform: none;
  line-height: 1.4;
  letter-spacing: 1px;
}
.section__second-card {
  width: 27.5%;
  margin-left: 20px;
  margin-right: 20px;
  background: rgba(0, 0, 0, 0.15);
  padding: 10px;
  box-shadow: 1px 1px 7px black;
}
.section__second-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section__third {
  background: steelblue;
  display: flex;
  flex-direction: column;
}
.section__third-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section__third-left, .section__third-right {
  font-size: 12px;
  width: 40%;
  line-height: 1.5;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
}
.section__third-title {
  text-align: center;
  margin: 10px;
}
.section__fourth {
  background: gold;
  color: #444;
}
.section__fourth-content {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.4;
}
.section__fourth-title {
  margin-top: 80px;
  font-size: 36px;
  font-weight: 600;
  text-align: center;
}
.section__fifth {
  position: relative;
  font-weight: 100;
  color: #333;
  background: radial-gradient(center, lightgrey, white);
}