@import url('https://fonts.googleapis.com/css2?family=Beiruti:wght@200..900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
	/* --primary-color: #008c3e; */
    --primary-color: #232976;
  --primary-dark-green: #1d7b3f;
	--color-1: #D7DC21;
	--color-2: #F4834A;
	--color-3: #698EC8;
	--color-4: #6EC8DC;
	--color-5: #FFCD54;
	--color-6: #772B84;

	--bs-primary: #008c3e;
    /* --bs-primary: #232976; */
	--bs-primary-bg-subtle: #606af3;
	--bs-primary-border-subtle: #414bcc;
	--bs-primary-rgb: 35,41,118;
	--bs-primary-text-emphasis: #141847;

	--bs-secondary: #ffcd54;
	--bs-secondary-bg-subtle: #fff2d4;
	--bs-secondary-border-subtle: #d3ae56;
	--bs-secondary-rgb: 255,205,84;
	--bs-secondary-text-emphasis: #795a14;
}

.btn-primary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #1e2262;
	--bs-btn-hover-border-color: #181c4e;
	--bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #171b4f;
	--bs-btn-active-border-color: #12143b;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--bs-primary);
	--bs-btn-disabled-border-color: var(--bs-primary);
}
.btn-primary:hover {
    background: transparent;
    color: var(--primary-color, darkblue);
    border-color: var(--primary-color, darkblue);
}
.btn-outline-primary {
	--bs-btn-color: var(--bs-primary);
	--bs-btn-border-color: var(--bs-primary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--bs-primary);
	--bs-btn-hover-border-color: var(--bs-primary);
	--bs-btn-focus-shadow-rgb: var(--bs-primary-rgb);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--bs-primary);
	--bs-btn-active-border-color: var(--bs-primary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--bs-primary);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--bs-primary);
	--bs-gradient: none;
}
.btn-secondary {
	--bs-btn-color: #fff;
	--bs-btn-bg: var(--bs-secondary);
	--bs-btn-border-color: var(--bs-secondary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: #ffbc1f;
	--bs-btn-hover-border-color: #eba400;
	--bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: #eba400;
	--bs-btn-active-border-color: #b88100;
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: #fff;
	--bs-btn-disabled-bg: var(--bs-secondary);
	--bs-btn-disabled-border-color: var(--bs-secondary);
}
.btn-outline-secondary {
	--bs-btn-color: var(--bs-secondary);
	--bs-btn-border-color: var(--bs-secondary);
	--bs-btn-hover-color: #fff;
	--bs-btn-hover-bg: var(--bs-secondary);
	--bs-btn-hover-border-color: var(--bs-secondary);
	--bs-btn-focus-shadow-rgb: var(--bs-secondary-rgb);
	--bs-btn-active-color: #fff;
	--bs-btn-active-bg: var(--bs-secondary);
	--bs-btn-active-border-color: var(--bs-secondary);
	--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
	--bs-btn-disabled-color: var(--bs-secondary);
	--bs-btn-disabled-bg: transparent;
	--bs-btn-disabled-border-color: var(--bs-secondary);
	--bs-gradient: none;
}
.btn-outline-secondary:hover {
    color: var(--primary-color, darkblue);
}

.btn-give.btn-light {
  background: #01a1e1;
}

body {
	font-family: "Beiruti", sans-serif;
	min-height: 100vh;
    overflow-x: hidden;
}

.font-beiruti {
	font-family: "Beiruti", sans-serif;
}
.font-cormorant {
	font-family: "Cormorant Garamond", serif;
}

#scroll-to-top {
    position: fixed;
    height: 3.5rem;
    width: 3.5rem;
    bottom: 2rem;
    left: calc(50% - 1.75rem);
    background: var(--primary-dark-green);
    border: 2px solid white;
    border-radius: 50%;
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 0 2px #00000020;
    transform: translateY(8rem);
}
@media (max-width: 768px) {
    #scroll-to-top {
        bottom: 4rem;
    }
}
#scroll-to-top::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%) rotate(-45deg);
    height: 1rem;
    width: 1rem;
    border-top: 2px solid white;
    border-right: 2px solid white;
}
#scroll-to-top::before {
    content: "to top";
    display: block;
    position: absolute;
    z-index: 1;
    bottom: 0;
    transform: translateY(-40%);
    width: 100%;
    font-size: 10pt;
    text-align: center;
    color: white;
}
html[lang="fr"] #scroll-to-top::before {
    content: "Début";
}
@media (min-width: 768px) {
    #scroll-to-top:hover {
        height: 4rem;
        width: 4rem;
        left: calc(50% - 2rem);
        box-shadow: 0 4px 4px #00000080;
        transition: .25s;
    }
}
#scroll-to-top.show {
    transform: translateY(0);
    transition: .25s;
}
#scroll-to-top.hide {
    transform: translateY(8rem);
    transition: .25s;
}


