:root {
    --white: #ffffff;
    --black: #01030d;
    --grey: #3c3c3e;
    --headerText: linear-gradient(180deg, #0b1f82 3.48%, #000442 103.48%);

    --primary-lightest: #003D2D;
    --primary-lighter: #003D2D;
    --primary-base: #003D2D;
    --primary-darker: #003D2D;
    --primary-darkest: #003D2D;

    --secondary-lightest: #007053;
    --secondary-lighter: #007053;
    --secondary-base: #007053;
    --secondary-darker: #007053;
    --secondary-darkest: #007053;

    --accent-lightest: #ffd700;
    --accent-lighter: #ffd700;
    --accent-base: #ffd700;
    --accent-darker: #ffd700;
    --accent-darkest: #ffd700;
}

/* Utilities */
.logo-border {
    border-right: 1px solid var(--accent-darker);
}

.card {
    border-radius: 8px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.card .card-body {
    padding: 1rem;
}

.radius-8 {
    border-radius: 0.5rem;
}

.btn.button-custom {
    background: radial-gradient(
        263.1% 263.1% at 50% 50%,
        #ffd700 0%,
        #b39700 100%
    );
    border-radius: 8px;
    font-family: "PT Sans", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    color: var(--black);
    line-height: 130%;
    transition: all 500ms ease;
    padding: 8px 16px;
}

.btn.button-custom:hover {
    background: var(--accent-darker);
}

/* Navigation Bar */
.navbar {
    filter: drop-shadow(0px 4px 4px rgba(255, 215, 0, 0.1));
    z-index: 10;
    padding-top: 12px;
    padding-bottom: 12px;
}

.navbar-logo {
    width: 5vw;
    height: auto;
    object-fit: contain;
}

.navbar-marketing .navbar-nav .nav-item {
    margin-right: 1.5rem;
}

.navbar-link {
    font-family: "PT Sans", sans-serif;
    font-size: 1rem;
    line-height: 150%;
    font-style: normal;
    color: var(--white) !important;
    font-weight: bold !important;
    transition: all 250ms ease;
    padding: 0 !important;
    letter-spacing: 1px;
}

.navbar-link:hover {
    color: var(--accent-base) !important;
}

/* Footer Link */
footer {
    background-image: url(../images/common/footer-bg.jpg);
    background-size: cover;
    background-position: center center;
}
.footer a {
    font-family: "PT Sans", sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    color: var(--white) !important;
    line-height: 130%;
    text-decoration: none !important;
    transition: all 250ms ease;
}

.footer a:hover {
    color: var(--accent-base) !important;
}

.footer-gutter {
    margin-left: -4px;
    margin-right: -4px;
}

.footer-gutter > [class^="col-"],
.footer-gutter > [class^=" col-"] {
    padding-left: 4px;
    padding-right: 4px;
}

/* Header */
.page-header {
    padding-top: 3rem;
}

/* Product card */
.card.card-product {
    transition: all 250ms ease;
    border: 1px solid transparent;
    height: 100%;
}

.card-product .card-footer {
    background: var(--white);
    padding: 0 16px 16px 16px;
}

.card-product .card-body {
    padding: 12px;
}

.card-product .card-img-top {
    width: 100%;
    height: 18vw;
    object-fit: cover;
}

.card.card-product:hover {
    border: 1px solid var(--secondary-darker);
}

/* Donation card */
.donation-card {
    height: 100%;
}

.donation-card .card-header {
    background: linear-gradient(268.14deg, #000442 7.79%, #040c34 96.02%);
    padding: 16px;
}

.donation-card .card-img-top {
    border-radius: 0;
    width: 100%;
    height: 12vw;
    object-fit: cover;
}

.donation-card .card-body {
    padding: 24px 16px;
}

.donation-card hr {
    border: 1px solid var(--secondary-darker);
    margin: 0;
}

.donation-card .card-footer {
    background: linear-gradient(268.14deg, #000442 7.79%, #040c34 96.02%);
    padding: 24px 16px;
}

.donation-progress {
    height: 32px;
    background-color: var(--white);
    border-radius: 4px;
    border: 1px solid var(--black);
}

.donation-progress .progress-bar {
    background: var(--primary-base);
}

.donation-progress .progress-bar.full {
    background-color: var(--accent-base);
}

.donation-amount {
    position: sticky;
    top: 10px;
}

@media (max-width: 767.98px) {

    /* Navbar */
    .navbar-logo {
        width: 14vw;
    }
    /* End Navbar */

    /* Product */
    .card-product .card-img-top {
        height: 140px;
    }
    /* End Product */

}


@media (max-width: 997.98px) {

    /* Utils */
    #layoutDefault, #layoutDefault_footer {
        overflow-x: hidden;
    }

    .page-header {
        padding-top: 2rem;
    }

}
