/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body::-webkit-scrollbar {
  width: 0;
}


#pp-nav {
  display: none;
}

html,
body {
  height: 100%;
  /* scroll-behavior: smooth; */
  font-family: 'Helvetica Neue', sans-serif;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  /* scroll-snap-type: y proximity; */
  /* for snap between sections */
  /* scroll-padding-top: 80px; */
  overflow-x: hidden;
  /* scrollbar-gutter: stable both-edges; */
}

/* Fullscreen section */
.fullscreen {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  text-align: center;
  color: white;
  /* min-height: 100vh; */
  scroll-snap-align: start;
  /* snap point */
}


/* Overlay content */
/* .content { */
/* background: rgba(0, 0, 0, 0.5);  */
/* semi-transparent overlay */
/* padding: 2rem;
  border-radius: 10px;

  position: relative;
  left: 7.06rem;
} */


/* Sticky Header */
.header {
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
  padding: 2rem;
  padding-bottom: 0;
  z-index: 1000;
  width: 100vw;
  text-align: center;
  /* position: relative; */
}

.logo {
  display: inline-block;
  text-align: center;
  color: white;
  /* background: linear-gradient(146deg, rgb(255 255 255) 42.64%, rgb(242 184 84) 97.96%); */
}


.hamburger {
  position: absolute;
  right: 10rem;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px 5px;
  width: 42px;
  height: 42px;
  z-index: 1002;
  background: #00000099;

  /* background: rgba(0, 0, 0, 1);
    border-radius: 15px; */
  .golden {
    background-color: #ffac59;
  }
}

.hamburger span {
  display: block;
  width: 22.4px;
  height: 2px;
  /* background: linear-gradient(146deg, rgb(255 255 255) 42.64%, rgb(242 184 84) 97.96%); */
  background: white;
  border-radius: 2px;
  margin: 5px;
  transition: 0.8s ease;
  transform-origin: center;
}

.hamburger.active {
  background: none;
}

.hamburger.active span:nth-child(1) {
  width: 30px;
  background: linear-gradient(268.8deg, #E49072 -2.14%, #A0624A 59.38%);
  transform: rotate(45deg) translate(83px, -57px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transition: 0s;
}

.hamburger.active span:nth-child(3) {
  width: 30px;
  background: linear-gradient(268.8deg, #E49072 -2.14%, #A0624A 59.38%);
  transform: rotate(-45deg) translate(66px, 73px);
}

/* Hamburger menu options styles start */
.menu {
  /* display: none; */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1rem;
  /* border-radius: 8px; */
  /* text-align: center; */
  flex-direction: column;
  gap: 0.5rem;
  z-index: 1001;
  height: 100vh;
  width: 325px;
  transform: translateX(100%);
  transition: transform 0.8s ease-in-out, opacity 0.4s ease-in-out;
  display: flex;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, #0F0C03 0%, #0F0C03 30%, #28210A 100%);
}

.menu a {
  display: block;
  color: #c9c2c2;
  text-decoration: none;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  padding-left: 20px;
  /* text-align: center; */

  /* font: 'Montserrat'; */
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 38.9px;
  letter-spacing: 1px;
  vertical-align: middle;
}

.menu a:hover {
  text-decoration: underline;
  text-decoration: none;
}

.menu.active {
  display: flex;
  transform: translate(0);

  opacity: 0.9;
  pointer-events: auto;
}

.copyright {
  position: fixed;
  width: 100%;
  bottom: 1svh;
  color: #c9c2c2;
  cursor: pointer;
}

.copyrightDesc {
  display: none;
  color: black;
  text-align: start;
  bottom: 3vh;
  position: fixed;
  background: #ffffff;
  left: 10%;
  padding: 15px;
  width: 80%;
  border-radius: 8px;
  line-height: 22px;
}
.disclaimer {
  font-weight: bold;
}

.menu_options {
  top: 15rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
  /* padding-left: 60px; */
  text-decoration: none;
  /* margin-left: 60px; */
}

#cross {
  background-image: url("/assets/images/Cross.png");
  background-size: cover;
  background-position: center;
  height: 25px;
  width: 25px;
  top: 52px;
  right: 64px;
  position: absolute;
  cursor: pointer;
}

.menu.active~.hamburger {
  display: none;
}

/* Hamburger menu options styles end */

#section1 {
  transform: scale(1.1);
  transition: transform 1.5s ease;
}

#section1.zoomed-out {
  transform: scale(1);
}

.menu_options a.active-page {
  /* font-size: 16px; */
  /* padding: 10px 20px; */
  /* border: 1px solid white; */
  border-radius: 7px;
  margin-right: 18px;
  /* background: linear-gradient(146deg, rgb(255 255 255) 42.64%, rgb(242 184 84) 97.96%); */
  /* background: #bfbfbf; */
  /* color: #6f3800 !important; */
  color: #e9a765 !important;
  max-width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: fit-content;
  text-decoration: none;
  font-family: 'Roboto', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 38.9px;
  letter-spacing: 1px;
  vertical-align: middle;
}

.menu_options a.active-page:hover {
  /* background: linear-gradient(146deg, rgb(242 184 84) 97.96%, rgb(255 255 255) 42.64%); */
  /* background: #bfbfbf; */
}


@media screen and (max-width: 1536px) and (min-width: 768.1px) {
  .menu_options {
    top: 5rem;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .menu_options {
    top: 5rem;
  }

  .copyright{
    font-size: 12px;
  }

  .copyrightDesc{
    font-size: 12px;
    line-height: 15px;
  }

  .hamburger {
    font-size: 1.75rem;
    right: 3rem;

  }

  .hamburger.active {
    background: none;
  }

  .hamburger.active span:nth-child(1) {
    width: 22.4px;
    background: linear-gradient(268.8deg, #E49072 -2.14%, #A0624A 59.38%);
    transform: rotate(45deg) translate(10px, 0px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transition: 0s;
  }

  .hamburger.active span:nth-child(3) {
    width: 22.4px;
    background: linear-gradient(268.8deg, #E49072 -2.14%, #A0624A 59.38%);
    transform: rotate(-45deg) translate(10px, 0px);
  }

  .menu {
    width: 250px !important;
  }

  .field {
    display: none !important;
    left: auto !important;
    right: 3rem !important;
    bottom: 15vh !important;
    position: fixed;

    .box {
      .live {
        /* width: 10px;}*/
      }
    }
  }
}

@media screen and (max-height: 760px) {
  .header {
    padding: 1rem;
  }
}

.logo {
  transition: color 0.2s ease-in-out;
  -webkit-transition: color 0.2s ease-in-out;
  -moz-transition: color 0.2s ease-in-out;
  -o-transition: color 0.2s ease-in-out;
}

.scroll-icon {
  bottom: 0;
  position: absolute;
}

.scroll {
  position: relative;
  bottom: 0;
  width: 60px;
  height: 60px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: relative;
  animation: down 1.5s infinite;
  -webkit-animation: down 1.5s infinite;

  &::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
  }
}

.field {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: fit-content;
  bottom: 0;
  position: fixed;
  padding-bottom: 2rem;
  right: 10rem;
}

.box {
  width: fit-content;
  transition: 0.8s ease;
  row-gap: 3px;
  display: flex;
  flex-direction: column;

  .live {
    width: 42px;
    height: 15px;
    background-color: gray;
    transition: 0.8s ease;
  }

  .golden {
    background-color: #ffac59;
  }
}