@charset "UTF-8";
@font-face {
    font-family: 'robotothin';
    src: url('../fonts/roboto-thin-webfont.eot');
    src: url('../fonts/roboto-thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-thin-webfont.woff2') format('woff2'),
         url('../fonts/roboto-thin-webfont.woff') format('woff'),
         url('../fonts/roboto-thin-webfont.ttf') format('truetype'),
         url('../fonts/roboto-thin-webfont.svg#robotothin') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'robotolight';
    src: url('../fonts/roboto-light-webfont.eot');
    src: url('../fonts/roboto-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../fonts/roboto-light-webfont.woff') format('woff'),
         url('../fonts/roboto-light-webfont.ttf') format('truetype'),
         url('../fonts/roboto-light-webfont.svg#robotolight') format('svg');
    font-weight: normal;
    font-style: normal;
}
html,body{
    height:100%;
    padding:0;    
}
body .header{
    position: relative;
}


.footer{
    margin-top: 0;
}

.alink{
    color: #f00;
    font-size: 19px;
    display: inline-block;
    margin: 15px 15px;
    cursor: pointer;
}
.alink:hover{
    text-decoration: none;
}

.anit-elem{
    display: none;
}
.feature-content{
    display: block;
    margin-top: 1px;
    position: relative;
    font-family: "robotothin";
    color: #000;
    z-index: 1;
    /*padding-top: 67px;*/
}
.feature-content img{
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.feature-section{
    position: relative;
    overflow: hidden;
}
.title-default{
    font-size: 35px;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 20px;
    color: #000; 
}
.descripe{
    color: #000;
    font-size: 16px;
    line-height: 22px;
}
.feature-img,.font-block,.feature-icon{
    position: relative;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
.alink{
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
.a-img{
    position: absolute;
    left: 50%;
}
.center-font{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.center-img{    
    display: block;
    position: relative;
    margin: 0 auto;
    line-height: 1;
}
.fadeint,.fadeinb,.fadeinl,.fadeinr{
    -webkit-animation: 0.6s ease-out backwards;
    -moz-animation: 0.6s ease-out backwards;
    -ms-animation: 0.6s ease-out backwards;
    animation: 0.6s ease-out backwards;
}
.fadeino{
    -webkit-animation: 0.6s ease-in backwards;
    -moz-animation: 0.6s ease-in backwards;
    -ms-animation: 0.6s ease-in backwards;
    animation: 0.6s ease-in backwards;
}
.RubberBand{
    -webkit-animation:10s linear infinite;
    -moz-animation:10s linear infinite;
    -ms-animation:10s linear infinite;
    animation:10s linear infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-direction: alternate;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    animation-direction: alternate;
}


.fadeint{    
    -webkit-animation-name: FadeInT;
    -moz-animation-name: FadeInT;
    -ms-animation-name: FadeInT;
    animation-name: FadeInT;
}
.RubberBand{
    -webkit-animation-name:RubberBand;
    -moz-animation-name:RubberBand;
    -ms-animation-name:RubberBand;
    animation-name:RubberBand;
}
@-webkit-keyframes FadeInT{
    0%{
        -webkit-transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
    100%{
        -webkit-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@-moz-keyframes FadeInT{
    0%{
        -moz-transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
    100%{
        -moz-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@-ms-keyframes FadeInT{
    0%{
        -ms-transform: translate3d(0, -100px, 0);
        opacity: 0;
    }
    100%{
        -ms-transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}
@keyframes FadeInT{
    0%{
        opacity:0;
        transform:translate3d(0, -100px, 0);
    }
    100%{
        opacity:1;
        transform:translate3d(0, 0, 0);
    }
}
.fadeino{
    -webkit-animation-name: FadeIn;
       -moz-animation-name: FadeIn;
        -ms-animation-name: FadeIn;
            animation-name: FadeIn;
}
@-webkit-keyframes FadeIn{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
@-moz-keyframes FadeIn{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
@-ms-keyframes FadeIn{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
@keyframes FadeIn{
    0%{
        opacity:0;
    }
    100%{
        opacity:1;
    }
}
.fadeinb{
    -webkit-animation-name: FadeInB;
    -moz-animation-name: FadeInB;
    -ms-animation-name: FadeInB;
    animation-name: FadeInB;
}
.fadeinr{
    -webkit-animation-name: FadeInR;
    -moz-animation-name: FadeInR;
    -ms-animation-name: FadeInR;
    animation-name: FadeInR;
}
.fadeinl{
    -webkit-animation-name: FadeInL;
    -moz-animation-name: FadeInL;
    -ms-animation-name: FadeInL;
    animation-name: FadeInL;
}
.fadeoutb{
    -webkit-animation-name:FadeOutB;
    -moz-animation-name:FadeOutB;
    -ms-animation-name:FadeOutB;
    animation-name:FadeOutB;
}

@-webkit-keyframes FadeInB{
    0%{
        -webkit-transform: translateY(100px);
        opacity: 0;
    }
    100%{
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}
@-moz-keyframes FadeInB{
    0%{
        -moz-transform: translateY(100px);
        opacity: 0;
    }
    100%{
        -moz-transform: translateY(0);
        opacity: 1;
    }
}
@-ms-keyframes FadeInB{
    0%{
        -ms-transform: translateY(100px);
        opacity: 0;
    }
    100%{
        -ms-transform: translateY(0);
        opacity: 1;
    }
}
@keyframes FadeInB{
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes FadeInL{
    0%{
        -webkit-transform: translateX(100px);
        opacity: 0;
    }
    100%{
        -webkit-transform: translateX(0);
        opacity: 1;
    }
}
@-moz-keyframes FadeInL{
    0%{
        -moz-transform: translateX(100px);
        opacity: 0;
    }
    100%{
        -moz-transform: translateX(0);
        opacity: 1;
    }
}
@-ms-keyframes FadeInL{
    0%{
        -ms-transform: translateX(100px);
        opacity: 0;
    }
    100%{
        -ms-transform: translateX(0);
        opacity: 1;
    }
}
@keyframes FadeInL{
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@-webkit-keyframes FadeInR{
    0%{
        -webkit-transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        -webkit-transform: translateX(0);
        opacity: 1;
    }
}
@-moz-keyframes FadeInR{
    0%{
        -moz-transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        -moz-transform: translateX(0);
        opacity: 1;
    }
}
@-ms-keyframes FadeInR{
    0%{
        -ms-transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        -ms-transform: translateX(0);
        opacity: 1;
    }
}
@keyframes FadeInR{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}


@-webkit-keyframes RubberBand{
    0%{
        -webkit-transform:scale(1) translate3d(-200px,0,0);
        transform:scale(1) translate3d(-200px,0,0);
    }
    100%{
        -webkit-transform:scaleX(1.15) scaleY(0.85) translate3d(0,0,0);
        transform:scaleX(1.15) scaleY(0.85) translate3d(0,0,0);
    }
}
@-moz-keyframes RubberBand{
    0%{
        -moz-transform:scale(1) translate3d(-200px,0,0);
        transform:scale(1) translate3d(-200px,0,0);
    }
    100%{
        -moz-transform:scaleX(1.15) scaleY(0.85) translate3d(0,0,0);
        transform:scaleX(1.15) scaleY(0.85) translate3d(0,0,0);
    }
}
@-ms-keyframes RubberBand{
    0%{
        -ms-transform:scale(1) translate3d(-200px,0,0);
        transform:scale(1) translate3d(-200px,0,0);
    }
    100%{
        -ms-transform:scaleX(1.15) scaleY(0.85) translate3d(0,0,0);
        transform:scaleX(1.15) scaleY(0.85) translate3d(0,0,0);
    }
}
@keyframes RubberBand{
    0%{
        transform:scale(1) translate3d(-200px,0,0);
    }
    100%{
        transform:scaleX(1.15) scaleY(0.85) translate3d(0,0,0);
    }
}
@-webkit-keyframes FadeOutB{
    0%{
        -webkit-transform: translateY(0);
        opacity: 1;
    }
    100%{
        -webkit-transform: translateY(100px);
        opacity: 0;
    }
}
@-moz-keyframes FadeOutB{
    0%{
        -moz-transform: translateY(0);
        opacity: 1;
    }
    100%{
        -moz-transform: translateY(100px);
        opacity: 0;
    }
}
@-ms-keyframes FadeOutB{
    0%{
        -ms-transform: translateY(0);
        opacity: 1;
    }
    100%{
        -ms-transform: translateY(100px);
        opacity: 0;
    }
}
@keyframes FadeOutB{
    0%{
        transform: translateY(0);
        opacity: 1;
    }
    100%{
        transform: translateY(100px);
        opacity: 0;
    }
}



@media(min-width: 1200px) and  (max-width:1599px){
    .title-default{
        font-size: 32px;
        margin-bottom: 18px;
    }
    .descripe{
        font-size: 15px;
        line-height: 20px;
    }
    .alink{
        font-size: 17px;
        margin: 14px;
    }
}
@media (min-width:992px) and (max-width: 1199px){
    .title-default{
        font-size: 27px;
        margin-bottom: 15px;
    }
    .descripe{
        font-size: 15px;
        line-height: 20px;
    }
    .alink{
        font-size: 14px;
        margin: 12px;
    }
}
@media (min-width:768px) and (max-width: 991px){
    .title-default{
        font-size: 23px;
        margin-bottom: 15px;
    }
    .descripe{
        font-size: 14px;
        line-height: 20px;
    }
    .alink{
        font-size: 13px;
        margin: 10px;
    }
    
}
@media(max-width: 767px){
    .title-default{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .descripe{
        font-size: 13px;
        line-height: 20px;
    }
    .alink{
        font-size: 12px;
        margin: 15px 0;
    }
    .icon-video{
        height: 15px;
        width: 15px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        background-image: -webkit-image-set(url(/Public/images/home/icon_video.png) 1x,url(/Public/images/home/icon_video.png) 2x);
    }
}
#inpop { position: relative; }
#inpop a span { display: none; color: #FFFFFF; }
#inpop a:hover span { display: block; position: absolute; width: 200px; background: #aaa; height: 50px; left: 100px; top: -10px; color: #FFFFFF; padding: 0 5px; } 