#vnt-content{
    padding: 0;
}
/*====BEGIN: ABOUT====*/
.vnt-about{
    margin: 60px 0 50px 0;
}
.vnt-about .va_left {
    text-align: center;
    margin-bottom: 20px;
}
.vnt-about .va_text{
    margin-bottom: 20px;
}
.va_link {
    text-align: center;
}
.va_link a {
    display: inline-block;
    font-size: 15px;
    line-height: 23px;
    color: #666666;
    text-transform: uppercase;
    border: solid 1px #cccccc;
    padding: 8px 28px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}
.va_link a:before{
    content: "";
    position: absolute;
    left: -5px;
    top: -5px;
    bottom: -5px;
    right: 100%;
    background: #cccccc;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.va_link a:hover:before{
    right:-5px;
}
.va_link a:hover{
    color:#ffffff;
}
.va_link a span{
    position: relative;
}
.vnt-about .style1{
    font-size: 55px;
    line-height: 65px;
    text-transform: uppercase;
    color: #003764;
    font-family: 'Roboto Condensed', sans-serif;
}
.vnt-about .style2{
    font-size: 37px;
    line-height: 45px;
    text-transform: uppercase;
    color: #999999;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 10px;
}
.vnt-about .style3{
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    padding: 10px 20px;
    background: #f2f2f2;
}
/*====END: ABOUT====*/
/*====BEGIN: PROMOTION====*/
.vnt-promotion{
    overflow: hidden;
}
#slide_promotion{
    margin: 0 -1px;
}
#slide_promotion .item{
    margin: 0 1px;
    position: relative;
}
#slide_promotion .item .i-image{
    width: 100%;
    overflow: hidden;
    position: relative;
}
#slide_promotion .item .i-image:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
}
#slide_promotion .item .i-image img{
    width: 100%;
    -webkit-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
}
#slide_promotion .item:hover .i-image img{
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -o-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
#slide_promotion .item .i-desc{
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
}
#slide_promotion .item .i-desc .i-title{
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}
#slide_promotion .item .i-desc .i-link a{
    display: inline-block;
    font-size: 14px;
    line-height: 20px;
    padding: 10px 20px;
    border: 1px solid #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    color: #ffffff;
    text-transform: uppercase;
}
#slide_promotion .item:hover .i-desc .i-link a{
    background: #eed989;
    border-color: #eed989;
    -webkit-box-shadow: inset 0 0 2px #ffffff;
    -moz-box-shadow: inset 0 0 2px #ffffff;
    box-shadow: inset 0 0 2px #ffffff;
    color: #333333;
}
#slide_promotion .item .w-link{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
#slide_promotion .item .w-link a{
    display: block;
    width: 100%;
    height: 100%;
}
#slide_promotion .slick-arrow{
    width: 30px;
    height: 50px;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#slide_promotion:hover .slick-arrow{
    opacity: 1;
}
#slide_promotion .slick-prev{
    left: 10px;
}
#slide_promotion .slick-next{
    right: 10px;
}
#slide_promotion .slick-arrow:after{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: FontAwesome;
    font-size: 70px;
    line-height: 50px;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
