@import"https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html,
body {
    font-family: Montserrat, sans-serif
}

h1,
section,
p,
span,
svg {
    transition: background-color .5s, color .5s
}

:root {
    --color-text-light: #333332;
    --color-background-light: #FAF4E5;
    --color-pink-light: #e5a1aa;
    --color-green-light: #7AD0AC;
    --color-blue-light: #8395CD;
    --color-text-dark: #FAF4E5;
    --color-background-dark: #8395CD
}

.light-theme {
    --color-text: var(--color-text-light);
    --color-background: var(--color-background-light);
    --color-pink: var(--color-pink-light);
    --color-green: var(--color-green-light);
    --color-blue: var(--color-blue-light)
}

.dark-theme {
    --color-text: var(--color-text-dark);
    --color-background: var(--color-background-dark);
    --color-pink: var(--color-text-dark);
    --color-green: var(--color-text-dark);
    --color-blue: var(--color-text-dark)
}

.experience {
    position: fixed;
    width: 100vw;
    height: 100vh
}

.experience-canvas {
    width: 100%;
    height: 100%
}

.hidden {
    display: none
}

.preloader {
    background-color: var(--color-background-light);
    width: 100%;
    height: 100vh;
    position: fixed;
    opacity: 1;
    z-index: 99999999999999999
}

.preloader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.loading {
    display: flex;
    justify-content: center;
    align-items: center
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 6px;
    background-color: var(--color-pink-light);
    animation: load 1s ease-in-out infinite
}

.circle:nth-child(2) {
    animation-delay: .1s
}

.circle:nth-child(3) {
    animation-delay: .2s
}

@keyframes load {
    0% {
        transform: translateY(0)
    }
    20% {
        transform: translateY(-12px)
    }
    40% {
        transform: translateY(0)
    }
}

.page {
    z-index: 99999;
    width: 100%;
    height: 100vh;
    overflow: hidden
}

.page-wrapper {
    position: relative
}

.animatedis {
    display: inline-block;
    transform: translateY(100%)
}

.intro-text {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    font-weight: 500;
    font-size: 16px;
    color: var(--color-text);
    transform: translate(-50%, -50%)
}

.arrow-svg-wrapper {
    position: absolute;
    top: 90%;
    left: 50%;
    opacity: 0;
    color: var(--color-text);
    transform: translate(-50%, -50%);
    animation: bounce .5s ease-in alternate infinite
}

@keyframes bounce {
    0% {
        transform: translateY(0)
    }
    to {
        transform: translateY(8px)
    }
}

.toggle-bar {
    position: fixed;
    display: flex;
    opacity: 0;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    top: 48px;
    right: 48px;
    z-index: 99999999999999
}

.sun-wrapper,
.moon-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: var(--color-text)
}

.toggle-button {
    cursor: pointer;
    position: relative;
    width: 56px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-pink);
    border-radius: 999px;
    margin: 0 16px;
    border: none;
    box-shadow: #959da533 0 8px 24px
}

.toggle-circle {
    position: absolute;
    left: 6px;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: var(--color-background);
    transition: all .2s ease-in-out
}

.toggle-button:hover .toggle-circle {
    transform: scale(.9)
}

.slide {
    left: 31px
}

.section-margin {
    height: 3000px;
    width: 100%
}

.section {
    position: relative;
    width: 50%;
    padding: 1000px 4%;
    margin: 0;
    background-color: var(--color-background);
    overflow: hidden
}

.left {
    margin-right: auto;
    border-top-right-radius: 700px;
    border-bottom-right-radius: 0
}

.right {
    margin-left: auto;
    border-top-left-radius: 700px;
    border-bottom-left-radius: 0
}

.progress-wrapper {
    height: 0;
    width: 12px;
    z-index: 9999
}

.progress-bar-wrapper-left {
    position: absolute;
    top: 0;
    left: 0
}

.progress-bar-wrapper-right {
    position: absolute;
    top: 0;
    right: 0
}

.progress-bar {
    height: 100vh;
    width: 100%;
    background-color: var(--color-pink);
    transform-origin: top center;
    transform: scaleY(1)
}

.section-intro-wrapper {
    position: relative;
    padding: 20% 5% 400px;
    border-bottom: 2px solid var(--color-pink)
}

.section-intro-wrapper:nth-child(3) {
    border-bottom: 2px solid var(--color-green)
}

.section-detail-wrapper {
    position: relative;
    padding: 20% 5%
}

.section-heading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    margin-top: 64px;
    color: var(--color-text)
}

.section-text {
    font-family: "Lucida Console", "Courier New", monospace;
    line-height: 3;
    margin-top: 10px;
    font-size: 20px;
    color: var(--color-text)
}

.section-text1 {
    color: black;
    line-height: 4px;
    margin-top: 10px;
    font-size: 26px;
    font-weight: bold;
}

.section-text2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    line-height: 5;
    margin-top: 20px;
    font-size: 20px;
    color: #EAE509;
}


.section-title {
    position: relative;
    color: var(--color-pink)
}

.section-title-text {
    display: block;
    font-size: 40px;
    font-weight: 500;
    transform-origin: left;
    transform: skewY(25deg);
    z-index: 5;
    text-transform: uppercase;
    color: var(--color-pink)
}

.styleOne,
.styleTwo,
.styleThree {
    position: absolute;
    display: block;
    width: 100%;
    max-width: 278px;
    height: 60px;
    border: 1px solid var(--color-pink);
    transform-origin: left;
    transform: skewY(-25deg)
}

.styleOne {
    top: 0px
}

.styleTwo {
    top: 80px
}

.styleThree {
    top: 80px;
    transform: skewY(25deg);
    background-color: var(--color-pink)
}

.section-number {
    position: absolute;
    bottom: 15px;
    right: 0;
    color: var(--color-pink);
    font-size: 24px
}

.hero {
    width: 100vw;
    height: 100vh
}

.hero-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    max-width: 1100px
}

.hero-main {
    position: absolute;
    bottom: 168px;
    left: 0;
    color: var(--color-text)
}

.hero-second {
    position: absolute;
    top: calc(50% - 120px);
    right: 0;
    color: var(--color-text)
}

.hero-main-title {
    font-size: 64px;
    color: var(--color-text)
}

.hero-main-description {
    font-size: 18px;
    color: var(--color-text)
}

.hero-second-subheading {
    font-size: 32px;
    text-transform: uppercase;
    color: var(--color-text)
}

.blue-text {
    color: var(--color-blue)
}

.blue-border {
    border-color: var(--color-blue)
}

.blue-background {
    background-color: var(--color-blue)
}

.green-text {
    color: var(--color-green)
}

.green-border {
    border-color: var(--color-green)
}

.green-background {
    background-color: var(--color-green)
}

@media (max-width: 968px) {
    .section {
        width: 100%
    }
    .progress-bar-wrapper-left {
        right: 0;
        left: auto
    }
    .hero-main {
        bottom: 120px
    }
    .hero-second {
        top: 160px
    }
    .hero-wrapper {
        width: calc(100% - 60px)
    }
    .hero-main-title {
        font-size: 32px
    }
    .hero-main-description,
    .hero-second-subheading {
        font-size: 18px
    }
}