.wrap {
  width: 100%;
}

.contents {
  margin-top: 87px;
  width: 100%;
}

.section1 {
  background-image: url(/with_go/src/images/reservebg1.jpg);
  background-color: #5e5e5e;
  width: 100%;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section1 > h1 {
  line-height: 100px;
  color: white;
  text-align: center;
  opacity: 0;
  animation: slideUp 1.2s forwards;
}

.section2 {
  background-image: url("/with_go/src/images/reservebg2.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-color: #c5c5c5;
  background-blend-mode: multiply;
}

.section3 {
  margin-bottom: 8rem;
}

.reservation_infor_container {
  overflow: hidden;
  text-align: center;
  margin: 3rem 0;
}

.reservation_infor {
  overflow: hidden;
  margin-top: 3rem;
  text-align: center;
}

.reservation_infor_text {
  margin: 1rem;
}

.reservation_infor_text > h1 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: rgb(0, 102, 204);
  opacity: 0;
  animation: fadeIn 1s forwards;
  animation-delay: 0.5s;
}

.reservation_infor_text > p {
  animation: slideUp 1s forwards;
  animation-delay: 0.7s;
  opacity: 0;
  transform: translateY(100%);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.reservation_infor_contents_container {
  display: flex;
  opacity: 0;
  justify-content: center;
  transform: translateY(150%);
  animation: slideUp 1.2s forwards;
  animation-delay: 0.8s;
}

@media (max-width: 1250px) {
  .reservation_infor_contents_container {
    flex-direction: column;
    align-items: center;
  }
}

.reservation_infor_contents {
  background-color: rgb(0, 102, 204);
  position: relative;
  margin: 3rem 2rem;
  border-radius: 40px;
  padding: 3rem 1rem 3.5rem 1rem;
  cursor: pointer;
  transition: all 0.5s;

}

.reservation_infor_contents:hover {
  transform: translateY(-10px);
}

.reservation_infor_contents:hover > .reservation_infor_contents_btn {
  transition: all 0.5s;
}

.reservation_infor_contents_title > h2 {
  font-size: 1.7rem;
  padding: 1rem 1.5rem;
}

.reservation_infor_contents_main {
  width: 100%;
  display: flex;
  justify-content: center;
}

.reservation_infor_contents_main_section {
  border-right: solid 1px rgba(255, 255, 255, 0.6);
  padding: 0 1.2rem;
}

.reservation_infor_contents_main_section:last-child {
  border: none;
}

.reservation_infor_contents_main_section_img {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reservation_infor_contents_main_section_img > img {
  width: 90px;
  height: 90px;
}

.reservation_infor_contents_main_section_text {
  margin-top: 0.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.index {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.9rem;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: rgb(0, 102, 204);
  font-weight: bold;
}

.reservation_infor_contents_main_section_text > p {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  margin-top: 0.7rem;
}

.reservation_infor_contents_btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(50%);
  background-color: #FF9900;
  display: block;
  width: 32%;
  line-height: 3rem;
  font-size: 1.7rem;
  font-weight: bold;
  color: white;
  border-radius: 25px;
}

.search_check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 3rem auto 0 auto;
  width: 700px;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 1s forwards;
  animation-delay: 0.5s;
}

.cancelReserve{
  background-color: #FF9900;
  margin-top: 10px;
  padding: 0.8rem 1.5rem;
  width: 100%;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.5s;
  transform: translateY(100%);
  animation: slideUp 1s forwards;
}

.search_check > input {
  padding: 1.1rem 1.2rem;
  width: 60%;
  font-size: 1rem;
  border: solid 1px rgb(0, 102, 204);
}

.search_check > input:focus {
  outline: none;
}

.search_check > button {
  background-color: #FF9900;
  padding: 1.1rem 1.2rem;
  width: 75px;
  height: 60px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.5s;
}
.search_check > button:hover {
  background-color: #e38901;
  scale: 1.1;
}

.alert {
  display: none;
  margin-top: 3rem;
  text-align: center;
}

.on {
  height: auto;
  opacity: 1;
  transform: translateY(0);
}


