* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'roboto-light';
    src: url("../fonts/roboto/Roboto-Light.ttf");
    src: url('../fonts/roboto/Roboto-Light.eot?#font-spider') format('embedded-opentype'),
        url('../fonts/roboto/Roboto-Light.woff') format('woff'),
        url('../fonts/roboto/Roboto-Light.ttf') format('truetype'),
        url('../fonts/roboto/Roboto-Light.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto-regular';
    src: url("../fonts/roboto/Roboto-Regular.ttf");
    src: url('../fonts/roboto/Roboto-Regular.eot?#font-spider') format('embedded-opentype'),
        url('../fonts/roboto/Roboto-Regular.woff') format('woff'),
        url('../fonts/roboto/Roboto-Regular.ttf') format('truetype'),
        url('../fonts/roboto/Roboto-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto-medium';
    src: url("../fonts/roboto/Roboto-Medium.ttf");
    src: url('../fonts/roboto/Roboto-Medium.eot?#font-spider') format('embedded-opentype'),
        url('../fonts/roboto/Roboto-Medium.woff') format('woff'),
        url('../fonts/roboto/Roboto-Medium.ttf') format('truetype'),
        url('../fonts/roboto/Roboto-Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'roboto-bold';
    src: url("../fonts/roboto/Roboto-Bold.ttf");
    src: url('../fonts/roboto/Roboto-Bold.eot?#font-spider') format('embedded-opentype'),
    url('../fonts/roboto/Roboto-Bold.woff') format('woff'),
    url('../fonts/roboto/Roboto-Bold.ttf') format('truetype'),
    url('../fonts/roboto/Roboto-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    font-size: 14px;
    width: 100%;
    height: 100%;
    min-width: 1400px;
    background-image: url("../img/bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #203c47;
    font-family: 'roboto-light', sans-serif;
    background-size: cover;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.hidden {
    display: none;
}

@keyframes circle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes circle_1 {
    0% {
        width: 26px;
        height: 26px;
    }
    50% {
        width: 16px;
        height: 16px;
    }
    100% {
        width: 26px;
        height: 26px;
    }
}

@keyframes circle_2 {
    0% {
        width: 16px;
        height: 16px;
    }
    50% {
        width: 26px;
        height: 26px;
    }
    100% {
        width: 16px;
        height: 16px;
    }
}

@keyframes flicker {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
    100% {
        opacity: 1;
    }
}

@media only screen and (max-width: 1660px){
    .swiper-pagination {
        right: 10px !important;
    }
}

@media only screen and (max-width: 1540px){
    .swiper-pagination-bullet.swiper-pagination-bullet-active > span {
        display: none !important;
    }
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-position-x: -153px !important;
    }
}

.loading {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../img/bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #203c47;
    z-index: 10000;
    transition: opacity 0.8s;
    background-size: cover;
}

.loading .logo-wrap {
    position: absolute;
    width: 360px;
    height: 360px;
    max-width: 80%;
    background-image: url("../img/loading_logo.png");
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.loading .logo-wrap .logo-circle {
    position: absolute;
    width: 100%;
    height: 0;
    padding-top: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: circle 4s linear infinite;
}

.loading .logo-wrap .logo-circle .float1,
.loading .logo-wrap .logo-circle .float2 {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
}

.loading .logo-wrap .logo-circle .float1 {
    width: 26px;
    height: 26px;
    right: 0;
    top: 26px;
    animation: circle_1 4s linear infinite;
}

.loading .logo-wrap .logo-circle .float2 {
    width: 16px;
    height: 16px;
    left: 0;
    bottom: 26px;
    animation: circle_2 4s linear infinite;
}

.banner {
    position: absolute;
    width: 1400px;
    height: 28px;
    top: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 40px;
    z-index: 1000;
}

.banner .logo {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.2s;
}

.banner .menu {
    position: relative;
    float: right;
    list-style: none;
}

.banner .menu li {
    position: relative;
    float: left;
    margin-left: 60px;
}

.banner .menu li a {
    text-decoration: none;
    color: #7F8790;
    font-size: 16px;
    line-height: 20px;
}

.banner .menu li.active a,
.banner .menu li a:hover {
    color: #ffffff;
}

.child-swiper-container,
.swiper-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    list-style: none;
    padding: 0;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    background-image: url("../img/bg.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #203c47;
    background-size: cover;
    overflow: hidden;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    transform: translate3d(0px,0,0);
    flex-direction: column;
}

.child-swiper-container .swiper-wrapper {
    flex-flow: nowrap;
}

.swiper-pagination {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translate3d(0px,-50%,0);
    z-index: 100;
}

.child-swiper-pagination {
    position: absolute;
    bottom: 104px;
    text-align: center;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 100;
}

.swiper-pagination .swiper-pagination-bullet {
    position: relative;
    width: 38px;
    height: 42px;
    background-image: url("../img/side_menu.png");
    background-repeat: no-repeat;
    background-position-x: 0;
    margin-bottom: 8px;
    cursor: pointer;
}

.child-swiper-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 7px;
    border-radius: 5px;
    background-color: rgba(255,255,255,0.1);
    transition: width 0.2s;
    cursor: pointer;
}

.child-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.child-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
    background-color: #FFFFFF;
    width: 22px;
}

.child-swiper-pagination .swiper-pagination-bullet:hover {
    background-color: rgba(255,255,255,0.5);
}

.swiper-pagination .swiper-pagination-bullet > span {
    position: absolute;
    bottom: 0;
    right: 37px;
    height: 25px;
    padding-right: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 16px;
    color: #ffffff;
    display: none;
    font-family: 'roboto-regular', sans-serif;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullet.swiper-pagination-bullet-active:hover {
    background-position-x: -51px;
}

.swiper-pagination-bullet:hover {
    background-position-x: -102px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active > span {
    display: block;
}

.swiper-wrapper .slide-content {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

body > .swiper-container > .swiper-wrapper > .swiper-slide > .slide-content {
    min-height: 800px;
}

.mouse {
    position: absolute;
    bottom: 46px;
    left: 0;
    right: 0;
    margin: 0 auto;
    animation: flicker 4s linear infinite;
    z-index: 100;
}

.swiper-wrapper .slide-content .slide-wrap {
    position: relative;
    width: 50%;
    height: 100%;
    padding: 0 20px;
    float: left;
    display: table;
}

.article {
    display: table-cell;
    vertical-align: middle;
    padding: 120px 0;
}

.article .title {
    position: relative;
    padding: 30px 0;
    font-size: 32px;
    color: #ffffff;
    width: 88%;
    line-height: 36px;
    font-family: 'roboto-medium', sans-serif;
}

.article .title .logo {
    position: absolute;
    left: 0;
    top: 0;
}

.article .title .short-line {
    position: absolute;
    width: 44px;
    height: 8px;
    left: 0;
    top: 0;
    border-radius: 4px;
    background-color: rgba(255,255,255,0.2);
}

.article .content {
    position: relative;
    line-height: 24px;
    font-size: 16px;
    color: #A6ABAE;
    padding-bottom: 40px;
    width: 78%;
    z-index: 10;
}

.android_appstore,
.amazon_appstore {
    display: inline-block;
    width: 247px;
    height: 68px;
    background-image: url("../img/app_store.png");
    background-repeat: no-repeat;
    background-position-y: -75px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.android_appstore {
    background-position-x: 0;
    margin-right: 10px;
}
.amazon_appstore {
    background-position-x: -267px;
}

.android_appstore:hover,
.amazon_appstore:hover {
    background-position-y: 0;
}

.android_appstore:active,
.amazon_appstore:active {
    background-position-y: -150px;
}

.article .arrow-title {
    position: relative;
    width: 420px;
    height: 100px;
    background-image: url("../img/arrow_body.png");
    background-repeat: repeat-x;
    line-height: 86px;
    font-size: 32px;
    font-weight: bold;
    color: #37444D;
    margin-left: 28px;
    margin-bottom: 32px;
    white-space: nowrap;
}

.article .arrow-title > p {
    position: relative;
    z-index: 2;
}

.article .title-center {
    font-size: 32px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 280px;
    font-family: 'roboto-medium', sans-serif;
}

.article .arrow-title .arrow-footer {
    position: absolute;
    top: 0;
    left: -28px;
    width: 28px;
    height: 100px;
    background-image: url("../img/arrow_footer.png");
    background-repeat: no-repeat;
    background-position: 0 0;
}

.article .arrow-title .arrow-header {
    position: absolute;
    top: 0;
    right: -72px;
    width: 72px;
    height: 100px;
    background-image: url("../img/arrow_header.png");
    background-repeat: no-repeat;
    background-position: 0 -1px;
}

.article .icon-list {
    position: relative;
    font-size: 0;
}

.article .icon-list .icon {
    position: relative;
    display: inline-block;
    text-align: center;
    width: 60px;
    height: 100px;
    font-size: 14px;
    color: #FFFFFF;
    margin-right: 30px;
}

.article .icon-list .icon .tooltip {
    position: absolute;
    padding: 8px 0 16px 0;
    bottom: 100px;
    width: 330px;
    display: none;
}

.article .icon-list .icon:hover .tooltip {
    display: block;
}

.article .icon-list .icon .tooltip .tooltip-content .tooltip-txt {
    padding: 18px 16px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    background-color: rgba(255,255,255,.1);
    border-radius: 10px;
    white-space: nowrap;
}

.article .icon-list .icon .tooltip .tooltip-content .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    bottom: 6px;
    border-width: 10px 10px 0;
    border-top-color: rgba(255,255,255,.1);
    display: none;
}

.article .icon-list .icon .feature-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-image: url("../img/feature_icon.png");
    background-repeat: no-repeat;
    margin-bottom: 8px;
    vertical-align: middle;
}

.article .icon-list.horizontal .icon .feature-icon {
    margin-right: 10px;
}

.top-content {
    position: relative;
    text-align: center;
    width: 100%;
    top: 200px;
    font-size: 32px;
    color: #FFFFFF;
    font-family: 'roboto-medium', sans-serif;
    transition: top 0.2s,font-size 0.2s;
}

@media only screen and (max-height: 960px){
    .top-content {
        top: 200px;
        font-size: 28px;
    }
}

@media only screen and (max-height: 850px){
    .top-content {
        top: 160px;
        font-size: 26px;
    }
}

@media only screen and (max-height: 720px){
    .top-content {
        top: 120px;
        font-size: 24px;
    }
}

@media only screen and (max-height: 630px){
    .top-content {
        top: 90px;
        font-size: 20px;
    }
}

@media only screen and (max-height: 540px){
    .top-content {
        top: 54px;
        font-size: 18px;
    }
}

.history {
    position: relative;
    width: 1340px;
    padding: 160px 170px 0 170px;
    margin-top: -221.5px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.timeline:before {
    display: block;
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 24px;
    width: 80px;
    height: 2px;
    background-color: #717C82;
}

.timeline:after {
    display: block;
    content: ' ';
    position: absolute;
    bottom: 0;
    right: 60px;
    width: 80px;
    height: 2px;
    background-color: #717C82;
}

.timeline .right_mask {
    position: absolute;
    right: -2px;
    top: -369px;
    z-index: 2;
}

.timeline .left_mask {
    position: absolute;
    top: -369px;
    left: -2px;
    z-index: 2;
}

.timeline {
    position: relative;
    width: 100%;
    height: 2px;
    padding: 0 138px 0 76px;
}

.timeline .left_img {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 3;
}

.timeline .right_img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.timeline .line {
    width: 100%;
    height: 100%;
    background-color: #717C82;
}

.event-list {
    list-style: none;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    transform: translate3d(0px,0,0);
    flex-direction: column;
    flex-flow: nowrap;
}

.event-list:after {
    display: block;
    content: '';
    clear: both;
}

.event-list li {
    position: relative;
    width: 11%;
    flex-shrink: 0;
    transition-property: transform;
    padding-left: 16px;
    margin-left: -8px;
}

.event-list li .time-wraper {
    position: relative;
    width: 54px;
    height: 240px;
    overflow: hidden;
}
.event-list li .time {
    width: 240px;
    height: 54px;
    border-radius: 27px;
    background-color: rgba(255,255,255,0.5);
    padding: 6px 30px;
    font-size: 32px;
    color: #000000;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    font-family: Agency FB, sans-serif;
    transform: rotate(-45deg);
    -ms-transform: rotate(-45deg); 	/* IE 9 */
    -moz-transform: rotate(-45deg); 	/* Firefox */
    -webkit-transform: rotate(-45deg); /* Safari 和 Chrome */
    -o-transform: rotate(-45deg);
    transform-origin: left center;
    -ms-transform-origin: left center;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin:  left center;
}

.event-list li .time .month {
    font-size: 36px;
}

.event-list li .event {
    position: relative;
    text-align: left;
    font-size: 16px;
    color: rgba(255,255,255,0.2);
    padding-left: 14px;
    border-left: 2px solid #717C82;
    transition: color 0.2s, border-left 0.2s;
    white-space: nowrap;
}

.event-list li .event:before {
    position: absolute;
    display: block;
    content: '';
    width: 26px;
    height: 26px;
    top: -7px;
    left: -14px;
    border-radius: 50%;
    border: 3px solid transparent;
    background-color: transparent;
    transition: background-color 0.2s, border 0.2s;
}

.event-list li .event:after {
    position: absolute;
    display: block;
    content: '';
    width: 12px;
    height: 12px;
    top: 0;
    left: -7px;
    border-radius: 50%;
    background-color: #9AA1A6;
    transition: background-color 0.2s;
}

.event-list li.active {
    z-index: 10;
}

.event-list li.active .time {
    background-color: #0FB4A3;
    color: #FFFFFF;
}

.event-list li.active .event:before {
    border: 3px solid #FFFFFF;
    background-color: #2D404A;
}

.event-list li.active .event:after {
    background-color: #0FB4A3;
}

.event-list li.active .event {
    color: #FFFFFF;
    border-left: 2px solid #0FB4A3;
}

.form {
    position: relative;
    width: 780px;
    height: 580px;
    background-image: url("../img/form_body.png");
    background-repeat: repeat-x;
    margin: 0 auto;
    padding: 40px 64px 0 64px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.form.height {
  height: 680px;
  background-image: url("../img/form_body2.png");
}

.form .form-left {
    position: absolute;
    width: 310px;
    height: 580px;
    top: 0;
    left: -310px;
    background-image: url("../img/form_left.png");
    background-position: top right;
    background-repeat: no-repeat;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.3)) 1 10;
}

.form .form-right {
    position: absolute;
    width: 310px;
    height: 580px;
    top: 0;
    right: -310px;
    background-image: url("../img/form_right.png");
    background-position: top left;
    background-repeat: no-repeat;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-image: linear-gradient(to left, rgba(255,255,255,0), rgba(255,255,255,0.3)) 1 10;
}

.form.height .form-left {
    height: 680px;
    background-image: url("../img/form_left2.png");
}

.form.height .form-right {
    height: 680px;
    background-image: url("../img/form_right2.png");
}

.form label {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

.form label > a {
    display: inline-block;
    height: 30px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 30px;
    background-color: rgba(255,255,255,0.1);
    padding: 0 26px;
    color: rgba(255,255,255,0.8);
}

.form label > a:hover {
    background-color: rgba(255,255,255,0.2);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active  {
    box-shadow: 0 0 0 1000px #4a565e inset !important;
    color: #fff;
}

.form input,
.form textarea,
.form select {
    outline: none;
    width: 100%;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    background-color: transparent;
    color: #FFFFFF;
    resize: none;
    font-family: 'roboto-regular', sans-serif;
}

.form input {
    font-size: 16px;
    padding: 24px 0;
}

.form.height input {
  padding: 24px 4px;
}

.form select {
    font-size: 16px;
}

.form select option {
    font-size: 16px;
    padding: 24px 0;
    background-color: #203c47;
}

/*.form select option:checked {*/
/*    background-color: #0FB4A3;*/
/*    color: #FFFFFF;*/
/*}*/

.form textarea {
    font-size: 16px;
    padding-top: 24px;
}

.form.height textarea {
  padding-left: 4px;
  padding-right: 4px;
}

.form .input-group {
    margin-bottom: 20px;
    position: relative;
}

.form input,
.form select {
    height: 50px;
}

.form input:focus,
.form input:active,
.form textarea:focus,
.form textarea:active {
    border-bottom: 1px solid rgba(255,255,255,1);
}

.form .error input,
.form .error textarea {
    border-bottom: 1px solid #FF620D !important;
}

.form button[type=submit] {
    display: block;
    width: 220px;
    height: 54px;
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    color: #FFFFFF;
    background-color: #0FB4A3;
    border-radius: 27px;
    outline: none;
    border: none;
    padding: 11px 0;
    margin: 0 auto;
    cursor: pointer;
    font-family: 'roboto-regular', sans-serif;
}

.form .notice {
    margin-top: 10px;
    color: #FFFFFF;
    font-size: 18px;
}

.form .msg {
    color: #FF620D;
    display: none;
    margin-top: 4px;
}

.form .error .msg {
    display: block;
    position: absolute;
}

.form button[type=submit]:hover {
    background-color: #1ADECA;
}

.form button[type=submit] > i {
    display: none;
    width: 32px;
    height: 32px;
    background-image: url("../img/submit_loading.png");
    background-position: center;
    background-repeat: no-repeat;
}

.form button[type=submit].disabled {
    cursor: not-allowed;
}

.form button[type=submit].disabled:hover {
    background-color: #0FB4A3;
}

.form button[type=submit].disabled > i {
    display: inline-block;
    animation: circle 4s linear infinite;
}

.form button[type=submit].disabled > span {
    display: none;
}

.footer {
    position: relative;
    margin-top: 30px;
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

.footer > img {
    margin-bottom: 10px;
}

.footer p {
    margin-bottom: 10px;
    font-weight: 500;
}

.footer > ul {
    position: absolute;
    display: inline-block;
    right: 0;
    top: 50%;
    height: 40px;
    margin-top: -20px;
    list-style: none;
}

.footer > ul:after {
    display: block;
    content: '';
    clear: both;
}

.footer > ul li {
    position: relative;
    float: left;
    margin: 0 22px;
}

.search-wrap {
    position: relative;
    width: 640px;
    height: 64px;
    border-radius: 32px;
    background-color: rgba(255,255,255,0.1);
    margin: 0 auto;
    padding: 18px 60px 18px 50px;
    transition: margin 0.2s;
}

.search-wrap input {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    outline: none;
    color: #FFFFFF;
    font-size: 24px;
    font-family: 'roboto-regular', sans-serif;
}

.search-wrap input::-webkit-input-placeholder {
    color: rgba(255,255,255,0.5);
}

.search-wrap input:-moz-placeholder {
    color: rgba(255,255,255,0.5);
}

.search-wrap input::-moz-placeholder {
    color: rgba(255,255,255,0.5);
}

.search-wrap input:-ms-input-placeholder {
    color: rgba(255,255,255,0.5);
}

.search-wrap button {
    position: absolute;
    width: 32px;
    height: 32px;
    top: 16px;
    right: 24px;
    background-image: url("../img/search.png");
    background-position: 0 0;
    background-size: 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    border: none;
    outline: none;
}

.search-wrap button:hover {
    background-position: 0 -32px;
}

.section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 180px;
}

.section.open {
    padding-top: 120px;
}

.categorie-list {
    list-style: none;
    border-bottom: none;
    text-align: center;
    margin-top: 84px;
    justify-content: center;
}

.categorie-list > li {
    position: relative;
    display: inline-block;
    width: 320px;
    height: 300px;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.1);
    margin: 0 6px;
    overflow: hidden;
    transition: height 0.2s;
}

.categorie-list > li:hover {
    background-color: #FFFFFF;
}

.categorie-list > li > a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-top: 90px;
    text-align: center;
}

.categorie-list > li > a .icon {
    display: inline-block;
    width: 108px;
    height: 80px;
    background-image: url("../img/categorie.png");
    background-repeat: no-repeat;
    background-position-y: 0;
    margin: 0 106px 40px 106px;
}

.categorie-list > li > a .icon.icon1 {
    background-position-x: 8px;
}

.categorie-list > li > a .icon.icon2 {
    background-position-x: -135.5px;
}

.categorie-list > li > a .icon.icon3 {
    background-position-x: -276px;
}

.categorie-list > li > a .icon.icon4 {
    background-position-x: -398.5px;
}

.categorie-list > li > a .txt {
    font-size: 24px;
    color: #FFFFFF;
    font-family: 'roboto-regular', sans-serif;
}

.categorie-list > li > a:hover {
    text-decoration: none;
}

.categorie-list > li > a:hover .txt {
    color: #253D48;
}

.categorie-list > li > a:hover .icon {
    background-position-y: -118px;
}

.categorie-list > li > a:hover .icon.icon4 {
    background-position-y: -120px;
}

.categorie-list > li > a.active {
    background-color: #FFFFFF;
}

.categorie-list > li > a.active .txt {
    color: #253D48 !important;
}

.bg-wrap {
    width: 100%;
    height: 100%;
    background-image: url('../img/bg.jpg');
    background-position: center;
    background-color: #203c47;
    background-repeat: no-repeat;
    background-size: cover;
    transition: height 0.2s;
    min-height: 700px;
}

.section.open .home-search h3 {
    display: none;
}

.section.open .search-wrap {
    margin: 0;
    width: 460px;
    height: 44px;
    font-size: 16px;
    line-height: 16px;
    padding: 12px 34px;
}

.section.open .search-wrap input {
    font-size: 16px;
}

.section.open .search-wrap button {
    width: 20px;
    height: 20px;
    top: 11px;
    right: 20px;
}

.section.open .search-wrap button:hover {
    background-position: 0 -20.4px;
}

.section.open .categorie-list {
    margin-top: 44px;
}

.section.open .categorie-list > li {
    height: 60px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    line-height: 60px;
}

.section.open .categorie-list > li > a {
    padding-top: 0;
}

.section.open .categorie-list > li > a .icon {
    display: none;
}

.section.open .categorie-list > li:hover {
    background-color: rgba(255,255,255,0.2);
}

.section.open .categorie-list > li:hover > a .txt {
    color: #FFFFFF;
}

.tab-pane {
    padding-top: 60px;
}

.page-list > li {
    border-bottom: 1px solid rgba(54, 67, 76, 0.1);
    padding: 30px 30px 20px 30px;
    margin-bottom: 10px;
    list-style-position: inside;
}

.page-list > li.active {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.15);
}

.page-list > li > a {
    font-size: 24px;
    color: #35444D;
    text-decoration: none;
    vertical-align: middle;
    font-family: 'roboto-regular', sans-serif;
}

.page-list > li > a.collapsed {
    font-weight: normal;
}

.page-list > li > a:hover {
    font-weight: bold;
}

.page-list > li > a > .icon {
    display: inline-block;
    width: 23px;
    height: 23px;
    background-image: url("../img/collapse.png");
    background-position: 0 -23px;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: relative;
    float: right;
}

.page-list > li > a.collapsed > .icon {
    background-position: 0 0;
}

.page-list > li .page-content {
    position: relative;
    width: 100%;
    min-height: 100px;
    font-size: 16px;
    color: #2F414B;
    padding: 30px 30px 0 30px;
}

.page-list > li .page-content .load-loading {
    position: relative;
    margin: 34px auto;
    animation: circle 4s linear infinite;
}

.page-list > li .page-content ol {
    margin-bottom: 30px;
    list-style-position: inside;
}

.page-list > li .page-content ol li > p {
    display: inline-block;
    padding-left: 6px;
}

.page-list > li .page-content li img {
    width: 92%;
    margin-left: 4%;
}

.page-list > li > .collapse > .page-content > ul {
  list-style: disc;
  padding-left: 30px;
}

.page-content details ul {
    list-style: none;
    padding-left: 30px;
}

.page-content table {
    width: 100%;
}

.page-content table tr {
    border-top: 2px solid rgba(0,0,0,0.1);
}

.page-content table tr td,
.page-content table tr th {
    padding: 10px;
}

.page-content table thead tr {
    border-bottom: 2px solid rgba(0,0,0,0.2);
}

.page-content a {
    color: #0FB4A3;
}

.search-category {
    display: inline-block;
    height: 32px;
    padding: 0 20px;
    line-height: 30px;
    border-radius: 16px;
    border: 1px solid rgba(178, 178, 178, 0.5);
    background-color: rgba(228, 228, 228, 0.5);
    font-size: 14px;
    color: rgba(0,0,0,0.5);
    margin-left: 18px;
    vertical-align: text-top;
}

.my-list-none {
    list-style: none;
    padding-left: 30px;
}


.swiper-slide .bg-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    min-height: 780px;
}

.swiper-slide .bg-content > div {
    position: relative;
    width: 50%;
    height: 100%;
    float: left;
    background-repeat: no-repeat;
}

.swiper-slide .bg-content > div.right_img {
    background-position: center;
}

.bg-shadow {
    position: absolute;
    width: 100%;
    height: 110%;
    top: 0;
    right: 0;
    background-image: linear-gradient(to left, rgba(255,255,255,0.1), rgba(255,255,255,0) 90%);
    transform: rotate(5deg);
    transform-origin: top right;
    -ms-transform: rotate(5deg);
    -ms-transform-origin: top right;
    -moz-transform: rotate(5deg);
    -moz-transform-origin: top right;
    -webkit-transform: rotate(5deg);
    -webkit-transform-origin: top right;
    -o-transform: rotate(5deg);
    -o-transform-origin: top right;
}

.child-swiper-container .article {
    padding-left: 100px;
}

.child-swiper-container .article .txt-wrap {
    height: 264px;
}

.child-swiper-container .article .title {
    width: 94%;
}

.child-swiper-container .article .content {
    height: 150px;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    width: 72px;
    height: 52px;
    top: 50%;
    margin-top: -26px;
    background-image: url("../img/navigation_arrow.png");
    background-repeat: no-repeat;
    background-position-y: -52px;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    background-position-x: 0;
    left: 0;
}

.swiper-button-next {
    background-position-x: -72px;
    right: 0;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    background-position-y: 0;
    cursor: initial;
}

.gif-wraper {
    position: absolute;
    width: 540px;
    height: 563px;
    left: 0;
    top: 50%;
    margin-top: -281.5px;
    padding: 113px 0 0 35px;
}

.gif-wraper .tv-wraper {
    position: relative;
    width: 487px;
    height: 273px;
    margin: 0 auto;
}

.gif-wraper .phone-wraper {
    position: relative;
    width: 505px;
    height: 150px;
    padding-top: 57px;
}

.gif-wraper .tv-wraper .loading-logo {
    position: absolute;
    width: 143px;
    height: 138px;
    left: 50%;
    top: 50%;
    margin-left: -71.5px;
    margin-top: -69px;
    background-image: url("../img/animation/loading_logo.png");
    background-repeat: no-repeat;
    background-position: center;
}

.gif-wraper .tv-wraper .content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #1d1d1d;
    opacity: 0;
}

.gif-wraper .tv-wraper .content > div {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 273px;
    vertical-align: middle;
}

.gif-wraper .tv-wraper .content > div > img {
    vertical-align: middle;
    transform:scale(0, 0);
}

.gif-wraper .phone-wraper .device {
    position: relative;
    float: left;
    height: 93px;
    margin: 0 1px;
    background-image: url("../img/animation/devices.png");
    background-repeat: no-repeat;
    background-position-y: 0;
}

.gif-wraper .phone-wraper .device.iphone {
    width: 58px;
    background-position-x: 0;
}

.gif-wraper .phone-wraper .device.android {
    width: 51px;
    background-position-x: -58px;
}

.gif-wraper .phone-wraper .device.windows {
    width: 114px;
    background-position-x: -109px;
}

.gif-wraper .phone-wraper .device.mac {
    width: 132px;
    background-position-x: -223px;
}

.gif-wraper .phone-wraper .device.chrome {
    width: 133px;
    background-position-x: -355px;
}

.gif-wraper .phone-wraper .device .logo,
.gif-wraper .phone-wraper .device .border,
.gif-wraper .phone-wraper .device .content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url("../img/animation/devices.png");
    background-repeat: no-repeat;
}

.gif-wraper .phone-wraper .device .logo {
    background-position-y: -186px;
    opacity: 0.2;
}

.gif-wraper .phone-wraper .device .border {
    background-position-y: -93px;
    opacity: 0;
}

.gif-wraper .phone-wraper .device .content {
    background-position-y: -279px;
    opacity: 0;
}

.gif-wraper .phone-wraper .device.android .logo,
.gif-wraper .phone-wraper .device.android .border,
.gif-wraper .phone-wraper .device.android .content {
    background-position-x: -58px;
}

.gif-wraper .phone-wraper .device.windows .logo,
.gif-wraper .phone-wraper .device.windows .border,
.gif-wraper .phone-wraper .device.windows .content {
    background-position-x: -109px;
}

.gif-wraper .phone-wraper .device.mac .logo,
.gif-wraper .phone-wraper .device.mac .border,
.gif-wraper .phone-wraper .device.mac .content {
    background-position-x: -223px;
}

.gif-wraper .phone-wraper .device.chrome .logo,
.gif-wraper .phone-wraper .device.chrome .border,
.gif-wraper .phone-wraper .device.chrome .content {
    background-position-x: -355px;
}

.gif-wraper .phone-wraper .device .wifi {
    position: absolute;
    width: 53px;
    height: 21px;
}

.gif-wraper .phone-wraper .device .wifi .line {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url("../img/animation/wifi.png");
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 0;
    opacity: 0;
}

.gif-wraper .phone-wraper .device.iphone .wifi .line {
    background-position-y: -21px;
}

.gif-wraper .phone-wraper .device .wifi .line.line2 {
    background-position-x: -53px;
}

.gif-wraper .phone-wraper .device .wifi .line.line3 {
    background-position-x: -106px;
}

.gif-wraper .phone-wraper .device.iphone .wifi {
    /*transform: scale(0.8, 0.8);*/
    right: -14px;
    top: 14px;
}

.gif-wraper .phone-wraper .device.android .wifi {
    transform:scale(0.8, 0.8);
    right: -9px;
    top: 14px;
}

.gif-wraper .phone-wraper .device.windows .wifi {
    right: 34px;
    top: 0;
}

.gif-wraper .phone-wraper .device.mac .wifi {
    right: 41px;
    top: -23px;
}

.gif-wraper .phone-wraper .device.chrome .wifi {
    right: 47px;
    top: -23px;
}

.gif-wraper .phone-wraper .device .name {
    position: absolute;
    color: #FFFFFF;
    font-size: 14px;
    left: 0;
    bottom: -36px;
    width: 100%;
    text-align: center;
    opacity: 0;
}

.gif-wraper .phone-wraper .device.iphone .name {
    padding-right: 12px;
}

@keyframes tv_logo
{
    0%   { opacity: 0; }
    2%   { opacity: 1; }
    8%   { opacity: 1; }
    9%   { opacity: 0; }
    20%   { opacity: 0; }
    21%   { opacity: 1; }
    28%   { opacity: 1; }
    29%   { opacity: 0; }
    40%   { opacity: 0; }
    41%   { opacity: 1; }
    48%   { opacity: 1; }
    49%   { opacity: 0; }
    60%   { opacity: 0; }
    61%   { opacity: 1; }
    68%   { opacity: 1; }
    69%   { opacity: 0; }
    80%   { opacity: 0; }
    81%   { opacity: 1; }
    88%   { opacity: 1; }
    89%   { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes tv_content
{
    0%   { opacity: 0; }
    9%   { opacity: 0; }
    10%   { opacity: 1; }
    19%   { opacity: 1; }
    20%   { opacity: 0; }
    29%   { opacity: 0; }
    30%   { opacity: 1; }
    39%   { opacity: 1; }
    40%   { opacity: 0; }
    49%   { opacity: 0; }
    50%   { opacity: 1; }
    59%   { opacity: 1; }
    60%   { opacity: 0; }
    69%   { opacity: 0; }
    70%   { opacity: 1; }
    79%   { opacity: 1; }
    80%   { opacity: 0; }
    89%   { opacity: 0; }
    90%   { opacity: 1; }
    99%   { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes tv_iphone
{
    0%   { transform: scale(0, 0); }
    9%   { transform: scale(0, 0); }
    10%   { transform: scale(1, 1); }
    19%   { transform: scale(1, 1); }
    20%   { transform: scale(0, 0); }
    100% { transform: scale(0, 0); }
}

@keyframes tv_android
{
    0%   { transform: scale(0, 0); }
    29%  { transform: scale(0, 0); }
    30%  { transform: scale(1, 1); }
    39%   { transform: scale(1, 1); }
    40%   { transform: scale(0, 0); }
    100% { transform: scale(0, 0); }
}

@keyframes tv_windows
{
    0%   { transform: scale(0, 0); }
    49%   { transform: scale(0, 0); }
    50%   { transform: scale(1, 1); }
    59%   { transform: scale(1, 1); }
    60%   { transform: scale(0, 0); }
    100% { transform: scale(0, 0); }
}

@keyframes tv_mac
{
    0%   { transform: scale(0, 0); }
    69%   { transform: scale(0, 0); }
    70%   { transform: scale(1, 1); }
    79%   { transform: scale(1, 1); }
    80%   { transform: scale(0, 0); }
    100% { transform: scale(0, 0); }
}

@keyframes tv_chrome
{
    0%   { transform: scale(0, 0); }
    89%   { transform: scale(0, 0); }
    90%   { transform: scale(1, 1); }
    99%   { transform: scale(1, 1); }
    100% { transform: scale(0, 0); }
}

@keyframes iphone_border
{
    0%   { opacity: 0; }
    1%   { opacity: 1; }
    19%  { opacity: 1; }
    20%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes android_border
{
    0%   { opacity: 0; }
    20%   { opacity: 0; }
    21%   { opacity: 1; }
    39%  { opacity: 1; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes windows_border
{
    0%   { opacity: 0; }
    40%   { opacity: 0; }
    41%   { opacity: 1; }
    59%  { opacity: 1; }
    60%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes mac_border
{
    0%   { opacity: 0; }
    60%   { opacity: 0; }
    61%   { opacity: 1; }
    79%  { opacity: 1; }
    80%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes chrome_border
{
    0%   { opacity: 0; }
    80%   { opacity: 0; }
    81%   { opacity: 1; }
    99%  { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes iphone_logo
{
    0%   { opacity: 0.2; }
    1%   { opacity: 0.2; }
    2%   { opacity: 1; }
    8%   { opacity: 1; }
    9%  { opacity: 0.2; }
    100% { opacity: 0.2; }
}

@keyframes android_logo
{
    0%   { opacity: 0.2; }
    21%   { opacity: 0.2; }
    22%   { opacity: 1; }
    28%   { opacity: 1; }
    29%  { opacity: 0.2; }
    100% { opacity: 0.2; }
}

@keyframes windows_logo
{
    0%   { opacity: 0.2; }
    41%   { opacity: 0.2; }
    42%   { opacity: 1; }
    48%   { opacity: 1; }
    49%  { opacity: 0.2; }
    100% { opacity: 0.2; }
}

@keyframes mac_logo
{
    0%   { opacity: 0.2; }
    61%   { opacity: 0.2; }
    62%   { opacity: 1; }
    68%   { opacity: 1; }
    69%  { opacity: 0.2; }
    100% { opacity: 0.2; }
}

@keyframes chrome_logo
{
    0%   { opacity: 0.2; }
    81%   { opacity: 0.2; }
    82%   { opacity: 1; }
    88%   { opacity: 1; }
    89%  { opacity: 0.2; }
    100% { opacity: 0.2; }
}

@keyframes iphone_name
{
    0%   { opacity: 0; bottom: -36px; }
    2%   { opacity: 0; bottom: -36px; }
    3%   { opacity: 1; bottom: -20px; }
    19%  { opacity: 1; bottom: -20px; }
    20%  { opacity: 0; bottom: -36px; }
    100% { opacity: 0; bottom: -36px; }
}

@keyframes android_name
{
    0%   { opacity: 0; bottom: -36px; }
    22%   { opacity: 0; bottom: -36px; }
    23%   { opacity: 1; bottom: -20px; }
    39%  { opacity: 1; bottom: -20px; }
    40%  { opacity: 0; bottom: -36px; }
    100% { opacity: 0; bottom: -36px; }
}

@keyframes windows_name
{
    0%   { opacity: 0; bottom: -36px; }
    42%   { opacity: 0; bottom: -36px; }
    43%   { opacity: 1; bottom: -20px; }
    59%  { opacity: 1; bottom: -20px; }
    60%  { opacity: 0; bottom: -36px; }
    100% { opacity: 0; bottom: -36px; }
}

@keyframes mac_name
{
    0%   { opacity: 0; bottom: -36px; }
    62%   { opacity: 0; bottom: -36px; }
    63%   { opacity: 1; bottom: -20px; }
    79%  { opacity: 1; bottom: -20px; }
    80%  { opacity: 0; bottom: -36px; }
    100% { opacity: 0; bottom: -36px; }
}

@keyframes chrome_name
{
    0%   { opacity: 0; bottom: -36px; }
    82%   { opacity: 0; bottom: -36px; }
    83%   { opacity: 1; bottom: -20px; }
    99%  { opacity: 1; bottom: -20px; }
    100% { opacity: 0; bottom: -36px; }
}

@keyframes iphone_content
{
    0%   { opacity: 0; }
    9%   { opacity: 0; }
    10%  { opacity: 1; }
    19%  { opacity: 1; }
    20%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes android_content
{
    0%   { opacity: 0; }
    29%   { opacity: 0; }
    30%  { opacity: 1; }
    39%  { opacity: 1; }
    40%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes windows_content
{
    0%   { opacity: 0; }
    49%   { opacity: 0; }
    50%  { opacity: 1; }
    59%  { opacity: 1; }
    60%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes mac_content
{
    0%   { opacity: 0; }
    69%   { opacity: 0; }
    70%  { opacity: 1; }
    79%  { opacity: 1; }
    80%  { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes chrome_content
{
    0%   { opacity: 0; }
    89%   { opacity: 0; }
    90%  { opacity: 1; }
    99%  { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes iphone_wifi1
{
    0%   { opacity: 0; }
    4%   { opacity: 0; }
    5%   { opacity: 1; }
    8.9% { opacity: 1; }
    9% { opacity: 0.2; }
    10% { opacity: 1; }
    12.9% { opacity: 1; }
    13% { opacity: 0; }
    14% { opacity: 1; }
    15.9% { opacity: 1; }
    16% { opacity: 0; }
    17% { opacity: 0; }
    18% { opacity: 1; }
    19% { opacity: 1; }
    20% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes iphone_wifi2
{
    0%   { opacity: 0; }
    6%   { opacity: 0; }
    7%   { opacity: 1; }
    8.9% { opacity: 1; }
    9% { opacity: 0.2; }
    10% { opacity: 1; }
    11.9% { opacity: 1; }
    12% { opacity: 0; }
    13% { opacity: 1; }
    14.9% { opacity: 1; }
    15% { opacity: 0; }
    16% { opacity: 1; }
    17.9% { opacity: 1; }
    18% { opacity: 0; }
    19% { opacity: 1; }
    20% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes iphone_wifi3
{
    0%   { opacity: 0; }
    7%   { opacity: 0; }
    9.9%   { opacity: 1; }
    10%   { opacity: 0; }
    11% { opacity: 0; }
    12.9% { opacity: 1; }
    13% { opacity: 0; }
    14.9% { opacity: 1; }
    15% { opacity: 0; }
    16.9% { opacity: 1; }
    17% { opacity: 0; }
    19% { opacity: 1; }
    20% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes android_wifi1
{
    0%   { opacity: 0; }
    24%   { opacity: 0; }
    25%   { opacity: 1; }
    28.9% { opacity: 1; }
    29% { opacity: 0.2; }
    30% { opacity: 1; }
    32.9% { opacity: 1; }
    33% { opacity: 0; }
    34% { opacity: 1; }
    35.9% { opacity: 1; }
    36% { opacity: 0; }
    37% { opacity: 0; }
    38% { opacity: 1; }
    39% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes android_wifi2
{
    0%   { opacity: 0; }
    26%   { opacity: 0; }
    27%   { opacity: 1; }
    28.9% { opacity: 1; }
    29% { opacity: 0.2; }
    30% { opacity: 1; }
    31.9% { opacity: 1; }
    32% { opacity: 0; }
    33% { opacity: 1; }
    34.9% { opacity: 1; }
    35% { opacity: 0; }
    36% { opacity: 1; }
    37.9% { opacity: 1; }
    38% { opacity: 0; }
    39% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes android_wifi3
{
    0%   { opacity: 0; }
    27%   { opacity: 0; }
    29.9%   { opacity: 1; }
    30%   { opacity: 0; }
    31% { opacity: 0; }
    32.9% { opacity: 1; }
    33% { opacity: 0; }
    34.9% { opacity: 1; }
    35% { opacity: 0; }
    36.9% { opacity: 1; }
    37% { opacity: 0; }
    39% { opacity: 1; }
    40% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes windows_wifi1
{
    0%   { opacity: 0; }
    44%   { opacity: 0; }
    45%   { opacity: 1; }
    48.9% { opacity: 1; }
    49% { opacity: 0.2; }
    50% { opacity: 1; }
    52.9% { opacity: 1; }
    53% { opacity: 0; }
    54% { opacity: 1; }
    55.9% { opacity: 1; }
    56% { opacity: 0; }
    57% { opacity: 0; }
    58% { opacity: 1; }
    59% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes windows_wifi2
{
    0%   { opacity: 0; }
    46%   { opacity: 0; }
    47%   { opacity: 1; }
    48.9% { opacity: 1; }
    49% { opacity: 0.2; }
    50% { opacity: 1; }
    51.9% { opacity: 1; }
    52% { opacity: 0; }
    53% { opacity: 1; }
    54.9% { opacity: 1; }
    55% { opacity: 0; }
    56% { opacity: 1; }
    57.9% { opacity: 1; }
    58% { opacity: 0; }
    59% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes windows_wifi3
{
    0%   { opacity: 0; }
    47%   { opacity: 0; }
    49.9%   { opacity: 1; }
    50%   { opacity: 0; }
    51% { opacity: 0; }
    52.9% { opacity: 1; }
    53% { opacity: 0; }
    54.9% { opacity: 1; }
    55% { opacity: 0; }
    56.9% { opacity: 1; }
    57% { opacity: 0; }
    59% { opacity: 1; }
    60% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes mac_wifi1
{
    0%   { opacity: 0; }
    64%   { opacity: 0; }
    65%   { opacity: 1; }
    68.9% { opacity: 1; }
    69% { opacity: 0.2; }
    70% { opacity: 1; }
    72.9% { opacity: 1; }
    73% { opacity: 0; }
    74% { opacity: 1; }
    75.9% { opacity: 1; }
    76% { opacity: 0; }
    77% { opacity: 0; }
    78% { opacity: 1; }
    79% { opacity: 1; }
    80% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes mac_wifi2
{
    0%   { opacity: 0; }
    66%   { opacity: 0; }
    67%   { opacity: 1; }
    68.9% { opacity: 1; }
    69% { opacity: 0.2; }
    70% { opacity: 1; }
    71.9% { opacity: 1; }
    72% { opacity: 0; }
    73% { opacity: 1; }
    74.9% { opacity: 1; }
    75% { opacity: 0; }
    76% { opacity: 1; }
    77.9% { opacity: 1; }
    78% { opacity: 0; }
    79% { opacity: 1; }
    80% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes mac_wifi3
{
    0%   { opacity: 0; }
    67%   { opacity: 0; }
    69.9%   { opacity: 1; }
    70%   { opacity: 0; }
    71% { opacity: 0; }
    72.9% { opacity: 1; }
    73% { opacity: 0; }
    74.9% { opacity: 1; }
    75% { opacity: 0; }
    76.9% { opacity: 1; }
    77% { opacity: 0; }
    79% { opacity: 1; }
    80% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes chrome_wifi1
{
    0%   { opacity: 0; }
    84%   { opacity: 0; }
    85%   { opacity: 1; }
    88.9% { opacity: 1; }
    89% { opacity: 0.2; }
    90% { opacity: 1; }
    92.9% { opacity: 1; }
    93% { opacity: 0; }
    94% { opacity: 1; }
    95.9% { opacity: 1; }
    96% { opacity: 0; }
    97% { opacity: 0; }
    98% { opacity: 1; }
    99% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes chrome_wifi2
{
    0%   { opacity: 0; }
    86%   { opacity: 0; }
    87%   { opacity: 1; }
    88.9% { opacity: 1; }
    89% { opacity: 0.2; }
    90% { opacity: 1; }
    91.9% { opacity: 1; }
    92% { opacity: 0; }
    93% { opacity: 1; }
    94.9% { opacity: 1; }
    95% { opacity: 0; }
    96% { opacity: 1; }
    97.9% { opacity: 1; }
    98% { opacity: 0; }
    99% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes chrome_wifi3
{
    0%   { opacity: 0; }
    87%   { opacity: 0; }
    89.9%   { opacity: 1; }
    90%   { opacity: 0; }
    91% { opacity: 0; }
    92.9% { opacity: 1; }
    93% { opacity: 0; }
    94.9% { opacity: 1; }
    95% { opacity: 0; }
    96.9% { opacity: 1; }
    97% { opacity: 0; }
    99% { opacity: 1; }
    100% { opacity: 0; }
}

.gif-wraper.start .tv-wraper .loading-logo {
    animation: tv_logo 25s linear infinite;
}

.gif-wraper.start .tv-wraper .content {
    animation: tv_content 25s linear infinite;
}

.gif-wraper.start .tv-wraper .iphone > img {
    animation: tv_iphone 25s linear infinite;
}

.gif-wraper.start .tv-wraper .android > img {
    animation: tv_android 25s linear infinite;
}

.gif-wraper.start .tv-wraper .windows > img {
    animation: tv_windows 25s linear infinite;
}

.gif-wraper.start .tv-wraper .mac > img {
    animation: tv_mac 25s linear infinite;
}

.gif-wraper.start .tv-wraper .chrome > img {
    animation: tv_chrome 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.iphone .border {
    animation: iphone_border 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.android .border {
    animation: android_border 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.windows .border {
    animation: windows_border 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.mac .border {
    animation: mac_border 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.chrome .border {
    animation: chrome_border 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.iphone .logo {
    animation: iphone_logo 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.android .logo {
    animation: android_logo 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.windows .logo {
    animation: windows_logo 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.mac .logo {
    animation: mac_logo 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.chrome .logo {
    animation: chrome_logo 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.iphone .name {
    animation: iphone_name 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.android .name {
    animation: android_name 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.windows .name {
    animation: windows_name 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.mac .name {
    animation: mac_name 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.chrome .name {
    animation: chrome_name 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.iphone .content {
    animation: iphone_content 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.android .content {
    animation: android_content 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.windows .content {
    animation: windows_content 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.mac .content {
    animation: mac_content 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.chrome .content {
    animation: chrome_content 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.iphone .line1 {
    animation: iphone_wifi1 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.iphone .line2 {
    animation: iphone_wifi2 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.iphone .line3 {
    animation: iphone_wifi3 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.android .line1 {
    animation: android_wifi1 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.android .line2 {
    animation: android_wifi2 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.android .line3 {
    animation: android_wifi3 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.windows .line1 {
    animation: windows_wifi1 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.windows .line2 {
    animation: windows_wifi2 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.windows .line3 {
    animation: windows_wifi3 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.mac .line1 {
    animation: mac_wifi1 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.mac .line2 {
    animation: mac_wifi2 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.mac .line3 {
    animation: mac_wifi3 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.chrome .line1 {
    animation: chrome_wifi1 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.chrome .line2 {
    animation: chrome_wifi2 25s linear infinite;
}

.gif-wraper.start .phone-wraper .device.chrome .line3 {
    animation: chrome_wifi3 25s linear infinite;
}
