/*body {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    background-color: #fff;*/
/*    font-family: source sans pro, sans-serif*/
/*}*/

#header {
    background-color: #3f8dbf;
    float: left;
    width: 100%;
    height: 50px;
    color: #fff;
    line-height: 50px;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1
}

#header a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-size: 15px
}

#header-left {
    float: left;
    height: 50px
}

#header-left:hover #header-left-icon {
    background-color: #3f8dbf
}

#header-left:hover #header-left-text {
    background-color: #599bc8
}

#header-left-icon {
    float: left;
    height: 50px;
    width: 50px;
    text-align: center;
    background-color: #35759f;
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s
}

#header-left-icon a {
    font-size: 25px
}

#header-left-text {
    float: left;
    height: 50px;
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s
}

#header-left-text a {
    padding-left: 20px;
    padding-right: 20px
}

#header-right {
    float: right;
    height: 50px
}

#header-right:hover #header-right-icon {
    background-color: #3f8dbf
}

#header-right:hover #header-right-text {
    background-color: #599bc8
}

#header-right-icon {
    float: right;
    height: 50px;
    width: 50px;
    text-align: center;
    background-color: #35759f;
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s
}

#header-right-text {
    float: right;
    height: 50px;
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s
}

#header-right-text a {
    padding-right: 20px;
    padding-left: 20px
}

.wrapper {
    width: 100%;
    float: left;
    margin-top: 50px;
    margin-bottom: 150px
}

