/*  Code By Webdevtrick ( https://webdevtrick.com )  */
@import url('https://fonts.googleapis.com/css?family=Nunito+Sans&display=swap');
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.wrapper {
  margin: 0 auto;
  padding: 0 10.66% 50px;
  width: 100%;
}

article {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.timeline-navigations {
  position: fixed;
  z-index: 99;
  top: 0;
  transition: top .3s ease-out;
}
.timeline-navigations ul {
  list-style: none;
  list-style-position: inside;
  margin: 20px 0;
  padding-left: 5px;
}
.timeline-navigations ul li {
  margin: 20px 0;
  padding-left: 5px;
  list-style-type: none;
  color: #bfc1c3;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all .3s ease-out;
}
.timeline-navigations ul li.active {
  font-weight: bold;
  color: #f94125;
  border-bottom: 1px dotted transparent;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.timeline-navigations ul li:hover {
  color: #f94125;
}

@media (max-width: 375px) {
  
  timeline-navigations {
  position: fixed;
  z-index: 99;
  bottom: 5%;
	left: 5%;
  }
}


.codes{
	bottom: 5%;
	left: 5%;
	position: fixed;
  }
  .codes div {
	border: 2px solid black;
	font-size: 20px;
	padding: 10px;
	background-color: red;
  }
  .codes div a{
	text-decoration: none;
	color: white;
	font-weight: 800;
  }