#main{
  width: 100%;
}

.inner {

  max-width: 78em !important;

}

.parallax{
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.coin{
  width: 25vw !important;
  height: auto;
  margin-right: 5rem;
  padding-bottom: 35vh;
}

.parallax img{
  position: absolute;
  width: 100%;
  z-index: 1;

}


.section{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 4rem;
  color: black;
}

.section p{
  font-size: 3.4vw;
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.section img{

  width: 25vw;
  height: auto;
  opacity: 0;
  transition: transform 0.2s linear, opacity 0.2s linear;
  margin-right: 5rem;
}

@media screen and (max-width: 1300px) {
  .parallax{
    display: none;
  }

  .section img{
    width: 300px;
    opacity: 1;
  }

  .section p{
    font-size: 52px;
    margin-left: 0;
  }
}

@media screen and (max-width: 800px) {
  
  .section{
    flex-direction: column;
    padding: 2rem;
    
    text-align: center;
  }
  
  .section img{
    width: 300px;
    margin-right: 0;
    margin-bottom: 30px;
  }
}