body {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

body#home {
    background-image: url(/assets/footer-bg.jpg);
}

#viewport-constraint {
    background-color: #ffffffbe;
}

header {
    position: fixed;
    z-index: 9;
    padding: 30px 0;
    width: 100%;
    background-color: transparent;
    box-shadow: transparent 0 0 0px;
    transition: all 0.3s ease;
}

header .logo-link {
    position: relative;
    z-index: 9;
}

header .logo {
    width: 275px;
    z-index: 2;
    transition: all 0.3s ease;
    max-width: none;
}

header .navigation-container {
    align-items: flex-end;
    z-index: 1;
    transition: all 0.3s ease;
}

header .navigation {
    gap: 40px;
    font-weight: 600;
}

header .navigation li {
    position: relative
}

header .navigation li:not(.stateless)::after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0px;
    left: 50%;
    height: 3px;
    transition: all 0.3s ease;
    margin-left: 0px;
    width: 0px;
    background-color: var(--tertiary);
}

header .navigation li.active:not(.stateless)::after {
    background-color: var(--primary);
}

header .navigation li.active::after,
header .navigation li:hover:not(.stateless)::after {
    margin-left: -30%;
    width: 60%;
}

header .navigation li a {
    transform: translateY(0px);
    transition: all 0.3s ease;
}

header .navigation li:hover:not(.stateless) a {
    transform: translateY(-5px);
}

header .navigation li a {
    text-decoration: none;
    color: var(--secondary);
    font-size: 16px;
    padding: 8px 0px;
    display: block;
}

.sticky-header-active header {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: #00000017 0 0 60px;
}

.sticky-header-active header .logo {
    width: 175px;
}

#hero {
    height: 90vh;
    padding-top: 150px;
    min-height: 800px;
    max-height: 900px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

#hero .container.row {
    gap: 120px;
}

#hero .hero-image {
    width: 625px;
}

#hero .container {
    position: relative;
}

#hero .decorator {
    width: 445px;
    height: 445px;
    background: var(--tertiary);
    position: absolute;
    transform: rotate(45deg);
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero .decorator::after {
    content: '';
    display: block;
    position: absolute;
    width: 2000px;
    height: 2000px;
    border: solid 5px #ae892b18;
}

#hero .decorator.right {
    left: 110%;
}

#hero .decorator.right::after {
    left: 30%;
    bottom: 30%;
}

#hero .decorator.left {
    right: 110%;
}

#hero .decorator.left::after {
    right: 30%;
    top: 30%;
}

#hero .content {
    gap: 15px;
}

#hero h1 {
    font-size: 50px;
    font-weight: 600;
    color: var(--secondary);
    line-height: normal;
}

#hero h2 {
    font-size: 22px;
    line-height: normal;
    color: var(--secondary);
}

#hero .ctas {
    justify-content: flex-start;
    gap: 15px;
    margin-top: 20px;
}

#hero .ctas .cta {
    width: auto;
}

.grouped-section {
    min-height: 1000px;
    background-image: url(/assets/square-gold-opaque.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    margin-bottom: 100px;

    &.ways-to-get-involved {
        margin-top: 150px;
    }
}

.grouped-section .decorated-heading::before {
    margin: 50px auto
}

.grouped-section .col {
    text-align: center;
}

.grouped-section p {
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 18px;
    line-height: 160%;
    margin: 100px auto;
    max-width: 850px;
}

.grouped-section .items {
    gap: 80px;
}

.grouped-section .items .col {
    background-color: var(--white);
    height: 360px;
    border-radius: 20px;
    box-shadow: 0px 0px 67px 0px rgba(0, 0, 0, 0.10);
    gap: 20px;
    padding: 0 20px;
    box-sizing: border-box;
    min-width: 260px;
    padding: 40px;
}

.grouped-section .items .col img {
    height: 230px;

}

.grouped-section .items .col strong {
    color: var(--primary);
    text-align: center;

    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.grouped-section .items .col p {
    color: var(--primary);
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    margin: 0 0;
    max-width: auto;
}

.grouped-section .items .col .cta {
    align-self: center;
}

.grouped-section.basic {
    background-image: none;
}

#what-we-do {
    width: 100%;
    background-color: var(--primary-light);
    background-image: url(/assets/gold-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--secondary);
    padding: 0 0 100px;
}

#what-we-do .container {
    text-align: center;
    padding: 100px 0;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

#what-we-do .subhead {
    font-size: 20px;
    line-height: 150%;
    max-width: 600px;
}

#what-we-do .arrow {
    width: 10px;
    height: 150px;
    background-image: url(/assets/arrow-down.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#what-we-do .section {
    width: 100%;
    height: 375px;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    background-color: #ffffffd4;
    border-top: solid 8px rgba(174, 137, 43, 0.17);
    gap: 45px;
}

#what-we-do .section.left {
    flex-direction: row-reverse;
}

#what-we-do .section::after {
    content: '';
    position: absolute;
    top: -8px;
    bottom: 0;
    background-color: #ffffffd4;
    border-top: solid 8px rgba(174, 137, 43, 0.17);
    z-index: 0;
}

#what-we-do .section.right::after {
    left: 100%;
    right: -400%;
}

