/***** MENU BUTTON *****/

.header{
	background-color:;
	position: fixed;
	top:0;
	width:100vw;
	z-index:1000;
}
.menu__toggler {
  position: absolute;
  top: 34px;
  right: 40px;
  z-index: 9999;
  height: 20px;
  width: 28px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  background-color:;  
  mix-blend-mode:;
}

.menu__toggler span,
.menu__toggler span::before,
.menu__toggler span::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 3px;
  background: #252525;
  border-radius: 0px;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
  mix-blend-mode:;
}
.menu__toggler span::before {
  top: -8px;
}
.menu__toggler span::after {
  top: 8px;
}
.menu__toggler.active > span {
  background: transparent;
}
.menu__toggler.active > span::before, 
.menu__toggler.active > span::after {
  background: #252525;
  top: 0px;
}
.menu__toggler.active > span::before {
  transform: rotate(-225deg);
}
.menu__toggler.active > span::after {
  transform: rotate(225deg);
}



.menu__toggler-dark span,
.menu__toggler-dark span::before,
.menu__toggler-dark span::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 3px;
  background: #212121;
  border-radius: 0px;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
  mix-blend-mode:;
}

.menu__toggler-dark span::before {
  top: -8px;
}
.menu__toggler-dark span::after {
  top: 8px;
}
.menu__toggler-dark.active > span {
  background: transparent;
}
.menu__toggler-dark.active > span::before, 
.menu__toggler-dark.active > span::after {
  background: #252525;
  top: 0px;
}
.menu__toggler-dark.active > span::before {
  transform: rotate(-225deg);
}
.menu__toggler-dark.active > span::after {
  transform: rotate(225deg);
}


/***** SLIDING MENU PANEL *****/

.menu {
  position: fixed;
  right: -100%;
  top:0;
  z-index: 998;
  color: #fafafa;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  height: 100%;
  text-align:center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 300ms right cubic-bezier(0.77, 0, 0.175, 1);
  backdrop-filter: blur(20px);
}

.menu-center {
  z-index: 999;
  background-color:;
  width: 200px;
  height: 220px;
  text-align:left;
  display: flex;
  margin: 0 auto;
  padding-left:10px;
  flex-direction: column;
  justify-content: center;
}

.menu.active {
  right: 0;
}
.menu p {
	font-size: 1.4rem;
	margin-bottom: 1rem;
	font-family: 'Cutive Mono', monospace;
}

a.btn {
  position: relative;
  display: inline-block;
  overflow:;
  color:;
  background: linear-gradient(to right, #252525, #252525 50%, #252525 50%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  background-position: 100%;
  transition: background-position 275ms ease;
}

.btn {
	width: 100%;
	text-decoration: none;
	background-color:;
	font-family: 'Readex Pro', sans-serif;
	font-weight:500;
	font-size: 1.4rem;
	margin-bottom: 0rem;
	text-transform:uppercase;
}

.sublink{
	margin-left:40px;
	font-size: 1.1rem;
	width: calc(100% - 40px);
	line-height:1.0;
}

.subsublink{
	margin-left:80px;
	font-size: 1.0rem;
	width: calc(100% - 80px);
	line-height:.9;
}

/***** STRIKETHROUGH *****/

a.strike:hover {
  background-position: 0 100%;
}

.strike:before, .strike:after {
  content: '';
  position: absolute;
  width: 0%;
  height: 4px;               /***LINE THICKNESS***/
  top: 50%;
  margin-top: -0.5px;
  background:;
}
.strike:before {
  left: -2.5px;
}
.strike:after {
  right: 2.5px;
  background: #252525;
  transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.strike:hover:before {
  background: #252525;
  width: 100%;
  transition: width 0.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.strike:hover:after {
  background: transparent;
  width: 100%;
  transition: 0s;
}


a.current:hover {
  background-position: 0 100%;
}

.current:before, .current:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;              /***LINE THICKNESS***/
  top: 50%;
  margin-top: -0.5px;
  background:;
}
.current:before {
  left: -2.5px;
}
.current:after {
  right: 2.5px;
  background: #252525;
}
.current:hover:before {
  background: #252525;
  width: 100%;
}
.current:hover:after {
  background: transparent;
  width: 100%;
}

/****************************** Media Screen (<767px) *******************************/


@media screen and (max-width: 767px){

  }
  
  /***************************** Media Screen (767px<x>1023) **************************/
  
  @media screen and (min-width: 768px) and (max-width: 1200px){
  
  }
  
  /****************************** Media Screen (>1201px) ******************************/
  
  @media screen and (min-width: 1201px){
    .menu-center {
      z-index: 999;
      background-color:;
      width: 280px;
      height: 240px;
      display: flex;
      padding-left:10px;
    }
    .menu__toggler{
      height: 20px;
      width: 28px;
      top: 75px;
      right: 100px;
    }
    .btn {
      font-size: 2rem;
    }
    .sublink{
      margin-left:40px;
      font-size: 1.6rem;
      width: calc(100% - 40px);
      line-height:1.0;
    }
    .subsublink{
      margin-left:80px;
      font-size: 1.4rem;
      width: calc(100% - 80px);
      line-height:.9;
    }
    .strike:before, .strike:after {
      height: 5px;
    }
    .current:before, .current:after {
      height: 5px;              /***LINE THICKNESS***/
    }
  }