﻿.connect {
    display: none;
    width: 1200px;
    position: absolute;
    transition: all 1s;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
}

.top-box {
    display: block !important;
}

.top-box .logo {
    position: absolute;
    left: 54%;
    top: 20px;
    transform: translateX(-50%);
    transition: all 1s;
}

.top-box .logo.active {
    top: 40px;
    left: 0;
    transform: translateX(0);
}

.top-box .search-box {
    position: absolute;
    right: 50%;
    top: 310px;
    transform: translateX(50%);
    transition: all 1s;
}

.top-box .search-box.active {
    top: 60px;
    right: 0;
    transform: translateX(0);
}

.BigBanner {
    display: none;
    width: 100%;
    min-width: 1366px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 1;
    transition: all 1s;
}

.BigBanner.active {
    opacity: 0;
}

.topImg {
    width: 100%;
   min-width: 1366px;
    position: absolute;
    top: 0;
    left: 0;
    height: 562px;
    opacity: 0;
    z-index: -1;
    transition: all 1s;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.topImg.active {
    width: 100%;
    opacity: 1;
    height: 562px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

footer {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
}