body{
	margin: 0px;
}
.header-holder{
	position: fixed;
    width: 380px;
    background-color: #13111b;
    height: 130vh;
    z-index: 1;
    top: 0;
    left: 0;
}
.header-wrapper{
	padding-top: 150px;
    padding-left: 75px;
    padding-right: 40px;
    position: relative;
}

/*-----------------------------side nav-----------------------------*/





.sidenavicon{
	font-size:30px;
	cursor:pointer;
	color: #c5945c;
	margin-left: 20px;
    margin-top: 20px;
}
.sidenav {
  height: 130vh;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #c5945c;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
  color: #fff;
  font-size: 28px;
  line-height: 40px;
  font-weight: 700;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.title-my-info{
	color: #c5945c;
	font-size: 15px;
}
.my-info-text{
	color: white;
	font-size: 20px;
	line-height: 10px;
    letter-spacing: 2px;

}
.big-num{
	position: fixed;
    width: 380px;
    left: 0;
    bottom: 30px;
    padding-left: 75px;
    z-index: 1;
}
.current-big-num{
	font-size: 160px;
    -webkit-text-stroke: 3px #d8af81;
    color: transparent;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -4px;
    position: relative;
    margin-top: 20px;
    z-index: 2;
    counter-reset: section;
}
.icon-scroll {
    color: #d8af81;
    width: 38px;
    height: 60px;
    margin-left: -20px;
    bottom: 25px;
    margin-top: -35px;
    box-shadow: inset 0 0 0 3px;
    border-radius: 25px;
    transition: right .5s;
}
.icon-scroll:before {
	background-color: #d8af81;
    content: '';
    width: 8px;
    height: 8px;
    margin-left: -4px;
    top: 8px;
    border-radius: 4px;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-name: scroll;
    left: 50%;
}
.icon-scroll:after {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: #13111b;
    width: 58px;
    height: 80px;
    border-radius: 25px;
    transform: translate(-10px,-10px);
    transition: all .3s;
}
.icon-scroll, .icon-scroll:before {
    position: absolute;
    right: 56px;
}
@keyframes scroll {
  from {top: 0px;}
  to {top: 50px;}
}

