*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}

html {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-smooth: auto;
  font-weight: 300;
  line-height: 1.5;
  color: #444;
  width: 100%;
}

body {
  position: relative;
  width: 100%;
}

h2 {
  margin: 0;
  padding: 0;
  color: whitesmoke;
  font-family: 'VT323', monospace;
  font-size: 32px;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

a {
  color: whitesmoke;
  text-decoration: none;
  transition: 0.25s;
}

button {
  border: none;
}

.logo {
  position: fixed;
  top: 0;
  left: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90px;
  height: 100px;
  padding: 10px;
/*   background-color: rgba(245, 245, 245, 0.1); */
  background-image: url('../img/kiLogo.jpg');
  z-index: 999;
  background-size: cover;
}
/* .logo span.icon { */
/*   position: relative; */
/*   display: block; */
/*   width: 20px; */
/*   height: 20px; */
/*   border: 2px solid whitesmoke; */
/*   border-radius: 50%; */
/* } */

/* .hamburger { */
/*   position: fixed; */
/*   top: 0; */
/*   right: 0; */
/*   display: flex; */
/*   align-items: center; */
/*   justify-content: center; */
/*   width: 80px; */
/*   height: 80px; */
/*   background: rgba(255, 255, 255, 0.1); */
/*   z-index: 9999; */
/* } */
/* .hamburger.is-open span { */
/*   height: 0; */
/* } */
/* .hamburger.is-open span:before { */
/*   transform: rotate(45deg); */
/* } */
/* .hamburger.is-open span:after { */
/*   transform: rotate(-45deg); */
/* } */
/* .hamburger span { */
/*   position: relative; */
/*   display: block; */
/*   width: 80%; */
/*   height: 2px; */
/*   background-color: whitesmoke; */
/*   border-radius: 99px; */
/* } */
/* .hamburger span:before, .hamburger span:after { */
/*   position: absolute; */
/*   content: ''; */
/*   left: 0; */
/*   width: 100%; */
/*   height: 2px; */
/*   background-color: whitesmoke; */
/*   transition: 0.25s; */
/* } */
/* .hamburger span:before { */
/*   transform: translateY(-5px); */
/* } */
/* .hamburger span:after { */
/*   transform: translateY(5px); */
/* } */

.codepen {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(245, 245, 245, 0.1);
  z-index: 9998;
}

.geekstudios {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(245, 245, 245, 0.1);
  z-index: 9998;
}
.geekstudios > svg {
  width: 50%;
  height: 50%;
}
.geekstudios > svg .circle {
  fill: whitesmoke;
  mask-mode: alpha;
}
.geekstudios > svg .mountains {
  fill: #4DB6AC;
}

nav.main ul {
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  margin: 0;
/*   padding: 20px; */
  background-color: rgba(0, 0, 0, 0.9);
  list-style-type: none;
  transition: 0.25s;
  opacity: 0;
  visibility: hidden;
  z-index: 9998;
}
nav.main ul.is-open {
  opacity: 1;
  visibility: visible;
}
nav.main ul.is-open li {
  opacity: 1;
}
nav.main ul.is-open li:nth-of-type(odd) {
  transform: translateX(0%);
}
nav.main ul.is-open li:nth-of-type(even) {
  transform: translateX(0%);
}
nav.main ul li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 2px;
  opacity: 0;
  transition: 0.25s;
}
nav.main ul li:before {
  position: absolute;
  content: '';
  width: 0;
  height: 100%;
  background-color: transparent;
  transition: 0.25s;
}
nav.main ul li:nth-of-type(odd) {
  transform: translateX(-50%);
}
nav.main ul li:nth-of-type(odd):before {
  left: 0;
}
nav.main ul li:nth-of-type(even) {
  transform: translateX(50%);
}
nav.main ul li:nth-of-type(even):before {
  right: 0;
}
nav.main ul li:hover:nth-of-type(odd):before, nav.main ul li:hover:nth-of-type(even):before {
  width: 100%;
  background-color: #1CB5E0;
}
nav.main ul li.menu-title {
  color: yellow;
  font-family: 'VT323', monospace;
  font-size: 24px;
  font-weight: bold;
}
nav.main ul li a {
  position: relative;
  width: 100%;
  font-family: 'VT323', monospace;
  font-size: 5vh;
  font-weight: bold;
  text-align: center;
}

/* section { */
/*   position: relative; */
/*   display: flex; */
/*   flex-direction: column; */
/*   align-items: center; */
/*   justify-content: center; */
/*   width: 100%; */
/*   height: 100vh; */
/* } */

section.section-1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url('../img/kiHome.jpg');
  background-size: 100% 100%;
  width: 100%;
  height: 100vh;
}

section.section-2 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #d6d6d6;
  width: 100%;
  height: 100vh;
}

section.section-2 img {
  width: 50%;
}

section.section-3 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f2f2f2;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
section.section-3 .section3Left {
  width: 30%;
}

section.section-3 .section3Right {
  width: 90%;
}

.section3Div {
  position: relative;
  width: 65%;
  cursor: pointer;
}

.section3Div > p {
  position: absolute;
  top: 2em;
  left: 9.5em;
  line-height: 2em;
  letter-spacing: 0.1em;
}

section.section-4 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  background-image: url('../img/section-4.jpg');
  background-size: 100% 100%;
  width: 100%;
  height: auto;
}

.section4word {
  position: absolute;
  top: 70px;
  left: 30px;
}

section.section-5 {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-image: url('../img/footer.jpg');
  background-size: cover;
  width: 100%;
  height: 60vh;
  padding-top: 14em;
}

.section-5 div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-5 div span {
  margin-top: 1em;
  font-style: italic;
  letter-spacing: 2px;
  color: #000;
}

.section-5 img {
  border-radius: 50%;
}

.privacy {
  background: #9b9b9b;
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav.dots {
  position: fixed;
  right: 48px;
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 9997;
}
nav.dots a {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  margin: 5px 0;
  background-color: rgba(245, 245, 245, 0.4);
  border-radius: 50%;
  padding: .5em !important;
}
nav.dots a:hover {
  background-color: rgba(245, 245, 245, 0.9);
}
nav.dots a.active {
  background-color: whitesmoke;
  transition: 0.25s;
}

.tooltip {
  position: relative;
}
.tooltip:before, .tooltip:after {
  position: absolute;
  line-height: 1;
  opacity: 0;
  transition: 0.25s;
  visibility: hidden;
}
.tooltip:before {
  content: attr(data-tooltip);
  top: -50%;
  right: 120%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  transform: translateX(-10%);
}
.tooltip:after {
  content: '';
  right: 50%;
  top: 20%;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgba(0, 0, 0, 0.9);
  transform: translateX(-10%);
}
.tooltip:hover:before, .tooltip:hover:after {
  opacity: 1;
  visibility: visible;
}
.tooltip:hover:before {
  transform: translateX(0%);
}
.tooltip:hover:after {
  right: 15px;
  transform: translateX(0%);
}

.fb {
  cursor: pointer;
}
