@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: gilroy;
}

.middle {
    height: 100%;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}

html,
body {
    height: 100%;
    width: 100%;
}

.main-logo {
    padding-top: 100px;
}

.main-logo img {
    width: 250px;
}

#main {
    position: relative;
    overflow: hidden;
}

#page {
    position: relative;
    height: 100vh;
    width: 100vw;
}

#page1 {
    position: relative;
    height: 100vh;
    width: 100vw;
}

#page2 {
    position: relative;
    height: 100vh;
    width: 100vw;
}

#page3 {
    position: relative;
    height: 100vh;
    width: 100vw;
}

canvas {
    position: relative;
    z-index: 9;
    max-width: 100vw;
    max-height: 100vh;
}



#loop {
    display: flex;
    position: absolute;
    top: 30%;
    height: 25%;
    width: 100%;
    font-size: 100px;
    white-space: nowrap;
    font-family: gilroy;
}

#loop>h1 {
    font-weight: 400;
    animation-name: anim;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    color: #3d2371;
}

#loop>h1>span {
    -webkit-text-stroke: 2px #e9c102;
    color: transparent;
    font-weight: 500;
}

@keyframes anim {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7%;
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 0px 30px;
}

#nav>h3 {
    font-family: gilroy;
    font-weight: 400;
    font-size: 22px;
}

#nav>button {
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
    border: none;
}

#page>h3 {
    position: absolute;
    top: 55%;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    color: #000;
    line-height: 46px;
    left: 5%;
    font-size: 18px;
    text-transform: uppercase;
    width: 30%;
}

#page>h4 {
    position: absolute;
    top: 69%;
    left: 25%;
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    background-color: #e9c102;
    padding: 10px 20px;
    color: #000;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 900;
}


#page1>#right-text {
    position: absolute;
    top: 30%;
    left: 10%;
}

#page1>#right-text>h3 {
    font-weight: 700;
    color: #000;
    font-size: 24px;
    background-color: #eac203;
    width: fit-content;
    padding: 5px 20px;
}

#page1>#right-text>h2 {
    line-height: 1.5;
    font-size: 50px;
    color: #3d2371;
}

#page1>#left-text {
    position: absolute;
    top: 58%;
    right: 10%;
    text-align: end;
}

#page1>#left-text>h2 {
    line-height: 36px;
    font-size: 26px;
}

#page1>#left-text>h1 {
    font-size: 50px;
    line-height: 1.5;
}

#page1>#left-text>h3 {
    color: #7c7c7c;
    font-weight: 400;
}

#page2>#text1 {
    position: absolute;
    top: 30%;
    left: 10%;
}

#page2>#text1>h3 {
    color: #7c7c7c;
    font-weight: 400;
}

#page2>#text1>h1 {
    font-size: 60px;
    line-height: 1.5;
}

#page2>#text2 {
    position: absolute;
    top: 55%;
    right: 6%;
    text-align: end;
    width: 28%;
}

#page2>#text2>p {
    color: #7c7c7c;
    font-weight: 400;
    font-size: 22px;
    line-height: 36px;
}

#page3>#text3 {
    position: absolute;
    top: 60%;
    right: 10%;
    text-align: end;
}

#page3>#text3>h3 {
    color: #7c7c7c;
    font-weight: 400;
}

#page3>#text3>h1 {
    font-size: 70px;
    color: #3d2371;

}

.pin-spacer {
    z-index: -9 !important;
}


#text1,
#text2,
#text3 {
    z-index: 999999 !important;
}

.side-menu.open {
    width: 100%;
    right: 0;
}

.side-menu a {
       color: white;
    padding: 10px 30px;
    text-decoration: none;
    display: block;
    font-size: 30px;
    margin: 10px 0;
}

.side-menu a:hover {
       background-color: #ffffff;
    color: #3d2371;
}

.main-content.collapsed {
    transition: 2s linear ease-in-out;
}

.toggle-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    background-color: #fff !important;
    color: #3d2371 !important;
    border: none;
    cursor: pointer;
    z-index: 1050;
    border-radius: 0 !important;
    padding: 0 10px !important;
}






aside {
position: absolute;
    width: 300px;
    height: 100vh !important;
    background: #3d2371;
    left: -300px;
    top: 0;
    bottom: 0;
    box-sizing: border-box;
    padding-top: 70px;
    transition: all 0.4s ease;
}
aside.active {
  left: 0;
  width: 100%;
}
aside a {
display: block;
    padding: 1.2rem;
    text-decoration: none;
    color: #ffffff;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    font-size: 26px;
}
.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;
  float: left;

  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.toggle-bar {
 width: 18px;
    margin: 10px 0;
    position: relative;
    border-top: 4px solid #303030;
    display: block;
    transform: rotate(180deg);
}
.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: #303030;
  height: 4px;
  width: 38px;
  position: absolute;
  top: -13px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}
.toggle-bar::after {
  top: 4px;
}
.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}
.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