header {
	--gfa-header-color: var(--bs-white);
	--gfa-header-height: fit-content;
	--gfa-header-minor-font-family: "Beiruti", sans-serif;

	color: var(--gfa-header-color);

	background-image: linear-gradient(160deg, #1c9649 30%, #9fb571 70%, #b9bfa8);
  background-attachment: fixed;
	min-height: var(--gfa-header-height);
    overflow-x: hidden;
}
header > :is(.container, .container-fluid) {
	color: var(--gfa-header-color)
}

#scroll-hint {
    position: absolute;
    bottom: 4rem;
    right: 3rem;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    height: 1rem;
    width: fit-content;
    cursor: pointer;
}
#scroll-hint div {
    position: relative;
    display: flex;
    white-space: nowrap;
    width: fit-content;
}
#scroll-hint::before, #scroll-hint::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - .5rem);
    left: calc(-4rem - 12px);
    height: 1rem;
    width: 1rem;
    transform: rotate(45deg);
    border-right: 2px solid white;
    border-bottom: 2px solid white;
}
#scroll-hint::after {
    left: unset;
    right: calc(-4rem - 12px);
}
#scroll-hint div::before, #scroll-hint div::after {
    content: "";
    position: absolute;
    display: block;
    height: 1px;
    width: 2rem;
    top: 50%;
    background: white;
    left: -6px;
    transform: translateX(-100%);
}
#scroll-hint div::after {
    left: unset;
    right: -6px;
    transform: translateX(100%);
}
@media (max-width: 768px) {
    #scroll-hint {
        right: unset;
        bottom: 5.5rem;
    }
}
#headerBase {
    position: relative;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
    justify-content: center;
}
#headerBase:not(.index) {
    display: flex;
}
@media (max-width: 768px) {
    .donation-ribbon {
        margin-top: 6rem
    }
}
#headerBase.index {
    height: calc(100vh - 6rem);
    padding-bottom: 3rem;
}
@media (min-width: 768px) {
    #headerBase.index {
        height: calc(100vh - 10rem);
    }
}
@media (min-width: 1800px) {
    #headerBase.index {
        height: 90vh
    }
}

#headerMainContent {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#headerMainContent svg {
    max-width: 100%;
}
#headerBase .navbar li {
    white-space: nowrap;
    text-align: center;
}
@media (max-width: 768px) {
    #headerBase .navbar li a {
        font-size: 3.5vw;
    }
    #headerMainContent {
        justify-content: start;
    }
    #headerBase .navbar {
        background: var(--primary-dark-green) !important;
        z-index: 1;
    }
    #headerMainContent > .row {
        height: 100%;
    }
}

.nav-link {
  font-size: 1.25rem;
}

#headerBase:not(.index) #christmasSVG {
    height: 8rem;
    margin: 1rem 0;
    max-width: 100%;
}
#headerBase.index #christmasSVG {
	max-height: 10.5rem;
	margin: 1rem 0;
}

.svg-paint-path {
    fill: none;
    stroke: var(--svg-color, white);
    stroke-width: 11px;
}
svg.animated .svg-paint-path {
    stroke-dashoffset: 10000;
    stroke-dasharray: 10000;
}
svg.animated.animate .svg-paint-path {
    stroke-dashoffset: 0;
    transition: 4s;
    transition-delay: 0s;
}
svg.animate #christmas_paint {
    stroke-dashoffset: 0;
    transition: 6s;
}

.svg-stroke {
    fill:none;
    stroke:white;
    stroke-miterlimit:10;
    stroke-width:1.5px;
}
.svg-fill {
    fill: white;
    stroke-width: 0;
}
.dark-svg svg path {
    fill: var(--primary-color, darkblue);
}

