/* General */
html {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
}

/* Helper Classes */
.full-height {
    height: 100vh;
}
.fill-height {
    height: 100%;
}
.fill-width {
    width: 100%;
}
.center-all {
	display: flex;
	justify-content: center;
	align-items: center;
}
.fas.left, .far.left, .fab.left {
    margin-right: 0.25rem;
}
.fas.left-left, .far.left-left, .fab.left-left {
    margin-right: 0.5rem;
}

/* Accordions */
.accordion-button, .accordion-button:not(.collapsed) {
    color: #000000;
    font-weight: 600;
    background-color: transparent;
}
.accordion-button:not(.collapsed):after {
    filter: grayscale(1);
}
.accordion-button:focus {
    border-color: transparent;
    outline: 0;
    box-shadow: 0 0 0 0.25rem transparent;
}

/* Buttons */
.btn {
    /* text-transform: uppercase; */
    font-weight: 600;
}
.btn.btn-primary {
    background-color: #253C78;
    border-color: #253C78;
}
.btn.btn-primary:focus {
    box-shadow: 0 0 0 0.25rem #253C7880;
}
.btn.btn-outline-primary {
    border-color: #253C78;
    color: #253C78;
}
.btn.btn-outline-primary:hover {
    background-color: #253C78;
    border-color: #253C78;
    color: #FFFFFF;
}

.btn.btn-secondary {
    background-color: #D36582;
    border-color: #D36582;
}
.btn.btn-secondary:focus {
    box-shadow: 0 0 0 0.25rem #D3658280;
}
.btn.btn-outline-secondary {
    border-color: #D36582;
    color: #D36582;
}
.btn.btn-outline-secondary:hover {
    background-color: #D36582;
    border-color: #D36582;
    color: #FFFFFF;
}

/* Navbar */
.navbar {
    background-color: transparent !important;
    z-index: 2;
}
.navbar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF60;
    backdrop-filter: blur(6px);
    z-index: 3;
}
.navbar .container {
    z-index: 4;
}
.navbar-collapse {
    justify-content: flex-end;
}
.navbar-collapse.show .btn {
    margin: 0.5rem 0 !important;
}
.navbar-light .navbar-toggler {
    border-color: transparent;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-brand {
    font-weight: 600;
    font-size: 1.5rem;
}
.nav-link {
    color: #333333;
}

/* Sections */
.section {
    padding: 96px 0;
}
.section:not(.intro) h1 {
    text-align: center;
}

/* Intro */
.intro {
    position: relative;
    /* background-color: #2B59C3; */
    background: hsla(222, 64%, 47%, 1);
    background: linear-gradient(45deg, hsla(222, 64%, 47%, 1) 0%, hsla(223, 53%, 31%, 1) 100%);
    background: -moz-linear-gradient(45deg, hsla(222, 64%, 47%, 1) 0%, hsla(223, 53%, 31%, 1) 100%);
    background: -webkit-linear-gradient(45deg, hsla(222, 64%, 47%, 1) 0%, hsla(223, 53%, 31%, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#2B59C3", endColorstr="#253D79", GradientType=1 );
    color: #FFFFFF;
    overflow: hidden;
    min-height: 100vh;
}
.intro p {
    color: #FFFFFF95;
    padding: 0.5rem 0;
}
.intro img {
    width: 100%;
    padding-top: 2rem;
    transform: scale(1.2);
}
.intro .video-toggle {
    display: block;
    margin-top: 3.2rem;
    cursor: pointer;
    color: #FFFFFF;
    text-decoration: none;
}
.intro .learn-more {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 1rem;
}
.intro .learn-more:hover {
    transform: scale(1.1)
}
.intro .learn-more a {
    color: #FFFFFF;
    text-decoration: none;
}

/* Video Modal */
.video-modal .modal-dialog {
    margin: 0;
    height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.video-modal .modal-content {
    max-width: 960px;
}
.video-modal .modal-body {
    position: relative;
    padding: 0px;
}
.video-modal .close {
    position: absolute;
    right: -2.5rem;
    top: 0;
    z-index: 999;
    font-size: 1.5rem;
    font-weight: normal;
    color: #fff;
    padding: 0.5rem;
    opacity: 1;
    cursor: pointer;
}

/* Features */
.features .feature {
    text-align: center;
    padding: 1rem 0;
}
.features .feature img {
    height: 7rem;
    max-width: 100%;
    padding: 1rem;
}
.features .feature small {
    font-weight: 400;
}

/* FAQ */
.faq {
    background-color: #FFEECF;
}
.faq h1 {
    margin-bottom: 2rem;
}

/* Features */
.contributors .contributor {
    text-align: center;
    padding: 1rem 0;
}
.contributors .contributor img {
    height: 7rem;
    max-width: 100%;
    padding: 1rem;
    border-radius: 50%;
}
.contributors .contributor .social-link {
    font-size: 1.3rem;
    text-decoration: none;
    color: #000000;
}

/* Donate */
.donate {
    background-color: #D36582;
    color: #FFFFFF;
}
.donate h1 {
    margin-bottom: 2rem;
}
.donate img {
    width: 100%;
    height: 16rem;
}
.donate .btn {
    color: #D36582;
}

/* Footer */
.footer {
    padding: 2rem 0;
}