.main_header {
    padding: 0 10px 0 30px;
    height: : 65px;
    position: fixed;
    z-index:1101;
    top: 22px;
    -moz-transition: top 0.2s ease-in-out;
    -o-transition: top 0.2s ease-in-out;
    -webkit-transition: top 0.2s ease-in-out;
    transition: top 0.2s ease-in-out;
    width: 100%;
}
.main_logo img{
    width: 97px;
}
.main_menu li {
    display: inline-block;
    color: #3989c6;
    font-size: 12px;
    font-weight: 100;
    letter-spacing: 0.5px;
    margin:0 18px;
    padding:3px 12px;
    border:1px solid #4ab896;
    background-color: rgba(39, 166, 119, 1);
	background-image: url(../images/solid-bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size:cover;
}
.main_menu li:last-child {
    margin:0 0 0 18px;
}
.main_menu li:hover {
    background-color: rgba(0, 0, 0, 0);
}
.main_menu li a {
    color: #ffffff;
    letter-spacing: 3px;
    font-weight: bold;
}
.main_menu li a img {
    position: absolute;
}
.main_menu li a:hover {
    color: #e6e6e6;
}
.main_menu li:nth-child(6) {
    margin-left: 13px;
}

.main_menu li:nth-child(5):after,
.main_menu li:nth-child(6):after {
    width: 0px;
    height: 10px;
}
.main_menu {
    width: 90%;
    height: auto;
    position: relative;
    top:0px;
    display: inline-block;
}

.main_menu h1 {
    width: 100%;
    text-align: center;
    font-family: 'Slabo 13px', serif;
    font-size: 38px;
    font-weight: normal;
    letter-spacing: 1px;
    color: white;
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}

.main_menu .trigger {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 3;
    cursor: pointer;
    transition: top .1s ease-in-out;
}

.permanent_1 .main_menu .trigger span{
    background: #af7428;
}

.main_menu .trigger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #F1F1F1;
    margin: 0 0 5px 0;
    transition: all .2s ease-in-out;
    position: absolute;
}

.main_menu .trigger span:first-child {
    top: 0;
    left: 0;
}

.main_menu .trigger span:nth-child(2) {
    top: 10px;
    left: 0;
}

.main_menu .trigger span:last-child {
    top: 20px;
    left: 0;
}

.main_menu .trigger.on {
    top: 5px;
}

.main_menu .trigger.on span:first-child {
    transform: rotate(45deg);
    background: #3989C6;
}

.main_menu .trigger.on span:nth-child(2) {
    transform: rotate(-45deg);
    background: #3989C6;
    top: 0;
}

.main_menu .trigger.on span:last-child {
    transform: rotate(45deg);
    background: #3989C6;
    top: 0;
}

.menu_content {
    /* background: rgba(0, 0, 0, 0.85); */
    height: 100px;
    width: 10%;
    position: fixed;
    top: 16%;
    right: 0;
    bottom: 0;
    left: 90%;
    display: none;
    z-index: 2;
    font-size: 13px;
}

.menu_content ul {
    list-style-type: none;
    padding: 0;
    text-align: right;
    position: absolute;
    top: 0;
    right: 3px;
    line-height: 15px;
    transform: translate3d(-50%, -50%, 0);
}

.menu_content ul li {
    color: #3989C6;
    font-size: 24px;
    letter-spacing: 1.4px;
    padding: 3px 0;
}

.menu_content ul li a {
    color: #ede7f5;
    font-size: 13px;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}

.menu_content ul li a:hover {
    color: #fff;
}
.web_nav{
    width: 100%;
    position: relative;
    display: block;
}
.share_info{
    position: absolute;
    right:0px;
    top:-20px;
}
/* HOVER LINE */
/* 框線 */
.caja {
    display: inline-block;
    position: relative;
    padding: 0px;
}

.caja:before,
.caja:after {
    content: "";
    width: 100%;
    height: 95%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    transform: scale(0);
    transition: 0.5s;
}

.caja:before {
    border-bottom: 1px solid #45e3b0;
    border-left: 1px solid #45e3b0;
    transform-origin: 0 100%;
}

.caja:after {
    border-top: 1px solid #45e3b0;
    border-right: 1px solid #45e3b0;
    transform-origin: 100% 0%;
}

.caja:hover:after,
.caja:hover:before {
    transform: scale(1);
}
/* 色塊 */
.centrofondo {
    position: relative;
    text-decoration: none;
    z-index: 1;
}

.centrofondo:before {
    content: "";
    background: #000;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -1px;
    left: 0;
    transform: scaleX(0);
    animation: .8s no-hover;
    animation-fill-mode: forwards;
    z-index: -1;
}

.centrofondo:hover:before,
.centrofondo:focus:before {
    animation: .4s hover linear;
    animation-fill-mode: forwards;
}

@keyframes hover {
    0% {
        transform: scaleX(0);
        height: 3px;
    }
    45% {
        transform: scaleX(1.05);
        height: 3px;
    }
    55% {
        height: 3px;
    }
    100% {
        transform: scaleX(1.05);
        height: 20px;
    }
}

@keyframes no-hover {
    0% {
        transform: scaleX(1.05);
        height: 20px;
    }
    45% {
        height: 3px;
    }
    55% {
        transform: scaleX(1.05);
        height: 3px;
        opacity: 1;
    }
    100% {
        transform: scaleX(0);
        height: 3px;
        opacity: .02;
    }
}