body {
  margin: 0;
  padding: 0;
  background-color: #000;
  background-image: url('https://trvltypstr.com/wp-content/uploads/tt-images/app-parts/tt_background_gray_o190.png'); 
}


/* For Chrome or Safari */ 
progress::-webkit-progress-bar { 
  background-color: #eeeeee; 
} 

progress::-webkit-progress-value { 
  background-color: #039603 !important; 
} 


/* For Firefox */ 
progress { 
  background-color: #eee; 
} 

progress::-moz-progress-bar { 
  background-color: #039603 !important; 
} 

/* For IE10 */ 
progress { 
  background-color: #eee; 
} 

progress { 
  background-color: #039603; 
} 




section {
}

form {
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.form-group {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100svh;
}


.grid-container-intro {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto; /* Added an empty row at the top and a row at the bottom */
  gap: 10px;
  max-width: 100%;
  max-height: 100%;
}

.grid-container-intro img {
  max-width: 100%;
  /* width: auto; */
  /* height: auto; */
  max-height: 100%;
  object-fit: contain;
}



.grid-container-2pic {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr 1fr 3px 3svh auto;
  gap: 5px;
  max-width: 100%;
  max-height: 100%;
}

.grid-container-2pic img {
  max-width: 100%;
  /* width: auto; */
  /* height: auto; */
  max-height: 100%;
  object-fit: contain;
}



.grid-container-3pic {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr 1fr 1fr 3px 3svh auto;
  row-gap: 5px;
  max-width: 100%;
  max-height: 100%;
}




.grid-container-3pic img {
  max-width: 100%;
  /* width: auto;
  height: auto; */
  max-height: 100%;
  object-fit: contain;
}


.grid-item {
  overflow: hidden;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* margin: 0 20px 0 20px;  */
}

.footerpic {
  max-width: 100%;
  /* width: auto;
  height: auto; */
  max-height: 100%;
  object-fit: fill;
  background-color: #000;
}

.grid-item.paragraph {
  /* Styles for the paragraph grid item */
  color: #fff;
  text-align: center;
  padding: 20px;
}


.overlay-image {
  position: absolute;
  top: 20%;
  left: 33%;
  z-index: 1;
  width: 33%;
  height: auto;
  visibility: hidden;
}


