html,
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    height: 100vh;
    width: 100vw;
    font-size: 20px;
    position: relative;
}

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

h1,
h2,
h3,
h4,
h5,
p,
div,
section {
    position: relative;
}

.page--wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}

.page--wrapper .bkgd--img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: url("../../img/bgd.jpg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    overflow: hidden;
}

.page--wrapper .bkgd--img::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000047;
}

.page--wrapper .page--inner {
    position: relative;
    width: 100%;
    max-width: 50%;
    text-align: center;
    margin: 0 auto;
}

.page--wrapper .page--inner > h1,
.page--wrapper .page--inner > h2,
.page--wrapper .page--inner > h3,
.page--wrapper .page--inner > h4,
.page--wrapper .page--inner > h5,
.page--wrapper .page--inner > p,
.page--wrapper .page--inner > div {
    padding: .3em;
}

.top-wrap::before, .overlay-wrap::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    content: '';
    z-index: 1;
    background-color: rgba(0,0,0,0.5);
}

h1,
h2,
h3,
h4,
h5 {
    width: 100%;
    text-align: center;
    font-weight: normal;
    margin: 0;
    color: #fff;
}

p {
    line-height: 1.2em;
    width: 100%;
    text-align: center;
    margin: 0;
}

p.subtitle {
    font-size: 1.2em;
    line-height: 1.2em;
    width: 100%;
    text-align: center;
}

a,
a:hover {
    text-decoration: none;
}

a.custom--button {
    /* color: #CBF985;  */
    color: #fff;
    border: 1px solid #fff;
    margin: 25px auto;
    display: inline-block;
    padding-top: .6em;
    padding-bottom: .6em;
    padding-left: 1.5em;
    padding-right: 1.5em;
    background-color: none;
    transition: all .3s ease-out;
}

a.custom--button:hover {
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
}

a.social--button {
    display: inline-block;
    font-size: 36px;
    color: #fff;
}

.social > a > i {
    display: inline;
    margin: 10px 10px;
    text-align: center;
}


.bold--text {
    font-weight: bold !important;
}

.italic--text {
    font-style: italic !important;
}

.underline--text {
    text-decoration: underline !important;
}