#headerBase .header-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#headerBase .gfa-logo-svg {
	height: 4rem;
}
#headerBase.index .gfa-logo-svg {
	width: 30%;
}
.ornament::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(-50% + 1px);
    left: calc(50% - 1px);
    height: 50%;
    width: 2px;
    background: white;
    background: linear-gradient(0deg, white 26%, transparent 72%);
}
.ornament-image {
    position: relative;
    width: fit-content;
}
.ornament-image svg {
    position: relative;
    z-index: 1;
}
.ornament-image figure {
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    bottom: 0;
    overflow: hidden;
    margin: 0;
}
.ornament-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#headerMainContent .ornament {
    transform: translateY(-50%);
    animation: dropOrnament 2s ease-in-out 0s forwards;
}
@keyframes dropOrnament {
    to { transform: translateY(0); }
}
#headerBase:not(.index) #headerMainContent .ornament:nth-child(1) {
    position: absolute;
    left: 7%;
    width: 7rem;
    bottom: 0;
}
#headerBase:not(.index) #headerMainContent .ornament:nth-child(2) {
    position: absolute;
    right: 7%;
    width: 7rem;
    bottom: 24%;
}
#headerBase:not(.index) #headerMainContent .ornament:nth-child(3) {
    position: absolute;
    left: 18%;
    width: 8rem;
    bottom: 46%;
}
#headerBase:not(.index) #headerMainContent .ornament:nth-child(4) {
    position: absolute;
    left: 12%;
    width: 13rem;
    bottom: 0;
}
#headerBase:not(.index) #headerMainContent .ornament:nth-child(5) {
    position: absolute;
    right: 12%;
    width: 9rem;
    bottom: 0;
}

.index #headerMainContent .ornament:nth-child(1) {
    position: absolute;
    left: 0;
    width: 25%;
    bottom: 57%;
}
.index #headerMainContent .ornament:nth-child(2) {
    position: absolute;
    animation-delay: .75s;
    right: -7%;
    bottom: -10%;
    width: 15%;
}
.index #headerMainContent .ornament:nth-child(3) {
    animation-delay: 0s;
    position: absolute;
    left: 67%;
    bottom: 28%;
    width: 29%;
}
.index #headerMainContent .ornament:nth-child(4) {
    animation-delay: .5s;
    position: absolute;
    left: 35%;
    bottom: -20%;
    width: 45%;
}
.index #headerMainContent .ornament:nth-child(5) {
    animation-delay: .2s;
    position: absolute;
    left: 21%;
    bottom: -32%;
    width: 22%;
}
@media (max-width: 768px) {
    .ornament::before {
        display: none;
    }
    .header-ornaments {
        height: 50%;
    }
    .header-text {
        height: 45%;
    }
    .index #headerMainContent .ornament:nth-child(1) {
        width: 5rem;
        left: 20%;
        bottom: 65%;
        transform: translate(-50%, 50%) !important;
    }
    .index #headerMainContent .ornament:nth-child(2) {
        width: 5rem;
        right: 0;
        bottom: 75%;
        transform: translate(-50%, 50%) !important;
    }
    .index #headerMainContent .ornament:nth-child(3) {
        width: 5rem;
        left: 65%;
        bottom: 60%;
        transform: translate(-50%, 50%) !important;
    }
    .index #headerMainContent .ornament:nth-child(4) {
        width: 9rem;
        left: 50%;
        bottom: 50%;
        transform: translate(-50%, 50%) !important;
    }
    .index #headerMainContent .ornament:nth-child(5) {
        width: 5rem;
        left: 33%;
        bottom: 33%;
        transform: translate(-50%, 50%) !important;
    }
}

[data-bs-toggle="collapse"].collapsed .d-collapsed-inline {
	display: inline !important;
}
[data-bs-toggle="collapse"].collapsed .d-collapsed-none {
	display: none !important;
}

.donation-ribbon .input-group > .input-overlay {
    --bs-body-color: var(--bs-white);
    background-color: transparent;
    border-color: white;
    mix-blend-mode: normal;
}
.donation-ribbon .input-group > .input-overlay > .form-control::placeholder {
    color: rgba(var(--bs-white-rgb),0.6);
}
.donation-ribbon .input-group > .input-overlay:focus-within {
    border-color: var(--bs-white);
    box-shadow: unset;
}
.donation-ribbon .input-group button {
    display: flex;
    align-items: center;
}
.donation-ribbon .input-group button:hover {
    color: var(--primary-color, darkblue);
}
.donation-ribbon .btn-group > form:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.donation-ribbon .btn-group > form:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
@container (min-width: 410px) {
    .donation-ribbon .btn-group > form > .btn {
        border-radius: var(--bs-btn-border-radius) !important;
    }
}
@container (min-width: 576px) {
    .donation-ribbon > .container > h4 {
        text-align: left;
    }
}
/* @media (min-width: 576px) {
	header {
		--gfa-header-height: 30rem;
	}
} */

