.animated-line {
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 1rem;
    color: #fff;
    margin: 40px 0 0 0;
    width: 100%;
    text-align: left;
    opacity: 0;
    position: relative;
    transform: translateX(-120px);
    animation: slideInLeft 0.6s cubic-bezier(0.7,0,0.3,1) forwards;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5), 0 1px 2px rgba(0,0,0,0.25);
}
.animated-line + .animated-line {
    margin-top: 6px;
}

.lines-container {
    max-width: 400px;
    width: 100%;
    margin: 48px auto 0 auto;
    box-sizing: border-box;
    padding-left: 32px;
    padding-right: 8px;
}

@media (max-width: 480px) {
  .lines-container {
    max-width: 100vw;
    padding-left: 8vw;
    padding-right: 8vw;
  }
  .animated-line {
    margin: 24px 0 0 0;
    font-size: 0.95rem;
  }
  .page-title {
    margin-top: 62px !important;
  }
}



@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-120px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
 .page-footer {
    width: 100%;
    text-align: center;
    color: #828282;
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 16px;
    font-size: 85%;
    font-weight: 400;
    line-height: 1.7;
    padding: 18px 0 10px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.page-title::after {
    content: '';
    display: inline-block;
    border: 4px solid rgba(32, 77, 136, 0.4);
    width: 50px;
    height: 50px;
    margin-right: -35px;
    background: transparent;
    box-sizing: border-box;
    position: absolute;
    left: calc(50% - 85px - 5px);
    top: calc(50% - 25px - 5px);
    z-index: -2;
}
body {
    margin: 0;
    padding: 0;
    background: url('../images/img_bg_1.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    font-family: 'Work Sans', Arial, sans-serif;
    max-height: 900px;
}
 .page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-top: 120px;
    z-index: 1;
    position: relative;
    width: 100%;
}

.page-title::before {
    content: '';
    display: inline-block;
    border: 4px solid rgba(36, 114, 159, 0.8);
    width: 50px;
    height: 50px;
    margin-right: -35px;
    background: transparent;
    box-sizing: border-box;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: multiply;
}
