/*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 {
    list-style: none;
}

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;*/
}

/* 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/bg.jpg');
    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 #ebebeb;
    margin: 20px 80px;
}

.bold{
    font-weight: bold;
}

.text-xl{
    font-size: 1.17em;
}

.mt-0{
    margin-top: 0!important;
}


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

ul.nav li {
    margin: 0 5px;
    font-size: 0.8rem;
}

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

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