:root {
    --header-height: 70px;
    --pallete-bg-main: #fafafa;
    --pallete-primary-dark: #17191c;
    --pallete-text-primary: #efefef;
    --pallete-text-primary-rgb: 239, 239, 239;
    --pallete-brand-primary: #65B360;
    --pallete-brand-primary-rgb: 101, 179, 96;
    --pallete-brand-dark: #30393D;
    --pallete-brand-dark-rgb: 46, 57, 61;
    --pallete-brand-dark-700: #262b2e;
    --pallete-card-bg-main: #e7e7e7;
}
@font-face {
  font-family: "Manrope";
  src: url(/src/Manrope.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  src: url(/src/Inter.ttf) format("truetype");
}
@font-face {
  font-family: "Geist";
  src: url(/src/Geist.ttf) format("truetype");
}

html,
body {
    margin: 0;
    background-color: var(--pallete-brand-dark);
    background: var(--pallete-brand-dark);
    font-family: "Manrope", sans-serif;
}
body {
    position: relative;
}

main {
    background: var(--pallete-bg-main);
    background-color: var(--pallete-bg-main);
}

.sy-main-motto-container {
    padding: 6rem 0 2rem;
    display: flex;
    justify-content: center;
    h3 {
        color: var(--pallete-brand-dark);
        font-weight: 100;
        font-size: 2rem;
        margin: 0;
    }
}
.sy-main-motto-desc-container {
    p {
        text-align: center;
    }
}
.sy-main-more-about-us-btn-container {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.sy-large-cards-container {
    display: flex;
    gap: 2rem;
    .sy-large-card {
        width: 50%;
    }
    padding: 1rem 0;
}

.sy-header-wrapper {
    position: relative;
    z-index: 9000;
    height: var(--header-height);
    background-color: #00000020;
    backdrop-filter: blur(5px);
    color: var(--pallete-text-primary);
    font-family: "Manrope", sans-serif;
    cursor: pointer;
    a {
        font-weight: 100 !important;
    }
}

.sy-header-content {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sy-header-logo-wrapper {
    display: flex;
    align-items: center;
}
.sy-header-logo-wrapper svg {
    width: 100%;
    height: 100%;
}
.sy-header-logo-wrapper svg .hoverable {
    transition: all 0.3s;
}
.sy-header-logo-wrapper svg .hoverable:hover {
    fill: var(--pallete-brand-primary);
}
.sy-header-wrapper > .sy-container {
    height: inherit;
    display: flex;
    align-items: center;
}
#sy-header-logo-text {
    font-size: 2rem;
    font-weight: 100;
    margin: 0;
}

#sy-header-menu-items {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    button {
        font-weight: 200 !important;
    }
}

.sy-menu-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sy-question-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sy-question-container button::before {
    z-index: 0 !important;
}
.sy-question-button-holder {
    padding-bottom: 7rem;
}
.sy-question-container .sy-chapter-text {
    text-align: center;
}

footer {
    background-color: var(--pallete-brand-dark);
}
#sy-footer-copy-wrapper {
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
}
#sy-footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: end;
}
#sy-footer-logo-wrapper {
    width: 11.5rem;
    display: flex;
    align-items: center;
}
#sy-footer-links {
    display: flex;
    gap: 1rem;
}
#sy-footer-contact-wrapper p,
#sy-footer-contact-wrapper a {
    color: var(--pallete-text-primary);
    opacity: 0.7;
    margin: 0 0 0.1rem 0;
    letter-spacing: 1px;
    font-size: 1.1rem;
    font-weight: 200;
    line-height: 1.6rem;
    text-decoration: none;
    transition: color 0.2s;
}
#sy-footer-contact-wrapper a:hover {
    text-decoration: underline;
    color: var(--pallete-brand-primary);
    opacity: 1;
}
footer #sy-footer-copy {
    margin: 0;
    color: var(--pallete-text-primary);
    font-weight: 200;
    font-size: 0.75rem;
    line-height: 0.8rem;
    opacity: 0.7;
}
#sy-footer-contact-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}
#sy-footer-contact-right a {
    display: block;
    text-align: right;
}

#sy-mobile-menu-wrapper {
    position: fixed;
    inset: 0;
    z-index: 13000;
    pointer-events: none;
    overflow-x: hidden;
}

#sy-mobile-menu {
    position: absolute;
    pointer-events: all;
    transform: translateX(110%);
    transition: transform 0.3s;
    height: 100%;
    width: clamp(270px, 80dvw, 400px);
    top: 0;
    right: 0;
    background-color: var(--pallete-primary-dark);
    box-shadow: 0 0 20px #000000;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}
#sy-mobile-menu-paths {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

#sy-mobile-menu-close-wrapper {
    display: flex;
    justify-content: end;
    padding: 1.5rem;
}

.sy-caption {
    font-weight: 100 !important;
    font-size: 1rem !important;
}
.sy-caption-secondary {
    font-size: 0.95rem !important;
}

.contact-card {
    justify-content: start !important;
    h4 {
        margin-bottom: 0 !important;
    }
    a:last-child {
        margin-bottom: 1rem;
    }
    p {
        padding-bottom: 0 !important;
    }
    .divider {
        padding: 0.25rem 0;
    }
}

::selection {
    background-color: var(--pallete-brand-primary);
    color: white;
}
