body {
  font-family: "微軟正黑體";
  color: #65676f;
}
a {
  text-decoration: none;
}
/*####### .navigation ########*/
.navigation {
  position: absolute;
  width: 100%;
  bottom:0;
  background-color: #FF0059;
  height: 86px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 3;
  -webkit-transition: height 0.6s 0.6s;
          transition: height 0.6s 0.6s;
  left: 0;
}
.fixed-navigation {
  position: fixed;
  height: 65px;
  top: 0px;
}
.logo-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: margin-left 0.6s;
          transition: margin-left 0.6s
}
.fixed-logo-box {
  margin-left: 2%;
}
.logo {
  height: 50px;
  width: 70px;
  margin-left: 1em;
  -webkit-transition: -webkit-transform 0.6s;
          transition: transform 0.6s;
}

@media screen and (min-width: 1px) and (max-width: 414px) {
.logo {
	display:none
}
.navigation ul {
	margin:0 auto;
	text-align:center
}
.navigation ul li a {
	display: inline-block
}
}
.logo div {
  height: 8px;
  width: 10px;
  -webkit-transition: -webkit-transform 0.6s;
          transition: transform 0.6s;
}
.logo-title {
  color: white;
  font-weight: bold;
  padding: 0.7em;
  -webkit-transition: color 0.6s;
          transition: color 0.6s;
}
.fixed-logo {
  border-color: #FF0059;
  color: #FF0059;
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}
.logo-box:hover .logo {
  border-color: #1CFFCA;
}
.logo-box:hover .logo div {
  border-color: #1CFFCA;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right:2%;
  -webkit-transition: all 0.6s;
          transition: all 0.6s;
}
.fixed-links {
  padding-right: 5%;
}
.navigation ul li a {
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding:5px;
  margin:0 10px;
  border: solid 1px #fff;
  transition:0.5s all;
}
.navigation ul li a:hover, .navigation ul li .active {
  background-color:#fff;
  color: #ff0059;
}
/*####### HEADER #########*/
header {
  position: relative;
  height: 300px;
  z-index: 1;
  background-color: #2e313d;
}
.intro-background {
  height: 100%;
  width: 100%;
  background-image: url("http://images6.fanpop.com/image/photos/36000000/nature-mother-nature-36002556-1920-1080.jpg");
  background-size: cover;
}
.intro-heading {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  top: 0px;
  height: 300px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.35);
}
.intro-heading h1 {
  color: white;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
}
.logo-heading {
  height: 25px;
  width: 30px;
  border: thick solid white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 1em;
  -webkit-transition: border-color 0.6s, -webkit-transform 0.6s;
          transition: border-color 0.6s, transform 0.6s;
}
.logo-heading div {
  height: 8px;
  width: 10px;
  border: thick solid white;
  -webkit-transition: border-color 0.6s;
          transition: border-color 0.6s;
}
.intro-heading:hover .logo-heading {
  border-color: #1CFFCA;
}
.intro-heading:hover .logo-heading div {
  border-color: #1CFFCA;
}
