html{
    overflow:hidden;
}
body{
    background: url(images/bg_body.jpeg) left top no-repeat;
    background-size: cover;
    overflow: hidden;
    font-family: 'Open Sans', sans-serif;
}
.content{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 9;
    width: 80%;
    text-align: center;
    transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    color: #ffffff;
    max-width: 500px;
    background: rgb(3 117 199 / 50%);
    border-radius: 10px;
    padding: 15px 30px;
}
.content p{
    font-size: 20px;
}
.content h1{
    font-size: 36px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}
@media(max-width:767px){
    .hidden-xs{
        display: none;
    }
    .content{
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 9;
    width: 100%;
    text-align: center;
    transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    color: #fff;
    max-width: 580px;
    }
}