.header-art {
    overflow: hidden;
    max-width: 1920px;
    height: 900px;
    margin: 0 auto;
    position: relative;
    opacity: 1;
}

.header-art .background-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.75;
    background: url('../../img/header/pattern.png') repeat top left;
}

.header-art .header-text {
    position: absolute;
    top: 22%;
    left: 0;
    width: 100%;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}


.header-art .header-text .box {
    display: inline-block;
    border-left: 3px solid #534136;
    padding-left: 22px;
    padding-right: 18px;
}

.header-art .header-text h1 {
    font-size: 3.3rem;
    line-height: 1.36;
    font-weight: 200;
    color: #534136;
    text-align: left;
    letter-spacing: -1px;
    margin-bottom: -5px !important;
}

.header-art .header-text h2 {
    font-size: 1.260rem;
    line-height: 1.36;
    font-weight: 400 !important;
    color: #534136;
    text-align: left;
    padding-left: 8px;
}

@media screen and (min-width: 1024px) {
    .header-art .header-text h1 {
        font-size: 4.4rem;
    }

    .header-art .header-text h2 {
        font-size: 1.68rem;
    }

    .header-art .header-text {
        top: 35%;
    }
}

.header-art .header-text small {
    font-size: 1.26rem;
    line-height: 1.36;
}

@keyframes menuOpen {
    from {
        opacity: 0;
        margin-top: -80px;
    }

    to {
        opacity: 1;
        margin-top: '0px';
    }
}

.header-art .line-bar {
    position: absolute;
    width: 800px;
    height: 100%;
    background: #6e5f56;
    opacity: 0.1;
    left: -801px;
    top: 0;
}

.header-art .line-bar.one {
    -moz-animation: linebar 3s;
    -webkit-animation: linebar 3s;
    -o-animation: linebar 3s;
    animation: linebar 3s;
}


@keyframes linebar {
    0% {
        left: -801px;
    }

    50% {
        left: 50%;
    }

    100% {
        left: 100%;
    }
}

.header-art .bar {
    position: absolute;
    left: 0;
    bottom: 50%;
    top: 50%;
    transform: translate(0, -50%);
    zoom: 1;
}

@media screen and (max-width: 768px) {
    .header-art .bar {
        top: 55%;
        zoom: 0.7;
    }
}

