/*
 * Globals
 */

/* Links */
a,
a:focus,
a:hover {
    color: #000;
}

/* Custom default button */
.btn-default,
.btn-default:hover,
.btn-default:focus {
    color: #333;
    text-shadow: none; /* Prevent inheritance from `body` */
    background-color: #fff;
    border: 1px solid #fff;
}

/*
 * Base structure
 */

html,
body {
    height: 100%;
    background-color: #f9f9f9;
}

body {
    color: #666;
    text-align: center;
    opacity: .01;
    /*text-shadow: 0 1px 3px rgba(0,0,0,.5);*/
    animation: bodyAni 0.5s 1 0s both;
}

@keyframes bodyAni {
    0% {
        opacity:0.01;
    }
    100% {
        opacity:1;
    }
}


/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
    display: table;
    width: 100%;
    height: 100%; /* For at least Firefox */
    min-height: 100%;
    /*-webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);*/
    /*box-shadow: inset 0 0 100px rgba(0,0,0,.5);*/
    /*background: url("../img/bg1.jpg") no-repeat center center;*/
    background-size: 100% auto;
    overflow: hidden;
    position: absolute;
    z-index: 9;
}

.site-wrapper-inner {
    display: table-cell;
    vertical-align: top;
}

.cover-container {
    margin-right: auto;
    margin-left: auto;
}

/* Padding for spacing */
.inner {
    padding: 30px;
}

/*
 * Header
 */
.masthead-brand {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 30px;
}

.masthead-nav > li {
    display: inline-block;
}

.masthead-nav > li + li {
    margin-left: 20px;
}

.masthead-nav > li > a {
    padding-right: 0;
    padding-left: 0;
    font-size: 16px;
    font-weight: bold;
    color: #333; /* IE8 proofing */
    /*color: rgba(255,255,255,.75);*/
    border-bottom: 2px solid transparent;
}

.masthead-nav > li > a:hover,
.masthead-nav > li > a:focus {
    background-color: transparent;
    border-bottom-color: #ccc;
    /*border-bottom-color: rgba(255,255,255,.25);*/
}

.masthead-nav > .active > a,
.masthead-nav > .active > a:hover,
.masthead-nav > .active > a:focus {
    color: #000;
    border-bottom-color: #333;
}

@media (min-width: 768px) {
    .masthead-brand {
        float: left;
    }

    .masthead-nav {
        float: right;
    }
}

/*
 * Cover
 */

.cover {
    padding: 0 20px;
}

.cover .btn-lg {
    padding: 10px 20px;
    font-weight: bold;
}

/*
 * Footer
 */

.mastfoot {
    color: #ccc; /* IE8 proofing */
    /*color: rgba(255,255,255,.5);*/
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 12px;
    line-height: 18px;
}

.mastfoot a {
    color: #ccc;
}

/*
 * Affix and center
 */


.site-wrapper-inner {
    vertical-align: middle;
}

.masthead {
    position: fixed;
    top: 0;
}

.masthead,
.mastfoot,
.cover-container {
    width: 100%; /* Must be percentage or pixels for horizontal alignment */
}

@media (min-width: 768px) {
    /* Pull out the header and footer */

    /* Start the vertical centering */
    /*.site-wrapper-inner {*/
        /*vertical-align: middle;*/
    /*}*/

    /* Handle the widths */
}

@media (min-width: 992px) {
    .masthead,
    .mastfoot,
    .cover-container {
        width: 700px;
    }
}

#aniBox {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

#aniBox .logo {
    height: 100%;
    width: 100%;
    /*transform: rotate(30deg);*/
    animation: logoAni 15s linear 0s both infinite;
    transform-origin: 50% 50%;
    background: url("../img/logowhite.png") no-repeat center center;
    background-size: auto 70%;
    z-index: 999;
    position: absolute;
}


@keyframes logoAni {
    0% {
        opacity: 0;
        transform: rotate(20deg) scale(1.5, 1.5)
    }
    10% {
        opacity: 1;
        transform: rotate(30deg) scale(1.6, 1.6);
    }
    90% {
        opacity: 1;
        transform: rotate(50deg) scale(1.7, 1.7);
    }
    100% {
        opacity: 0;
        transform: rotate(60deg) scale(1.8, 1.8)
    }
}


@keyframes lbAni {
    0% {
        transform: translate(0,0);
    }
    100% {
        transform: translate(3000px,0);
    }
}


.slogan{
    color: #000;
    width: 100%;
    font-size: 32px;
    overflow: hidden;
}


@media (min-width: 768px) {
    .slogan {
        font-size: 56px;
    }
}

.contactBox{
    color: #000;
    width: 100%;
    font-size: 12px;
    line-height: 28px;
}
.contactBox h1{
    font-size: 14px;
}
.contactBox a{
    text-decoration: underline;
}

@media (min-width: 768px) {
    .contactBox {
        font-size: 14px;
        line-height: 32px;
    }
    .contactBox h1{
        font-size: 18px;
    }
}