@charset "UTF-8";

.Nav {
  background : -moz-linear-gradient(50% 16.34% -90deg,rgba(235, 97, 1, 1) 0%,rgba(175, 67, 36, 1) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(235, 97, 1, 1) 0%, rgba(175, 67, 36, 1) 100%);
  background : -webkit-gradient(linear,50% 16.34% ,50% 95.6% ,color-stop(0,rgba(235, 97, 1, 1) ),color-stop(1,rgba(175, 67, 36, 1) ));
  background : -o-linear-gradient(-90deg, rgba(235, 97, 1, 1) 0%, rgba(175, 67, 36, 1) 100%);
  background : -ms-linear-gradient(-90deg, rgba(235, 97, 1, 1) 0%, rgba(175, 67, 36, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#EB6101', endColorstr='#AF4324' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(235, 97, 1, 1) 0%, rgba(175, 67, 36, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#EB6101',endColorstr='#AF4324' , GradientType=0);
  padding : 0;
}
.Nav .navbtn {
  display: none;
}
@media screen and (max-width: 1000px) {
.Nav {
    position: relative;
	background : none;
	/* border-top:none; */
  }
.Nav .navbtn {
    display: block;
    position: absolute;
    top: -8rem;
    right: 1rem;
  }
  .Nav .navbtn a,
  .Nav .navbtn a.close {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #EB6101;
  }
  .Nav .navbtn a::before,
  .Nav .navbtn a.close::before {
    position: absolute;
    top:10px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
   transition: .2s;
  }
  .Nav .navbtn a.open::before {
    top:19px;
    transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  }
  .Nav .navbtn a::after,
  .Nav .navbtn a.close::after {
    position: absolute;
    bottom:10px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
    transition: .2s;
  }
  .Nav .navbtn a.open::after {
    bottom:18px;
    transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  }
  .Nav .navbtn a.open {
  }
  .Nav .navbtn a span {
    display: block;
    overflow: hidden;
    width: 1px;
    height: 1px;
  }
  .Nav .navbtn a span::after,
  .Nav .navbtn a.close span::after {
    position: absolute;
    top:18px;
    left:10px;
    content:"";
    width: 20px;
    height: 3px;
    background-color: #FFF;
  }
  .Nav .navbtn a.open span::after {
    display: none;
  }
}

.Nav ul.close {
  display: none;
  border-top: solid 1px #F5F4F0;
}


.Nav > ul {
  margin: auto;
  max-width: 1000px;
}
.Nav > ul > li {
  position: relative;
  display: inline-block;
}
.Nav > ul > li.curent {
	background : #EB6101;
}
.Nav > ul > li.pinpin	{
	display : none;
}
.Nav > ul > li a {
	font-size : 16px;
	line-height : 360%;
  display: block;
  position: relative;
  text-decoration: none;
  padding : 0 1.4rem;
  color: #000;
  z-index: 2;
  color : #FFF;
}
.Nav > ul > li a:hover {
  color: #fff;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#af4324+0,eb6101+100 */
background: #af4324; /* Old browsers */
background: -moz-linear-gradient(top,  #af4324 0%, #eb6101 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #af4324 0%,#eb6101 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #af4324 0%,#eb6101 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#af4324', endColorstr='#eb6101',GradientType=0 ); /* IE6-9 */
}
@media screen and (max-width: 1000px) {
.Nav > ul {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background-color: #EB6101;
  }
  .Nav > ul > li {
    display: block;
    border-bottom: solid 1px #dddddd;
  }
  .Nav > ul > li a {
	/* padding: 1rem 1.4rem; */
  }
  .Nav > ul > li.curent {
	text-decoration : none;
  }
  .Nav > ul > li.pinpin	{
	display : block;
	background-color : #fff;
	line-height : 140%;
	background-image : url(../img/illust_hd_people.png);
	background-repeat : no-repeat;
	background-position : 4% 50%;
	padding : 2rem 0 2rem 8rem;
	}
}
.Nav > ul > li a::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.Nav > ul > li a,
.Nav > ul > li a::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.Nav > ul > li a::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.Nav > ul > li a:hover::after {
  /* background: #333; /
  -webkit-transform: scale(1);
  transform: scale(1);
}
