    .mint-container{
    border-style: dashed;
    border-width: 4px 4px 4px 4px;
    border-radius:33px;
    border-color: #ff9229;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
    background-color: rgba(255, 255, 255, 0.7);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 20px 20px 20px 20px;
    }
    
    .container-mud {
    position: absolute;
    margin-top: 0px;
    margin-bottom: 0px;
    min-height:450px;
    background: url("/images/mud-to-sand.jpg") center bottom repeat-x, #9b8a46; 
    -webkit-transform: translateZ(-60px) scale(1.20);
    transform: translateZ(-60px) scale(1.20);
    }
    
    .container-sand {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    min-height:400px;
    background-color: #fffeef;
    -webkit-transform: translateZ(-60px) scale(1.2);
    transform: translateZ(-60px) scale(1.2);
    }
    
    .container-quartz {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    min-height:400px;
    background: url("/images/quartz-to-diamond.jpg") center bottom repeat-x, #ffe7ff; 
    -webkit-transform: translateZ(-60px) scale(1.2);
    transform: translateZ(-60px) scale(1.2);
    }
    
    .container-diamond {
    position: relative;
    margin-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 333px;
    min-height:400px;
    background-color: #d6fffd; 
    }
    
    .floating { 
        animation-name: floating;
        animation-duration: 3s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
        margin-top: 5px;
    }
     
    @keyframes floating {
        0% { transform: translate(0,  0px); }
        50%  { transform: translate(0, 15px); }
        100%   { transform: translate(0, -0px); }   
    }
  
  .parallax {
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-perspective: 300px;
    perspective: 300px;
  }
  
  .parallax__group {
    position: relative;
    height: 500px; /* fallback for older browsers */
    height: 100vh;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  
  .parallax__section {
    position: relative;
    height: 500px; /* fallback for older browsers */
    height: 50vh;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }
  
  .parallax__layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  
  .parallax__layer--fore {
    -webkit-transform: translateZ(40px) scale(.7);
    transform: translateZ(40px) scale(.7);
    z-index: 1;
  }
  
  .parallax__layer--base {
    -webkit-transform: translateZ(-60px) scale(1.2);
    transform: translateZ(-60px) scale(1.2);
    z-index: 1;
  }
  
  .parallax__layer--back {
    -webkit-transform: translateZ(-70px) scale(1.25);
    transform: translateZ(-70px) scale(1.25);
    z-index: 3;
  }
  
  .parallax__layer--deep {
    -webkit-transform: translateZ(-130px) scale(1.45);
    transform: translateZ(-130px) scale(1.45);
    z-index: 3;
  }
  
  .parallax__layer--deeper {
    -webkit-transform: translateZ(-600px) scale(3);
    transform: translateZ(-600px) scale(3);
    z-index: 2;
  }
  
  
  /* Debugger styles - used to show the effect
  --------------------------------------------- */
  
  .debug {
    position: fixed;
    top: 0;
    left: .5em;
    z-index: 999;
    background: rgba(0,0,0,.85);
    color: #fff;
    padding: .5em;
    border-radius: 0 0 5px 5px;
  }
  .debug-on .parallax__group {
    -webkit-transform: translate3d(800px, 0, -800px) rotateY(30deg);
    transform: translate3d(700px, 0, -800px) rotateY(30deg);
  }
  .debug-on .parallax__layer {
    box-shadow: 0 0 0 2px #000;
    opacity: 0.9;
  }
  .parallax__group {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
  }
  
  
  /* Solana Doodles www.solanadoodles.com
  --------------------------------------------- */
  
  .header {
    background-color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(235, 235, 235, 0.5);
    position: relative;
    padding: 20px;
    min-height: 80px;
    width: 100%;
  }
  
  .header a {
    float: left;
    color: black;
    text-align: center;
    padding: 6px;
    text-decoration: none;
    font-size: 18px; 
    line-height: 25px;
  }
  
  .header a.logo {
    font-size: 25px;
    font-weight: bold;
  }
  
  .header a:hover {
    background-color: #fff;
    color: black;
  }
  
  .header a.active {
    background-color: fff;
    color: 000;
  }
  
  .header-right {
    float: right;
    margin-right: 30px;
    text-align: center;
    position: relative;
  }
  
  @media screen and (max-width: 600px) {
    .header a {
      float: none;
      display: block;
      text-align: left;
    }
    
    .header-right {
      float: none;
    }
  }
  
  body, html {
    overflow: hidden;
  }
  
  body {
    font: 100% / 1.5 Arial;
  }
  
  * {
    margin:0;
    padding:0;
  }
  
  .parallax {
    font-size: 200%;
  }
  
   /* centre the content in the parallax layers */
  .title {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 7;
  }
  
  #group4 {
    z-index: 6; /* slide under group 3 and 5 */
    background-color:rgba(255, 255, 255, 0.5);
  }
  #group4 .parallax-doodle {
    background:url("/parallax-doodle.png") center bottom no-repeat;
    background-size:cover;
  }
  #group4 .parallax-doodle-mountains {
    background:url("/parallax-doodle-mountains.png") center bottom no-repeat;
    background-size:cover;
  }
  #group4 .parallax-doodle-marallax {
    background:url("/maralax.png") center bottom no-repeat;
    background-size:cover;
  }
  #group4 .parallax-doodle-background-mud {
    background:url("/background-mud.png") center bottom no-repeat;
    background-size:cover;
  }
  #group4 .parallax-doodle-clouds {
    background:url("/parallax-clouds.png") center bottom repeat-x;
    animation: 2000s linear 0s infinite normal none running ani;
    background-size:cover;
  }
  #group4 .parallax-doodle-earth {
    background:url("/parallax-doodle-earth.png") center bottom no-repeat;
    background-size:cover;
  }
  
  @keyframes ani{
      0%{background-position: 0 0;}
      100%{background-position: 600vw 0;}
  }
  
  #group5 {
    z-index: 3; /* slide over group 4 and 6 */
  }
  #group5 .parallax__layer--base {
    background:url("background3.jpg");
  background-size:cover;	
  }
  
  #group6 {
    z-index: 2; /* slide under group 5 and 7 */
  }
  #group6 .parallax__layer--back {
    background:url("background6.jpg");
  background-size:cover;	
  }
  #group6 .parallax-doodle-sand {
    background:url("/images/sand.png") center bottom no-repeat;
    background-size:auto;
    z-index:0;
    -webkit-transform: translateZ(-50px) scale(1.5);
    transform: translateZ(-50px) scale(1.5);
  }
  
  #group7 {
  margin-top:177px;
  min-height: 1000px;
  }
  #group7 .parallax__layer--base {
    background: url("background5.jpg");
  background-size:cover;
  }
  #group7 .parallax-doodle-underground {
    background:url("/images/underground.png") center bottom no-repeat;
    background-size:cover;
    -webkit-transform: translateZ(-230px) scale(2.2);
    transform: translateZ(-230px) scale(2.2);
    z-index:0;
  }
  #group7 .parallax-doodle-quartz {
    background:url("/images/quartz.png") center bottom no-repeat;
    background-size:auto;
    margin-bottom:248px;
    z-index:0;
    -webkit-transform: translateZ(-50px) scale(1.5);
    transform: translateZ(-50px) scale(1.5);
  }
  
  #group7 .parallax-doodle-marallax {
    background:url("/marallax.png") center bottom no-repeat;
    background-size:cover;
  }
  
  .title{color:#000}
  /* misc
  --------------------------------------------- */
  .demo__info {
    position: absolute;
    z-index:100;
    bottom: 1vh;
    top: auto;
    font-size:80%;
    text-align:center;
    width: 100%;
  }
  @media screen and (max-width: 1366px) {
  }
  /*# sourceMappingURL=main.0939a641.chunk.css.map */