

html,
body {
  background: #232323;
  color: #cdcdcd;
  margin: 0;
  padding: 0;
  font-size: 16px;

  /*height: 100%;
  overflow: hidden;*/
  overflow-x: hidden;
}

.blaze-container {
  position: relative;
}

.blaze-track-container {
overflow: hidden;
}

.blaze-track > * {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: width 300ms ease;
  box-sizing: border-box;
  /*
  border-radius: 6px;
  background: linear-gradient(to top, #050505, #171717);
  border: 1px solid #333333;
  box-shadow: inset 0 0 26px rgba(0, 0, 0, 0.7);
  color: #404040;
  */
}


.image {
overflow:hidden;
height: 400px;
 display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1300px) {



.image {
height: 970px;
}
}

.responsive-h {
  height: 100%;
  width: auto;
  }

.blaze-pagination {
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.blaze-pagination button {
  font-size: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  outline: none;
  border: none;
  /*background: #262626;*/
  background: #555;
  cursor: pointer;
  transition: transform 200ms ease, background-color 300ms ease;
}

.blaze-pagination button.active {
  background: white;
  transform: scale(1.5);
}

.blaze-title {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 2em;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  padding-bottom: 10px;

}

.blaze-title p {
  padding: 5px;
  margin:0px;
}

.prompt-area {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  font-size: 1em;
  font-weight: 100;
  line-height: 1.3;
  text-align: center;
  padding: 10px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 70px;
}

.blaze-slider.start .blaze-prev,
.blaze-slider.end .blaze-next {
  opacity: 0.5;
  cursor: not-allowed;
}





/*
 * HAMBURGER MENU
 */





#menuToggle
{
  font-size:10px;
  display: block;
  /*position: relative;*/ 
  position: fixed; /* sticky hamburger */ 
  top: 50px;
  left: 50px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

@media screen and (max-width: 1300px) {

#menuToggle
{
font-size:20px;
}
}


#menuToggle a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.1s ease;
}

#menuToggle a:hover
{
  color: tomato;
}


#menuToggle input
{
  display: block;
  width: 5.3em;
  height: 3.8em;
  position: absolute;
  top: -0.7em;
  left: -0.5em;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */


#menuToggle span
{
  display: block;
  width: 3.3em;
  height: 0.4em;
  margin-bottom: 0.5em;
  position: relative;
  
  background: #cdcdcd;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 0.4em 0em;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-0.2em, -0.1em);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -0.1em);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 30em;
  margin: -10em 0 0 -5em;
  padding: 5em;
  padding-top: 12.5em;
  
  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 1em 0;
  font-size: 2.2em;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}
