﻿@charset "utf-8";

.bottom {
    position: relative;
    background-color: black;
    max-width: 1200px;
    margin:auto;
}

.bottom .logo {
    height: 42vmin;
    width: 100%;
    position: relative;
    display:block;
    margin: auto;
}

.bottom .logo > .stage + img  {
    padding:0!important;
    transform:scale(0);
    width: 65%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.bottom .logo > .stage.transition {
    position:absolute;
}

.bottom .logo > .stage.transition + img {
    transition: transform 1s, opacity 0.6s;
}

.bottom .logo > .stage.up + img {
    transform:scale(1);
    opacity: 1;
}

.bottom > div:nth-child(3), .bottom > div:nth-child(5) {
    height:2px;
    background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.8), rgba(255,0255,255,0));
    position:relative;
    width:calc(100% - 100px);
    left: 50%;
    transform: translateX(-50%);
}

.bottom > div:nth-child(4) {
    position: relative;
    margin: 5px 0;
    font-family: Charm-Regular, Arial, sans-serif;
    text-align: center;
    font-size: 9vmin;
    color: #989898;
}

.bottom > .media {
    line-height:82px;
    text-align: center;
}

.bottom > .media > a {
    vertical-align: middle;
    margin:0 8px;
    display: inline-block;
    height: 38px;
}

.bottom > .media > a > img {
    display: block;
    height: 100%;
}

.bottom > .footer {
    font-size:18px;
    background-color: #2D2D2D;
    height:40px;
    line-height:40px;
}

.bottom > .footer > div {
    vertical-align: middle;
}

.bottom > .footer > div:first-child {
    float:left;
    margin-left:35px;
}

.bottom > .footer > div:last-child {
    float:right;
    margin-right:35px;
}

.bottom > .footer > div:last-child > a {
    text-decoration: none;
    color: white;
}

@media only screen and (max-width: 1024px) {
    .bottom > .logo {
        height: 35vw;
    }
    .bottom > .logo > .stage.up {
        height: 45vw;
    }
}

@media only screen and (max-width: 472px) {
    .bottom > .footer {
        font-size: 13px;
    }

    .bottom > .footer > div:first-child {
        margin-left: 20px;
    }

    .bottom > .footer > div:last-child {
        margin-right: 20px;
    }
}