#slide_promotion .slick-arrow:hover:after{
    color: #ffffff;
}
#slide_promotion .slick-prev:after{
    content: '\f104';
}
#slide_promotion .slick-next:after{
    content: '\f105';
}
/*====END: PROMOTION====*/
/*====BEGIN: PRODUCT====*/
.vp_right {
    margin-bottom: 20px;
}
.vnt-product {
    margin: 30px 0 50px;
}
.vnt-product .vp_left {
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    -webkit-transform: translate(-100% , 0);
    -moz-transform: translate(-100% , 0);
    -ms-transform: translate(-100% , 0);
    -o-transform: translate(-100% , 0);
    transform: translate(-100% , 0);
    text-align: center;
}
.vnt-product.show .vp_left{
    opacity: 1;
    -webkit-transform: translate(0 , 0);
    -moz-transform: translate(0 , 0);
    -ms-transform: translate(0 , 0);
    -o-transform: translate(0 , 0);
    transform: translate(0 , 0);
}
.vnt-product .vp-text{
    text-transform: uppercase;
    font-size: 25px;
    line-height: 25px;
    margin-bottom: 10px;
    color: #999999;
}
.vnt-product .vp-content{
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 25px;
    color: #666666;
}
.vnt-product .vp-title{
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 35px;
    text-transform: uppercase;
    font-weight: bold;
    color: #333333;
}
.vnt-product .vp-title h2{
    font-size: 30px;
    line-height: 35px;
}
.vnt-product .arrow_slider{
    position: relative;
    text-align: center;
}
.vnt-product .arrow_slider:after{
    position: absolute;
    width: 22px;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border-top: 1px solid #cccccc;
}
.vnt-product .arrow_slider .slick_arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #cccccc;
    color: #bbbbbb;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
}
.vnt-product .arrow_slider .slick_arrow:hover{
    background: #1f76e3;
    border-color: #1f76e3;
    color: #ffffff;
}
.vnt-product .arrow_slider .slick_arrow:after{
    position: absolute;
    font-family: fontawesome;
    top: 50%;
    left: 50%;
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -o-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    font-size: 25px;
    line-height: 30px;
}
.vnt-product .arrow_slider #arrow_prev{
    margin-right: 40px;
}
.vnt-product .arrow_slider #arrow_prev:after{
    content: '\f104';
}
.vnt-product .arrow_slider #arrow_next:after{
    content: '\f105';
}
#slider_room .item{
    position: relative;
}
#slider_room .item .i-image{
    overflow: hidden;
}
#slider_room .item .i-image img{
    width: 100%;
    -webkit-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -moz-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -o-transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    transition: transform 0.8s cubic-bezier(0.44, 0.185, 0.575, 0.86);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}
