* {
  overflow-y: hidden;
}


/* add custom styling to the scrollbar */
::-webkit-scrollbar {
  transform: translateY(-10px);
  width: 24px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

header {
  background-color: rgba(204, 238, 239, 0.5); /* Use rgba with the alpha value */
  background-image: url(./RACCbgOpacity10.png);
  /* background-image: url(./RACCbg1.png);
  background-blend-mode: soft-light; */
  width: 100%;
  height: 120px;
  top: 0;
  right: 0;
  /* border-radius: 1em; */
  grid-area: 1 / 1;
  display: grid;
  /* margin-top: .5em; */
  margin-bottom: .5em;
  padding-bottom: .5em;
}

header h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-align: center;
  color: #001858;
}

header h1:hover {
  color: #f582ae;
  transition: color 0.5s;
  text-decoration: none;
}

header nav {
  text-align: center;
}

.menu-icon {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 20px; /* Adjust the top position based on your header height */
  right: 20px;
}


header nav a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  text-decoration: none;
  color: #001858;
  padding: 0.5em;
}

header nav a:hover {
  color: #f582ae;
  transition: color 0.5s;
  text-decoration: none;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Adjust the column widths as needed */
  padding-bottom: 24vh;
}

.text-content h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  text-align: left;
  color: #001858;
}

.text-content p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  text-align: left;
  color: #001858;
  width: 20em;
}

.slide.one {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./RACCbgOpacity10.png);
  /* background-blend-mode: soft-light; */
}

.slide.two {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./RACCbgOpacity10.png);
  /* background-image: url(./RACCbg1.png); */
  /* background-blend-mode: soft-light; */
}

.slide.three {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./RACCbgOpacity10.png);
  /* background-image: url(./RACCbg1.png); */
  /* background-blend-mode: soft-light; */
}

.slide.four {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(./RACCbgOpacity10.png);
  /* background-image: url(./RACCbg1.png); */
  /* background-blend-mode: soft-light; */
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #ad5878 ;
  text-decoration: none;
}

a:hover {
  color: #f582ae;
  transition: color 0.5s;
  text-decoration: none;
}

.text-content {
  padding: 20px; /* Adjust the padding as needed */
}

.slide {
  width: 100vw;
  height: 100vh;
}

.outer-wrapper {
  width: 100vh;
  height: 99vw;
  transform: rotate(-90deg) translateX(-100vh);
  transform-origin: top left;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* wrapper containing our slides */
.wrapper {
  display: flex;
  flex-direction: row;
  width: 400vw;
  transform: rotate(90deg) translateY(-100vh);
  transform-origin: top left;
  overflow-y: hidden;
  position: fixed;
}

.one {
  background: #efdefe;
}

.two {
  background: #f0d4b9;
}

.three {
  background: #c9efe8;
}

.four {
  background: #c6e7d4;
}

@media only screen and (max-width: 768px) {
  .outer-wrapper {
    z-index: 0 !important;
    overflow-x: scroll !important;
    /* overflow-y: hidden !important; */
    }
}


/* BREAKPOINTS */

@media only screen and (max-width: 768px) {
  /* * {
    -webkit-overflow-scrolling: touch;
  } */

  header {
    height: 78px; /* Adjust the height based on your header height */
    background-color: rgba(243, 210, 193, 0.5); /* Use rgba with the alpha value */
    width: 100%;
    top: 0;
    right: 0;
    /* border-radius: 1em; */
    grid-area: 1 / 1;
    display: grid;
    margin-top: .5em;
    margin-bottom: .5em;
    padding-bottom: .5em;
  }

  header nav {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    width: 100%;
    background-color: rgba(243, 210, 193, 0.8);
    z-index: 1;
    top: 120px; /* Adjust the top position based on your header height */
  }

  header nav.active {
    display: flex;
  }

  header nav a {
    padding: 1em;
  }

  .grid-container {
    display: grid;
    grid-template-columns: 1fr; /* Adjust the column widths as needed */
  }

  .menu-icon {
    display: block;
    cursor: pointer;
  }

  header nav {
    text-align: center;
  }

  header h1 {
    padding-top: 15px;
    font-size: 22px;
  }


  .menu-icon.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .menu-icon.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-icon.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }


  .menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #001858;
    margin: 6px 0;
    transition: 0.4s;
  }

  .outer-wrapper {
    width: 100vh;
    height: 99vw;
    /* border: solid red 1px; */
    transform: rotate(-90deg) translateX(-100vh);
    transform-origin: top left;
    overflow-y: scroll;
    overflow-x: hidden;
    position: absolute;
    z-index: 0 !important;
    overflow-x: scroll !important;
    
    overscroll-behavior-x: none !important;

    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  
  /* wrapper containing our slides */
  .wrapper {
    display: flex;
    flex-direction: row;
    margin: 0px !important;
    /* width: 400vw; */
    transform: rotate(90deg) translateY(-100vh);
    transform-origin: top left;
    overflow-y: hidden;
    /* border: solid green 1px; */
  } 


  .slide.one {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide.two {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide.three {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slide.four {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .text-content {
    padding: 20px; /* Adjust the padding as needed */
  }
  
  .slide {
    width: 100vw;
    height: 100vh;
  }

  /* .QRCODE {
    width: 20%;
  }

  .QRTEXT {
    font-size: smaller;
  } */

}

/* Add this style for the menu icon */