.home-intro {
    padding: 8rem 0 0 0;
  }
  .home-intro svg {
    width: 100%
  }
  .home-intro .head-text {
    font-weight: bold;
    font-size: 28pt;
  }
  .home-intro .head-subtext {
    margin-top: 1rem;
    font-size: 26pt;
  }
  .home-intro .head-paragraph {
    color: white;
    font-size: 18pt;
  }
  .home-intro .head-disclaimer {
    margin-top: 6rem;
  }
  #quickLinks {
    position: relative;
    width: 100%;
    height: fit-content;
    min-height: 3rem;
    background: linear-gradient(160deg, #232976 30%, #00A6E5);
    top: 0;
    z-index: 100;
    margin: 0;
  }
  #quickLinks.caught {
    position: sticky;
    transform: translateY(-110%);
  }
  #quickLinks.caught.show {
    transform: translateY(0);
    transition: .25s;
  }
  #quickLinks.caught.hide {
    transform: translateY(-110%);
    transition: .25s;
  }

  #quickLinks ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  #quickLinks li {
    position: relative;
    height: 3rem;
    list-style: none;
    padding: 0;
	width: auto;
    max-width: 14%;
  }
  @media (min-width: 992px) {
    #quickLinks li {
        width: auto;
        padding: 0 .5rem;
    }
  }
  .quick-link {
    position: relative;
    text-decoration: none;
    color: white;
    align-items: center;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 14pt;
    width: 2.25rem;
  }
  .quick-link-icon {
    position: absolute;
    left: 0;
    height: 2.25rem;
    aspect-ratio: 1/1;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .quick-link-background {
    position: absolute;
    left: 0;
    background: var(--color-1);
    height: 2.25rem;
    width: 2.25rem;
    border-radius: 8px;
    transition: .25s;
  }
  .all-items-link {
    width: 100% !important;
    max-width: 365px !important;
  }
  .all-items-link a {
    width: 100%;
    padding: 0 1.5rem;
    text-align: center;
  }
  .all-items-link span {
    color: black !important;
  }
  .all-items-link .quick-link-background {
    border: 1px solid transparent;
    width: 100%
  }
  .all-items-link a:hover {
    border-color: white;
  }
  .all-items-link a:hover span {
    color: var(--color1) !important;
  }
  .all-items-link a:hover .quick-link-background {
    border-color: white;
    background: var(--primary-color, darkblue);
  }
  @media (min-width: 992px) {
    #quickLinks {
        position: sticky;
    }
    #quickLinks li {
        width: fit-content;
        max-width: 14%;
    }
    .quick-link {
        width: 100%;
        padding: 0 .75rem 0 3rem;
    }
    .all-items-link {
        width: fit-content !important;
        width: 14%;
    }
  }
  #quickLinks li:nth-child(2) .quick-link-background {
    background: var(--color-2);
  }
  #quickLinks li:nth-child(3) .quick-link-background {
    background: var(--color-3);
  }
  #quickLinks li:nth-child(4) .quick-link-background {
    background: var(--color-4);
  }
  #quickLinks li:nth-child(5) .quick-link-background {
    background: var(--color-5);
  }
  #quickLinks li:nth-child(6) .quick-link-background {
    background: var(--color-6);
  }
  .quick-link:hover .quick-link-background {
    width: 100%;
    transition: .25s;
  }
  .quick-link-icon svg {
    height: calc(3rem * .6);
    aspect-ratio: 1/1;
  }
  .quick-link span {
    margin-left: 6px;
    vertical-align: middle;
    text-decoration: none;
    color: white;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.section-content {
    padding: 0;
    margin-bottom: 4rem;
}
.section-content > .row {
    margin: 0 auto;
    max-width: 120rem;
}
.section-header {
    position: relative;
    height: fit-content;
    overflow: hidden;
    background: var(--primary-color, darkblue);
    background: linear-gradient(68.65deg, var(--primary-color, darkblue) 45.82%, var(--color1, yellow) 92.39%);
}
.section-header-image {
    position: relative;
}
.section-header-image figure {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    height: 100%;
    width: 100%;
}
.section-header-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.header-section-text-main li {
    list-style-type: "+ ";
}

.header-section-text-main .section-text p, .header-section-text-main .section-text li  {
    font-size: 16pt;
}
.section-header-content {
    height: fit-content;
    min-height: 40rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    color: white;
}
@media (min-width: 992px) {
    .section-header-content {
        padding: 4rem;
    }
}
.header-section-text-main {
    width: 35rem;
    max-width: 90%;
}
@media (max-width: 768px) {
    .header-section-text-main {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.section-header-content p {
    font-size: 14pt;
}
.section-header-gift input {
    color: white;
}

.item-col {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0;
    padding: 0;
}
@media (min-width: 768px) {
    .item-col {
        margin-bottom: 1rem;
        padding-left: .5rem;
        padding-right: .5rem;
    }
}
.item-card {
    transition-timing-function: ease-in-out;
    transition: .5s;
    min-height: 100%;
    overflow: hidden;
    border: none;
    border-radius: 0;
}
.item-card figure {
    position: relative;
    width: 100%;
    height: 254px;
    aspect-ratio: 5/3;
    margin: 0;
}
.item-card figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.item-card img {
    border-radius: 0;
}
@media (min-width: 768px) {
    .item-card {
        border-radius: 4px;
    }
    .item-card:not(.no-slide) {
        transform: translateY(6rem);
        opacity: 0;
        max-width: 25rem;
    }
}
.item-card:not(.no-slide).slide {
    transform: translateY(0);
    opacity: 1;
    transition: .5s;
}
@media (min-width: 992px) {
    .item-col:nth-child(2) .item-card.slide {
        transition-delay: .1s;
    }
    .item-col:nth-child(3) .item-card.slide {
        transition-delay: .2s;
    }
    .item-col:nth-child(4) .item-card.slide {
        transition-delay: .3s;
    }
    .item-col:nth-child(5) .item-card.slide {
        transition-delay: .4s;
    }
    .item-col:nth-child(6) .item-card.slide {
        transition-delay: .5s;
    }
    .item-col:nth-child(7) .item-card.slide {
        transition-delay: .6s;
    }
    .item-col:nth-child(8) .item-card.slide {
        transition-delay: .7s;
    }
    .item-col:nth-child(9) .item-card.slide {
        transition-delay: .8s;
    }
    .item-col:nth-child(10) .item-card.slide {
        transition-delay: .9s;
    }
}

.item-card .card-body {
    padding: 0;
    background: var(--primary-color, darkblue);
    font-size: 14pt;
    color: white;
    display: flex;
    flex-direction: column
}
.item-card .card-title {
    position: relative;
    padding: .5rem 1rem;
    background: var(--color-1, yellow);
    /* background: linear-gradient(149.71deg, var(--primary-color, darkblue) 21.63%, var(--color-1, yellow) 77.56%); */
    color: var(--primary-color, darkblue);
    /* text-shadow: 0 0 4px black; */
    font-size: 21pt;
    font-family: "Cormorant Garamond", serif;
    font-weight: bold;
    margin: 0;
}

.item-card .card-text {
    position: relative;
    padding: 1rem 1rem 0 1rem;
    flex-grow: 1;
    margin-bottom: 1rem;
}
.item-card .card-text p {
    margin: 0;
}
.item-card .card-footer {
    border: none;
    background: var(--primary-color, darkblue);
    padding: 0 1rem 1rem 1rem;
    border-radius: 0;
}
.item-card .gift-options-columns div:first-child {
    position: relative;
}
.item-card .gift-options-columns div:first-child::after {
    content: "";
    display: block;
    position: absolute;
    right: 20%;
    top: 50%;
    transform: translateY(-50%);
    height: 75%;
    width: 2px;
    background: white;
}

.card-footer .input-overlay {
  opacity: 0.6;
  transition: 0.3s;
}

.card-footer .input-overlay:has(input:focus) {
  opacity: 1;
}

.section-header-gift .input-overlay,
.section-header-gift .input-overlay input {
    color: white;
    border-color: white;
    background: transparent;
}

.card-giving.toggled {
    padding: 1rem;
    height: calc(100% + 4.5rem);
    transition: .25s;
}
.item-card li {
    list-style-type: "+ ";
}
.item-card li::marker {
    color: var(--color-1, yellow);
}

/* Custom section colors */
#poverty-section .section-header {
    background: linear-gradient(68.65deg, var(--primary-color, darkblue) 45.82%, rgb(176, 206, 66) 92.39%);
}
#children-section .section-header {
    background: linear-gradient(68.65deg, var(--primary-color, darkblue) 45.82%, var(--color-2, orange) 92.39%);
}
#share-section .section-header {
    background: linear-gradient(-68.65deg, var(--primary-color, darkblue) 55%, var(--color-3, lightblue) 92.39%);
}
#share-section .card-title, #share-section .card-giving {
    background: var(--color-3, lightblue);
    color: white;
}
#water-section .section-header {
    background: linear-gradient(68.65deg, var(--primary-color, darkblue) 10.82%, var(--color-4, teal) 82.39%);
}
#water-section .card-title, #water-section .card-giving {
    background: var(--color-4, lightblue);
    color: white;
}
#women-section .section-header {
    background: linear-gradient(68.65deg, var(--primary-color, darkblue) 45.82%, var(--color-5, orange) 92.39%);
}
#women-section .card-title, #women-section .card-giving {
    background: var(--color-5, orange);
}
#medical-section .section-header {
    background: linear-gradient(68.65deg, var(--primary-color, darkblue) 45.82%, var(--color-6, purple) 92.39%);
}
#medical-section .card-title, #medical-section .card-giving {
    background: var(--color-6, purple);
    color: white;
}
#water-section .water-quote svg {
    width: 25%;
}
#water-section .water-quote svg path {
    stroke: var(--primary-color, darkblue);
}