#slider_room .item:hover .i-image img{
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -o-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
#slider_room .item .i-title{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
}
#slider_room .item .i-title a{
    display: block;
    white-space: nowrap;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    font-size: 18px;
    line-height: 26px;
    background: rgba(0, 55, 100, 0.9);
    text-transform: uppercase;
    font-weight: bold;
    color: #ffffff;
    padding: 12px 20px;
}
/*====END: PRODUCT====*/
/*====BEGIN: TOURISM====*/
.vnt-tourism{
    background: #f2f2f2;
}
.tourism_img .item{
    position: relative;
}
.tourism_img .item .i-image img{
    width: 100%;
}
.tourism_img .item .i-desc{
    position: absolute;
    top: 30px;
    left: 35px;
    right: 35px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    display: none;
}
.tourism_img .item .i-desc .text1{
    font-size: 40px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    display: inline-block;
    padding-right: 50px;
}
.tourism_img .item .i-desc .text1 .circle{
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    margin-top: 11px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #ffffff;
    -webkit-transition:all 0.5s ease 0.5s;
    -moz-transition:all 0.5s ease 0.5s;
    -o-transition:all 0.5s ease 0.5s;
    transition:all 0.5s ease 0.5s;
}
.tourism_img .item .i-desc .text1 .circle:after{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    content: '+';
}
.tourism_img .item .i-desc .text1 .circle .effect1{
    opacity: 0;
    display: block;
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: glowyglow 3s infinite;
    -moz-animation: glowyglow 3s infinite;
    -ms-animation: glowyglow 3s infinite;
    -o-animation: glowyglow 3s infinite;
    animation: glowyglow 3s infinite;
    box-shadow: 0 0 25px #ffffff;
}
.tourism_img .item .i-desc .text1 .circle .effect2{
    opacity: 0;
    display: block;
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: glowyglow 3s 750ms infinite;
    -moz-animation: glowyglow 3s 750ms infinite;
    -ms-animation: glowyglow 3s 750ms infinite;
    -o-animation: glowyglow 3s 750ms infinite;
    animation: glowyglow 3s 750ms infinite;
    box-shadow: 0 0 25px #ffffff;
}
.tourism_img .item .i-desc .text1 .circle .effect3{
    opacity: 0;
    display: block;
    position: absolute;
    content: '';
    left: 50%;
    top: 50%;
    width: 48px;
    height: 48px;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: glowyglow 3s 1500ms infinite;
    -moz-animation: glowyglow 3s 1500ms infinite;
    -ms-animation: glowyglow 3s 1500ms infinite;
    -o-animation: glowyglow 3s 1500ms infinite;
    animation: glowyglow 3s 1500ms infinite;
    box-shadow: 0 0 25px #ffffff;
}
.tourism_text{
    margin-top: -13px;
    margin-left: 15px;
    margin-right: 15px;
}
.tourism_text .item{
    padding-top: 13px;
}
.tourism_text .item .i-text{
    font-size: 16px;
    line-height: 20px;
    padding: 17px 20px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.tourism_text .slick-arrow{
    width: 30px;
    height: 64px;
    margin-top: 6px;
}
.tourism_text .slick-prev{
    left: -30px;
}
.tourism_text .slick-next{
    right: -30px;
}
.tourism_text .slick-arrow:after{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-family: FontAwesome;
    font-size: 30px;
    line-height: 30px;
    color: #333333;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.tourism_text .slick-arrow:hover:after{
    color: #003763;
}
.tourism_text .slick-prev:after{
    content: '\f104';
}
.tourism_text .slick-next:after{
    content: '\f105';
}
.tourism_content{
    background: #ffffff;
}
.tourism_content .item{
    padding: 60px 0 40px;
}
.tourism_content .item .i-content{
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
}
.tourism_content .item .i-link{
    text-align: center;
}
.tourism_content .item .i-link a{
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 30px;
    text-transform: uppercase;
    color: #666666;
    border: 1px solid #cfcfcf;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.tourism_content .item .i-link a:hover{
    background: #003763;
    border-color: #003763;
    -webkit-box-shadow: inset 0 0 2px #ffffff;
    -moz-box-shadow: inset 0 0 2px #ffffff;
    box-shadow: inset 0 0 2px #ffffff;
    color: #ffffff;
}
/*====END: TOURISM====*/
/*====BEGIN: MAP====*/
.vnt-map {
    height: 750px;
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% 290px;
    background-position: top center;
}
.vnt-map:after{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    content: '';
    background: url("../images/main/mask_map.png") repeat-x 0 0;
}
.vnt-map .map_desc {
    position: absolute;
    top: 50%;
    width: 95%;
    background: #ffffff;
    -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.06);
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.06);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
        z-index: 100;
}
.vnt-map .map_desc .md_wrapper{
    padding: 30px;
}
/*.vnt-map .map_desc:before{*/
    /*position: absolute;*/
    /*top: 10px;*/
    /*left: 10px;*/
    /*right: 10px;*/
    /*bottom: 10px;*/
    /*content: '';*/
    /*border: 1px solid #e3e3e3;*/