.wrapper-inner {
    width: 1100px;
    margin-right: auto;
    margin-left: auto;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.wrapper-inner-buttons {
    width: 100%;
    float: left;
    margin-top: 50px;
    text-align: center
}

.wrapper-inner-buttons a {
    background-color: #3f8dbf;
    line-height: 35px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 10px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s;
    border-radius: calc(35px/2)
}

.wrapper-inner-buttons a.current {
    background-color: #f5d76e;
    color: #d35400
}

.wrapper-inner-buttons a:hover {
    background-color: #35759f;
    color: #fff
}

.mobile {
    position: fixed;
    display: block;
    background: #fff;
    width: 100%;
    top: 0;
    z-index: 9999;
    height: 60px;
    display: none;
}

.mobile-inner {
    width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    background-color: #fafafa;
    position: relative;
}

.mobile-inner img {
    width: 100%;
}

.mobile-inner p {
    color: #676767;
    line-height: 25px;
    font-size: 16px;
    padding-bottom: 30px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 0
}

.mobile-inner-header {
    background-color: rgba(0, 0, 0, .7);
    width: 100%;
    /* height: 50px; */
    position: relative;
    top: 0;
    left: 0;
}

.mobile-inner-header-icon {
    color: #fff;
    height: 50px;
    font-size: 25px;
    text-align: center;
    width: 50px;
    position: relative;
    -webkit-transition: background .5s;
    -moz-transition: background .5s;
    -o-transition: background .5s;
    transition: background .5s;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
}

.mobile-inner-header-icon:hover {
    /* background-color: rgba(255, 255, 255, .2); */
    cursor: pointer;
}

.mobile-inner-header-icon span {
    position: absolute;
    left: calc((100% - 25px)/2);
    top: calc((100% - 1px)/2);
    width: 25px;
    height: 1px;
    background-color: #fff
}

.mobile-inner-header-icon span:nth-child(1) {
    transform: translateY(4px) rotate(0deg)
}

.mobile-inner-header-icon span:nth-child(2) {
    transform: translateY(-4px) rotate(0deg)
}

.mobile-inner-header-icon-click span:nth-child(1) {
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-name: clickfirst
}

.mobile-inner-header-icon-click span:nth-child(2) {
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-name: clicksecond
}

@keyframes clickfirst {
    0% {
        transform: translateY(4px) rotate(0deg)
    }
    100% {
        transform: translateY(0) rotate(45deg)
    }
}

@keyframes clicksecond {
    0% {
        transform: translateY(-4px) rotate(0deg)
    }
    100% {
        transform: translateY(0) rotate(-45deg)
    }
}

.mobile-inner-header-icon-out span:nth-child(1) {
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-name: outfirst
}

.mobile-inner-header-icon-out span:nth-child(2) {
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-name: outsecond
}

@keyframes outfirst {
    0% {
        transform: translateY(0) rotate(-45deg)
    }
    100% {
        transform: translateY(-4px) rotate(0deg)
    }
}

@keyframes outsecond {
    0% {
        transform: translateY(0) rotate(45deg)
    }
    100% {
        transform: translateY(4px) rotate(0deg)
    }
}

.mobile-inner-nav {
    background-color: rgba(0, 0, 0, .9);
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding-top: 30px;
    padding-bottom: 80px;
    display: none;
    padding-left: 5%;
    padding-right: 5%;
}

.mobile-inner-nav a {
    display: block;
    line-height: 50px;
    text-decoration: none;
    width: auto;
    color: #fff;
    border-bottom: solid 1px rgba(255, 255, 255, .3);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    font-weight: 300;
}

.mobile-inner-nav a:hover {
    color: rgba(255, 255, 255, .4);
    border-bottom: solid 1px rgba(255, 255, 255, .2)
}


/********************************************************************/

.NavAnimate .returnToNormal a {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal;
    animation-name: returnToNormal;
}

@-webkit-keyframes returnToNormal {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.NavAnimate .returnToNormal2 a {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: returnToNormal2;
    animation-name: returnToNormal2;
}

@-webkit-keyframes returnToNormal2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes returnToNormal2 {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.NavAnimate .flipInX a {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}

.NavAnimate .bounceIn a {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.NavAnimate .ReturnToNormal3 a {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: ReturnToNormal3;
    animation-name: ReturnToNormal3;
}

@keyframes ReturnToNormal3 {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@-webkit-keyframes ReturnToNormal3 {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.NavAnimate .ReturnToNormal4 a {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: ReturnToNormal4;
    animation-name: ReturnToNormal4;
}

@keyframes ReturnToNormal4 {
    from {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@-webkit-keyframes ReturnToNormal4 {
    from {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    to {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

.NavAnimate .slideInBorder a {
    position: relative;
    display: block;
    overflow: hidden;
    border: none !important;
}

.NavAnimate .slideInBorder a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInBorder;
    animation-name: slideInBorder;
}

@-webkit-keyframes slideInBorder {
    0% {
        -webkit-transform: translate(-400%, -100%) rotate(60deg);
        transform: translate(-400%, -100%) rotate(60deg);
    }
    100% {
        -webkit-transform: translate(0, 0) rotate(0deg);
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes slideInBorder {
    0% {
        -webkit-transform: translate(-400%, -100%) rotate(60deg);
        transform: translate(-400%, -100%) rotate(60deg);
    }
    100% {
        -webkit-transform: translate(0, 0) rotate(0deg);
        transform: translate(0, 0) rotate(0deg);
    }
}

.NavAnimate .ReturnToNormal5 a {
    position: relative;
    display: block;
    overflow: hidden;
    border: none !important;
}

.NavAnimate .ReturnToNormal5 a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: ReturnToNormal5;
    animation-name: ReturnToNormal5;
}

@-webkit-keyframes ReturnToNormal5 {
    0% {
        -webkit-transform: scale(0.1, 1);
        -ms-transform: scale(0.1, 1);
        transform: translate: scale(0.1, 1);
    }
    100% {
        -webkit-transform: scaleX(1, 1);
        -ms-transform: scale(1, 1);
        transform: translate: scaleX(1, 1);
    }
}

@keyframes ReturnToNormal5 {
    0% {
        -webkit-transform: scale(0.1, 1);
        -ms-transform: scale(0.1, 1);
        transform: translate: scale(0.1, 1);
    }
    100% {
        -webkit-transform: scaleX(1, 1);
        -ms-transform: scale(1, 1);
        transform: translate: scaleX(1, 1);
    }
}

.NavAnimate .ReturnToNormal6 {
    overflow: hidden;
}

.NavAnimate .ReturnToNormal6 a {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: ReturnToNormal6;
    animation-name: ReturnToNormal6;
}

@-webkit-keyframes ReturnToNormal6 {
    100% {
        -webkit-transform: translateX(0%) rotate(0deg);
        transform: translateX(0%) rotate(0deg);
    }
}

@keyframes ReturnToNormal6 {
    100% {
        -webkit-transform: translateX(0%) rotate(0deg);
        transform: translateX(0%) rotate(0deg);
    }
}

.NavAnimate .ReturnToNormal7 {
    overflow: hidden;
}

.NavAnimate .ReturnToNormal7 a {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: ReturnToNormal7;
    animation-name: ReturnToNormal7;
}

@-webkit-keyframes ReturnToNormal7 {
    100% {
        -webkit-transform: translateX(0%) rotate(0deg);
        transform: translateX(0%) rotate(0deg);
    }
}

@keyframes ReturnToNormal7 {
    100% {
        -webkit-transform: translateX(0%) rotate(0deg);
        transform: translateX(0%) rotate(0deg);
    }
}

.NavAnimate .bounceInRight a {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.NavAnimate .bounceInLeft a {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    to {
        -webkit-transform: none;
        transform: none;
    }
}

.NavAnimate .resize {
    overflow: hidden;
}

.NavAnimate .resize a {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: resize;
    animation-name: resize;
}

@-webkit-keyframes resize {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes resize {
    from,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale(5, 5);
        transform: scale(5, 5);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.NavAnimate .slideInBorder2 a {
    position: relative;
    display: block;
    border: none !important;
}

.NavAnimate .slideInBorder2 a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInBorder2;
    animation-name: slideInBorder2;
}

@-webkit-keyframes slideInBorder2 {
    0% {
        -webkit-transform: translate(-52%, -24px) scaleY(0.07) rotate(90deg);
        transform: translate(-52%, -24px) scaleY(0.07) rotate(90deg);
    }
    100% {
        -webkit-transform: translate(0, 0) scaleY(1) rotate(0deg);
        transform: translate(0, 0) scaleY(1) rotate(0deg);
    }
}

@keyframes slideInBorder2 {
    0% {
        -webkit-transform: translate(-52%, -24px) scaleY(0.07) rotate(90deg);
        transform: translate(-52%, -24px) scaleY(0.07) rotate(90deg);
    }
    100% {
        -webkit-transform: translate(0, 0) scaleY(1) rotate(0deg);
        transform: translate(0, 0) scaleY(1) rotate(0deg);
    }
}

.NavAnimate .slideInBorder3 a {
    position: relative;
    display: block;
    border: none !important;
}

.NavAnimate .slideInBorder3 a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: slideInBorder3;
    animation-name: slideInBorder3;
}

@-webkit-keyframes slideInBorder3 {
    0% {
        -webkit-transform: translate(52%, -24px) scaleY(0.07) rotate(90deg);
        transform: translate(52%, -24px) scaleY(0.07) rotate(90deg);
    }
    100% {
        -webkit-transform: translate(0, 0) scaleY(1) rotate(0deg);
        transform: translate(0, 0) scaleY(1) rotate(0deg);
    }
}

@keyframes slideInBorder3 {
    0% {
        -webkit-transform: translate(52%, -24px) scaleY(0.07) rotate(90deg);
        transform: translate(52%, -24px) scaleY(0.07) rotate(90deg);
    }
    100% {
        -webkit-transform: translate(0, 0) scaleY(1) rotate(0deg);
        transform: translate(0, 0) scaleY(1) rotate(0deg);
    }
}