/* Web safe */
/* Blue: #0066cc */
/* Yellow: #ffcc00 */

/* Regular */
/* Blue: #0057b7*/
/* Yellow: #ffd700 */

/* 
Proxima Nova Bold
font-family: proxima-nova, sans-serif;
font-weight: 700;
font-style: normal;


Proxima Nova Regular
font-family: proxima-nova, sans-serif;
font-weight: 400;
font-style: normal;


Proxima Nova Light
font-family: proxima-nova, sans-serif;
font-weight: 300;
font-style: normal;
*/

/* 
All Round Gothic Book
font-family: all-round-gothic, sans-serif;
font-weight: 400;
font-style: normal;


All Round Gothic Medium
font-family: all-round-gothic, sans-serif;
font-weight: 500;
font-style: normal;


All Round Gothic Bold
font-family: all-round-gothic, sans-serif;
font-weight: 700;
font-style: normal;
*/

html,
body {
    padding: 0px;
    margin: 0px;
    background-color: #e6e6e6;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

*:not(b) {
    font-family: proxima-nova, sans-serif;
    /* font-weight: 400; */
    font-style: normal;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.nav a,
.goth, .goth * {
    font-family: all-round-gothic, sans-serif;
}

h1 {
    font-size: 80px;
    font-weight: 500;
    margin: 20px 0;
    padding: 0px 20px;
    color: #121644;
}

h2 {
    font-size: 40px;
    font-weight: 500;
    margin: 30px 0;
    color: #121644;
}

p {
    font-size: 20px;
    color: #555555;
}

p.light {
    color: #ffffff;
}

.bold {
    font-weight: 700;
    font-style: normal;
}

.light {
    font-weight: 300;
    font-style: normal;
}

.uppercase {
    text-transform: uppercase;
}

.bg,
.bg-internal {
    height: 100%;
    width: 100%;
    z-index: 2;
    position: absolute;
    text-align: right;
    background-color: #e6e6e6;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.bg .overlay {
    width: 100%;
    height: 100%;
}

#home .bg {
    background-image: url("../images/home_bg.jpg");
    background-position: 100% 30%;
    background-size: auto 80%;
}

#home .bg .overlay {
    background-color: #ffffff73;
}

#about .bg {
    background-image: url("../images/about_bg_2.jpg");
}

#about .bg .overlay {
    background-color: rgb(226 226 226 / 50%);
}

/* #gallery .bg {
    background-image: url("../images/gallery_bg.jpg");
    background-position: cover;
} */

#gallery .bg .overlay {
    background-color: #ffffffc2;
}

#help .bg {
    background-color: #c2e0de;
}

#help .bg .bg-internal {
    background-color: #c2e0de;
    background-image: url("../images/hands_and_heart.jpg");
    background-position: 0% 100%;
    background-size: auto 80%;
}

#help .page-content-full-width {
    width: 50%;
    margin-left: 50%;
    padding: 100px;
}

#donate .bg {
    background-image: url("../images/donate_bg.jpg");
}

#donate .bg .overlay {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(252,252,252,0.9) 50%, rgba(249, 249, 249, 0.4) 100%);
}

#donate .page-content {
    width: 50%;
    margin-right: 50%;
    padding: 100px;
}

#contact .bg {
    background-image: url("../images/contact_bg.jpg");
    background-position: 100% 50%;
}

#contact .page-content {
    width: 50%;
    padding: 50px;
}

#contact .bg .overlay {
    background-color: #ffffffcf;
}

.logo img {
    height: 60px;
}

.logo-xl {
    text-align: center;
}

.logo-xl img {
    height: 120px;
    padding: 20px;
}

.footer > .logo {
    padding-bottom: 20px;
}

img.contain {
    object-fit: contain;
}
img.cover {
    object-fit: cover;
}
img.scale {
    object-fit: scale-down;
}
img.fill {
    object-fit: fill;
}

.center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

a,
a:visited,
a:focus {
    text-decoration: none;
    color: #555555;
}

a.underline {
    text-decoration: underline;
}

.page {
    min-height: 100vh;
    width: 100%;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.page.not-full-height {
    min-height: auto;
}

.page-content,
.page-content-full-width {
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.page-content {
    max-width: 1200px;
}

.row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.column {
    display: flex;
    flex-direction: column;
}

.nav {
    position: absolute;
    top: 0px;
    left: 0px;
    padding: 20px;
    z-index: 15;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    align-items: center;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
}

.nav-link {
    margin-top: 15px;
}

.nav-link:not(:last-child) a {
    padding-right: 40px;
}

.nav-link.help a {
    font-weight: bold;
    color: #d40f0f;
}

.nav-link.menu {
    width: 30px;
    padding-left: 30px;
    padding-top: 5px;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    width: 100%;
    background-color: #362338;
    color: #ffffff;
    z-index: 10;
    text-align: center;
}

.panel {
    padding: 20px 40px 40px 40px;
    border-radius: 10px;
    background-color: #ffffffa1;
}

.panel.opaque {
    background-color: #ffffffdb;
}

.panel.opaque-2 {
    background-color: #ffffffcc;
}

#images .item {
    width: 400px;
}

a.button {
    text-transform: uppercase;
    padding: 20px;
    border: 2px solid #121644;
    color: #121644;
    display: inline-block;
    margin: 20px 0;
    font-weight: bold;
    transition-property: color, background-color;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}

a.button:hover {
    background-color: #121644;
    color: #ffffff;
}

.copyright {
    font-size: 12px;
    color: #b7b7b7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
    padding-right: 30px;
}

.contact-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 40px;
}

.contact-item .contact-icon {
    width: 30px;
    padding: 8px 20px 0px 0px;
}

.contact-item .contact-text {
    font-size: 24px;
}

body.loading {
    overflow: hidden;
}

#loader {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #e6e6e6;
    width: 100%;
    height: 100%;
    z-index: 100;
}

#loader .logo img {
    height: 100px;
    padding-bottom: 30px;
}

#loader .text {
    text-transform: uppercase;
    padding: 0px 30px 30px 0;
    color: #686868;
    font-size: 14px;
    overflow: hidden;
}