/* /Custom section colors */

#tree-section .section-header {
    background: var(--primary-color, darkblue);
    position: relative;
    min-height: unset;
    overflow: visible;
}

#tree-section .section-header figure {
    position: absolute;
    top: 0;
    left: 0;
    height: 140%;
    width: 100%;
    margin: 0;
}
#tree-section .section-header figure::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: transparent;
    background: linear-gradient(90deg, #00000080 45.82%, transparent 100%);
}
@media (max-width: 768px) {
    #tree-section .section-header figure::before {
        background: #00000070;
        width: 100%;
    }
}
#tree-section .section-header figure::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 12rem;
    width: 100%;
    background: transparent;
    background: linear-gradient(0, white 20%, transparent 100%);
}
#tree-section .section-header img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center 30%;
}
#tree-section .section-header-content {
    position: relative;
    z-index: 1;
    display: block;
    min-height: unset;
}
#tree-section .section-header-content p {
    font-size: 24pt;
    margin: 0;
}
.section-title-icon svg {
    height: 2rem;
    width: 2rem;
}
section:not(#tree-section) .section-title {
    position: relative;
    width: fit-content;
    font-size: 28pt;
    margin-bottom: 1rem;
}
section:not(#tree-section) .section-title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -12px;
    width: 100%;
    height: 3px;
    background: white;
}
#tree-section .section-title {
    font-size: 28pt;
}
#tree-section .section-header svg,
#under_the_tree {
    width: 75%;
    max-width: 28rem;
}
#tree-section .section-content {
    margin-top: -2%;
    z-index: 1;
    position: relative;
    padding-bottom: 4rem;
}
#tree-section .books {
    justify-content: center;
}
#tree-section .books > a:hover img {
    height: 105%;
    width: 105%;
    transition: .25s;
}
#tree-section .books figure {
    width: 75%;
    height: 22rem;
    margin: auto 0;
}
#tree-section img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: .25s;
}
#liftUpYourEyes {
    position: relative;
}
#liftUpYourEyes::after {
    content: "NEW";
    display: flex;
    position: absolute;
    top: 5%;
    left: 25%;
    background: #B0CE42;
    border-radius: 50%;
    height: 3rem;
    width: 3rem;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14pt;
    transform: translateX(-50%);
    color: var(--primary-color, darkblue)
}
@media (max-width: 992px) {
    #liftUpYourEyes::after {
        left: 35%;
    }
}
#tree-section .cards-title h3 {
    font-size: 28pt;
    color: #333;
    margin: 0;
}
.order-btn {
  color: var(--primary-dark-green);
  font-size: 23pt;
}
#tree-section .cards p {
    color: #333;
    font-size: 23pt;
}
#tree-section .cards-step .card-step-number {
    font-size: 28pt;
    font-weight: bold;
}
#tree-section .cards-image {
    width: 75%;
    height: 80%;
    margin: -13% auto 0 auto;
}
#tree-section img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