#what-we-do .section.left::after {
    right: 100%;
    left: -400%;
}

#what-we-do .section .promo {
    width: 600px;
    max-height: 110%;
    height: 50vw;
    background-color: var(--secondary);
    align-self: flex-end;
    margin-left: -200px;
}

#what-we-do .section.left .promo {
    margin-left: 0;
    margin-right: -200px;
}

#what-we-do .section .promo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#what-we-do .section .promo img.top-centered {
    object-position: top center;
}

#what-we-do .section .content {
    flex: 1;
    text-align: left;
    display: flex;
    height: 100%;
    padding: 40px 0;
    box-sizing: border-box;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

#what-we-do .section .content h5 {
    color: var(--secondary);
    font-size: 35px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    flex: 0;
}

#what-we-do .section .content p {
    color: var(--secondary);
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 145%;
    flex: 1;
    max-width: 500px;
    /* 24.65px */
}

.quote-box {
    color: #809D92;
    font-size: 30px;
    font-style: italic;
    font-weight: 400;
    line-height: 100%;
    flex-direction: column;
    display: flex;
    gap: 10px;
    position: relative;
    /* 30px */
}

.quote-box::before {
    content: '';
    width: 16px;
    position: absolute;
    top: 2px;
    left: -20px;
    bottom: 0;
    background-image: url(/assets/quote-mark.svg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.quote-box i {
    color: #747474;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    /* 19px */
}

footer {
    width: 100%;
    background-color: #f9f9f9;
    background-image: url(/assets/footer-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: var(--secondary);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f9f9f9d2;
    z-index: 0;
}

footer .pre-footer {
    background: rgba(255, 255, 255, 0.7);
    min-height: 400px;
    z-index: 1;
    position: relative;
    padding: 0 0 100px;
}

footer .pre-footer .container.row {
    gap: 40px;
    margin-top: -50px;
}

footer .pre-footer .item {
    flex: 1;
}

footer .pre-footer .item img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    filter: grayscale(0.7);
    height: 200px;
    object-fit: cover;
    object-position: center;
}

footer .pre-footer .item .cta {
    align-self: center;
    width: 100%;
    text-align: center;
}

footer .pre-footer .item p {
    border-bottom: dotted 2px #e0e0e0;
    padding-bottom: 10px;
    font-weight: 100;
}

footer .pre-footer .item strong {
    font-size: 25px;
    font-weight: 500;
}

footer .pre-footer .item i {
    color: var(--primary)
}

footer .pre-footer .cta.main {
    display: inline-block;
    align-self: center;
    margin: 100px 0 0;
}

footer .main-footer {
    padding: 70px 0;
    color: #2d2d2d;
    font-weight: 300;
    line-height: 150%;
    font-size: 16px;
}

footer .main-footer .logo {
    width: 300px;
    margin-top: -40px;
    margin-bottom: 10px;
}

footer .main-footer strong {
    font-weight: 500;
    font-size: 18px;
    color: var(--secondary);
    border-bottom: solid 2px var(--secondary);
    display: inline-block;
    align-self: flex-start;
    margin-bottom: 50px;
}

footer .main-footer .content {
    align-items: flex-start;
    gap: 100px;
    padding: 70px 0 0;
    position: relative;
}

footer .main-footer .company.col p {
    max-width: 400px
}

footer .main-footer .company.col {
    flex: 1.5;
}

footer .main-footer .navigation {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
}

footer .main-footer .navigation a.cta:hover {
    color: var(--primary) !important;
}

footer .main-footer .navigation a.cta {
    background-color: transparent;
    color: var(--secondary) !important;
    padding: 0 !important;
}

footer .main-footer .navigation a {
    display: block;
    text-decoration: none;
    font-weight: 400;
    position: relative;
    color: var(--secondary);
    transition: all 0.5s ease;
    transform: translateX(0px)
}

footer .main-footer .navigation a:hover {
    color: var(--primary);
    transform: translateX(3px)
}

footer .main-footer .navigation a::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 10px;
    background-image: url(/assets/arrow-right-dark.svg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-left: 7px;
    transform: translateX(-10px);
    transition: all 0.5s ease;
    opacity: 0;
}

footer .main-footer .navigation a:hover::after {
    opacity: 1;
    transform: translateX(0)
}

footer .copyright {
    position: relative;
    z-index: 0;
    background-color: #57575724;
    padding: 70px 0;
    text-align: center;
    color: #727272;
    font-size: 14px;
    gap: 15px;
}

header .hamburger-button-wrapper {
    display: none;
    position: absolute;
    right: 0px;
    top: 50%;
    margin-top: -27px;
    z-index: 2;
}

header .nav-bar.row {
    flex: 0;
    justify-content: flex-start;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    background-color: var(--primary)
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
    background-color: var(--primary-dark);
}

.menu-opened header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

body.menu-opened {
    overflow: hidden;
}

.menu-opened header .navigation-container {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
    pointer-events: all;
}

.card {
    overflow: hidden;
    background-color: var(--white);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0px 0px 67px 0px rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
    box-sizing: border-box;
}

#registration .formFooter {
    border-radius: 10px !important;
    position: static !important;
}