body {
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.wrap {
    width: 100%;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    padding: 15px 0;
}

.container-fluid {
    width: 100%;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
}
.title h1 {
    margin-top: 0;
    text-align: center;
}
.desc {
    text-align: center;
}
.desc .errorMsg {
    font-size: 13px;
    margin-bottom: 0;
}
.image {
    margin-top: 50px;
    position: relative;
    width: 100%;
    text-align: center;
}
img {
    max-width: 800px;
    width: 100%;
}
.logo {
    width: 100%;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    max-width: 300px;
    width: 100%;
}
.arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.arrow span {
    font-size: 70px;
    font-family: 'Arial', sans-serif;
    display: inline-block;
    color: #034892;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.1s;
}
.arrow span:last-child {
    animation-delay: 0.2s;
}

@keyframes arrow {
    0% {
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
        opacity: 0;
    }
}

@media (max-width: 1199px) {
    .content {
        height: 100%;
    }
    .title h1 {
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    p, span, .desc p.errorMsg {
        font-size: 18px;
        text-align: center;
    }
    .content {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .title h1 {
        font-size: 22px;
    }
    .desc p, .desc p.errorMsg {
        font-size: 16px;
    }
}