@media (max-width: 1200px) {
    #tree-section .books figure {
        margin: auto;
    }
}

#glory-section .section-header {
    padding-top: 2rem;
    padding-bottom: 2rem;
    min-height: 40rem;
    background: linear-gradient(155deg, #232976 40%, #D7DC21 105%);
}
#glory-section .section-header #glory {
    position: relative;
    width: 75%;
    margin: 2rem 0;
    left: 50%;
    transform: translateX(-50%);
}
#glory-section .section-header h3 {
    color: white;
    text-align: center;
    font-size: 28pt;
}
#glory-section .section-header p {
    color: white;
    font-size: 20pt;
}
#glory-section .section-title {
    width: 100% !important;
}
#glory-section .section-title::after {
    display: none !important;
}
#glory-section .ornament svg {
    width: 100%;
}
#glory-ornament-1 {
    position: absolute;
    width: 14rem;
    top: 23%;
    left: 28%;
}
#glory-ornament-2 {
    left: 89%;
    top: 13%;
    width: 14rem;
}
#glory-ornament-3 {
    top: -15%;
    left: 53%;
    width: 21rem;
    z-index: 1;
}

.section-header-gift .input-overlay input::placeholder, .card-giving .input-light input::placeholder {
    color: white !important;
    opacity: .5;
}

