* {
    margin: 0;
    padding: 0;
    box-sizing:border-box;
}

:root {
    --primary-color: #eee9e6;
    --secondary-color: #ffd452;
    --background-color: #0a0a0a;
    --margin-left: 10%;
    --margin-right: 10%;
    --margin-heading: 5px;
}

html::-webkit-scrollbar{
    width: 14px;
}

html::-webkit-scrollbar-thumb{
    background-color: #31313181;
    border-radius: 25px;
    background-clip: padding-box;
    border: 3px solid rgba(0, 0, 0, 0);
}

html::-webkit-scrollbar-thumb:hover{
    background-color: var(--secondary-color);
}

html::-webkit-scrollbar-track{
    background-color: var(--background-color);
}

body {
    width: 100%;
    height: 100vh;
    background-color: var(--background-color);
    overflow-x: hidden;
}

/*Headers and Paragraph Text*/
h0 {
    font-family: roca, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 100px;
    letter-spacing: 0pt;
    text-transform: uppercase;
    color: var(--primary-color);
}

h1 {
    font-family: roca, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 32pt;
    line-height: 28pt;
}

h2 {
    font-family: scandia-web,sans-serif;
    font-weight: 100;
    font-style: normal;
    font-size: 12pt;
    letter-spacing: 0pt;
}

p {
    font-family: scandia-web,sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 12pt;
    letter-spacing: 0.2pt;
    line-height: 20pt;
    color: var(--primary-color);
}

/*Site General*/
.site-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    align-items: center;
}

.max-width {
    position: relative;
    max-width: 1800px;
}

section {
    position: relative;
    display: flex;
    width: 100vw;
    justify-content: center;
}

.banner-section {
    background-color: var(--primary-color);
}

/*---------------------------------------------------------| NAVBAR |---------------------------------------------------------*/

.nav-logo {
    position: relative;
    width: 60px;
    cursor: pointer;
    transition: .3s ease-out;
    fill: var(--primary-color);
}

.nav-logo:hover {
   fill: var(--secondary-color);
}

.nav-wrapper {
    position: fixed;
    width: 100vw;
    height: 100px;
    display: flex;
    z-index: 9;
}

/*---------------------------------------------------------| LANDING SECTION |---------------------------------------------------------*/

.landing-section {
    background-color: #001720;
}

.landing-title-wrapper {
    position: relative;
    display: flex;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    flex-direction: column;
}

.title-block {
    position: relative;
    display: flex;
    margin-top: 5%;
    max-width: 500px;
    margin-left: 15%;
    margin-right: var(--margin-right);
}

.landing-title {
    position: relative;
    height: 18%;
}

.landing-title-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.landing-title-container p {
    margin-bottom: 10px;
    margin-top: 10px;
}

.down-btn-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10%;
    height: 70px;
    width: 250px;
    cursor: pointer;
    text-decoration: none;
}

.down-btn {
    fill: var(--primary-color);
    height: 100%;
    width: 70px;
    transition: .3s ease;
}

.down-btn-svg-2 {
    fill: none;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    stroke: var(--primary-color);
}


/*Scroll Percentage Indicator*/
.scroll-indicator-wrapper {
    position: fixed;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 10%;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 10;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
}

.scroll-wrapper {
    display: flex;
    flex: 1 0;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.percent {
    position: fixed;
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.2);
	height: 40vh;
	width: 4px;
    border-radius: 2px;
	transform: rotate(180deg);
    opacity: 1;
}

.fill {
	position: absolute;
	bottom: 0;
	align-self: center;
	width: 100%;
	height: 100%;
    border-radius: 2px;
	background: #F3F3F2;
	z-index: 3;
}

/*Sticky back to top button*/
.scroll-btn-wrapper {
    display: flex;
    justify-content: center;
    flex: 0 1 100px;
}

.scroll-top-btn {
    position: relative;
	width: 30px;
	height: 30px;
    fill: var(--primary-color);
	z-index: 8;
	transition: .3s;
	transform-origin: center center;
	transition: 0.3s ease;
    opacity: 0;
}

.scroll-top-btn:hover {
    fill: var(--secondary-color);
	transform:scale(1.1);
	-webkit-transition: .2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
    transition: .2s ease-in-out;
}

.scroll-top-btn.active {
	visibility: visible;
	opacity: 1;
}

/*---------------------------------------------------------| SOLUTIONS SECTION |---------------------------------------------------------*/

.solutions-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
}

/*---------------------------------------------------------| BANNERS |---------------------------------------------------------*/


/*---------------------------------------------------------| FOOTER |---------------------------------------------------------*/


/*---------------------------------------------------------| MOBILE ELEMENTS |---------------------------------------------------------*/

.mobile-logo-wrapper {
    position: fixed;
    display: none;
    align-items: center;
    justify-content: center;
    height: 120px;
    margin-left: 30px;
    z-index: 10;
}

.nav-logo-mobile {
    position: relative;
    width: 40px;
    cursor: pointer;
    transition: .3s ease-out;
    fill: var(--primary-color);
}

.nav-logo-mobile:hover {
    fill: var(--secondary-color);
}


/*---------------------------------------------------------| RESPONSIVE SETTINGS |---------------------------------------------------------*/
@media screen and (max-width: 530px) {
    /*Headings and Paragraph*/
    h0 {
        font-size: 50px;
    }

    /*Scroll Indicator*/
    .percent{
        display: none;
    }

    .scroll-btn-wrapper {
        display: none;
    }

    /*Navbar and Logo*/
    .logo-wrapper a{
        display: none;
    }

    .mobile-logo-wrapper {
        display: flex;
    }

    /*Landing Section*/
    .title-block {
        margin-top: 50%;
        max-width: 300px;
        margin-left: 10%;
    }

    .landing-title {
        height: 12%;
    }

    .down-btn-wrapper {
        width: 120px;
    }
}