@import url('../fonts/fonts.css');
* {
    outline: none !important;
    text-decoration: none;
}

html {
    color: #494948;
    font-size: 1em;
}

body {
    margin: 0;
    background: url('../img/bg.jpg') 0 0 repeat;
    -webkit-animation: bgMove 150s linear 0s infinite normal;
    -moz-animation: bgMove 150s linear 0s infinite normal;
    -ms-animation: bgMove 150s linear 0s infinite normal;
    -o-animation: bgMove 150s linear 0s infinite normal;
    animation: bgMove 150s linear 0s infinite normal;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    height: 100%;
    margin: 0;
}

.navbar-brand {
    height: auto;
    padding: 0 15px;
}

#intro .container{
    max-width: 583px;
    max-height: 511px;
    margin: 0 auto;
    position: absolute;
    top: calc(50% - 255.5px);
    left: 0;
    right: 0;
}
.header{
display: inline-block;
    background-color: #fff;
    width: calc(100% - 45px);
    opacity: 0.80;
    padding: 10px 0 10px 45px;
}

.header h2{
    font-family: 'TRPillGothic300mgTh', sans-serif;
    font-size: 36px;
    letter-spacing: 10px;
    color: #8b8d8f;
    float:left;
}

.social{
    list-style:none;
    padding:0;
    float:left;
    position:relative;
    margin-top: 124px;
}

.social li{
    float:left;
    position:relative;
    width:56px;
    height:25px;
}

.social li:after{
     position: absolute;
    font-family: 'TRPillGothic300mgTh', sans-serif;
    font-weight: bold;
    top: -8px;
    right: 15px;
    content: "/";
    color: #1686b8;
    font-size: 36px;
}

    .social li:last-child::after {
        content:"";
    }


    .social li a{
    display: inline-block;
    margin: 0 auto;
    vertical-align: -webkit-baseline-middle;
    }

.social li:nth-child(1) a{
    background:url(../img/behance.png) center center no-repeat;
    width:27px;
    height:16px;
}

.social li:nth-child(2) a{
    background:url(../img/facebook.png) center center no-repeat;
    width:10px;
    height:21px;
}

.social li:nth-child(3) a{
    background:url(../img/twitter.png) center center no-repeat;
    width:13px;
    height:17px;
}

.social li:nth-child(4) a{
    background:url(../img/mail.png) center center no-repeat;
    width:23px;
    height:23px;
}

.social li:nth-child(1) a:hover{
    background:url(../img/behance-hover.png) center center no-repeat;
}

.social li:nth-child(2) a:hover{
    background:url(../img/facebook-hover.png) center center no-repeat;
}

.social li:nth-child(3) a:hover{
    background:url(../img/twitter-hover.png) center center no-repeat;
}

.social li:nth-child(4) a:hover{
    background:url(../img/mail-hover.png) center center no-repeat;
}

#banner {
   position:absolute;
   width:100%;
   height:100%;
   background-color:#121114;
   opacity:0.75;
}

.logo{
    background-color: #2a2d31;
    opacity: 0.95;
    padding: 32px 35px 10px 35px;
    display: inline-block;
    width: calc(100% - 70px);
    margin-top:-4px;
    position:relative;
        z-index: 99;
}

.logo:before{
    width: 55px;
    height: 55px;
    background-color: #178ec2;
    opacity: 0.95;
    position: absolute;
    content: '';
    top: -28px;
    left: -28px;
}

.logo:after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 68px 68px;
    border-color: transparent transparent #e40132 transparent;
    right: -23px;
    position: absolute;
    bottom: -28px;
}

    .logo img:first-child {
        float:left;    
    }
    .logo img:last-child {
        float:right;    
    }

.contact{
    background-color: #fff;
    color: #979a9c;
    opacity: 0.79;
    font-family: 'TRPillGothic300mgRg';
    font-size: 12px;
    display: inline-block;
    padding: 15px 35px 20px;
    margin-top: -4px;
}

    .contact > div {
    width: 30%;
    float: left;
    margin-right: 5%;
    }

    .contact > div:last-child {
        margin-right:0;
    }

        .contact > div h4{
    position: relative;
    margin-bottom: 25px;
        }

    .contact > div h4:before{
content: "";
    border-top: 4px solid #e40134;
    position: absolute;
    width: 30px;
    top: 20px;
    left: 0;
    }

            .contact > div:nth-child(2) h4:before {
                      border-top: 4px solid #1893ca;
            }

    .contact a{
        text-decoration:none;
        color:#979a9c;
    }
        .contact a:hover {
            color:#1686b8;
        }

                .contact p{
                    margin:0;
                }
    
@-webkit-keyframes bgMove {
    0% {
        background-position: 50% 0;
    }

    100% {
        background-position: 50% -4092px;
    }
}

@-moz-keyframes bgMove {
    0% {
        background-position: 50% 0;
    }

    100% {
        background-position: 50% -4092px;
    }
}

@keyframes bgMove {
    0% {
        background-position: 50% 0;
    }

    100% {
        background-position: 50% -4092px;
    }
}

@media only screen and (min-width: 0) and (max-width: 480px) {
    #intro .container{
        width:100%;

    }
       .header h2{
           margin-bottom:10px;
       }

       .logo{
           padding: 40px 35px 5px 35px;
       }

       .social{
           margin-top:0;
       }
       .contact > div {
    width: 32%;
    margin-right: 2%;
}
}