html {
    height: 100%;
    width: 100%;
}

body {
    color: #b32342;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    width: 100%;
    height: 100%;
    background: url('images/bg-left.jpg') 0 0 no-repeat;
    background-size: auto 100%;
}

.body-wrapper {
    width: 100%;
    height: 100%;
    background: url('images/bg-right.jpg') 0 0 no-repeat;
    background-position-x: right;
    background-size: auto 100%;

}

a,
a:link,
a:focus,
a:visited {
    color: #b32342;
    font-weight: 700;
}

a:hover {
    text-decoration: underline;
}


.centered-content {
    min-height: 100%;
    min-height: 100vh;  
    display: flex;
    align-items: center;
    width: 100%;
}

.inner-content {
    margin: 0 auto;
    text-align: center;
}

.logo img {
    width: 45%;
    height: auto;
    margin-bottom: 40px;
}

.logo {
    position: relative;
}

.social {
    margin: 20px 0;
}

.social a:first-child {
    margin-right: 5px;
}

.social a img {
    width: 45px;
}

p {
    margin: 0;
    letter-spacing: -0.5px;
}

.container {
    position: relative;
    max-width: 1385px;
    width: 100%;
  }

footer {
    height: 40px;
    background-color: #e48440;
    width: 100%;
    position: absolute;
    bottom: 0;
    overflow: hidden;
}

footer p {
    color: #fff;
    font-size: 13px;
    margin: 10px 0;
    text-align: center;
    letter-spacing: 0;
}





/* tablet */
@media screen and (max-width: 1199px) {
    .body-wrapper,
    body {
        background: none;
    }
}

/* tablet portrait */
@media screen and (max-width: 991px) {

}



/* phone */
@media screen and (max-width: 767px) {


}




/* small phone */
@media screen and (max-width: 374px) {



}