/*}*/
.vnt-map .map_desc .w_desc{
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: 14px;
    line-height: 25px;
    color: #666666;
    margin-bottom: 20px;
    height: 235px;
    overflow: hidden;
}
.vnt-map .map_desc .w_desc .logo{
    margin-bottom: 15px;
}
.vnt-map .map_desc .w_link{
    text-align: center;
    position: relative;
    z-index: 1;
}
.vnt-map .map_desc .w_link a{
    display: inline-block;
    font-size: 15px;
    line-height: 20px;
    padding: 10px 25px;
    border: 1px solid #003763;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #ffffff;
    background: #003763;
    text-transform: uppercase;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.vnt-map .map_desc .w_link a:hover{
    -webkit-box-shadow: inset 0 0 2px #ffffff;
    -moz-box-shadow: inset 0 0 2px #ffffff;
    box-shadow: inset 0 0 2px #ffffff;
}
.vnt-map .map_desc .effect-svg{
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: -webkit-calc(100% - 20px);
    width: -moz-calc(100% - 20px);
    width: calc(100% - 20px);
    height: -webkit-calc(100% - 20px);
    height: -moz-calc(100% - 20px);
    height: calc(100% - 20px);
    pointer-events: none;
}
.vnt-map .map_desc .effect-svg rect{
    fill: transparent;
    stroke: #eed989;
    stroke-width: 2px;
}
/*====END: MAP====*/
.lazyloading {
    clear: both;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.lazyloading.show {
    filter: alpha(opacity=1);
    opacity: 1;
}
.w_effect_up .effect_up{
    opacity: 0;
    -webkit-transform:scale(0.6);
    -moz-transform:scale(0.6);
    -o-transform:scale(0.6);
    -ms-transform:scale(0.6);
    transform:scale(0.6);
    -webkit-transition:all 1s cubic-bezier(.175,.885,.32,1.275);
    -moz-transition:all 1s cubic-bezier(.175,.885,.32,1.275);
    -o-transition:all 1s cubic-bezier(.175,.885,.32,1.275);
    transition:all 1s cubic-bezier(.175,.885,.32,1.275);
}
.w_effect_up.show .effect_up{
    opacity: 1;
    -webkit-transform:scale(1);
    -moz-transform:scale(1);
    -o-transform:scale(1);
    -ms-transform:scale(1);
    transform:scale(1);
}
.w_effect_up2 .effect_up{
    opacity: 0;
}
.w_effect_up2.show .effect_up{
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    -ms-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}
@-webkit-keyframes fadeInUp {
    0%{
        opacity: 0;
        -webkit-transform:translate3d(0, 200px, 0);
        -moz-transform:translate3d(0, 200px, 0);
        -o-transform:translate3d(0, 200px, 0);
        -ms-transform:translate3d(0, 200px, 0);
        transform:translate3d(0, 200px, 0);
    }
    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@-moz-keyframes fadeInUp {
    0%{
        opacity: 0;
        -webkit-transform:translate3d(0, 200px, 0);
        -moz-transform:translate3d(0, 200px, 0);
        -o-transform:translate3d(0, 200px, 0);
        -ms-transform:translate3d(0, 200px, 0);
        transform:translate3d(0, 200px, 0);
    }
    50% {
        opacity: 0.3;

    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@-o-keyframes fadeInUp {
    0%{
        opacity: 0;
        -webkit-transform:translate3d(0, 200px, 0);
        -moz-transform:translate3d(0, 200px, 0);
        -o-transform:translate3d(0, 200px, 0);
        -ms-transform:translate3d(0, 200px, 0);
        transform:translate3d(0, 200px, 0);
    }
    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0%{
        opacity: 0;
        -webkit-transform:translate3d(0, 200px, 0);
        -moz-transform:translate3d(0, 200px, 0);
        -o-transform:translate3d(0, 200px, 0);
        -ms-transform:translate3d(0, 200px, 0);
        transform:translate3d(0, 200px, 0);
    }
    50% {
        opacity: 0.3;
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -moz-transform: none;
        -o-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeinup {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    -ms-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    -ms-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes glowyglow {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.35);
        -moz-transform: translate(-50%, -50%) scale(0.35);
        -o-transform: translate(-50%, -50%) scale(0.35);
        -ms-transform: translate(-50%, -50%) scale(0.35);
        transform: translate(-50%, -50%) scale(0.35);
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -o-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
}

@-moz-keyframes glowyglow {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.35);
        -moz-transform: translate(-50%, -50%) scale(0.35);
        -o-transform: translate(-50%, -50%) scale(0.35);
        -ms-transform: translate(-50%, -50%) scale(0.35);
        transform: translate(-50%, -50%) scale(0.35);
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -o-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
}

@-o-keyframes glowyglow {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.35);
        -moz-transform: translate(-50%, -50%) scale(0.35);
        -o-transform: translate(-50%, -50%) scale(0.35);
        -ms-transform: translate(-50%, -50%) scale(0.35);
        transform: translate(-50%, -50%) scale(0.35);
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -o-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
}
@keyframes glowyglow {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.35);
        -moz-transform: translate(-50%, -50%) scale(0.35);
        -o-transform: translate(-50%, -50%) scale(0.35);
        -ms-transform: translate(-50%, -50%) scale(0.35);
        transform: translate(-50%, -50%) scale(0.35);
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: translate(-50%, -50%) scale(1);
        -moz-transform: translate(-50%, -50%) scale(1);
        -o-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
        -webkit-transform-origin: center center;
        -moz-transform-origin: center center;
        -ms-transform-origin: center center;
        -o-transform-origin: center center;
        transform-origin: center center;
    }
}