:root {
    --header-height: 70px;
    --pallete-bg-main: #e3e4e4;
    --pallete-primary-dark: #17191c;
    --pallete-text-primary: #efefef;
    --pallete-brand-primary: #65B360;
    --pallete-brand-dark: #30393D;
    --pallete-brand-dark-700: #262b2e;
}
@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-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;
}

.sy-header-content {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sy-header-logo-wrapper {
    margin-top: 2px;
}
.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;
}

header button,
#sy-mobile-menu button,
#sy-contact-us-btn {
    position: relative;
    background-color: #222323dd;
    color: var(--pallete-text-primary);
    font-size: 1.25rem;
    font-weight: 100;
    border: none;
    padding: 0.4rem 0.75rem;
    margin-left: 1rem;
    cursor: pointer;
    letter-spacing: 1px;
}
#sy-contact-us-btn {
    margin-left: 0;
}
#sy-contact-us-btn::before,
header button::before,
#sy-mobile-menu button::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 2px;
    left: 0;
    bottom: 0;
    transition: all 0.4s;
    background-color: transparent;
    opacity: 1;
}

header button:hover::before,
#sy-mobile-menu button:hover::before {
    background-color: var(--pallete-text-primary);
    transform: translateY(3px);
}
#sy-contact-us-btn:hover::before {
    background-color: var(--pallete-primary-dark);
    transform: translateY(3px);
}

#sy-mobile-menu-paths button {
    margin-left: 0 !important;
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #cccccc20;
}

#sy-header-menu-items {
    display: flex;
    align-items: center;
}

.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: 1.5rem 0;
}
#sy-footer-contact-wrapper p,
#sy-footer-contact-wrapper a {
    color: var(--pallete-text-primary);
    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);
}
footer #sy-footer-copy {
    margin: 0;
    color: var(--pallete-text-primary);
    font-weight: 200;
    font-size: 0.9rem;
    line-height: 1.5rem;
    opacity: 0.7;
}
#sy-footer-contact-wrapper {
    display: flex;
    justify-content: space-between;
}
#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;
}

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

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