*,
::after,
::before {
    /* border: 0vw solid; */
    /* box-sizing: border-box; */
}
/* 
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
dd,
dl,
fieldset,
figure,
hr,
p,
pre {
    margin: 0vw;
    font-size: inherit;
    font-weight: inherit;
} */

img {
    /* display: block;
    height: auto;
    max-width: 100%; */
}

.u-overflow-hidden {
    overflow: hidden;
}

.u-color-white {
    color: var(--color-white);
}

:root {
    --color-white: #F0F0F0;
    --color-dark: #1b1b1c;
    --color-primary: #1b1b1c;
    --text-body: #2e3138;
}



html,
body {
    background-color: var(--color-white);
    color: var(--color-dark);
    /* overflow-x: clip; */
}

body.is-loading,
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
    top: 0;
    left: 0;
}

html {
    line-height: 1.5;
    text-size-adjust: 100%;
    font-family: 'Poppins', sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    tab-size: 4;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizespeed;
    touch-action: manipulation;
    height: auto;
    overscroll-behavior: none;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: auto;
    width: 100%;

}


html.lenis,
html.lenis body {
    height: auto;
}

#curve-overlay {
	position: fixed;
	height: calc(100vh + 600px);
	width: 100vw;
	pointer-events: none;
	left: 0;
	top: -300px;
	z-index: 99999;
	display: none;
}
#curve-bg {
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: transparent;
	pointer-events: none;
	top: 0;
	left: 0;
}
#curve-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#curve-path {
	fill: var(--color-dark);
}