@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');


* { 
    font-family: 'Roboto Condensed', sans-serif;; 
    font-size: 10pt; 
    COLOR: #fff; 
    box-sizing: border-box;
}

.placeholder-welcome {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    animation: placeholder-welcome 5.5s forwards;
}

.placeholder-welcome img {
    width: 25%;
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translate(10%, -50%);
}

.placeholder-welcome .slogan {
    font-weight: 700;
    text-align: center;
    position: absolute;
    bottom: 25%;
    height: 0;
    left: 50%;
    transform: translateX(-50%);
}

.placeholder-welcome .slogan span {
    color: #4A3024;
    font-size: 30pt;
    padding: 0 30px;
    position: relative;
    bottom: -500px;
}

.placeholder-welcome .slogan span:nth-child(1) {
    animation: slogan-animate 1s forwards;
    animation-delay: 1s
}

.placeholder-welcome .slogan span:nth-child(2) {
    animation: slogan-animate 1s forwards;
    animation-delay: 1.5s
}

.placeholder-welcome .slogan span:nth-child(3) {
    animation: slogan-animate 1s forwards;
    animation-delay: 2s
}

.placeholder {
    width: 100%;
    height: 260px;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  
}

.placeholder .content {
    width: 400px;
    height: 260px;
    margin: 0 auto;
    border: 1px solid #000;
    padding: 30px 40px;
    animation: showcard 2s forwards;
    animation-delay: 4.5s;
    opacity: 1;
    background: url('/Images/bg.png') no-repeat right 125px;
    background-color: #000;
}

.placeholder .content img {
    width: 320px;
}

.placeholder .content .name {
    font-weight: 700;
    font-size: 18pt;
    margin-bottom: 0;
    margin-top: 30px;
    margin-bottom: 25px;
}

.placeholder .content .title {
    font-size: 12pt;
    margin-top: 2px;
}

.placeholder .content .adres, .placeholder .content .contact {
    line-height: 18px;
    width: 50%;
    margin: 0;
    float: left;
}
  

  
@media screen and (max-width: 375px) {
    .placeholder-welcome img {
        width: 65%;
        right: 50%;
        top: 35%;
        transform: translate(50%, -50%);
    }

    .placeholder-welcome .slogan {
        bottom: 40%;
    }

    .placeholder .content {
        width: 90%;
    }

    .placeholder .content .adres, .placeholder .content .contact {
        font-size: 11px;
    }

    @keyframes slogan-animate {
        from {    bottom: 0px;    }
        to {    bottom: 55px;    }
    }
}