.quote-with-items {
    flex-direction: column;
    justify-content: center;
}
.quote-with-items p {
    margin: 0 auto;
    max-width: 25rem;
    color: var(--primary-color, darkblue);
    text-align: center;
    font-size: 21pt;
}

#cart {
    bottom: 0;
    position: fixed;
    right: 0;
    transition: transform 0.35s ease;
    width: 100vw;
    z-index: 110;
}
#cart:not(.show) {
    transform: translateY(100%);
}
.cart {
    border-color: var(--bs-white);
    border-style: solid;
    box-shadow: 0 0 4px rgba(var(--bs-white-rgb), 0.5);
    color: var(--bs-white);
}
#cart .toast-container {
    padding-bottom: 0.25rem;
    position: relative;
    width: 100%;
}
#cart .toast {
    --bs-toast-font-size: var(--bs-body-font-size);

    border-bottom-right-radius: 0;
    border-color: var(--bs-white);
    border-right-width: 0;
    border-style: solid;
    border-top-right-radius: 0;
    box-shadow: 0 0 4px rgba(var(--bs-white-rgb), 0.5);
    color: var(--bs-white);
    width: unset;

}
#cart .toast-body::before {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    margin-right: 0.5rem;
    text-rendering: auto;
}
#cart .toast-info,
#cart .toast-warning {
    background-color: rgba(0,0,0,0.9);
}
#cart .toast-info .toast-body::before {
    content: "\f00d";
}
#cart .toast-warning .toast-body::before {
    content: "\3f";
}
#cart .toast-success {
    background-color: var(--bs-green);
}
#cart .toast-success .toast-body::before {
    content: "\f00c";
}
#cart .toast.showing {
    transform: translateX(calc(100% + 0.25rem));
}
#cart .toast.fade {
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}

.cart {
    background-color: var(--bs-primary);
    border-width: var(--bs-border-width) 0 0 0;
    position: relative;
    z-index: 2;
}
.cart-header {
    align-items: center;
    background-color: transparent;
    border: none;
    color: inherit;
    display: flex;
    padding: 1rem 1.5rem;
    width: 100%;
}
.cart-header-toggle {
    flex-grow: 1;
    height: 1.5em;
    position: relative;
}
.cart-header-toggle-hidden,
.cart-header-toggle-shown {
    position: absolute;
    margin: 0;
    transition: opacity 0.15s ease-in-out;
}
.cart-header.collapsed .cart-header-toggle-hidden,
.cart-header:not(.collapsed) .cart-header-toggle-shown {
    opacity: 1;
}
.cart-header:not(.collapsed) .cart-header-toggle-hidden,
.cart-header.collapsed .cart-header-toggle-shown {
    opacity: 0;
    pointer-events: none;
}
.cart-body {
    max-height: 20vh;
    overflow-y: auto;
    padding: 0 1.5rem;
}
.cart-footer {
    padding: 1rem 1.5rem;
}
.cart-footer > .btn {
    width: 100%;
}

