body, html {
    font-family: Arial,sans-serif;
    font-size: 15px;
    color: #666;
    height: 100%;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-weight: 400;
    line-height: 1.5;
}

.bg-img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
}

:root {
    --main-white-color: #f2f2f2;
    --main-black-color: black;
    --main-purple-color: #9e89b8;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

button {
    background: none;
    outline: none;
    cursor: pointer;
}

ul, ol {
   padding-left: 1rem;
}

ol {
    list-style: upper-roman;
}

a {
    text-decoration: none;
    color: #3389d5;
}

a:hover {
    color: #2c6699;
}

body {
    font: 16px/1.5 "Barlow", sans-serif;
    color: #3a3434;
    /*IE FIX*/
    /*display: flex;
    flex-direction: column;*/
}
small {
    font-weight: 400;
}

/* CONTAINER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper > * {
    padding: 20px;
}

/* MAIN
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    min-height: 350px;
    background-image:  url('../images/bg3.jpg');
    background-color: #ebebeb;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.page-main .card {
    background-color: rgba(255, 255, 255 , 0.8);
    padding: 2rem;
    max-width: 100%;
    width: 880px;
}

h2,h3,h4,h5,h6 {
    margin: 13px 0px 10px 0px;
}

.page-main p + p {
    margin-top: 10px;
}

.text-center{
    text-align: center;
}

.text-gray-400{
    color: #cdc2c2;
}

hr {
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 20px 0;
}

ul.nav {
    list-style: none;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

ul.nav li {
    margin: 0 5px;
}

ul.nav li a {
    color: #787777;
}

ul.nav li a:hover {
    color: #767272;
}

.logo-outer {
    /*display: flex;*/
    /*max-width: 400px;*/
}

.logo-wrapper {
    display: inline-block;
    border: 4px solid #fff;
    padding: 1rem;
}


.logo{
    width: 100%;
    background: #fff;
    padding: 1rem;
}

.logo img{
    max-width: 390px;
    width: 100%;
}