.cart-item-update {
    width: calc(100% - 2.75rem);
}
.cart-item-update .input-group-text {
    text-align: left;
}
.cart-item-update .input-group {
    flex-wrap: nowrap;
}
.cart-item-update .input-group > * {
    --bs-body-bg: transparent;
    --bs-body-color: var(--bs-white);
    --bs-border-color: var(--bs-white);

    background-color: transparent;
    border-color: transparent transparent var(--bs-border-color) transparent;
    border-radius: 0;
}
.cart-item-update .input-group p.form-control,
.cart-item-update .input-group p.form-control + .form-currency {
    color: rgba(var(--bs-white-rgb), 0.75);
}
.cart-item-update .form-control::placeholder {
    color: rgba(var(--bs-white-rgb), 0.6);
}
.cart-item-update .input-overlay:focus-within {
    border-color: var(--bs-white);
    box-shadow: unset;
}
.cart-item-remove {
    width: 2.75rem;
}
.cart-item-remove .btn-outline-light {
    border-radius: 0;
    border-color: transparent transparent var(--bs-btn-border-color) transparent;
    margin-left: calc(var(--bs-border-width) * -1);
}
#cart .btn-outline-secondary {
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-bg: transparent;
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-bg: transparent;
}
#cart .btn-outline-secondary:hover {
    color: var(--bs-secondary, orange);
}
.btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

@media (min-width: 768px) {
    #cart {
        width: clamp(10vh, 23rem, 100vw);
    }
    .cart-notification {
        width: 100%;
    }
    .cart {
        border-left-width: var(--bs-border-width);
        border-top-left-radius: var(--bs-border-radius);
    }
    .cart-body {
        max-height: 40vh;
    }
}

/*
#cartItems {
    max-height: 22vh;
    overflow-y: auto;
}
@media (min-width: 768px) {
    #cartItems {
        max-height: 60vh;
    }
} */

#mainFooter {
    position: relative;
    background: linear-gradient(160deg, #1c9649 30%, #9fb571 70%, #b9bfa8);
    padding: 4rem;
    overflow: hidden;
}
#mainFooter .gfa-logo-svg {
    width: 50vw;
    max-width: 20rem;
}
#mainFooter .footer-social {
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
#mainFooter .footer-social a:hover svg {
    opacity: .5;
    transition: .25s;
}
#mainFooter .social-svg {
    margin: 0 .5rem;
    width: 2rem;
    fill: white;
}
#mainFooter p {
    color: white;
    font-size: 21pt;
}
#mainFooter .dotted-ornament {
    position: absolute;
    top: -3%;
    left: 0;
    height: 120%;
    width: 17%;
    rotate: -41deg;
    opacity: .1;
    min-width: 18rem;
}
@media (max-width: 768px) {
    #mainFooter .dotted-ornament {
        display: none;
    }
}

.add-card figure {
    width: 75%;
    aspect-ratio: 5/3;
    margin: 0 auto;
}
.add-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.add-card .form-select {
    --bs-body-color: var(--primary-color, darkblue);
    --bs-border-color: var(--primary-color, darkblue);
    width: 75%;
    margin: 1rem auto 0 auto;
    cursor: pointer;
}

#allItems .item {
    position: relative;
    height: fit-content;
    min-height: 100%;
    background: var(--primary-color, darkblue);
    border-radius: 4px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
}
#allItems .item-image {
    width: 100%;
    aspect-ratio: 5/4;
    margin: 0;
}
#allItems .item-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#allItems .item-name {
    padding: 0 1rem;
    flex-grow: 1;
}
#allItems .item-actions {
    height: 4rem;
}

#form {
    background: var(--primary-dark-green);
    border-radius: 4px;
    color: white;
    padding: 1rem;
}
#form h1, #form h2, #form h3 {
    color: white;
}
#form p, #form input {
    font-family: "Beiruti", sans-serif;
}
#orderCatalogContainer h1, #orderCatalogContainer h2, #orderCatalogContainer h3 {
    color: var(--primary-dark-green);
    font-family: "Cormorant Garamond", serif;
}
#form h3 {
    color: white
}

html {
    visibility: visible;
    opacity: 1;
    background: initial;
}
